-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* start migration * test * add varchar * delete export * delete dead package.json * dead code * link postgres to var env * update voie service * update numero service * add findCentroid * stash * change to uuid * refacto voie service * avance on numero.service * finish numeros and voie * fix DTO * migration toponyme service * base locales progress * finish service baseLocale * correct import voie * import toponyme * import many numero * progress * finish voie service * migration export csv * migration module habilitation * finish without stat * change geom srid postgis * finish stats modules * correct find distinct parcelles * change numeros * change entities api property * object id * correct * c * add banId * correct server tiles * correct extend * replace uuid to objectId * correct insert/update positions * correct import many * add import positions * create/update voie * create/update toponyme * optional function in entities * correct batch numeros toponyme * correct create update numero * correct delete numero * soft delete toponyme * correct soft delete voie * correct route find all bal deleted * correct trash voie * delete batch * correct batch * correct import many toponyme * start test * correct test bases_locales * correct test toponyme * correct test voie * correct test numeros * correct test habilitation * correct test publication * add test stats * correct test ci * correct build node 22 * correct await * correct connection and migration typeorm * start cron * add cache to cron * correct test * finish cron * finish test cron * test cron * correct build cron * correct cache string redis * index and rank * add migration to module * test email to * correct rank * correct mail * correct return bug jules * delete schemas * add migration in code * delete bal_id to numero entity * correct test * correct lint * order numeros * correct batch numero -> toponyme null * correct order csv liste voies * correct bug date updatedAt and sync.currentUpdated * correct test * correct bases_locales updateOne * correct test * refacto migration initialization * update README * ci: correct coverage soundcloud * correct alert souncloud * correct alert souncloud part 2 * correct object id mongo length in postgres * delete mongoose * email case insencitive * change migration * change index * correct mail balId * add space in numero and suffixe in numeroComplet
- Loading branch information
Showing
122 changed files
with
5,022 additions
and
6,006 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
clock: yarn start:cron |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
export enum LevelEnum { | ||
INFO = 'I', | ||
WARNING = 'W', | ||
ERROR = 'E', | ||
} | ||
|
||
export interface Field { | ||
name: string; | ||
schemaName: string; | ||
} | ||
|
||
export interface FieldNotFound { | ||
schemaVersion: string; | ||
schemaName: string; | ||
level: LevelEnum; | ||
} | ||
|
||
export interface Row { | ||
rawValues: any; | ||
parsedValues: any; | ||
additionalValues: any; | ||
localizedValues: any; | ||
errors: any[]; | ||
line: number; | ||
isValid: boolean; | ||
} | ||
|
||
export interface FieldFileValidation { | ||
value: string; | ||
isValid: boolean; | ||
} | ||
|
||
export interface FileValidation { | ||
encoding: FieldFileValidation; | ||
delimiter: FieldFileValidation; | ||
linebreak: FieldFileValidation; | ||
} | ||
export interface ProfileValidation { | ||
code: string; | ||
name: string; | ||
isValid: boolean; | ||
} | ||
|
||
export interface ProfileError { | ||
code: string; | ||
level: LevelEnum; | ||
} | ||
|
||
export interface ParseError { | ||
type: string; | ||
code: string; | ||
message: string; | ||
row: number; | ||
} | ||
|
||
export interface ValidationBal { | ||
encoding: string; | ||
linebreak: string; | ||
delimiter: string; | ||
originalFields: string[]; | ||
parseOk: boolean; | ||
parseErrors: ParseError[]; | ||
fields: Field[]; | ||
notFoundFields: FieldNotFound[]; | ||
rows: Row[]; | ||
fileValidation: FileValidation; | ||
profilesValidation: Record<string, ProfileValidation>; | ||
globalErrors: string[]; | ||
rowsErrors: string[]; | ||
uniqueErrors: string[]; | ||
profilErrors: ProfileError[]; | ||
} |
Oops, something went wrong.