@silexpert/core 1.0.198 → 1.0.200

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/es/api/resources/AccountingFiles.d.ts +2 -1
  2. package/es/api/resources/AccountingFiles.d.ts.map +1 -1
  3. package/es/api/resources/AccountingFiles.js +3 -0
  4. package/es/api/resources/AccountingFiles.js.map +1 -1
  5. package/es/types/Enum/Log.js +1 -1
  6. package/es/types/Enum/Log.js.map +1 -1
  7. package/es/types/Interface/api/accountingFiles/Read.d.ts +6 -0
  8. package/es/types/Interface/api/accountingFiles/Read.d.ts.map +1 -0
  9. package/es/types/Interface/api/accountingFiles/Read.js +2 -0
  10. package/es/types/Interface/api/accountingFiles/Read.js.map +1 -0
  11. package/es/types/Interface/api/exercice/CreateExercice.d.ts +1 -0
  12. package/es/types/Interface/api/exercice/CreateExercice.d.ts.map +1 -1
  13. package/es/types/Interface/api/exercice/CreateExercice.js +7 -0
  14. package/es/types/Interface/api/exercice/CreateExercice.js.map +1 -1
  15. package/es/types/Interface/api/exercice/UpdateExercice.d.ts +1 -0
  16. package/es/types/Interface/api/exercice/UpdateExercice.d.ts.map +1 -1
  17. package/es/types/Interface/api/exercice/UpdateExercice.js +7 -0
  18. package/es/types/Interface/api/exercice/UpdateExercice.js.map +1 -1
  19. package/es/types/Interface/api/taxDeadline/QueryTaxDeadline.d.ts +3 -2
  20. package/es/types/Interface/api/taxDeadline/QueryTaxDeadline.d.ts.map +1 -1
  21. package/es/types/Interface/api/taxDeadline/QueryTaxDeadline.js +9 -4
  22. package/es/types/Interface/api/taxDeadline/QueryTaxDeadline.js.map +1 -1
  23. package/es/types/Interface/models/IPayment.d.ts +1 -0
  24. package/es/types/Interface/models/IPayment.d.ts.map +1 -1
  25. package/es/types/Interface/models/IPayment.js.map +1 -1
  26. package/es/types/index.d.ts +1 -0
  27. package/es/types/index.d.ts.map +1 -1
  28. package/es/types/index.js +1 -0
  29. package/es/types/index.js.map +1 -1
  30. package/js/api/resources/AccountingFiles.js +3 -0
  31. package/js/api/resources/AccountingFiles.js.map +1 -1
  32. package/js/types/Enum/Log.js +1 -1
  33. package/js/types/Enum/Log.js.map +1 -1
  34. package/js/types/Interface/api/accountingFiles/Read.js +6 -0
  35. package/js/types/Interface/api/accountingFiles/Read.js.map +1 -0
  36. package/js/types/Interface/api/exercice/CreateExercice.js +1 -0
  37. package/js/types/Interface/api/exercice/CreateExercice.js.map +1 -1
  38. package/js/types/Interface/api/exercice/UpdateExercice.js +1 -0
  39. package/js/types/Interface/api/exercice/UpdateExercice.js.map +1 -1
  40. package/js/types/Interface/api/taxDeadline/QueryTaxDeadline.js +2 -1
  41. package/js/types/Interface/api/taxDeadline/QueryTaxDeadline.js.map +1 -1
  42. package/js/types/Interface/models/IPayment.js.map +1 -1
  43. package/js/types/index.js +34 -24
  44. package/js/types/index.js.map +1 -1
  45. package/package.json +1 -1
  46. package/ts/api/resources/AccountingFiles.ts +5 -1
  47. package/ts/types/Enum/Log.ts +1 -1
  48. package/ts/types/Interface/api/accountingFiles/Read.ts +6 -0
  49. package/ts/types/Interface/api/exercice/CreateExercice.ts +6 -0
  50. package/ts/types/Interface/api/exercice/UpdateExercice.ts +6 -0
  51. package/ts/types/Interface/api/taxDeadline/QueryTaxDeadline.ts +8 -4
  52. package/ts/types/Interface/models/IPayment.ts +1 -0
  53. package/ts/types/index.ts +1 -0
@@ -1 +1 @@
1
- {"version":3,"file":"UpdateExercice.js","names":["_classValidator","require","_decorators","_boolean","UpdateExercice","exports","__decorate","ApiPropertyOptional","IsDateString","IsOptional","IsBoolean","ToBoolean","IsNumber"],"sources":["../../../../../ts/types/Interface/api/exercice/UpdateExercice.ts"],"sourcesContent":["import {\n IsBoolean, IsDateString, IsNumber, IsOptional,\n} from 'class-validator';\nimport { ApiPropertyOptional } from '../../../../utils/decorators';\nimport { ToBoolean } from '../../../../utils/transforms/boolean.transform';\n\nexport class UpdateExercice {\n @ApiPropertyOptional()\n @IsDateString()\n @IsOptional()\n startDate?: string;\n\n @ApiPropertyOptional()\n @IsDateString()\n @IsOptional()\n endDate?: string;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n isBack?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n allAnnote?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n current?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n withApproval?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n reviewGuide?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n summaryNote?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n receiptJeDeclare?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n annualFolderEdition?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n processClossingExercice?: boolean;\n\n @ApiPropertyOptional()\n @IsNumber()\n @IsOptional()\n idSociety?: number;\n\n @ApiPropertyOptional()\n @IsNumber()\n @IsOptional()\n turnoverMax?: number;\n\n @ApiPropertyOptional()\n @IsNumber()\n @IsOptional()\n benefit?: number;\n}"],"mappings":";;;;;;AAAA,IAAAA,eAAA,GAAAC,OAAA;AAGA,IAAAC,WAAA,GAAAD,OAAA;AACA,IAAAE,QAAA,GAAAF,OAAA;;;;;;;;;;;AAEM,MAAOG,cAAc;AA+E1BC,OAAA,CA/EYD,cAAc,GAAdA,cAAc;AACzBE,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAC,4BAAY,GAAE,EACd,IAAAC,0BAAU,GAAE,E,kFACM;AAEnBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAC,4BAAY,GAAE,EACd,IAAAC,0BAAU,GAAE,E,gFACI;AAEjBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,gFACI;AAEjBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,mFACO;AAEpBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,iFACK;AAElBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,sFACU;AAEvBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,qFACS;AAEtBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,qFACS;AAEtBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,0FACc;AAE3BH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,6FACiB;AAE9BH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,iGACqB;AAElCH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAK,wBAAQ,GAAE,EACV,IAAAH,0BAAU,GAAE,E,kFACM;AAEnBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAK,wBAAQ,GAAE,EACV,IAAAH,0BAAU,GAAE,E,oFACQ;AAErBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAK,wBAAQ,GAAE,EACV,IAAAH,0BAAU,GAAE,E,gFACI"}
1
+ {"version":3,"file":"UpdateExercice.js","names":["_classValidator","require","_decorators","_boolean","UpdateExercice","exports","__decorate","ApiPropertyOptional","IsDateString","IsOptional","IsBoolean","ToBoolean","IsNumber"],"sources":["../../../../../ts/types/Interface/api/exercice/UpdateExercice.ts"],"sourcesContent":["import {\n IsBoolean, IsDateString, IsNumber, IsOptional,\n} from 'class-validator';\nimport { ApiPropertyOptional } from '../../../../utils/decorators';\nimport { ToBoolean } from '../../../../utils/transforms/boolean.transform';\n\nexport class UpdateExercice {\n @ApiPropertyOptional()\n @IsDateString()\n @IsOptional()\n startDate?: string;\n\n @ApiPropertyOptional()\n @IsDateString()\n @IsOptional()\n endDate?: string;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n isBack?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n allAnnote?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n current?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n withApproval?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n reviewGuide?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n summaryNote?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n receiptJeDeclare?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n annualFolderEdition?: boolean;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n processClossingExercice?: boolean;\n\n @ApiPropertyOptional()\n @IsNumber()\n @IsOptional()\n idSociety?: number;\n\n @ApiPropertyOptional()\n @IsNumber()\n @IsOptional()\n turnoverMax?: number;\n\n @ApiPropertyOptional()\n @IsNumber()\n @IsOptional()\n benefit?: number;\n\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n isDefault?: boolean;\n}"],"mappings":";;;;;;AAAA,IAAAA,eAAA,GAAAC,OAAA;AAGA,IAAAC,WAAA,GAAAD,OAAA;AACA,IAAAE,QAAA,GAAAF,OAAA;;;;;;;;;;;AAEM,MAAOG,cAAc;AAqF1BC,OAAA,CArFYD,cAAc,GAAdA,cAAc;AACzBE,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAC,4BAAY,GAAE,EACd,IAAAC,0BAAU,GAAE,E,kFACM;AAEnBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAC,4BAAY,GAAE,EACd,IAAAC,0BAAU,GAAE,E,gFACI;AAEjBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,gFACI;AAEjBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,mFACO;AAEpBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,iFACK;AAElBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,sFACU;AAEvBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,qFACS;AAEtBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,qFACS;AAEtBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,0FACc;AAE3BH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,6FACiB;AAE9BH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,iGACqB;AAElCH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAK,wBAAQ,GAAE,EACV,IAAAH,0BAAU,GAAE,E,kFACM;AAEnBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAK,wBAAQ,GAAE,EACV,IAAAH,0BAAU,GAAE,E,oFACQ;AAErBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAK,wBAAQ,GAAE,EACV,IAAAH,0BAAU,GAAE,E,gFACI;AAEjBH,UAAA,EAAC,IAAAC,+BAAmB,GAAE,EACrB,IAAAG,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAF,0BAAU,GAAE,E,mFACO"}
@@ -128,10 +128,11 @@ class QueryCompanyTaxesByCollaborater {}
128
128
  exports.QueryCompanyTaxesByCollaborater = QueryCompanyTaxesByCollaborater;
129
129
  __decorate([(0, _utils.ApiProperty)({
130
130
  description: 'Id collaborater'
131
- }), (0, _classValidator.IsNumber)(), __metadata("design:type", Number)], QueryCompanyTaxesByCollaborater.prototype, "idUser", void 0);
131
+ }), __metadata("design:type", Object)], QueryCompanyTaxesByCollaborater.prototype, "idUser", void 0);
132
132
  __decorate([(0, _utils.ApiProperty)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], QueryCompanyTaxesByCollaborater.prototype, "startDate", void 0);
133
133
  __decorate([(0, _utils.ApiProperty)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], QueryCompanyTaxesByCollaborater.prototype, "endDate", void 0);
134
134
  __decorate([(0, _utils.ApiPropertyOptional)({
135
135
  description: 'Company key word'
136
136
  }), (0, _classValidator.IsString)(), (0, _classValidator.IsOptional)(), __metadata("design:type", String)], QueryCompanyTaxesByCollaborater.prototype, "search", void 0);
137
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsNumber)(), (0, _classValidator.IsOptional)(), __metadata("design:type", Number)], QueryCompanyTaxesByCollaborater.prototype, "idState", void 0);
137
138
  //# sourceMappingURL=QueryTaxDeadline.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"QueryTaxDeadline.js","names":["_classValidator","require","_utils","_","_ComptaType","_TaxSystem","_Supervision","_BalanceSheet","QueryTaxDeadline","exports","__decorate","ApiProperty","description","ApiPropertyOptional","enum","VatRegime","ComptaType","TaxSystem","BalanceSheetState","Supervision","BankCollectingState","IsOptional","IsEnum","ToDoOrDone","IsArray","IsString","each","IsBoolean","QueryTaxDeadlineStatistics","QueryCompanyTaxesByCollaborater","IsNumber","IsDateString"],"sources":["../../../../../ts/types/Interface/api/taxDeadline/QueryTaxDeadline.ts"],"sourcesContent":["import {\n IsOptional, IsEnum, IsNumber, IsDateString, IsString, IsArray, IsBoolean,\n} from 'class-validator';\nimport { ApiProperty, ApiPropertyOptional } from '../../../../utils';\nimport {\n VatRegime, ToDoOrDone, BankCollectingState,\n} from '../../..';\nimport { ComptaType } from '../../../Enum/ComptaType';\nimport { TaxSystem } from '../../../Enum/TaxSystem';\nimport { Supervision } from '../../../Enum/Supervision';\nimport { BalanceSheetState } from '../../../Enum/BalanceSheet';\n\nexport class QueryTaxDeadline {\n @ApiProperty({ description: 'Identifiant du collaborateur' })\n idUser: number | number[];\n\n @ApiPropertyOptional({ description: 'Chiffre d\\'affaires prévisionnel minimum' })\n minimalTurnover?: number;\n\n @ApiPropertyOptional({ description: 'Chiffre d\\'affaires prévisionnel maximum' })\n maximalTurnover?: number;\n\n @ApiPropertyOptional({ description: 'Régime de TVA', enum: VatRegime })\n idVatRegime?: VatRegime | VatRegime[];\n\n @ApiPropertyOptional({ description: 'Type de comptabilité', enum: ComptaType })\n idComptaType?: ComptaType | ComptaType[];\n\n @ApiPropertyOptional({ description: 'Type de fiscalité', enum: TaxSystem })\n idTaxSystem?: TaxSystem | TaxSystem[];\n\n @ApiPropertyOptional({ description: 'État du bilan', enum: BalanceSheetState })\n idBalanceSheetState?: BalanceSheetState | BalanceSheetState[];\n\n @ApiPropertyOptional({ description: 'Date de clôture (format MM)' })\n closingDate?: string | string[];\n\n @ApiPropertyOptional({ description: 'Année de clôture (format YYYY)' })\n year?: string | string[];\n\n @ApiPropertyOptional({ description: 'Recherche par nom, code dia, id' })\n search?: string;\n\n @ApiPropertyOptional({ description: 'Récupérer les exercices qui ont une date de fin inférieure à X mois à partir d\\'aujourd\\'hui' })\n additionalMonths?: number;\n\n @ApiPropertyOptional({ description: 'Date de clôture supérieure ou égale à (format YYYY-MM-DD)' })\n minimalEndDate?: string;\n\n @ApiPropertyOptional({ description: 'Date de clôture inférieure ou égale à (format YYYY-MM-DD)' })\n maximalEndDate?: string;\n\n @ApiPropertyOptional({ description: 'État de la supervision', enum: Supervision })\n idSupervisionState?: Supervision;\n\n @ApiPropertyOptional({ description: 'État de l encaissement', enum: BankCollectingState })\n bankCollectingState?: BankCollectingState[];\n\n @ApiPropertyOptional({ description: 'Statuts de l\\'IS/IR' })\n @IsOptional()\n @IsEnum(ToDoOrDone)\n idTaxStatus?: ToDoOrDone;\n\n @ApiPropertyOptional({ description: 'Forme juridique' })\n @IsOptional()\n @IsArray()\n @IsString({\n each: true,\n })\n idLegalForm?: string | string[];\n\n @ApiPropertyOptional({ description: 'Exercice cloturé ou non' })\n @IsOptional()\n @IsBoolean()\n isClosed?: boolean;\n}\n\nexport class QueryTaxDeadlineStatistics {\n @ApiProperty({ description: 'Identifiant du collaborateur' })\n idUser: number | number[];\n\n @ApiPropertyOptional({ description: 'Chiffre d\\'affaires prévisionnel minimum' })\n minimalTurnover?: number;\n\n @ApiPropertyOptional({ description: 'Chiffre d\\'affaires prévisionnel maximum' })\n maximalTurnover?: number;\n\n @ApiPropertyOptional({ description: 'Régime de TVA', enum: VatRegime })\n idVatRegime?: VatRegime | VatRegime[];\n\n @ApiPropertyOptional({ description: 'Type de comptabilité', enum: ComptaType })\n idComptaType?: ComptaType | ComptaType[];\n\n @ApiPropertyOptional({ description: 'Type de fiscalité', enum: TaxSystem })\n idTaxSystem?: TaxSystem | TaxSystem[];\n\n @ApiPropertyOptional({ description: 'État du bilan', enum: BalanceSheetState })\n idBalanceSheetState?: BalanceSheetState | BalanceSheetState[];\n\n @ApiPropertyOptional({ description: 'Date de clôture (format MM-DD)' })\n closingDate?: string;\n\n @ApiPropertyOptional({ description: 'Année de clôture (format YYYY)' })\n year?: string | string[];\n\n @ApiPropertyOptional({ description: 'Recherche par nom, code dia, id' })\n search?: string;\n\n @ApiPropertyOptional({ description: 'Récupérer les exercices qui ont une date de fin inférieure à X mois à partir d\\'aujourd\\'hui' })\n additionalMonths?: string;\n}\n\nexport class QueryCompanyTaxesByCollaborater {\n @ApiProperty({ description: 'Id collaborater' })\n @IsNumber()\n idUser: number;\n\n @ApiProperty()\n @IsDateString()\n startDate: string;\n\n @ApiProperty()\n @IsDateString()\n endDate: string;\n\n @ApiPropertyOptional({ description: 'Company key word' })\n @IsString()\n @IsOptional()\n search?: string;\n}"],"mappings":"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"}
1
+ {"version":3,"file":"QueryTaxDeadline.js","names":["_classValidator","require","_utils","_","_ComptaType","_TaxSystem","_Supervision","_BalanceSheet","QueryTaxDeadline","exports","__decorate","ApiProperty","description","ApiPropertyOptional","enum","VatRegime","ComptaType","TaxSystem","BalanceSheetState","Supervision","BankCollectingState","IsOptional","IsEnum","ToDoOrDone","IsArray","IsString","each","IsBoolean","QueryTaxDeadlineStatistics","QueryCompanyTaxesByCollaborater","IsDateString","IsNumber"],"sources":["../../../../../ts/types/Interface/api/taxDeadline/QueryTaxDeadline.ts"],"sourcesContent":["import {\n IsOptional, IsEnum, IsDateString, IsString, IsArray, IsBoolean, IsNumber,\n} from 'class-validator';\nimport { ApiProperty, ApiPropertyOptional } from '../../../../utils';\nimport {\n VatRegime, ToDoOrDone, BankCollectingState, TaxState,\n} from '../../..';\nimport { ComptaType } from '../../../Enum/ComptaType';\nimport { TaxSystem } from '../../../Enum/TaxSystem';\nimport { Supervision } from '../../../Enum/Supervision';\nimport { BalanceSheetState } from '../../../Enum/BalanceSheet';\n\nexport class QueryTaxDeadline {\n @ApiProperty({ description: 'Identifiant du collaborateur' })\n idUser: number | number[];\n\n @ApiPropertyOptional({ description: 'Chiffre d\\'affaires prévisionnel minimum' })\n minimalTurnover?: number;\n\n @ApiPropertyOptional({ description: 'Chiffre d\\'affaires prévisionnel maximum' })\n maximalTurnover?: number;\n\n @ApiPropertyOptional({ description: 'Régime de TVA', enum: VatRegime })\n idVatRegime?: VatRegime | VatRegime[];\n\n @ApiPropertyOptional({ description: 'Type de comptabilité', enum: ComptaType })\n idComptaType?: ComptaType | ComptaType[];\n\n @ApiPropertyOptional({ description: 'Type de fiscalité', enum: TaxSystem })\n idTaxSystem?: TaxSystem | TaxSystem[];\n\n @ApiPropertyOptional({ description: 'État du bilan', enum: BalanceSheetState })\n idBalanceSheetState?: BalanceSheetState | BalanceSheetState[];\n\n @ApiPropertyOptional({ description: 'Date de clôture (format MM)' })\n closingDate?: string | string[];\n\n @ApiPropertyOptional({ description: 'Année de clôture (format YYYY)' })\n year?: string | string[];\n\n @ApiPropertyOptional({ description: 'Recherche par nom, code dia, id' })\n search?: string;\n\n @ApiPropertyOptional({ description: 'Récupérer les exercices qui ont une date de fin inférieure à X mois à partir d\\'aujourd\\'hui' })\n additionalMonths?: number;\n\n @ApiPropertyOptional({ description: 'Date de clôture supérieure ou égale à (format YYYY-MM-DD)' })\n minimalEndDate?: string;\n\n @ApiPropertyOptional({ description: 'Date de clôture inférieure ou égale à (format YYYY-MM-DD)' })\n maximalEndDate?: string;\n\n @ApiPropertyOptional({ description: 'État de la supervision', enum: Supervision })\n idSupervisionState?: Supervision;\n\n @ApiPropertyOptional({ description: 'État de l encaissement', enum: BankCollectingState })\n bankCollectingState?: BankCollectingState[];\n\n @ApiPropertyOptional({ description: 'Statuts de l\\'IS/IR' })\n @IsOptional()\n @IsEnum(ToDoOrDone)\n idTaxStatus?: ToDoOrDone;\n\n @ApiPropertyOptional({ description: 'Forme juridique' })\n @IsOptional()\n @IsArray()\n @IsString({\n each: true,\n })\n idLegalForm?: string | string[];\n\n @ApiPropertyOptional({ description: 'Exercice cloturé ou non' })\n @IsOptional()\n @IsBoolean()\n isClosed?: boolean;\n}\n\nexport class QueryTaxDeadlineStatistics {\n @ApiProperty({ description: 'Identifiant du collaborateur' })\n idUser: number | number[];\n\n @ApiPropertyOptional({ description: 'Chiffre d\\'affaires prévisionnel minimum' })\n minimalTurnover?: number;\n\n @ApiPropertyOptional({ description: 'Chiffre d\\'affaires prévisionnel maximum' })\n maximalTurnover?: number;\n\n @ApiPropertyOptional({ description: 'Régime de TVA', enum: VatRegime })\n idVatRegime?: VatRegime | VatRegime[];\n\n @ApiPropertyOptional({ description: 'Type de comptabilité', enum: ComptaType })\n idComptaType?: ComptaType | ComptaType[];\n\n @ApiPropertyOptional({ description: 'Type de fiscalité', enum: TaxSystem })\n idTaxSystem?: TaxSystem | TaxSystem[];\n\n @ApiPropertyOptional({ description: 'État du bilan', enum: BalanceSheetState })\n idBalanceSheetState?: BalanceSheetState | BalanceSheetState[];\n\n @ApiPropertyOptional({ description: 'Date de clôture (format MM-DD)' })\n closingDate?: string;\n\n @ApiPropertyOptional({ description: 'Année de clôture (format YYYY)' })\n year?: string | string[];\n\n @ApiPropertyOptional({ description: 'Recherche par nom, code dia, id' })\n search?: string;\n\n @ApiPropertyOptional({ description: 'Récupérer les exercices qui ont une date de fin inférieure à X mois à partir d\\'aujourd\\'hui' })\n additionalMonths?: string;\n}\n\nexport class QueryCompanyTaxesByCollaborater {\n @ApiProperty({ description: 'Id collaborater' })\n idUser: number | number[];\n\n @ApiProperty()\n @IsDateString()\n startDate: string;\n\n @ApiProperty()\n @IsDateString()\n endDate: string;\n\n @ApiPropertyOptional({ description: 'Company key word' })\n @IsString()\n @IsOptional()\n search?: string;\n\n @ApiPropertyOptional()\n @IsNumber()\n @IsOptional()\n idState: TaxState;\n}"],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"IPayment.js","names":[],"sources":["../../../../ts/types/Interface/models/IPayment.ts"],"sourcesContent":["import { IPrestation } from './IPrestation';\nimport { IPaymentMethod } from './IPaymentMethod';\nimport { IUser } from './IUser';\nimport { IExercice } from './IExercice';\nimport { IFile } from './IFile';\n\n// payments\nexport interface IPayment {\n id?: number;\n amount: number;\n amountPayed?: number;\n isLate?: boolean;\n isOverdue?: boolean;\n isOverpaid?: boolean;\n isFirst?: boolean;\n toCollect?: boolean;\n isAsset?: boolean;\n isFree?: boolean;\n dateOverdue?: Date | null;\n datePayment: Date;\n comment?: string | null;\n done?: boolean | null;\n refInternalInvoicing?: number;\n noInternalInvoice?: boolean;\n idPrestation: number;\n idExercice?: number | null;\n idUser?: number | null;\n idPaymentMethod: number;\n idFile?: number | null;\n createdAt?: Date | null;\n updatedAt?: Date | null;\n\n // Associations\n paymentsPrestations?: IPrestation;\n paymentsMethod?: IPaymentMethod;\n user?: IUser;\n exercice?: IExercice;\n files?: IFile;\n}\n"],"mappings":""}
1
+ {"version":3,"file":"IPayment.js","names":[],"sources":["../../../../ts/types/Interface/models/IPayment.ts"],"sourcesContent":["import { IPrestation } from './IPrestation';\nimport { IPaymentMethod } from './IPaymentMethod';\nimport { IUser } from './IUser';\nimport { IExercice } from './IExercice';\nimport { IFile } from './IFile';\n\n// payments\nexport interface IPayment {\n id?: number;\n amount: number;\n amountPayed?: number;\n isLate?: boolean;\n isOverdue?: boolean;\n isOverpaid?: boolean;\n isFirst?: boolean;\n toCollect?: boolean;\n isAsset?: boolean;\n isFree?: boolean;\n isHiddenCustomer?: boolean;\n dateOverdue?: Date | null;\n datePayment: Date;\n comment?: string | null;\n done?: boolean | null;\n refInternalInvoicing?: number;\n noInternalInvoice?: boolean;\n idPrestation: number;\n idExercice?: number | null;\n idUser?: number | null;\n idPaymentMethod: number;\n idFile?: number | null;\n createdAt?: Date | null;\n updatedAt?: Date | null;\n\n // Associations\n paymentsPrestations?: IPrestation;\n paymentsMethod?: IPaymentMethod;\n user?: IUser;\n exercice?: IExercice;\n files?: IFile;\n}\n"],"mappings":""}
package/js/types/index.js CHANGED
@@ -5673,6 +5673,16 @@ Object.keys(_OcrValue).forEach(function (key) {
5673
5673
  }
5674
5674
  });
5675
5675
  });
5676
+ var _Read = require("./Interface/api/accountingFiles/Read");
5677
+ Object.keys(_Read).forEach(function (key) {
5678
+ if (key === "default" || key === "__esModule") return;
5679
+ Object.defineProperty(exports, key, {
5680
+ enumerable: true,
5681
+ get: function () {
5682
+ return _Read[key];
5683
+ }
5684
+ });
5685
+ });
5676
5686
  var _StockEntries = require("./Interface/api/stock/StockEntries");
5677
5687
  Object.keys(_StockEntries).forEach(function (key) {
5678
5688
  if (key === "default" || key === "__esModule") return;
@@ -6703,13 +6713,13 @@ Object.keys(_UpdatePartner).forEach(function (key) {
6703
6713
  }
6704
6714
  });
6705
6715
  });
6706
- var _Read = require("./Interface/api/partner/Read");
6707
- Object.keys(_Read).forEach(function (key) {
6716
+ var _Read2 = require("./Interface/api/partner/Read");
6717
+ Object.keys(_Read2).forEach(function (key) {
6708
6718
  if (key === "default" || key === "__esModule") return;
6709
6719
  Object.defineProperty(exports, key, {
6710
6720
  enumerable: true,
6711
6721
  get: function () {
6712
- return _Read[key];
6722
+ return _Read2[key];
6713
6723
  }
6714
6724
  });
6715
6725
  });
@@ -7493,13 +7503,13 @@ Object.keys(_UpdateBudgetPermanentToken).forEach(function (key) {
7493
7503
  }
7494
7504
  });
7495
7505
  });
7496
- var _Read2 = require("./Interface/api/budgetInsight/Read");
7497
- Object.keys(_Read2).forEach(function (key) {
7506
+ var _Read3 = require("./Interface/api/budgetInsight/Read");
7507
+ Object.keys(_Read3).forEach(function (key) {
7498
7508
  if (key === "default" || key === "__esModule") return;
7499
7509
  Object.defineProperty(exports, key, {
7500
7510
  enumerable: true,
7501
7511
  get: function () {
7502
- return _Read2[key];
7512
+ return _Read3[key];
7503
7513
  }
7504
7514
  });
7505
7515
  });
@@ -8193,13 +8203,13 @@ Object.keys(_readAllCalendarEvent).forEach(function (key) {
8193
8203
  }
8194
8204
  });
8195
8205
  });
8196
- var _Read3 = require("./Interface/api/checklist/Read");
8197
- Object.keys(_Read3).forEach(function (key) {
8206
+ var _Read4 = require("./Interface/api/checklist/Read");
8207
+ Object.keys(_Read4).forEach(function (key) {
8198
8208
  if (key === "default" || key === "__esModule") return;
8199
8209
  Object.defineProperty(exports, key, {
8200
8210
  enumerable: true,
8201
8211
  get: function () {
8202
- return _Read3[key];
8212
+ return _Read4[key];
8203
8213
  }
8204
8214
  });
8205
8215
  });
@@ -8493,13 +8503,13 @@ Object.keys(_Create4).forEach(function (key) {
8493
8503
  }
8494
8504
  });
8495
8505
  });
8496
- var _Read4 = require("./Interface/api/commercialManagement/Read");
8497
- Object.keys(_Read4).forEach(function (key) {
8506
+ var _Read5 = require("./Interface/api/commercialManagement/Read");
8507
+ Object.keys(_Read5).forEach(function (key) {
8498
8508
  if (key === "default" || key === "__esModule") return;
8499
8509
  Object.defineProperty(exports, key, {
8500
8510
  enumerable: true,
8501
8511
  get: function () {
8502
- return _Read4[key];
8512
+ return _Read5[key];
8503
8513
  }
8504
8514
  });
8505
8515
  });
@@ -8633,13 +8643,13 @@ Object.keys(_ProcessBankAccount).forEach(function (key) {
8633
8643
  }
8634
8644
  });
8635
8645
  });
8636
- var _Read5 = require("./Interface/api/qonto/Read");
8637
- Object.keys(_Read5).forEach(function (key) {
8646
+ var _Read6 = require("./Interface/api/qonto/Read");
8647
+ Object.keys(_Read6).forEach(function (key) {
8638
8648
  if (key === "default" || key === "__esModule") return;
8639
8649
  Object.defineProperty(exports, key, {
8640
8650
  enumerable: true,
8641
8651
  get: function () {
8642
- return _Read5[key];
8652
+ return _Read6[key];
8643
8653
  }
8644
8654
  });
8645
8655
  });
@@ -8653,13 +8663,13 @@ Object.keys(_Create6).forEach(function (key) {
8653
8663
  }
8654
8664
  });
8655
8665
  });
8656
- var _Read6 = require("./Interface/api/file/Read");
8657
- Object.keys(_Read6).forEach(function (key) {
8666
+ var _Read7 = require("./Interface/api/file/Read");
8667
+ Object.keys(_Read7).forEach(function (key) {
8658
8668
  if (key === "default" || key === "__esModule") return;
8659
8669
  Object.defineProperty(exports, key, {
8660
8670
  enumerable: true,
8661
8671
  get: function () {
8662
- return _Read6[key];
8672
+ return _Read7[key];
8663
8673
  }
8664
8674
  });
8665
8675
  });
@@ -8873,13 +8883,13 @@ Object.keys(_Update4).forEach(function (key) {
8873
8883
  }
8874
8884
  });
8875
8885
  });
8876
- var _Read7 = require("./Interface/api/rule/Read");
8877
- Object.keys(_Read7).forEach(function (key) {
8886
+ var _Read8 = require("./Interface/api/rule/Read");
8887
+ Object.keys(_Read8).forEach(function (key) {
8878
8888
  if (key === "default" || key === "__esModule") return;
8879
8889
  Object.defineProperty(exports, key, {
8880
8890
  enumerable: true,
8881
8891
  get: function () {
8882
- return _Read7[key];
8892
+ return _Read8[key];
8883
8893
  }
8884
8894
  });
8885
8895
  });
@@ -8953,13 +8963,13 @@ Object.keys(_QueryGetAllPrestations).forEach(function (key) {
8953
8963
  }
8954
8964
  });
8955
8965
  });
8956
- var _Read8 = require("./Interface/api/commercialImport/Read");
8957
- Object.keys(_Read8).forEach(function (key) {
8966
+ var _Read9 = require("./Interface/api/commercialImport/Read");
8967
+ Object.keys(_Read9).forEach(function (key) {
8958
8968
  if (key === "default" || key === "__esModule") return;
8959
8969
  Object.defineProperty(exports, key, {
8960
8970
  enumerable: true,
8961
8971
  get: function () {
8962
- return _Read8[key];
8972
+ return _Read9[key];
8963
8973
  }
8964
8974
  });
8965
8975
  });