@silexpert/core 0.4.21 → 0.4.23

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 (88) hide show
  1. package/es/api/resources/Account.d.ts +7 -1
  2. package/es/api/resources/Account.d.ts.map +1 -1
  3. package/es/api/resources/Account.js +15 -0
  4. package/es/api/resources/Account.js.map +1 -1
  5. package/es/api/resources/Cerfa.d.ts +5 -1
  6. package/es/api/resources/Cerfa.d.ts.map +1 -1
  7. package/es/api/resources/Cerfa.js +8 -0
  8. package/es/api/resources/Cerfa.js.map +1 -1
  9. package/es/api/resources/Sponsorship.d.ts +11 -0
  10. package/es/api/resources/Sponsorship.d.ts.map +1 -0
  11. package/es/api/resources/Sponsorship.js +34 -0
  12. package/es/api/resources/Sponsorship.js.map +1 -0
  13. package/es/api/resources.d.ts +2 -0
  14. package/es/api/resources.d.ts.map +1 -1
  15. package/es/api/resources.js +2 -0
  16. package/es/api/resources.js.map +1 -1
  17. package/es/types/Enum/SponsorshipState.d.ts +7 -0
  18. package/es/types/Enum/SponsorshipState.d.ts.map +1 -0
  19. package/es/types/Enum/SponsorshipState.js +8 -0
  20. package/es/types/Enum/SponsorshipState.js.map +1 -0
  21. package/es/types/Interface/api/cerfa/CreateCerfa.d.ts +512 -0
  22. package/es/types/Interface/api/cerfa/CreateCerfa.d.ts.map +1 -1
  23. package/es/types/Interface/api/cerfa/CreateCerfa.js +421 -0
  24. package/es/types/Interface/api/cerfa/CreateCerfa.js.map +1 -1
  25. package/es/types/Interface/models/IAccount.d.ts +1 -0
  26. package/es/types/Interface/models/IAccount.d.ts.map +1 -1
  27. package/es/types/Interface/models/IAccount.js.map +1 -1
  28. package/es/types/Interface/models/IAccountExtend.d.ts +6 -0
  29. package/es/types/Interface/models/IAccountExtend.d.ts.map +1 -0
  30. package/es/types/Interface/models/IAccountExtend.js +2 -0
  31. package/es/types/Interface/models/IAccountExtend.js.map +1 -0
  32. package/es/types/Interface/models/IApiError.d.ts +1 -0
  33. package/es/types/Interface/models/IApiError.d.ts.map +1 -1
  34. package/es/types/Interface/models/IApiError.js +1 -0
  35. package/es/types/Interface/models/IApiError.js.map +1 -1
  36. package/es/types/Interface/models/ISponsorship.d.ts.map +1 -1
  37. package/es/types/Interface/models/ISponsorship.js.map +1 -1
  38. package/es/types/Interface/models/ISponsorshipCheck.d.ts +6 -0
  39. package/es/types/Interface/models/ISponsorshipCheck.d.ts.map +1 -0
  40. package/es/types/Interface/models/ISponsorshipCheck.js +2 -0
  41. package/es/types/Interface/models/ISponsorshipCheck.js.map +1 -0
  42. package/es/types/Interface/models/ISponsorshipLink.d.ts.map +1 -1
  43. package/es/types/Interface/models/ISponsorshipLink.js.map +1 -1
  44. package/es/types/index.d.ts +3 -1
  45. package/es/types/index.d.ts.map +1 -1
  46. package/es/types/index.js +3 -1
  47. package/es/types/index.js.map +1 -1
  48. package/js/api/resources/Account.js +22 -0
  49. package/js/api/resources/Account.js.map +1 -1
  50. package/js/api/resources/Cerfa.js +9 -0
  51. package/js/api/resources/Cerfa.js.map +1 -1
  52. package/js/api/resources/Sponsorship.js +58 -0
  53. package/js/api/resources/Sponsorship.js.map +1 -0
  54. package/js/api/resources.js +3 -0
  55. package/js/api/resources.js.map +1 -1
  56. package/js/types/Enum/SponsorshipState.js +14 -0
  57. package/js/types/Enum/SponsorshipState.js.map +1 -0
  58. package/js/types/Interface/api/cerfa/CreateCerfa.js +277 -1
  59. package/js/types/Interface/api/cerfa/CreateCerfa.js.map +1 -1
  60. package/js/types/Interface/models/IAccountExtend.js +6 -0
  61. package/js/types/Interface/models/IAccountExtend.js.map +1 -0
  62. package/js/types/Interface/models/IApiError.js +2 -1
  63. package/js/types/Interface/models/IApiError.js.map +1 -1
  64. package/js/types/Interface/models/ISponsorshipCheck.js +6 -0
  65. package/js/types/Interface/models/ISponsorshipCheck.js.map +1 -0
  66. package/js/types/index.js +27 -3
  67. package/js/types/index.js.map +1 -1
  68. package/package.json +16 -16
  69. package/ts/api/resources/Account.ts +24 -1
  70. package/ts/api/resources/Cerfa.ts +9 -1
  71. package/ts/api/resources/Sponsorship.ts +31 -0
  72. package/ts/api/resources.ts +2 -0
  73. package/ts/types/Enum/SponsorshipState.ts +6 -0
  74. package/ts/types/Interface/api/cerfa/CreateCerfa.ts +723 -0
  75. package/ts/types/Interface/models/IAccount.ts +1 -0
  76. package/ts/types/Interface/models/IAccountExtend.ts +6 -0
  77. package/ts/types/Interface/models/IApiError.ts +1 -0
  78. package/ts/types/Interface/models/ISponsorship.ts +0 -1
  79. package/ts/types/Interface/models/ISponsorshipCheck.ts +6 -0
  80. package/ts/types/Interface/models/ISponsorshipLink.ts +0 -1
  81. package/ts/types/index.ts +3 -1
  82. package/es/types/Enum/SponsorshipEmailState.d.ts +0 -6
  83. package/es/types/Enum/SponsorshipEmailState.d.ts.map +0 -1
  84. package/es/types/Enum/SponsorshipEmailState.js +0 -7
  85. package/es/types/Enum/SponsorshipEmailState.js.map +0 -1
  86. package/js/types/Enum/SponsorshipEmailState.js +0 -13
  87. package/js/types/Enum/SponsorshipEmailState.js.map +0 -1
  88. package/ts/types/Enum/SponsorshipEmailState.ts +0 -5
@@ -110,4 +110,425 @@ __decorate([
110
110
  ApiPropertyOptional(),
111
111
  __metadata("design:type", Object)
112
112
  ], ParamsGenerate2035.prototype, "miscellaneousToBeDeductedTotal", void 0);
113
+ /**
114
+ * CERFA 2033 TYPES
115
+ */
116
+ export class Cerfa2033Society {
117
+ }
118
+ export class Cerfa2033FixedAsset {
119
+ }
120
+ export class Cerfa2033CirculatingActive {
121
+ }
122
+ export class Cerfa2033Equity {
123
+ }
124
+ export class Cerfa2033Debts {
125
+ }
126
+ export class Cerfa2033Referrals {
127
+ }
128
+ export class Cerfa2033ExeploitationProducts {
129
+ }
130
+ export class Cerfa2033ExploitationExpenses {
131
+ }
132
+ export class Cerfa2033AccountingIncome {
133
+ }
134
+ export class Cerfa2033ExploitationResult {
135
+ }
136
+ export class Cerfa2033FiscalResult {
137
+ }
138
+ export class Cerfa2033Immobilizations {
139
+ }
140
+ export class Cerfa2033Amortizations {
141
+ }
142
+ export class Cerfa2033Values {
143
+ }
144
+ export class Cerfa2033ProvisionNatures {
145
+ }
146
+ export class Cerfa2033ProvisionMoves {
147
+ }
148
+ export class Cerfa2033ReportableDeficits {
149
+ }
150
+ export class Cerfa2033ApplicationDeficits {
151
+ }
152
+ export class Cerfa2033ApplicationDiverse {
153
+ }
154
+ export class Cerfa2033WorkForce {
155
+ }
156
+ export class ParamsGenerate2033 {
157
+ }
158
+ __decorate([
159
+ ApiProperty(),
160
+ __metadata("design:type", Boolean)
161
+ ], ParamsGenerate2033.prototype, "isTest", void 0);
162
+ __decorate([
163
+ ApiProperty(),
164
+ __metadata("design:type", Boolean)
165
+ ], ParamsGenerate2033.prototype, "isNil", void 0);
166
+ __decorate([
167
+ ApiPropertyOptional(),
168
+ __metadata("design:type", Object)
169
+ ], ParamsGenerate2033.prototype, "equityOtherReservePurchaseOfOriginalWorks", void 0);
170
+ __decorate([
171
+ ApiPropertyOptional(),
172
+ __metadata("design:type", Object)
173
+ ], ParamsGenerate2033.prototype, "referralFixedAssets", void 0);
174
+ __decorate([
175
+ ApiPropertyOptional(),
176
+ __metadata("design:type", Object)
177
+ ], ParamsGenerate2033.prototype, "referralDebtsMoreThanOneYear", void 0);
178
+ __decorate([
179
+ ApiPropertyOptional(),
180
+ __metadata("design:type", Object)
181
+ ], ParamsGenerate2033.prototype, "referralClaims", void 0);
182
+ __decorate([
183
+ ApiPropertyOptional(),
184
+ __metadata("design:type", Object)
185
+ ], ParamsGenerate2033.prototype, "saleOfMerchandiseExport", void 0);
186
+ __decorate([
187
+ ApiPropertyOptional(),
188
+ __metadata("design:type", Object)
189
+ ], ParamsGenerate2033.prototype, "saleOfProductionGoodsExport", void 0);
190
+ __decorate([
191
+ ApiPropertyOptional(),
192
+ __metadata("design:type", Object)
193
+ ], ParamsGenerate2033.prototype, "saleOfProductionServicesExport", void 0);
194
+ __decorate([
195
+ ApiPropertyOptional(),
196
+ __metadata("design:type", Object)
197
+ ], ParamsGenerate2033.prototype, "otherExpensesProvisions", void 0);
198
+ __decorate([
199
+ ApiPropertyOptional(),
200
+ __metadata("design:type", Object)
201
+ ], ParamsGenerate2033.prototype, "otherExpensesCotisations", void 0);
202
+ __decorate([
203
+ ApiPropertyOptional(),
204
+ __metadata("design:type", Object)
205
+ ], ParamsGenerate2033.prototype, "exceptionalExpensesSubscriptions", void 0);
206
+ __decorate([
207
+ ApiPropertyOptional(),
208
+ __metadata("design:type", Object)
209
+ ], ParamsGenerate2033.prototype, "exceptionalExpensesExceptional", void 0);
210
+ __decorate([
211
+ ApiPropertyOptional(),
212
+ __metadata("design:type", Object)
213
+ ], ParamsGenerate2033.prototype, "reinstatementsRemuneration", void 0);
214
+ __decorate([
215
+ ApiPropertyOptional(),
216
+ __metadata("design:type", Object)
217
+ ], ParamsGenerate2033.prototype, "reinstatementsAmortizations", void 0);
218
+ __decorate([
219
+ ApiPropertyOptional(),
220
+ __metadata("design:type", Object)
221
+ ], ParamsGenerate2033.prototype, "reinstatementsProvisions", void 0);
222
+ __decorate([
223
+ ApiPropertyOptional(),
224
+ __metadata("design:type", Object)
225
+ ], ParamsGenerate2033.prototype, "reinstatementsDiverse", void 0);
226
+ __decorate([
227
+ ApiPropertyOptional(),
228
+ __metadata("design:type", Object)
229
+ ], ParamsGenerate2033.prototype, "reinstatementsDeviations", void 0);
230
+ __decorate([
231
+ ApiPropertyOptional(),
232
+ __metadata("design:type", Object)
233
+ ], ParamsGenerate2033.prototype, "reinstatementsShareOfRent", void 0);
234
+ __decorate([
235
+ ApiPropertyOptional(),
236
+ __metadata("design:type", Object)
237
+ ], ParamsGenerate2033.prototype, "reinstatementsFractionOfRents", void 0);
238
+ __decorate([
239
+ ApiPropertyOptional(),
240
+ __metadata("design:type", Object)
241
+ ], ParamsGenerate2033.prototype, "reinstatementsRelatedCharges", void 0);
242
+ __decorate([
243
+ ApiPropertyOptional(),
244
+ __metadata("design:type", Object)
245
+ ], ParamsGenerate2033.prototype, "reinstatementsFiscalResult", void 0);
246
+ __decorate([
247
+ ApiPropertyOptional(),
248
+ __metadata("design:type", Object)
249
+ ], ParamsGenerate2033.prototype, "maritimeTransportDeduction", void 0);
250
+ __decorate([
251
+ ApiPropertyOptional(),
252
+ __metadata("design:type", Object)
253
+ ], ParamsGenerate2033.prototype, "newBusinessDeduction", void 0);
254
+ __decorate([
255
+ ApiPropertyOptional(),
256
+ __metadata("design:type", Object)
257
+ ], ParamsGenerate2033.prototype, "ZFUDeduction", void 0);
258
+ __decorate([
259
+ ApiPropertyOptional(),
260
+ __metadata("design:type", Object)
261
+ ], ParamsGenerate2033.prototype, "difficultBusinessDeduction", void 0);
262
+ __decorate([
263
+ ApiPropertyOptional(),
264
+ __metadata("design:type", Object)
265
+ ], ParamsGenerate2033.prototype, "JEIDeduction", void 0);
266
+ __decorate([
267
+ ApiPropertyOptional(),
268
+ __metadata("design:type", Object)
269
+ ], ParamsGenerate2033.prototype, "ZRDDeduction", void 0);
270
+ __decorate([
271
+ ApiPropertyOptional(),
272
+ __metadata("design:type", Object)
273
+ ], ParamsGenerate2033.prototype, "ZRRDeduction", void 0);
274
+ __decorate([
275
+ ApiPropertyOptional(),
276
+ __metadata("design:type", Object)
277
+ ], ParamsGenerate2033.prototype, "revitalizeDeduction", void 0);
278
+ __decorate([
279
+ ApiPropertyOptional(),
280
+ __metadata("design:type", Object)
281
+ ], ParamsGenerate2033.prototype, "overseasInvestmentDeduction", void 0);
282
+ __decorate([
283
+ ApiPropertyOptional(),
284
+ __metadata("design:type", Object)
285
+ ], ParamsGenerate2033.prototype, "ZFANGDeduction", void 0);
286
+ __decorate([
287
+ ApiPropertyOptional(),
288
+ __metadata("design:type", Object)
289
+ ], ParamsGenerate2033.prototype, "BUDDeduction", void 0);
290
+ __decorate([
291
+ ApiPropertyOptional(),
292
+ __metadata("design:type", Object)
293
+ ], ParamsGenerate2033.prototype, "priorityDevelopmentDeduction", void 0);
294
+ __decorate([
295
+ ApiPropertyOptional(),
296
+ __metadata("design:type", Object)
297
+ ], ParamsGenerate2033.prototype, "diverseDebts", void 0);
298
+ __decorate([
299
+ ApiPropertyOptional(),
300
+ __metadata("design:type", Object)
301
+ ], ParamsGenerate2033.prototype, "exceptionalDeduction", void 0);
302
+ __decorate([
303
+ ApiPropertyOptional(),
304
+ __metadata("design:type", Object)
305
+ ], ParamsGenerate2033.prototype, "exceptionalDeductionA", void 0);
306
+ __decorate([
307
+ ApiPropertyOptional(),
308
+ __metadata("design:type", Object)
309
+ ], ParamsGenerate2033.prototype, "exceptionalDeductionB", void 0);
310
+ __decorate([
311
+ ApiPropertyOptional(),
312
+ __metadata("design:type", Object)
313
+ ], ParamsGenerate2033.prototype, "exceptionalDeductionC", void 0);
314
+ __decorate([
315
+ ApiPropertyOptional(),
316
+ __metadata("design:type", Object)
317
+ ], ParamsGenerate2033.prototype, "exceptionalDeductionD", void 0);
318
+ __decorate([
319
+ ApiPropertyOptional(),
320
+ __metadata("design:type", Object)
321
+ ], ParamsGenerate2033.prototype, "exceptionalDeductionE", void 0);
322
+ __decorate([
323
+ ApiPropertyOptional(),
324
+ __metadata("design:type", Object)
325
+ ], ParamsGenerate2033.prototype, "exceptionalDeductionF", void 0);
326
+ __decorate([
327
+ ApiPropertyOptional(),
328
+ __metadata("design:type", Object)
329
+ ], ParamsGenerate2033.prototype, "exceptionalDeductionG", void 0);
330
+ __decorate([
331
+ ApiPropertyOptional(),
332
+ __metadata("design:type", Object)
333
+ ], ParamsGenerate2033.prototype, "deficitsExercise", void 0);
334
+ __decorate([
335
+ ApiPropertyOptional(),
336
+ __metadata("design:type", Object)
337
+ ], ParamsGenerate2033.prototype, "deficitsReportable", void 0);
338
+ __decorate([
339
+ ApiPropertyOptional(),
340
+ __metadata("design:type", Object)
341
+ ], ParamsGenerate2033.prototype, "deficitsImputed", void 0);
342
+ __decorate([
343
+ ApiPropertyOptional(),
344
+ __metadata("design:type", Array)
345
+ ], ParamsGenerate2033.prototype, "addedValueNatures", void 0);
346
+ __decorate([
347
+ ApiPropertyOptional(),
348
+ __metadata("design:type", Number)
349
+ ], ParamsGenerate2033.prototype, "majorationsBeginingAmount", void 0);
350
+ __decorate([
351
+ ApiPropertyOptional(),
352
+ __metadata("design:type", Number)
353
+ ], ParamsGenerate2033.prototype, "majorationsIncreases", void 0);
354
+ __decorate([
355
+ ApiPropertyOptional(),
356
+ __metadata("design:type", Number)
357
+ ], ParamsGenerate2033.prototype, "majorationsDiminution", void 0);
358
+ __decorate([
359
+ ApiPropertyOptional(),
360
+ __metadata("design:type", Number)
361
+ ], ParamsGenerate2033.prototype, "provisionsMovesBodilyDotations", void 0);
362
+ __decorate([
363
+ ApiPropertyOptional(),
364
+ __metadata("design:type", Number)
365
+ ], ParamsGenerate2033.prototype, "provisionsMovesBodilyRevivals", void 0);
366
+ __decorate([
367
+ ApiPropertyOptional(),
368
+ __metadata("design:type", Number)
369
+ ], ParamsGenerate2033.prototype, "provisionsMovesBodilyAmount", void 0);
370
+ __decorate([
371
+ ApiPropertyOptional(),
372
+ __metadata("design:type", Number)
373
+ ], ParamsGenerate2033.prototype, "provisionsMovesLandDotations", void 0);
374
+ __decorate([
375
+ ApiPropertyOptional(),
376
+ __metadata("design:type", Number)
377
+ ], ParamsGenerate2033.prototype, "provisionsMovesLandRevivals", void 0);
378
+ __decorate([
379
+ ApiPropertyOptional(),
380
+ __metadata("design:type", Number)
381
+ ], ParamsGenerate2033.prototype, "provisionsMovesLandLabel", void 0);
382
+ __decorate([
383
+ ApiPropertyOptional(),
384
+ __metadata("design:type", Number)
385
+ ], ParamsGenerate2033.prototype, "provisionsMovesLandAmount", void 0);
386
+ __decorate([
387
+ ApiPropertyOptional(),
388
+ __metadata("design:type", Number)
389
+ ], ParamsGenerate2033.prototype, "provisionsMovesConstructionsDotations", void 0);
390
+ __decorate([
391
+ ApiPropertyOptional(),
392
+ __metadata("design:type", Number)
393
+ ], ParamsGenerate2033.prototype, "provisionsMovesConstructionsRevivals", void 0);
394
+ __decorate([
395
+ ApiPropertyOptional(),
396
+ __metadata("design:type", Number)
397
+ ], ParamsGenerate2033.prototype, "provisionsMovesConstructionsLabel", void 0);
398
+ __decorate([
399
+ ApiPropertyOptional(),
400
+ __metadata("design:type", Number)
401
+ ], ParamsGenerate2033.prototype, "provisionsMovesConstructionsAmount", void 0);
402
+ __decorate([
403
+ ApiPropertyOptional(),
404
+ __metadata("design:type", Number)
405
+ ], ParamsGenerate2033.prototype, "provisionsMovesTechicalInstallationsDotations", void 0);
406
+ __decorate([
407
+ ApiPropertyOptional(),
408
+ __metadata("design:type", Number)
409
+ ], ParamsGenerate2033.prototype, "provisionsMovesTechicalInstallationsRevivals", void 0);
410
+ __decorate([
411
+ ApiPropertyOptional(),
412
+ __metadata("design:type", Number)
413
+ ], ParamsGenerate2033.prototype, "provisionsMovesTechicalInstallationsLabel", void 0);
414
+ __decorate([
415
+ ApiPropertyOptional(),
416
+ __metadata("design:type", Number)
417
+ ], ParamsGenerate2033.prototype, "provisionsMovesTechicalInstallationsAmount", void 0);
418
+ __decorate([
419
+ ApiPropertyOptional(),
420
+ __metadata("design:type", Number)
421
+ ], ParamsGenerate2033.prototype, "provisionsMovesGeneralInstallationsDotations", void 0);
422
+ __decorate([
423
+ ApiPropertyOptional(),
424
+ __metadata("design:type", Number)
425
+ ], ParamsGenerate2033.prototype, "provisionsMovesGeneralInstallationsRevivals", void 0);
426
+ __decorate([
427
+ ApiPropertyOptional(),
428
+ __metadata("design:type", Number)
429
+ ], ParamsGenerate2033.prototype, "provisionsMovesGeneralInstallationsLabel", void 0);
430
+ __decorate([
431
+ ApiPropertyOptional(),
432
+ __metadata("design:type", Number)
433
+ ], ParamsGenerate2033.prototype, "provisionsMovesGeneralInstallationsAmount", void 0);
434
+ __decorate([
435
+ ApiPropertyOptional(),
436
+ __metadata("design:type", Number)
437
+ ], ParamsGenerate2033.prototype, "provisionsMovesEquipmentTransactionDotations", void 0);
438
+ __decorate([
439
+ ApiPropertyOptional(),
440
+ __metadata("design:type", Number)
441
+ ], ParamsGenerate2033.prototype, "provisionsMovesEquipmentTransactionRevivals", void 0);
442
+ __decorate([
443
+ ApiPropertyOptional(),
444
+ __metadata("design:type", Number)
445
+ ], ParamsGenerate2033.prototype, "provisionsMovesEquipmentTransactionLabel", void 0);
446
+ __decorate([
447
+ ApiPropertyOptional(),
448
+ __metadata("design:type", Number)
449
+ ], ParamsGenerate2033.prototype, "provisionsMovesEquipmentTransactionAmount", void 0);
450
+ __decorate([
451
+ ApiPropertyOptional(),
452
+ __metadata("design:type", Number)
453
+ ], ParamsGenerate2033.prototype, "provisionsMovesOtherDotations", void 0);
454
+ __decorate([
455
+ ApiPropertyOptional(),
456
+ __metadata("design:type", Number)
457
+ ], ParamsGenerate2033.prototype, "provisionsMovesOtherRevivals", void 0);
458
+ __decorate([
459
+ ApiPropertyOptional(),
460
+ __metadata("design:type", Number)
461
+ ], ParamsGenerate2033.prototype, "provisionsMovesOtherLabel", void 0);
462
+ __decorate([
463
+ ApiPropertyOptional(),
464
+ __metadata("design:type", Number)
465
+ ], ParamsGenerate2033.prototype, "provisionsMovesOtherAmount", void 0);
466
+ __decorate([
467
+ ApiPropertyOptional(),
468
+ __metadata("design:type", Array)
469
+ ], ParamsGenerate2033.prototype, "ventilations", void 0);
470
+ __decorate([
471
+ ApiPropertyOptional(),
472
+ __metadata("design:type", Number)
473
+ ], ParamsGenerate2033.prototype, "applicationDeficitsResult", void 0);
474
+ __decorate([
475
+ ApiPropertyOptional(),
476
+ __metadata("design:type", Number)
477
+ ], ParamsGenerate2033.prototype, "applicationDeficitsStranger", void 0);
478
+ __decorate([
479
+ ApiPropertyOptional(),
480
+ __metadata("design:type", Number)
481
+ ], ParamsGenerate2033.prototype, "applicationDeficitsDeductible", void 0);
482
+ __decorate([
483
+ ApiPropertyOptional(),
484
+ __metadata("design:type", Number)
485
+ ], ParamsGenerate2033.prototype, "applicationDeficitsCotisations", void 0);
486
+ __decorate([
487
+ ApiPropertyOptional(),
488
+ __metadata("design:type", Number)
489
+ ], ParamsGenerate2033.prototype, "applicationDeficitsTotal", void 0);
490
+ __decorate([
491
+ ApiPropertyOptional(),
492
+ __metadata("design:type", Number)
493
+ ], ParamsGenerate2033.prototype, "cotisationsDeductible", void 0);
494
+ __decorate([
495
+ ApiPropertyOptional(),
496
+ __metadata("design:type", Number)
497
+ ], ParamsGenerate2033.prototype, "cotisationsTotal", void 0);
498
+ __decorate([
499
+ ApiPropertyOptional(),
500
+ __metadata("design:type", Number)
501
+ ], ParamsGenerate2033.prototype, "approvedManagementCenter", void 0);
502
+ __decorate([
503
+ ApiPropertyOptional(),
504
+ __metadata("design:type", Number)
505
+ ], ParamsGenerate2033.prototype, "vatCollected", void 0);
506
+ __decorate([
507
+ ApiPropertyOptional(),
508
+ __metadata("design:type", Number)
509
+ ], ParamsGenerate2033.prototype, "vatDeductible", void 0);
510
+ __decorate([
511
+ ApiPropertyOptional(),
512
+ __metadata("design:type", Number)
513
+ ], ParamsGenerate2033.prototype, "specimens", void 0);
514
+ __decorate([
515
+ ApiPropertyOptional(),
516
+ __metadata("design:type", Number)
517
+ ], ParamsGenerate2033.prototype, "aidReceived", void 0);
518
+ __decorate([
519
+ ApiPropertyOptional(),
520
+ __metadata("design:type", Number)
521
+ ], ParamsGenerate2033.prototype, "investment", void 0);
522
+ __decorate([
523
+ ApiPropertyOptional(),
524
+ __metadata("design:type", Number)
525
+ ], ParamsGenerate2033.prototype, "reportableDeficitsTransferred", void 0);
526
+ __decorate([
527
+ ApiPropertyOptional(),
528
+ __metadata("design:type", Number)
529
+ ], ParamsGenerate2033.prototype, "reportableDeficitsOperations", void 0);
530
+ __decorate([
531
+ ApiPropertyOptional(),
532
+ __metadata("design:type", Number)
533
+ ], ParamsGenerate2033.prototype, "deductionsDiverseTotal", void 0);
113
534
  //# sourceMappingURL=CreateCerfa.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"CreateCerfa.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/cerfa/CreateCerfa.ts"],"names":[],"mappings":";;;;;;;;;AACA,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAiRrE,MAAM,OAAO,kBAAkB;CA2E9B;AAzEC;IADC,WAAW,EAAE;;kDACG;AAGjB;IADC,WAAW,EAAE;;iDACC;AAGf;IADC,mBAAmB,EAAE;;yDACQ;AAG9B;IADC,mBAAmB,EAAE;;sDACK;AAG3B;IADC,mBAAmB,EAAE;;wDACO;AAG7B;IADC,mBAAmB,EAAE;;yDACQ;AAG9B;IADC,mBAAmB,EAAE;;4EAC2B;AAGjD;IADC,mBAAmB,EAAE;;6DACa;AAGnC;IADC,mBAAmB,EAAE;;2EAC0B;AAGhD;IADC,mBAAmB,EAAE;;gEACe;AAGrC;IADC,mBAAmB,EAAE;;kEACiB;AAGvC;IADC,mBAAmB,EAAE;;uEACsB;AAG5C;IADC,mBAAmB,EAAE;;+DACc;AAGpC;IADC,mBAAmB,EAAE;;8DACa;AAGnC;IADC,mBAAmB,EAAE;;8DACa;AAGnC;IADC,mBAAmB,EAAE;;iEACgB;AAGtC;IADC,mBAAmB,EAAE;;yEACwB;AAG9C;IADC,mBAAmB,EAAE;;+EAC8B;AAGpD;IADC,mBAAmB,EAAE;;sEACqB;AAG3C;IADC,mBAAmB,EAAE;;qFACoC;AAG1D;IADC,mBAAmB,EAAE;;yDACQ;AAG9B;IADC,mBAAmB,EAAE;;oEACmB;AAGzC;IADC,mBAAmB,EAAE;;0DACS;AAG/B;IADC,mBAAmB,EAAE;;mEACkB;AAGxC;IADC,mBAAmB,EAAE;;0EACyB","sourcesContent":["import { VehicleCerfaFuel } from '../../../Enum/Vehicle';\nimport { ApiProperty, ApiPropertyOptional } from '../../../../utils';\n\nexport interface DeterminedResult {\n incomeExpenditure: boolean; // d'après les règles « recettes-dépenses »\n debts: boolean; // d'après les règles « créances-dettes »\n}\n\nexport type AccountingKept = 'dutyFree' | 'taxIncluded' | 'notSubjectToVat';\nexport type CerfaCivility = 'M' | 'Mme' | 'Mlle';\n\nexport interface AccreditedOrganization {\n isMember: boolean;\n memberSince: Date;\n numberOfEmployees: string;\n netWagesReceived: number; // Salaires nets perçus\n}\n\ninterface Vehicle {\n name: string;\n type: string;\n fiscalPower: number;\n isBNCScale: boolean;\n isBICScale: boolean;\n fuel: VehicleCerfaFuel;\n professionalKilometers: number;\n deductible: number;\n depreciationPracticedAtReintegrate: number;\n}\n\nexport interface MoralShareholder {\n legalForm: string;\n name: string;\n siren?: string;\n percentShares: number;\n shares: number;\n address: {\n number: number | undefined;\n street: string;\n zipCode: string;\n city: string;\n country: string;\n };\n}\n\nexport interface PhysicShareholder {\n civility: CerfaCivility;\n firstname: string;\n lastname: string;\n percentShares: number;\n marriedName: string | null | undefined;\n shares: number | null;\n birth: {\n date: string;\n department: string | undefined;\n city: string;\n country: string;\n }\n address: {\n street: string | undefined;\n zipCode: string | undefined;\n city: string | undefined;\n country: string | undefined;\n number: string | undefined;\n }\n}\n\nexport interface Subsidiarie {\n legalForm: string;\n name: string;\n siren?: string;\n percentShares: number;\n address: {\n number: number;\n street: string;\n zipCode: string;\n city: string;\n country: string;\n };\n}\n\n/**\n * CERFA 2035 TYPES\n */\n\nexport interface Cerfa2035Society {\n name: string;\n activity: string | null;\n siret: string;\n activityCode?: string; // Code activité pour les praticiens médicaux\n ifExerciceInSociety?: boolean; // Si exercice en société\n partnersCount?: number;\n determinedResult?: DeterminedResult; // Résultat déterminé\n accountingKept: AccountingKept; // Comptabilité tenue\n accreditedOrganization?: AccreditedOrganization // Si vous êtes adhérent d'un organisme agréé (association ou organisme mixte) ou client d'un viseur fiscal\n address: string;\n zipCode: string;\n city: string;\n}\n\nexport interface Cerfa2035ProfessionalRecipes {\n collected: number;\n toDeduce: {\n disbursements: number;\n retrocededFees: {\n total: number;\n supplement: number;\n }\n };\n net: number;\n financialProducts: number;\n miscellaneousGain: number;\n total: number;\n}\n\nexport interface Cerfa2035ProfessionalExpenses {\n purchases: number;\n personnelCosts: {\n netSalariesAndBenefitsInKind: number;\n socialChargesOnSalaries: number;\n }\n duesAndTaxes: {\n valueAddedTax: number;\n territorialEconomicContribution: number;\n otherTaxes: number;\n generalDeductibleSocialContribution: number;\n };\n rentAndRentalCharges: number;\n equipmentRental: {\n total: number;\n collaborationFees: number;\n };\n maintenance: number;\n temporaryStaff: number;\n smallTools: number;\n heatingWaterGasElectricity: number;\n feesNotRetrocessions: number;\n insurancePremiums: number;\n vehicleCosts: {\n total: number;\n lumpSumAssessment: boolean;\n };\n otherTravelExpenses: number;\n totalWorkSupplies: number;\n totalTransport: number;\n personalSocialCharges: {\n obligatory: number;\n contributionsMadelin: number;\n retirementSavingsPlans: number;\n total: number;\n };\n receptionFees: number;\n officeSupplies: number;\n legalCosts: number;\n unionDues: number;\n otherManagementFees: number;\n totalDues: number;\n financialExpenses: number;\n miscellaneousLosses: number;\n total: number;\n}\n\nexport interface Cerfa2035Determination {\n surplus: number;\n shortTermCapitalGains: number;\n miscellaneousToBeReinstated: number;\n civilSocietyBenefit: number;\n totalSurplus: number;\n insufficiency: number;\n administrationFees: number;\n depreciationAllowance: number;\n shortTermLoss: number;\n miscellaneousToBeDeducted: {\n freeZone: {\n amount: number;\n };\n newBusiness: {\n onSavingsSalary: number;\n amount: number;\n };\n innovativeCompanies: {\n amount: number;\n youngArtists: number;\n }\n doctorsExemption: {\n amount: number;\n sectorApprovedDoctors: number;\n };\n total: number;\n }\n civilSocietyDeficit: number;\n totalInsufficiency: number;\n profit: number;\n deficit: number;\n}\n\nexport interface Cerfa2035ValueAddedTax {\n grossReceipts: number;\n relatedToPurchases: {\n amount: number;\n retrocededFees: number;\n };\n}\n\nexport interface Cerfa2035KilometricAllowance {\n vehicles: Vehicle[];\n costsNotCoveredByKilometricAllowances: number;\n totalDeductible: number;\n totalDepreciationPracticedAtReintegrate: number;\n}\n\nexport interface Cerfa2035Recipes {\n fees: number;\n miscellaneousGains: number;\n deductibleVat: number;\n capitalGains: number;\n total: number;\n}\n\nexport interface Cerfa2035Expenses {\n purchases: number;\n stockVariation: number;\n externalServices: number;\n rentsAndRoyalties: number;\n transport: number;\n management: number;\n vatInRecipes: number;\n turnoverTax: number;\n amortization: number;\n capitalLosses: number;\n total: number;\n}\n\nexport interface Cerfa2035MonoEstablishment {\n is: boolean; // Est mono établissement\n benchmarkTurnover: number;\n groupTurnover: number;\n workforce: number;\n period: { startDate: Date, endDate: Date };\n cessationDate: Date;\n}\n\nexport interface Cerfa2035ShareCapital {\n moralAssociates: number;\n moralAssociatesShares: number;\n physicAssociates: number;\n physicAssociatesShares: number;\n moralShareholder: MoralShareholder[];\n physicShareholder: PhysicShareholder[];\n idDeposit?: number;\n}\n\nexport interface Cerfa2035 {\n isNil: boolean;\n society: Cerfa2035Society;\n immobilizations: number;\n professionalRecipes: Cerfa2035ProfessionalRecipes;\n professionalExpenses: Cerfa2035ProfessionalExpenses;\n determination: Cerfa2035Determination;\n valueAddedTax: Cerfa2035ValueAddedTax;\n territorialContribution: number;\n kilometricAllowances: Cerfa2035KilometricAllowance;\n period: { startDate: Date, endDate: Date, months: string };\n shareCapital: Cerfa2035ShareCapital;\n subsidiaries: { total: number, list: Subsidiarie[] };\n annex?: {\n recipes: Cerfa2035Recipes;\n expenses: Cerfa2035Expenses;\n addedValue: number;\n addedValueContribution: number;\n monoEstablishment: Cerfa2035MonoEstablishment | null;\n }\n}\n\nexport class ParamsGenerate2035 {\n @ApiProperty()\n isTest?: boolean; // Modifie le chemin du PDF\n\n @ApiProperty()\n isNil: boolean; // Néant\n\n @ApiPropertyOptional()\n disbursements?: number | null; // Débours payés pour le compte des clients\n\n @ApiPropertyOptional()\n supplement?: number | null; // Honoraires rétrocédés (dont suppléments rétrocédés)\n\n @ApiPropertyOptional()\n activityCode?: string | null; // Code activité pour les praticiens médicaux\n\n @ApiPropertyOptional()\n valueAddedTax?: number | null; // Impôts et taxes : Taxe sur la valeur ajoutée\n\n @ApiPropertyOptional()\n equipmentRentalCollaborationFees?: number | null; // Location de matériel et de mobilier – dont redevances de collaboration\n\n @ApiPropertyOptional()\n lumpSumAssessment?: boolean | null; // Frais de véhicules - (cocher la case si évaluation forfaitaire)\n\n @ApiPropertyOptional()\n personalSocialChargesObligatory?: number | null; // Charges sociales personnelles - dont obligatoires\n\n @ApiPropertyOptional()\n contributionsMadelin?: number | null; // Charges sociales personnelles - dont cotisations facultatives Madelin\n\n @ApiPropertyOptional()\n retirementSavingsPlans?: number | null; // Dont facultatives aux nouveaux plans d’épargne retraite\n\n @ApiPropertyOptional()\n miscellaneousToBeReinstated?: number | null; // Divers à réintégrer\n\n @ApiPropertyOptional()\n civilSocietyBenefit?: number | null; // Bénéfice Société civile de moyen\n\n @ApiPropertyOptional()\n administrationFees?: number | null; // Frais d'établissement\n\n @ApiPropertyOptional()\n mtbdFreeZoneAmount?: number | null; // dont exonération sur le bénéfice « zone franche urbaine territoire entrepreneur »\n\n @ApiPropertyOptional()\n mtbdNewBusinessAmount?: number | null; // dont exonération sur le bénéfice « entreprise nouvelle »\n\n @ApiPropertyOptional()\n mtbdInnovativeCompaniesAmount?: number | null; // dont exonération « jeunes entreprises innovantes »\n\n @ApiPropertyOptional()\n mtbdInnovativeCompaniesYoungArtists?: number | null; // dont exonération sur le bénéfice « jeunes artistes »\n\n @ApiPropertyOptional()\n mtbdDoctorsExemptionAmount?: number | null; // dont exonération médecins « zones déficitaires en offre de soins »\n\n @ApiPropertyOptional()\n mtbdDoctorsExemptionSectorApprovedDoctors?: number | null; // dont déductions « médecins conventionnés de secteur I »\n\n @ApiPropertyOptional()\n grossReceipts?: number | null; // Montant de la TVA afférente aux recettes brutes\n\n @ApiPropertyOptional()\n relatedToPurchasesAmount?: number | null; // Montant de la TVA afférente aux achats (biens et services autres qu'immobilisations) :\n\n @ApiPropertyOptional()\n retrocededFees?: number | null; // dont montant de la TVA afférente aux honoraires rétrocédés\n\n @ApiPropertyOptional()\n territorialContribution?: number | null; // Recettes provenant d'activités exonérées à titre permanent\n\n @ApiPropertyOptional()\n miscellaneousToBeDeductedTotal?: number | null; // Divers à déduire (CL)\n}"]}
1
+ {"version":3,"file":"CreateCerfa.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/cerfa/CreateCerfa.ts"],"names":[],"mappings":"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","sourcesContent":["import { VehicleCerfaFuel } from '../../../Enum/Vehicle';\nimport { ApiProperty, ApiPropertyOptional } from '../../../../utils';\n\nexport interface DeterminedResult {\n incomeExpenditure: boolean; // d'après les règles « recettes-dépenses »\n debts: boolean; // d'après les règles « créances-dettes »\n}\n\nexport type AccountingKept = 'dutyFree' | 'taxIncluded' | 'notSubjectToVat';\nexport type CerfaCivility = 'M' | 'Mme' | 'Mlle';\n\nexport interface AccreditedOrganization {\n isMember: boolean;\n memberSince: Date;\n numberOfEmployees: string;\n netWagesReceived: number; // Salaires nets perçus\n}\n\ninterface Vehicle {\n name: string;\n type: string;\n fiscalPower: number;\n isBNCScale: boolean;\n isBICScale: boolean;\n fuel: VehicleCerfaFuel;\n professionalKilometers: number;\n deductible: number;\n depreciationPracticedAtReintegrate: number;\n}\n\nexport interface MoralShareholder {\n legalForm: string;\n name: string;\n siren?: string;\n percentShares: number;\n shares: number;\n address: {\n number: number | undefined;\n street: string;\n zipCode: string;\n city: string;\n country: string;\n };\n}\n\nexport interface PhysicShareholder {\n civility: CerfaCivility;\n firstname: string;\n lastname: string;\n percentShares: number;\n marriedName: string | null | undefined;\n shares: number | null;\n birth: {\n date: string;\n department: string | undefined;\n city: string;\n country: string;\n }\n address: {\n street: string | undefined;\n zipCode: string | undefined;\n city: string | undefined;\n country: string | undefined;\n number: string | undefined;\n }\n}\n\nexport interface Subsidiarie {\n legalForm: string;\n name: string;\n siren?: string;\n percentShares: number;\n address: {\n number: number;\n street: string;\n zipCode: string;\n city: string;\n country: string;\n };\n}\n\n/**\n * CERFA 2035 TYPES\n */\n\nexport interface Cerfa2035Society {\n name: string;\n activity: string | null;\n siret: string;\n activityCode?: string; // Code activité pour les praticiens médicaux\n ifExerciceInSociety?: boolean; // Si exercice en société\n partnersCount?: number;\n determinedResult?: DeterminedResult; // Résultat déterminé\n accountingKept: AccountingKept; // Comptabilité tenue\n accreditedOrganization?: AccreditedOrganization // Si vous êtes adhérent d'un organisme agréé (association ou organisme mixte) ou client d'un viseur fiscal\n address: string;\n zipCode: string;\n city: string;\n}\n\nexport interface Cerfa2035ProfessionalRecipes {\n collected: number;\n toDeduce: {\n disbursements: number;\n retrocededFees: {\n total: number;\n supplement: number;\n }\n };\n net: number;\n financialProducts: number;\n miscellaneousGain: number;\n total: number;\n}\n\nexport interface Cerfa2035ProfessionalExpenses {\n purchases: number;\n personnelCosts: {\n netSalariesAndBenefitsInKind: number;\n socialChargesOnSalaries: number;\n }\n duesAndTaxes: {\n valueAddedTax: number;\n territorialEconomicContribution: number;\n otherTaxes: number;\n generalDeductibleSocialContribution: number;\n };\n rentAndRentalCharges: number;\n equipmentRental: {\n total: number;\n collaborationFees: number;\n };\n maintenance: number;\n temporaryStaff: number;\n smallTools: number;\n heatingWaterGasElectricity: number;\n feesNotRetrocessions: number;\n insurancePremiums: number;\n vehicleCosts: {\n total: number;\n lumpSumAssessment: boolean;\n };\n otherTravelExpenses: number;\n totalWorkSupplies: number;\n totalTransport: number;\n personalSocialCharges: {\n obligatory: number;\n contributionsMadelin: number;\n retirementSavingsPlans: number;\n total: number;\n };\n receptionFees: number;\n officeSupplies: number;\n legalCosts: number;\n unionDues: number;\n otherManagementFees: number;\n totalDues: number;\n financialExpenses: number;\n miscellaneousLosses: number;\n total: number;\n}\n\nexport interface Cerfa2035Determination {\n surplus: number;\n shortTermCapitalGains: number;\n miscellaneousToBeReinstated: number;\n civilSocietyBenefit: number;\n totalSurplus: number;\n insufficiency: number;\n administrationFees: number;\n depreciationAllowance: number;\n shortTermLoss: number;\n miscellaneousToBeDeducted: {\n freeZone: {\n amount: number;\n };\n newBusiness: {\n onSavingsSalary: number;\n amount: number;\n };\n innovativeCompanies: {\n amount: number;\n youngArtists: number;\n }\n doctorsExemption: {\n amount: number;\n sectorApprovedDoctors: number;\n };\n total: number;\n }\n civilSocietyDeficit: number;\n totalInsufficiency: number;\n profit: number;\n deficit: number;\n}\n\nexport interface Cerfa2035ValueAddedTax {\n grossReceipts: number;\n relatedToPurchases: {\n amount: number;\n retrocededFees: number;\n };\n}\n\nexport interface Cerfa2035KilometricAllowance {\n vehicles: Vehicle[];\n costsNotCoveredByKilometricAllowances: number;\n totalDeductible: number;\n totalDepreciationPracticedAtReintegrate: number;\n}\n\nexport interface Cerfa2035Recipes {\n fees: number;\n miscellaneousGains: number;\n deductibleVat: number;\n capitalGains: number;\n total: number;\n}\n\nexport interface Cerfa2035Expenses {\n purchases: number;\n stockVariation: number;\n externalServices: number;\n rentsAndRoyalties: number;\n transport: number;\n management: number;\n vatInRecipes: number;\n turnoverTax: number;\n amortization: number;\n capitalLosses: number;\n total: number;\n}\n\nexport interface Cerfa2035MonoEstablishment {\n is: boolean; // Est mono établissement\n benchmarkTurnover: number;\n groupTurnover: number;\n workforce: number;\n period: { startDate: Date, endDate: Date };\n cessationDate: Date;\n}\n\nexport interface Cerfa2035ShareCapital {\n moralAssociates: number;\n moralAssociatesShares: number;\n physicAssociates: number;\n physicAssociatesShares: number;\n moralShareholder: MoralShareholder[];\n physicShareholder: PhysicShareholder[];\n idDeposit?: number;\n}\n\nexport interface Cerfa2035 {\n isNil: boolean;\n society: Cerfa2035Society;\n immobilizations: number;\n professionalRecipes: Cerfa2035ProfessionalRecipes;\n professionalExpenses: Cerfa2035ProfessionalExpenses;\n determination: Cerfa2035Determination;\n valueAddedTax: Cerfa2035ValueAddedTax;\n territorialContribution: number;\n kilometricAllowances: Cerfa2035KilometricAllowance;\n period: { startDate: Date, endDate: Date, months: string };\n shareCapital: Cerfa2035ShareCapital;\n subsidiaries: { total: number, list: Subsidiarie[] };\n annex?: {\n recipes: Cerfa2035Recipes;\n expenses: Cerfa2035Expenses;\n addedValue: number;\n addedValueContribution: number;\n monoEstablishment: Cerfa2035MonoEstablishment | null;\n }\n}\n\nexport class ParamsGenerate2035 {\n @ApiProperty()\n isTest?: boolean; // Modifie le chemin du PDF\n\n @ApiProperty()\n isNil: boolean; // Néant\n\n @ApiPropertyOptional()\n disbursements?: number | null; // Débours payés pour le compte des clients\n\n @ApiPropertyOptional()\n supplement?: number | null; // Honoraires rétrocédés (dont suppléments rétrocédés)\n\n @ApiPropertyOptional()\n activityCode?: string | null; // Code activité pour les praticiens médicaux\n\n @ApiPropertyOptional()\n valueAddedTax?: number | null; // Impôts et taxes : Taxe sur la valeur ajoutée\n\n @ApiPropertyOptional()\n equipmentRentalCollaborationFees?: number | null; // Location de matériel et de mobilier – dont redevances de collaboration\n\n @ApiPropertyOptional()\n lumpSumAssessment?: boolean | null; // Frais de véhicules - (cocher la case si évaluation forfaitaire)\n\n @ApiPropertyOptional()\n personalSocialChargesObligatory?: number | null; // Charges sociales personnelles - dont obligatoires\n\n @ApiPropertyOptional()\n contributionsMadelin?: number | null; // Charges sociales personnelles - dont cotisations facultatives Madelin\n\n @ApiPropertyOptional()\n retirementSavingsPlans?: number | null; // Dont facultatives aux nouveaux plans d’épargne retraite\n\n @ApiPropertyOptional()\n miscellaneousToBeReinstated?: number | null; // Divers à réintégrer\n\n @ApiPropertyOptional()\n civilSocietyBenefit?: number | null; // Bénéfice Société civile de moyen\n\n @ApiPropertyOptional()\n administrationFees?: number | null; // Frais d'établissement\n\n @ApiPropertyOptional()\n mtbdFreeZoneAmount?: number | null; // dont exonération sur le bénéfice « zone franche urbaine territoire entrepreneur »\n\n @ApiPropertyOptional()\n mtbdNewBusinessAmount?: number | null; // dont exonération sur le bénéfice « entreprise nouvelle »\n\n @ApiPropertyOptional()\n mtbdInnovativeCompaniesAmount?: number | null; // dont exonération « jeunes entreprises innovantes »\n\n @ApiPropertyOptional()\n mtbdInnovativeCompaniesYoungArtists?: number | null; // dont exonération sur le bénéfice « jeunes artistes »\n\n @ApiPropertyOptional()\n mtbdDoctorsExemptionAmount?: number | null; // dont exonération médecins « zones déficitaires en offre de soins »\n\n @ApiPropertyOptional()\n mtbdDoctorsExemptionSectorApprovedDoctors?: number | null; // dont déductions « médecins conventionnés de secteur I »\n\n @ApiPropertyOptional()\n grossReceipts?: number | null; // Montant de la TVA afférente aux recettes brutes\n\n @ApiPropertyOptional()\n relatedToPurchasesAmount?: number | null; // Montant de la TVA afférente aux achats (biens et services autres qu'immobilisations) :\n\n @ApiPropertyOptional()\n retrocededFees?: number | null; // dont montant de la TVA afférente aux honoraires rétrocédés\n\n @ApiPropertyOptional()\n territorialContribution?: number | null; // Recettes provenant d'activités exonérées à titre permanent\n\n @ApiPropertyOptional()\n miscellaneousToBeDeductedTotal?: number | null; // Divers à déduire (CL)\n}\n\n/**\n * CERFA 2033 TYPES\n */\nexport class Cerfa2033Society {\n name: string;\n address: string;\n addressFormatted: string;\n siret: string;\n siren: string;\n zipCode: string;\n city: string;\n}\n\nexport type Cerfa2033ActiveValues = {\n gross: number;\n amortization: number;\n net: number;\n};\n\nexport class Cerfa2033FixedAsset {\n intangibleAssetsCommercialFunds: Cerfa2033ActiveValues;\n intangibleAssetsOther: Cerfa2033ActiveValues;\n tangibleFixedAssets: Cerfa2033ActiveValues;\n financialFixedAssets: Cerfa2033ActiveValues;\n total: Cerfa2033ActiveValues;\n}\n\nexport class Cerfa2033CirculatingActive {\n rawMaterials: Cerfa2033ActiveValues;\n merchandise: Cerfa2033ActiveValues;\n advancesAndDeposit: Cerfa2033ActiveValues;\n claimsCustomers: Cerfa2033ActiveValues;\n claimsOthers: Cerfa2033ActiveValues;\n investmentSecurities: Cerfa2033ActiveValues;\n availabilities: Cerfa2033ActiveValues;\n prepaidExpenses: Cerfa2033ActiveValues;\n total: Cerfa2033ActiveValues;\n}\n\nexport class Cerfa2033Equity {\n shareCapital: number;\n revaluationDifferences: number;\n legalReserve: number;\n reglemented: number;\n otherReserve: {\n purchaseOfOriginalWorks: number;\n total: number;\n };\n deferralAgain: number;\n resultOfTheExercise: number;\n regulatedProvisions: number;\n total: number;\n}\n\nexport class Cerfa2033Debts {\n loansAndSimilarDebts: number;\n advances: number;\n accountsPayable: number;\n otherDebts: {\n partnerCurrentAccount: number;\n total: number;\n };\n prepaid: number;\n total: number;\n}\n\nexport class Cerfa2033Referrals {\n fixedAssets: number;\n debtsMoreThanOneYear: number;\n claims: number; // créances\n currentAccount: number;\n costOfAcquired: number;\n sellPriceWithoutVat: number;\n}\n\nexport class Cerfa2033ExeploitationProducts {\n saleOfMerchandise: {\n export: number;\n total: number;\n };\n saleOfProduction: {\n goods: {\n export: number;\n total: number;\n };\n services: {\n export: number;\n total: number;\n };\n };\n stockedProduction: number;\n immobilizedProduction: number;\n operatingGrants: number;\n otherProducts: number;\n total: number;\n}\n\nexport class Cerfa2033ExploitationExpenses {\n purchaseOfMerchandise: number;\n stockVariationMerchandise: number;\n purchaseOfRawMaterials: number;\n stockVariationRawMaterials: number;\n otherExternalExpenses: {\n loanFurniture: number;\n loanRealEstate: number;\n total: number;\n };\n tax: {\n CFEandCVAE: number;\n total: number;\n };\n remunerations: number;\n social: number;\n amortization: number;\n provisions: number;\n otherExpenses: {\n provisions: number;\n cotisations: number;\n total: number;\n };\n total: number;\n}\n\nexport class Cerfa2033AccountingIncome {\n isIncomeTax: boolean;\n exploitationProducts: Cerfa2033ExeploitationProducts;\n exploitationExpenses: Cerfa2033ExploitationExpenses;\n}\n\nexport class Cerfa2033ExploitationResult {\n total: number;\n financialProducts: number;\n financialExpenses: number;\n exceptionalProducts: number;\n exceptionalExpenses: {\n subscriptions: number;\n exceptional: number;\n total: number\n };\n benefitTax: number;\n}\n\nexport class Cerfa2033FiscalResult {\n reinstatements: {\n benefitIncome: number;\n deficitIncome: number;\n remunerations: number;\n amortizations: number;\n provisions: number;\n tax: number;\n diverse: number;\n deviations: number;\n line330: number;\n fractionOfRents: number;\n shareOfRent: number;\n relatedCharges: number;\n fiscalResult: number;\n };\n deductions: {\n maritimeTransport: number;\n newBusiness: number;\n ZFU: number;\n difficultBusiness: number;\n JEI: number;\n ZRD: number;\n ZRR: number;\n revitalize: number;\n overseasInvestment: number;\n ZFANG: number;\n BUD: number;\n priorityDevelopment: number;\n total: number;\n diverse: {\n debt: number;\n exceptionalDeduction: number;\n exceptionalDeductionA: number;\n exceptionalDeductionB: number;\n exceptionalDeductionC: number;\n exceptionalDeductionD: number;\n exceptionalDeductionE: number;\n exceptionalDeductionF: number;\n exceptionalDeductionG: number;\n total: number;\n };\n resultBeforeImputation: {\n benefit: number;\n deficit: number;\n };\n deficits: {\n exercise: number;\n reportable: number;\n imputed: number;\n };\n fiscalResultAfterImputation: {\n benefit: number;\n deficit: number;\n }\n };\n}\n\nexport type ImmobilizationsArray = {\n grossValueOfExerciseBegining: number;\n increases: number;\n decreases: number;\n grossValueOfExerciseFinishing: number;\n legalReevaluation: number;\n};\n\nexport class Cerfa2033Immobilizations {\n commercialFunds: ImmobilizationsArray;\n other: ImmobilizationsArray;\n land: ImmobilizationsArray;\n constructions: ImmobilizationsArray;\n technicalInstallations: ImmobilizationsArray;\n generalInstallations: ImmobilizationsArray;\n equipmentTransportation: ImmobilizationsArray;\n bodily: ImmobilizationsArray;\n financial: ImmobilizationsArray;\n total: ImmobilizationsArray;\n}\n\nexport type AmortizationArray = {\n exerciseBegining: number;\n increases: number;\n diminution: number;\n exerciseFinishing: number;\n};\n\nexport class Cerfa2033Amortizations {\n intangible: AmortizationArray;\n lands: AmortizationArray;\n constructions: AmortizationArray;\n technicalInstallations: AmortizationArray;\n generalInstallations: AmortizationArray;\n equipmentTransportation: AmortizationArray;\n bodily: AmortizationArray;\n total: AmortizationArray;\n}\n\nexport type Cerfa2033TaxableValues = {\n active: number;\n amortizations: number;\n residualValue: number;\n salePrice: number;\n shortTerm: number;\n longTerm19: number;\n longTerm15or128: number;\n longTerm0: number;\n};\n\nexport class Cerfa2033Values {\n natures: string[];\n immobilizations: {\n list: Cerfa2033TaxableValues[];\n total: Cerfa2033TaxableValues;\n };\n taxableGains: {\n residualValue: number;\n shortTerm: number;\n longTerm19: number;\n longTerm15or128: number;\n longTerm0: number;\n };\n total: {\n shortTerm: number;\n longTerm19: number;\n longTerm15or128: number;\n longTerm0: number;\n };\n}\n\nexport type Cerfa2033ProvisionNaturesArray = {\n beginingAmount: number;\n increases: number;\n diminution: number;\n finishingAmount: number;\n};\nexport class Cerfa2033ProvisionNatures {\n amortizations: Cerfa2033ProvisionNaturesArray;\n majorations: Cerfa2033ProvisionNaturesArray;\n other: Cerfa2033ProvisionNaturesArray;\n risk: Cerfa2033ProvisionNaturesArray;\n immobilizations: Cerfa2033ProvisionNaturesArray;\n stock: Cerfa2033ProvisionNaturesArray;\n clientAccounts: Cerfa2033ProvisionNaturesArray;\n depreviation: Cerfa2033ProvisionNaturesArray;\n total: Cerfa2033ProvisionNaturesArray;\n}\n\nexport type Cerfa2033ProvisionMovesDotationsAndRevivals = {\n dotations: number;\n revivals: number;\n};\n\nexport type Cerfa2033ProvisionMovesVentilation = {\n label: number;\n amount: number;\n};\n\nexport class Cerfa2033ProvisionMoves {\n bodily: Cerfa2033ProvisionMovesDotationsAndRevivals;\n land: Cerfa2033ProvisionMovesDotationsAndRevivals;\n constructions: Cerfa2033ProvisionMovesDotationsAndRevivals;\n technicalInstallations: Cerfa2033ProvisionMovesDotationsAndRevivals;\n generalInstallations: Cerfa2033ProvisionMovesDotationsAndRevivals;\n equipmentTransportation: Cerfa2033ProvisionMovesDotationsAndRevivals;\n other: Cerfa2033ProvisionMovesDotationsAndRevivals;\n total: Cerfa2033ProvisionMovesDotationsAndRevivals;\n}\n\nexport class Cerfa2033ReportableDeficits {\n remaining: number;\n transferred: number;\n operations: number;\n imputed: number;\n reportable: number;\n exercise: number;\n total: number;\n}\n\nexport class Cerfa2033ApplicationDeficits {\n result: number;\n stranger: number;\n}\n\nexport class Cerfa2033ApplicationDiverse {\n bonuses: {\n deductible: number;\n cotisations: number;\n total: number;\n };\n cotisations: {\n deductible: number;\n total: number;\n };\n approvedManagementCenter: number;\n vatCollected: number;\n vatDeductible: number;\n specimens: number;\n aidReceived: number;\n investment: number;\n}\n\nexport class Cerfa2033WorkForce {\n isNil: boolean;\n declaration?: {\n average: number;\n apprentices: number;\n handicapped: number;\n artisanal: number;\n };\n addedValue?: {\n saleOfProducts: number;\n licences: number;\n saleOfImmobilizations: number;\n expensesTransfert: number;\n total1: number;\n otherProducts: number;\n production: number;\n subventions: number;\n positiveVariation: number;\n deductibleExpensesTransfert: number;\n debts: number;\n total2: number;\n purchases: number;\n negativeVariation: number;\n services: number;\n rents: number;\n taxes: number;\n otherManagementExpenses: number;\n deductibleExpenses: number;\n deductibleFraction: number;\n lessValues: number;\n total3: number;\n addValue: number;\n cotisation: number;\n };\n CVAE?: {\n isEstablishment: boolean;\n turnover: number;\n workforce: number;\n turnoverGroup: number;\n period: {\n startDate: string;\n endDate: string;\n };\n cessationDate: string;\n };\n}\nexport interface Cerfa2033ShareCapital {\n moralAssociates: number;\n moralAssociatesShares: number;\n physicAssociates: number;\n physicAssociatesShares: number;\n moralShareholder: MoralShareholder[];\n physicShareholder: PhysicShareholder[];\n}\n\nexport interface Cerfa2033 {\n isNil: boolean;\n society: Cerfa2033Society;\n period: {\n startDate: Date,\n endDate: Date,\n endDay: string,\n endMonth: string,\n endYear: string,\n months: string,\n previousExerciceMonths: string\n };\n fixedAsset: Cerfa2033FixedAsset;\n circulatingActive: Cerfa2033CirculatingActive;\n totalActive: Cerfa2033ActiveValues;\n equity: Cerfa2033Equity;\n provisionsForRisks: number;\n debts: Cerfa2033Debts;\n generalTotal: number;\n referrals: Cerfa2033Referrals;\n accountingIncome: Cerfa2033AccountingIncome;\n exploitationResult: Cerfa2033ExploitationResult;\n benefitsOrLoses: number;\n fiscalResult: Cerfa2033FiscalResult;\n immobilizations: Cerfa2033Immobilizations;\n amortizations: Cerfa2033Amortizations;\n values: Cerfa2033Values;\n provisions: Cerfa2033ProvisionNatures;\n provisionsMoves: Cerfa2033ProvisionMoves;\n ventilations: {\n list: Cerfa2033ProvisionMovesVentilation[],\n total: number;\n },\n reportableDeficits: Cerfa2033ReportableDeficits;\n applicationDeficits: Cerfa2033ApplicationDeficits;\n diverse: Cerfa2033ApplicationDiverse;\n workForce: Cerfa2033WorkForce;\n shareCapital: Cerfa2033ShareCapital;\n subsidiaries: { total: number, list: Subsidiarie[], isSubsidiariesNil: boolean };\n}\n\nexport class ParamsGenerate2033 {\n @ApiProperty()\n isTest?: boolean; // Modifie le chemin du PDF\n\n @ApiProperty()\n isNil: boolean; // Néant\n\n @ApiPropertyOptional()\n equityOtherReservePurchaseOfOriginalWorks?: number | null; // Passif > Capitaux propres > Autres réserves (ligne 131)\n\n @ApiPropertyOptional()\n referralFixedAssets?: number | null; // Passif > Renvois > Dont immobilisations financières à moins d'un an (ligne 193)\n\n @ApiPropertyOptional()\n referralDebtsMoreThanOneYear?: number | null; // Passif > Renvois > Dont immobilisations financières à moins d'un an (ligne 195)\n\n @ApiPropertyOptional()\n referralClaims?: number | null; // Passif > Renvois > Dont immobilisations financières à moins d'un an (ligne 197)\n\n @ApiPropertyOptional()\n saleOfMerchandiseExport?: number | null; // Résultat comptable > Produits d'exploitation > Ventes de marchandises > Dont export (ligne 209)\n\n @ApiPropertyOptional()\n saleOfProductionGoodsExport?: number | null; // Résultat comptable > Produits d'exploitation > Production vendue - biens > Dont export (ligne 215)\n\n @ApiPropertyOptional()\n saleOfProductionServicesExport?: number | null; // Résultat comptable > Produits d'exploitation > Production vendue - services > Dont export (ligne 217)\n\n @ApiPropertyOptional()\n otherExpensesProvisions?: number | null; // Résultat comptable > Charges d'exploitation > Autres charges > dont provisions fiscales pour implantations commerciales à l'étranger (ligne 259)\n\n @ApiPropertyOptional()\n otherExpensesCotisations?: number | null; // Résultat comptable > Charges d'exploitation > Autres charges > dont provisions fiscales pour implantations commerciales à l'étranger (ligne 260)\n\n @ApiPropertyOptional()\n exceptionalExpensesSubscriptions?: number | null; // Résultat d'exploitation > Charges exceptionnelles > dont amortissements des souscriptions\n\n @ApiPropertyOptional()\n exceptionalExpensesExceptional?: number | null; // Résultat d'exploitation > Charges exceptionnelles > dont amortissements exceptionnels\n\n @ApiPropertyOptional()\n reinstatementsRemuneration?: number | null; // Résultat fiscal > Rémunérations et avantages personnels non déductibles (ligne 316)\n\n @ApiPropertyOptional()\n reinstatementsAmortizations?: number | null; // Résultat fiscal > Amortissements excédentaires (art. 39-4 du CGI) et autres amortissements non déductibles (ligne 318)\n\n @ApiPropertyOptional()\n reinstatementsProvisions?: number | null; // Résultat fiscal > Provisions non déductibles (ligne 322)\n\n @ApiPropertyOptional()\n reinstatementsDiverse?: number | null; // Résultat fiscal > Réintégrations (ligne 247)\n\n @ApiPropertyOptional()\n reinstatementsDeviations?: number | null; // Résultat fiscal > Réintégrations (ligne 248)\n\n @ApiPropertyOptional()\n reinstatementsShareOfRent?: number | null; // Résultat fiscal > Réintégrations (ligne )\n\n @ApiPropertyOptional()\n reinstatementsFractionOfRents?: number | null; // Résultat fiscal > Réintégrations (ligne 249)\n\n @ApiPropertyOptional()\n reinstatementsRelatedCharges?: number | null; // Résultat fiscal > Réintégrations (ligne 998)\n\n @ApiPropertyOptional()\n reinstatementsFiscalResult?: number | null; // Résultat fiscal > Réintégrations (ligne 999)\n\n @ApiPropertyOptional()\n maritimeTransportDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 997)\n\n @ApiPropertyOptional()\n newBusinessDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 986)\n\n @ApiPropertyOptional()\n ZFUDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 987)\n\n @ApiPropertyOptional()\n difficultBusinessDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 981)\n\n @ApiPropertyOptional()\n JEIDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 989)\n\n @ApiPropertyOptional()\n ZRDDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 127)\n\n @ApiPropertyOptional()\n ZRRDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 138)\n\n @ApiPropertyOptional()\n revitalizeDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 991)\n\n @ApiPropertyOptional()\n overseasInvestmentDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 344)\n\n @ApiPropertyOptional()\n ZFANGDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 345)\n\n @ApiPropertyOptional()\n BUDDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 992)\n\n @ApiPropertyOptional()\n priorityDevelopmentDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 993)\n\n @ApiPropertyOptional()\n diverseDebts?: number | null; // Résultat fiscal > Divers\n\n @ApiPropertyOptional()\n exceptionalDeduction?: number | null; // Résultat fiscal > Divers\n\n @ApiPropertyOptional()\n exceptionalDeductionA?: number | null; // Résultat fiscal > Divers\n\n @ApiPropertyOptional()\n exceptionalDeductionB?: number | null; // Résultat fiscal > Divers\n\n @ApiPropertyOptional()\n exceptionalDeductionC?: number | null; // Résultat fiscal > Divers\n\n @ApiPropertyOptional()\n exceptionalDeductionD?: number | null; // Résultat fiscal > Divers\n\n @ApiPropertyOptional()\n exceptionalDeductionE?: number | null; // Résultat fiscal > Divers\n\n @ApiPropertyOptional()\n exceptionalDeductionF?: number | null; // Résultat fiscal > Divers\n\n @ApiPropertyOptional()\n exceptionalDeductionG?: number | null; // Résultat fiscal > Divers\n\n @ApiPropertyOptional()\n deficitsExercise?: number | null; // Déficit de l'exercice reporté en arrière\n\n @ApiPropertyOptional()\n deficitsReportable?: number | null; // Déficits antérieurs reportables\n\n @ApiPropertyOptional()\n deficitsImputed?: number | null; // dont imputés sur le résultat\n\n @ApiPropertyOptional()\n addedValueNatures?: string[]; // Nature des immobilisations cédées virées de poste à poste, mise hors service ou réintégrées dans le patrimoine privé\n\n @ApiPropertyOptional()\n majorationsBeginingAmount?: number;\n\n @ApiPropertyOptional()\n majorationsIncreases?: number;\n\n @ApiPropertyOptional()\n majorationsDiminution?: number;\n\n @ApiPropertyOptional()\n provisionsMovesBodilyDotations?: number;\n\n @ApiPropertyOptional()\n provisionsMovesBodilyRevivals?: number;\n\n @ApiPropertyOptional()\n provisionsMovesBodilyAmount?: number;\n\n @ApiPropertyOptional()\n provisionsMovesLandDotations?: number;\n\n @ApiPropertyOptional()\n provisionsMovesLandRevivals?: number;\n\n @ApiPropertyOptional()\n provisionsMovesLandLabel?: number;\n\n @ApiPropertyOptional()\n provisionsMovesLandAmount?: number;\n\n @ApiPropertyOptional()\n provisionsMovesConstructionsDotations?: number;\n\n @ApiPropertyOptional()\n provisionsMovesConstructionsRevivals?: number;\n\n @ApiPropertyOptional()\n provisionsMovesConstructionsLabel?: number;\n\n @ApiPropertyOptional()\n provisionsMovesConstructionsAmount?: number;\n\n @ApiPropertyOptional()\n provisionsMovesTechicalInstallationsDotations?: number;\n\n @ApiPropertyOptional()\n provisionsMovesTechicalInstallationsRevivals?: number;\n\n @ApiPropertyOptional()\n provisionsMovesTechicalInstallationsLabel?: number;\n\n @ApiPropertyOptional()\n provisionsMovesTechicalInstallationsAmount?: number;\n\n @ApiPropertyOptional()\n provisionsMovesGeneralInstallationsDotations?: number;\n\n @ApiPropertyOptional()\n provisionsMovesGeneralInstallationsRevivals?: number;\n\n @ApiPropertyOptional()\n provisionsMovesGeneralInstallationsLabel?: number;\n\n @ApiPropertyOptional()\n provisionsMovesGeneralInstallationsAmount?: number;\n\n @ApiPropertyOptional()\n provisionsMovesEquipmentTransactionDotations?: number;\n\n @ApiPropertyOptional()\n provisionsMovesEquipmentTransactionRevivals?: number;\n\n @ApiPropertyOptional()\n provisionsMovesEquipmentTransactionLabel?: number;\n\n @ApiPropertyOptional()\n provisionsMovesEquipmentTransactionAmount?: number;\n\n @ApiPropertyOptional()\n provisionsMovesOtherDotations?: number;\n\n @ApiPropertyOptional()\n provisionsMovesOtherRevivals?: number;\n\n @ApiPropertyOptional()\n provisionsMovesOtherLabel?: number;\n\n @ApiPropertyOptional()\n provisionsMovesOtherAmount?: number;\n\n @ApiPropertyOptional()\n ventilations?: Cerfa2033ProvisionMovesVentilation[];\n\n @ApiPropertyOptional()\n applicationDeficitsResult?: number;\n\n @ApiPropertyOptional()\n applicationDeficitsStranger?: number;\n\n @ApiPropertyOptional()\n applicationDeficitsDeductible?: number;\n\n @ApiPropertyOptional()\n applicationDeficitsCotisations?: number;\n\n @ApiPropertyOptional()\n applicationDeficitsTotal?: number;\n\n @ApiPropertyOptional()\n cotisationsDeductible?: number;\n\n @ApiPropertyOptional()\n cotisationsTotal?: number;\n\n @ApiPropertyOptional()\n approvedManagementCenter?: number;\n\n @ApiPropertyOptional()\n vatCollected?: number;\n\n @ApiPropertyOptional()\n vatDeductible?: number;\n\n @ApiPropertyOptional()\n specimens?: number;\n\n @ApiPropertyOptional()\n aidReceived?: number;\n\n @ApiPropertyOptional()\n investment?: number;\n\n @ApiPropertyOptional()\n reportableDeficitsTransferred?: number;\n\n @ApiPropertyOptional()\n reportableDeficitsOperations?: number;\n\n @ApiPropertyOptional()\n deductionsDiverseTotal?: number;\n}"]}
@@ -27,6 +27,7 @@ export interface IAccount {
27
27
  forFournisseur?: boolean;
28
28
  juridicalSociety?: number | null;
29
29
  idNature: number;
30
+ customization?: number;
30
31
  idAccountType: number;
31
32
  idVat?: number | null;
32
33
  idRegisterCategorie?: number | null;
@@ -1 +1 @@
1
- {"version":3,"file":"IAccount.d.ts","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IAccount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAGtC,MAAM,WAAW,QAAQ;IACvB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAGxB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,YAAY,CAAC;IAC3B,GAAG,CAAC,EAAE,IAAI,CAAC;IACX,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IACtC,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,YAAY,CAAC;IAC3B,cAAc,CAAC,EAAE,cAAc,EAAE,CAAC;IAClC,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC;CACxB"}
1
+ {"version":3,"file":"IAccount.d.ts","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IAccount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAGtC,MAAM,WAAW,QAAQ;IACvB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAGxB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,YAAY,CAAC;IAC3B,GAAG,CAAC,EAAE,IAAI,CAAC;IACX,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IACtC,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,YAAY,CAAC;IAC3B,cAAc,CAAC,EAAE,cAAc,EAAE,CAAC;IAClC,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC;CACxB"}
@@ -1 +1 @@
1
- {"version":3,"file":"IAccount.js","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IAccount.ts"],"names":[],"mappings":"","sourcesContent":["import { INature } from './INature';\nimport { IAccountType } from './IAccountType';\nimport { IVat } from './IVat';\nimport { IRegisterCategory } from './IRegisterCategory';\nimport { ISector } from './ISector';\nimport { IAccountHelp } from './IAccountHelp';\nimport { IAccountDetail } from './IAccountDetail';\nimport { ISociety } from './ISociety';\n\n// accounts\nexport interface IAccount {\n id?: number;\n number: number;\n name: string;\n originalName?: string | null;\n forceVat?: boolean;\n blockVat?: boolean;\n forceFile?: boolean;\n isHidden?: boolean;\n isImmo?: boolean;\n isCorporal?: boolean;\n icone?: string | null;\n iconePNG?: string | null;\n color?: string | null;\n isOnlyTreso?: boolean;\n isOnlyEnga?: boolean;\n isGeneric?: boolean;\n forClient?: boolean;\n forFournisseur?: boolean;\n juridicalSociety?: number | null;\n idNature: number;\n idAccountType: number;\n idVat?: number | null;\n idRegisterCategorie?: number | null;\n idSector?: number | null;\n idParentAccount?: number | null;\n createdAt?: Date | null;\n updatedAt?: Date | null;\n deletedAt?: Date | null;\n\n // Associations\n nature?: INature;\n AccountType?: IAccountType;\n tva?: IVat;\n registerCategorie?: IRegisterCategory;\n sector?: ISector;\n accountHelp?: IAccountHelp;\n accountDetails?: IAccountDetail[];\n societies?: ISociety[];\n}\n"]}
1
+ {"version":3,"file":"IAccount.js","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IAccount.ts"],"names":[],"mappings":"","sourcesContent":["import { INature } from './INature';\nimport { IAccountType } from './IAccountType';\nimport { IVat } from './IVat';\nimport { IRegisterCategory } from './IRegisterCategory';\nimport { ISector } from './ISector';\nimport { IAccountHelp } from './IAccountHelp';\nimport { IAccountDetail } from './IAccountDetail';\nimport { ISociety } from './ISociety';\n\n// accounts\nexport interface IAccount {\n id?: number;\n number: number;\n name: string;\n originalName?: string | null;\n forceVat?: boolean;\n blockVat?: boolean;\n forceFile?: boolean;\n isHidden?: boolean;\n isImmo?: boolean;\n isCorporal?: boolean;\n icone?: string | null;\n iconePNG?: string | null;\n color?: string | null;\n isOnlyTreso?: boolean;\n isOnlyEnga?: boolean;\n isGeneric?: boolean;\n forClient?: boolean;\n forFournisseur?: boolean;\n juridicalSociety?: number | null;\n idNature: number;\n customization?: number;\n idAccountType: number;\n idVat?: number | null;\n idRegisterCategorie?: number | null;\n idSector?: number | null;\n idParentAccount?: number | null;\n createdAt?: Date | null;\n updatedAt?: Date | null;\n deletedAt?: Date | null;\n\n // Associations\n nature?: INature;\n AccountType?: IAccountType;\n tva?: IVat;\n registerCategorie?: IRegisterCategory;\n sector?: ISector;\n accountHelp?: IAccountHelp;\n accountDetails?: IAccountDetail[];\n societies?: ISociety[];\n}\n"]}
@@ -0,0 +1,6 @@
1
+ import { IAccount } from './IAccount';
2
+ import { IAccountsSocieties } from './IAccountsSocieties';
3
+ export interface IAccountExtend extends IAccount {
4
+ accountsSocieties: IAccountsSocieties | IAccountsSocieties[];
5
+ }
6
+ //# sourceMappingURL=IAccountExtend.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAccountExtend.d.ts","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IAccountExtend.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,MAAM,WAAW,cAAe,SAAQ,QAAQ;IAC9C,iBAAiB,EAAE,kBAAkB,GAAG,kBAAkB,EAAE,CAAC;CAC9D"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=IAccountExtend.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAccountExtend.js","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IAccountExtend.ts"],"names":[],"mappings":"","sourcesContent":["import { IAccount } from './IAccount';\nimport { IAccountsSocieties } from './IAccountsSocieties';\n\nexport interface IAccountExtend extends IAccount {\n accountsSocieties: IAccountsSocieties | IAccountsSocieties[];\n}"]}
@@ -79,6 +79,7 @@ export declare enum Code {
79
79
  userNotInFmaProcess = "user-not-in-maf-process",
80
80
  wrongSmsCode = "wrong-sms-code",
81
81
  civilityNotFound = "civility_not_found",
82
+ invalidData = "invalidData",
82
83
  emailAlreadyUsedForsponsorship = "email_already_used_for_sponsorship",
83
84
  idSocietyAlreadyUsedForsponsorship = "idSociety_already_used_for_sponsorship",
84
85
  sponsorshipCodeDoesntExist = "sponsorship_code_doesnt_exist",
@@ -1 +1 @@
1
- {"version":3,"file":"IApiError.d.ts","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IApiError.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS;IACnB,QAAQ,cAAc;IACtB,SAAS,yBAAyB;IAClC,aAAa,cAAc;CAC5B;AAED,oBAAY,IAAI;IAEd,YAAY,iCAAiC;IAC7C,qBAAqB,uCAAuC;IAC5D,QAAQ,uBAAuB;IAC/B,eAAe,8BAA8B;IAC7C,eAAe,8BAA8B;IAC7C,UAAU,iBAAiB;IAC3B,mBAAmB,0BAA0B;IAC7C,kBAAkB,sBAAsB;IACxC,kBAAkB,wBAAwB;IAG1C,kBAAkB,yBAAyB;IAC3C,+BAA+B,2CAA2C;IAC1E,6BAA6B,yCAAyC;IACtE,uDAAuD,yEAAyE;IAChI,iBAAiB,wBAAwB;IACzC,mCAAmC,6CAA6C;IAChF,+BAA+B,0CAA0C;IACzE,+BAA+B,2CAA2C;IAC1E,6BAA6B,wCAAwC;IACrE,8BAA8B,wCAAwC;IACtE,4BAA4B,oCAAoC;IAChE,oBAAoB,6BAA6B;IACjD,iBAAiB,yBAAyB;IAC1C,uCAAuC,kDAAkD;IACzF,kCAAkC,6CAA6C;IAC/E,uCAAuC,kDAAkD;IACzF,gCAAgC,yCAAyC;IACzE,6CAA6C,uDAAuD;IACpG,gDAAgD,4DAA4D;IAC5G,wDAAwD,oEAAoE;IAG5H,WAAW,iBAAiB;IAC5B,eAAe,qBAAqB;IAGpC,iBAAiB,wBAAwB;IACzC,8BAA8B,uCAAuC;IACrE,0BAA0B,mCAAmC;IAC7D,aAAa,oBAAoB;IAGjC,yBAAyB,iCAAiC;IAC1D,0BAA0B,mCAAmC;IAG7D,0BAA0B,kCAAkC;IAG5D,8BAA8B,mCAAmC;IACjE,0CAA0C,+CAA+C;IACzF,yCAAyC,8CAA8C;IACvF,2CAA2C,gDAAgD;IAC3F,4CAA4C,iDAAiD;IAC7F,4CAA4C,iDAAiD;IAC7F,qCAAqC,0CAA0C;IAC/E,0BAA0B,+BAA+B;IACzD,4BAA4B,iCAAiC;IAC7D,+BAA+B,oCAAoC;IACnE,0BAA0B,+BAA+B;IACzD,8CAA8C,mDAAmD;IACjG,kCAAkC,uCAAuC;IACzE,kCAAkC,uCAAuC;IACzE,kCAAkC,uCAAuC;IACzE,yCAAyC,8CAA8C;IACvF,wCAAwC,6CAA6C;IACrF,oCAAoC,yCAAyC;IAC7E,uCAAuC,4CAA4C;IACnF,oCAAoC,yCAAyC;IAC7E,mCAAmC,wCAAwC;IAC3E,mCAAmC,wCAAwC;IAC3E,mCAAmC,wCAAwC;IAC3E,uDAAuD,4DAA4D;IACnH,mCAAmC,wCAAwC;IAC3E,iCAAiC,sCAAsC;IACvE,kBAAkB,yBAAyB;IAC3C,iBAAiB,wBAAwB;IACzC,iBAAiB,wBAAwB;IAGzC,uBAAuB,+BAA+B;IAGtD,iCAAiC,yCAAyC;IAG1E,2BAA2B,wBAAwB;IACnD,iBAAiB,wBAAwB;IACzC,cAAc,qBAAqB;IACnC,mBAAmB,4BAA4B;IAC/C,YAAY,mBAAmB;IAG/B,gBAAgB,uBAAuB;IAGvC,8BAA8B,uCAAuC;IACrE,kCAAkC,2CAA2C;IAC7E,0BAA0B,kCAAkC;IAC5D,0BAA0B,kCAAkC;CAC7D;AAED,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,SAAS,CAAC;IAChB,IAAI,EAAE,IAAI,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB"}
1
+ {"version":3,"file":"IApiError.d.ts","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IApiError.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS;IACnB,QAAQ,cAAc;IACtB,SAAS,yBAAyB;IAClC,aAAa,cAAc;CAC5B;AAED,oBAAY,IAAI;IAEd,YAAY,iCAAiC;IAC7C,qBAAqB,uCAAuC;IAC5D,QAAQ,uBAAuB;IAC/B,eAAe,8BAA8B;IAC7C,eAAe,8BAA8B;IAC7C,UAAU,iBAAiB;IAC3B,mBAAmB,0BAA0B;IAC7C,kBAAkB,sBAAsB;IACxC,kBAAkB,wBAAwB;IAG1C,kBAAkB,yBAAyB;IAC3C,+BAA+B,2CAA2C;IAC1E,6BAA6B,yCAAyC;IACtE,uDAAuD,yEAAyE;IAChI,iBAAiB,wBAAwB;IACzC,mCAAmC,6CAA6C;IAChF,+BAA+B,0CAA0C;IACzE,+BAA+B,2CAA2C;IAC1E,6BAA6B,wCAAwC;IACrE,8BAA8B,wCAAwC;IACtE,4BAA4B,oCAAoC;IAChE,oBAAoB,6BAA6B;IACjD,iBAAiB,yBAAyB;IAC1C,uCAAuC,kDAAkD;IACzF,kCAAkC,6CAA6C;IAC/E,uCAAuC,kDAAkD;IACzF,gCAAgC,yCAAyC;IACzE,6CAA6C,uDAAuD;IACpG,gDAAgD,4DAA4D;IAC5G,wDAAwD,oEAAoE;IAG5H,WAAW,iBAAiB;IAC5B,eAAe,qBAAqB;IAGpC,iBAAiB,wBAAwB;IACzC,8BAA8B,uCAAuC;IACrE,0BAA0B,mCAAmC;IAC7D,aAAa,oBAAoB;IAGjC,yBAAyB,iCAAiC;IAC1D,0BAA0B,mCAAmC;IAG7D,0BAA0B,kCAAkC;IAG5D,8BAA8B,mCAAmC;IACjE,0CAA0C,+CAA+C;IACzF,yCAAyC,8CAA8C;IACvF,2CAA2C,gDAAgD;IAC3F,4CAA4C,iDAAiD;IAC7F,4CAA4C,iDAAiD;IAC7F,qCAAqC,0CAA0C;IAC/E,0BAA0B,+BAA+B;IACzD,4BAA4B,iCAAiC;IAC7D,+BAA+B,oCAAoC;IACnE,0BAA0B,+BAA+B;IACzD,8CAA8C,mDAAmD;IACjG,kCAAkC,uCAAuC;IACzE,kCAAkC,uCAAuC;IACzE,kCAAkC,uCAAuC;IACzE,yCAAyC,8CAA8C;IACvF,wCAAwC,6CAA6C;IACrF,oCAAoC,yCAAyC;IAC7E,uCAAuC,4CAA4C;IACnF,oCAAoC,yCAAyC;IAC7E,mCAAmC,wCAAwC;IAC3E,mCAAmC,wCAAwC;IAC3E,mCAAmC,wCAAwC;IAC3E,uDAAuD,4DAA4D;IACnH,mCAAmC,wCAAwC;IAC3E,iCAAiC,sCAAsC;IACvE,kBAAkB,yBAAyB;IAC3C,iBAAiB,wBAAwB;IACzC,iBAAiB,wBAAwB;IAGzC,uBAAuB,+BAA+B;IAGtD,iCAAiC,yCAAyC;IAG1E,2BAA2B,wBAAwB;IACnD,iBAAiB,wBAAwB;IACzC,cAAc,qBAAqB;IACnC,mBAAmB,4BAA4B;IAC/C,YAAY,mBAAmB;IAG/B,gBAAgB,uBAAuB;IACvC,WAAW,gBAAgB;IAG3B,8BAA8B,uCAAuC;IACrE,kCAAkC,2CAA2C;IAC7E,0BAA0B,kCAAkC;IAC5D,0BAA0B,kCAAkC;CAC7D;AAED,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,SAAS,CAAC;IAChB,IAAI,EAAE,IAAI,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB"}
@@ -92,6 +92,7 @@ export var Code;
92
92
  Code["wrongSmsCode"] = "wrong-sms-code";
93
93
  // Cerfa
94
94
  Code["civilityNotFound"] = "civility_not_found";
95
+ Code["invalidData"] = "invalidData";
95
96
  // Sponsorship
96
97
  Code["emailAlreadyUsedForsponsorship"] = "email_already_used_for_sponsorship";
97
98
  Code["idSocietyAlreadyUsedForsponsorship"] = "idSociety_already_used_for_sponsorship";