@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
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.ParamsGenerate2035 = undefined;
6
+ exports.ParamsGenerate2033 = exports.Cerfa2033WorkForce = exports.Cerfa2033ApplicationDiverse = exports.Cerfa2033ApplicationDeficits = exports.Cerfa2033ReportableDeficits = exports.Cerfa2033ProvisionMoves = exports.Cerfa2033ProvisionNatures = exports.Cerfa2033Values = exports.Cerfa2033Amortizations = exports.Cerfa2033Immobilizations = exports.Cerfa2033FiscalResult = exports.Cerfa2033ExploitationResult = exports.Cerfa2033AccountingIncome = exports.Cerfa2033ExploitationExpenses = exports.Cerfa2033ExeploitationProducts = exports.Cerfa2033Referrals = exports.Cerfa2033Debts = exports.Cerfa2033Equity = exports.Cerfa2033CirculatingActive = exports.Cerfa2033FixedAsset = exports.Cerfa2033Society = exports.ParamsGenerate2035 = undefined;
7
7
 
8
8
  var _utils = require("../../../../utils");
9
9
 
@@ -72,4 +72,280 @@ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)
72
72
  __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2035.prototype, "territorialContribution", void 0);
73
73
 
74
74
  __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2035.prototype, "miscellaneousToBeDeductedTotal", void 0);
75
+ /**
76
+ * CERFA 2033 TYPES
77
+ */
78
+
79
+
80
+ class Cerfa2033Society {}
81
+
82
+ exports.Cerfa2033Society = Cerfa2033Society;
83
+
84
+ class Cerfa2033FixedAsset {}
85
+
86
+ exports.Cerfa2033FixedAsset = Cerfa2033FixedAsset;
87
+
88
+ class Cerfa2033CirculatingActive {}
89
+
90
+ exports.Cerfa2033CirculatingActive = Cerfa2033CirculatingActive;
91
+
92
+ class Cerfa2033Equity {}
93
+
94
+ exports.Cerfa2033Equity = Cerfa2033Equity;
95
+
96
+ class Cerfa2033Debts {}
97
+
98
+ exports.Cerfa2033Debts = Cerfa2033Debts;
99
+
100
+ class Cerfa2033Referrals {}
101
+
102
+ exports.Cerfa2033Referrals = Cerfa2033Referrals;
103
+
104
+ class Cerfa2033ExeploitationProducts {}
105
+
106
+ exports.Cerfa2033ExeploitationProducts = Cerfa2033ExeploitationProducts;
107
+
108
+ class Cerfa2033ExploitationExpenses {}
109
+
110
+ exports.Cerfa2033ExploitationExpenses = Cerfa2033ExploitationExpenses;
111
+
112
+ class Cerfa2033AccountingIncome {}
113
+
114
+ exports.Cerfa2033AccountingIncome = Cerfa2033AccountingIncome;
115
+
116
+ class Cerfa2033ExploitationResult {}
117
+
118
+ exports.Cerfa2033ExploitationResult = Cerfa2033ExploitationResult;
119
+
120
+ class Cerfa2033FiscalResult {}
121
+
122
+ exports.Cerfa2033FiscalResult = Cerfa2033FiscalResult;
123
+
124
+ class Cerfa2033Immobilizations {}
125
+
126
+ exports.Cerfa2033Immobilizations = Cerfa2033Immobilizations;
127
+
128
+ class Cerfa2033Amortizations {}
129
+
130
+ exports.Cerfa2033Amortizations = Cerfa2033Amortizations;
131
+
132
+ class Cerfa2033Values {}
133
+
134
+ exports.Cerfa2033Values = Cerfa2033Values;
135
+
136
+ class Cerfa2033ProvisionNatures {}
137
+
138
+ exports.Cerfa2033ProvisionNatures = Cerfa2033ProvisionNatures;
139
+
140
+ class Cerfa2033ProvisionMoves {}
141
+
142
+ exports.Cerfa2033ProvisionMoves = Cerfa2033ProvisionMoves;
143
+
144
+ class Cerfa2033ReportableDeficits {}
145
+
146
+ exports.Cerfa2033ReportableDeficits = Cerfa2033ReportableDeficits;
147
+
148
+ class Cerfa2033ApplicationDeficits {}
149
+
150
+ exports.Cerfa2033ApplicationDeficits = Cerfa2033ApplicationDeficits;
151
+
152
+ class Cerfa2033ApplicationDiverse {}
153
+
154
+ exports.Cerfa2033ApplicationDiverse = Cerfa2033ApplicationDiverse;
155
+
156
+ class Cerfa2033WorkForce {}
157
+
158
+ exports.Cerfa2033WorkForce = Cerfa2033WorkForce;
159
+
160
+ class ParamsGenerate2033 {}
161
+
162
+ exports.ParamsGenerate2033 = ParamsGenerate2033;
163
+
164
+ __decorate([(0, _utils.ApiProperty)(), __metadata("design:type", Boolean)], ParamsGenerate2033.prototype, "isTest", void 0);
165
+
166
+ __decorate([(0, _utils.ApiProperty)(), __metadata("design:type", Boolean)], ParamsGenerate2033.prototype, "isNil", void 0);
167
+
168
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "equityOtherReservePurchaseOfOriginalWorks", void 0);
169
+
170
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "referralFixedAssets", void 0);
171
+
172
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "referralDebtsMoreThanOneYear", void 0);
173
+
174
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "referralClaims", void 0);
175
+
176
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "saleOfMerchandiseExport", void 0);
177
+
178
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "saleOfProductionGoodsExport", void 0);
179
+
180
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "saleOfProductionServicesExport", void 0);
181
+
182
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "otherExpensesProvisions", void 0);
183
+
184
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "otherExpensesCotisations", void 0);
185
+
186
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "exceptionalExpensesSubscriptions", void 0);
187
+
188
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "exceptionalExpensesExceptional", void 0);
189
+
190
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "reinstatementsRemuneration", void 0);
191
+
192
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "reinstatementsAmortizations", void 0);
193
+
194
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "reinstatementsProvisions", void 0);
195
+
196
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "reinstatementsDiverse", void 0);
197
+
198
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "reinstatementsDeviations", void 0);
199
+
200
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "reinstatementsShareOfRent", void 0);
201
+
202
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "reinstatementsFractionOfRents", void 0);
203
+
204
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "reinstatementsRelatedCharges", void 0);
205
+
206
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "reinstatementsFiscalResult", void 0);
207
+
208
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "maritimeTransportDeduction", void 0);
209
+
210
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "newBusinessDeduction", void 0);
211
+
212
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "ZFUDeduction", void 0);
213
+
214
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "difficultBusinessDeduction", void 0);
215
+
216
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "JEIDeduction", void 0);
217
+
218
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "ZRDDeduction", void 0);
219
+
220
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "ZRRDeduction", void 0);
221
+
222
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "revitalizeDeduction", void 0);
223
+
224
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "overseasInvestmentDeduction", void 0);
225
+
226
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "ZFANGDeduction", void 0);
227
+
228
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "BUDDeduction", void 0);
229
+
230
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "priorityDevelopmentDeduction", void 0);
231
+
232
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "diverseDebts", void 0);
233
+
234
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "exceptionalDeduction", void 0);
235
+
236
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "exceptionalDeductionA", void 0);
237
+
238
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "exceptionalDeductionB", void 0);
239
+
240
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "exceptionalDeductionC", void 0);
241
+
242
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "exceptionalDeductionD", void 0);
243
+
244
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "exceptionalDeductionE", void 0);
245
+
246
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "exceptionalDeductionF", void 0);
247
+
248
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "exceptionalDeductionG", void 0);
249
+
250
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "deficitsExercise", void 0);
251
+
252
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "deficitsReportable", void 0);
253
+
254
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Object)], ParamsGenerate2033.prototype, "deficitsImputed", void 0);
255
+
256
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Array)], ParamsGenerate2033.prototype, "addedValueNatures", void 0);
257
+
258
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "majorationsBeginingAmount", void 0);
259
+
260
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "majorationsIncreases", void 0);
261
+
262
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "majorationsDiminution", void 0);
263
+
264
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesBodilyDotations", void 0);
265
+
266
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesBodilyRevivals", void 0);
267
+
268
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesBodilyAmount", void 0);
269
+
270
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesLandDotations", void 0);
271
+
272
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesLandRevivals", void 0);
273
+
274
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesLandLabel", void 0);
275
+
276
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesLandAmount", void 0);
277
+
278
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesConstructionsDotations", void 0);
279
+
280
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesConstructionsRevivals", void 0);
281
+
282
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesConstructionsLabel", void 0);
283
+
284
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesConstructionsAmount", void 0);
285
+
286
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesTechicalInstallationsDotations", void 0);
287
+
288
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesTechicalInstallationsRevivals", void 0);
289
+
290
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesTechicalInstallationsLabel", void 0);
291
+
292
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesTechicalInstallationsAmount", void 0);
293
+
294
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesGeneralInstallationsDotations", void 0);
295
+
296
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesGeneralInstallationsRevivals", void 0);
297
+
298
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesGeneralInstallationsLabel", void 0);
299
+
300
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesGeneralInstallationsAmount", void 0);
301
+
302
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesEquipmentTransactionDotations", void 0);
303
+
304
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesEquipmentTransactionRevivals", void 0);
305
+
306
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesEquipmentTransactionLabel", void 0);
307
+
308
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesEquipmentTransactionAmount", void 0);
309
+
310
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesOtherDotations", void 0);
311
+
312
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesOtherRevivals", void 0);
313
+
314
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesOtherLabel", void 0);
315
+
316
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "provisionsMovesOtherAmount", void 0);
317
+
318
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Array)], ParamsGenerate2033.prototype, "ventilations", void 0);
319
+
320
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "applicationDeficitsResult", void 0);
321
+
322
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "applicationDeficitsStranger", void 0);
323
+
324
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "applicationDeficitsDeductible", void 0);
325
+
326
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "applicationDeficitsCotisations", void 0);
327
+
328
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "applicationDeficitsTotal", void 0);
329
+
330
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "cotisationsDeductible", void 0);
331
+
332
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "cotisationsTotal", void 0);
333
+
334
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "approvedManagementCenter", void 0);
335
+
336
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "vatCollected", void 0);
337
+
338
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "vatDeductible", void 0);
339
+
340
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "specimens", void 0);
341
+
342
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "aidReceived", void 0);
343
+
344
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "investment", void 0);
345
+
346
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "reportableDeficitsTransferred", void 0);
347
+
348
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "reportableDeficitsOperations", void 0);
349
+
350
+ __decorate([(0, _utils.ApiPropertyOptional)(), __metadata("design:type", Number)], ParamsGenerate2033.prototype, "deductionsDiverseTotal", void 0);
75
351
  //# sourceMappingURL=CreateCerfa.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../ts/types/Interface/api/cerfa/CreateCerfa.ts"],"names":[],"mappings":";;;;;;;AACA;;;;;;;;;;;;;;AAiRM,MAAO,kBAAP,CAAyB;;QAAlB,kB,GAAA,kB;;AAEX,UAAA,CAAA,CADC,yBACD,E,kCAAA,CAAA,E,4BAAA,E,QAAA,E,KAAiB,CAAjB,CAAA;;AAGA,UAAA,CAAA,CADC,yBACD,E,kCAAA,CAAA,E,4BAAA,E,OAAA,E,KAAe,CAAf,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,eAAA,E,KAA8B,CAA9B,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,YAAA,E,KAA2B,CAA3B,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,cAAA,E,KAA6B,CAA7B,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,eAAA,E,KAA8B,CAA9B,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,kCAAA,E,KAAiD,CAAjD,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,mBAAA,E,KAAmC,CAAnC,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,iCAAA,E,KAAgD,CAAhD,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,sBAAA,E,KAAqC,CAArC,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,wBAAA,E,KAAuC,CAAvC,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,6BAAA,E,KAA4C,CAA5C,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,qBAAA,E,KAAoC,CAApC,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,oBAAA,E,KAAmC,CAAnC,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,oBAAA,E,KAAmC,CAAnC,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,uBAAA,E,KAAsC,CAAtC,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,+BAAA,E,KAA8C,CAA9C,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,qCAAA,E,KAAoD,CAApD,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,4BAAA,E,KAA2C,CAA3C,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,2CAAA,E,KAA0D,CAA1D,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,eAAA,E,KAA8B,CAA9B,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,0BAAA,E,KAAyC,CAAzC,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,gBAAA,E,KAA+B,CAA/B,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,yBAAA,E,KAAwC,CAAxC,CAAA;;AAGA,UAAA,CAAA,CADC,iCACD,E,iCAAA,CAAA,E,4BAAA,E,gCAAA,E,KAA+C,CAA/C,CAAA","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}"],"sourceRoot":"","file":"CreateCerfa.js"}
1
+ {"version":3,"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}"],"sourceRoot":"","file":"CreateCerfa.js"}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# sourceMappingURL=IAccountExtend.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","sourceRoot":"","file":"IAccountExtend.js"}
@@ -99,7 +99,8 @@ var Code = exports.Code = undefined;
99
99
  Code["userNotInFmaProcess"] = "user-not-in-maf-process";
100
100
  Code["wrongSmsCode"] = "wrong-sms-code"; // Cerfa
101
101
 
102
- Code["civilityNotFound"] = "civility_not_found"; // Sponsorship
102
+ Code["civilityNotFound"] = "civility_not_found";
103
+ Code["invalidData"] = "invalidData"; // Sponsorship
103
104
 
104
105
  Code["emailAlreadyUsedForsponsorship"] = "email_already_used_for_sponsorship";
105
106
  Code["idSocietyAlreadyUsedForsponsorship"] = "idSociety_already_used_for_sponsorship";
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../ts/types/Interface/models/IApiError.ts"],"names":[],"mappings":";;;;;AAAA,IAAY,SAIX,WAJW,SAIX,YAJD;;AAAA,CAAA,UAAY,SAAZ,EAAqB;AACnB,EAAA,SAAA,CAAA,UAAA,CAAA,GAAA,WAAA;AACA,EAAA,SAAA,CAAA,WAAA,CAAA,GAAA,sBAAA;AACA,EAAA,SAAA,CAAA,eAAA,CAAA,GAAA,WAAA;AACD,CAJD,EAAY,SAAS,aAAT,SAAS,GAAT,SAAS,GAAA,EAAA,CAArB;;AAMA,IAAY,IAuGX,WAvGW,IAuGX,YAvGD;;AAAA,CAAA,UAAY,IAAZ,EAAgB;AACd;AACA,EAAA,IAAA,CAAA,cAAA,CAAA,GAAA,8BAAA;AACA,EAAA,IAAA,CAAA,uBAAA,CAAA,GAAA,oCAAA;AACA,EAAA,IAAA,CAAA,UAAA,CAAA,GAAA,oBAAA;AACA,EAAA,IAAA,CAAA,iBAAA,CAAA,GAAA,2BAAA;AACA,EAAA,IAAA,CAAA,iBAAA,CAAA,GAAA,2BAAA;AACA,EAAA,IAAA,CAAA,YAAA,CAAA,GAAA,cAAA;AACA,EAAA,IAAA,CAAA,qBAAA,CAAA,GAAA,uBAAA;AACA,EAAA,IAAA,CAAA,oBAAA,CAAA,GAAA,mBAAA;AACA,EAAA,IAAA,CAAA,oBAAA,CAAA,GAAA,qBAAA,CAVc,CAYd;;AACA,EAAA,IAAA,CAAA,oBAAA,CAAA,GAAA,sBAAA;AACA,EAAA,IAAA,CAAA,iCAAA,CAAA,GAAA,wCAAA;AACA,EAAA,IAAA,CAAA,+BAAA,CAAA,GAAA,sCAAA;AACA,EAAA,IAAA,CAAA,yDAAA,CAAA,GAAA,sEAAA;AACA,EAAA,IAAA,CAAA,mBAAA,CAAA,GAAA,qBAAA;AACA,EAAA,IAAA,CAAA,qCAAA,CAAA,GAAA,0CAAA;AACA,EAAA,IAAA,CAAA,iCAAA,CAAA,GAAA,uCAAA;AACA,EAAA,IAAA,CAAA,iCAAA,CAAA,GAAA,wCAAA;AACA,EAAA,IAAA,CAAA,+BAAA,CAAA,GAAA,qCAAA;AACA,EAAA,IAAA,CAAA,gCAAA,CAAA,GAAA,qCAAA;AACA,EAAA,IAAA,CAAA,8BAAA,CAAA,GAAA,iCAAA;AACA,EAAA,IAAA,CAAA,sBAAA,CAAA,GAAA,0BAAA;AACA,EAAA,IAAA,CAAA,mBAAA,CAAA,GAAA,sBAAA;AACA,EAAA,IAAA,CAAA,yCAAA,CAAA,GAAA,+CAAA;AACA,EAAA,IAAA,CAAA,oCAAA,CAAA,GAAA,0CAAA;AACA,EAAA,IAAA,CAAA,yCAAA,CAAA,GAAA,+CAAA;AACA,EAAA,IAAA,CAAA,kCAAA,CAAA,GAAA,sCAAA;AACA,EAAA,IAAA,CAAA,+CAAA,CAAA,GAAA,oDAAA;AACA,EAAA,IAAA,CAAA,kDAAA,CAAA,GAAA,yDAAA;AACA,EAAA,IAAA,CAAA,0DAAA,CAAA,GAAA,iEAAA,CAhCc,CAkCd;;AACA,EAAA,IAAA,CAAA,aAAA,CAAA,GAAA,cAAA;AACA,EAAA,IAAA,CAAA,iBAAA,CAAA,GAAA,kBAAA,CApCc,CAsCd;;AACA,EAAA,IAAA,CAAA,mBAAA,CAAA,GAAA,qBAAA;AACA,EAAA,IAAA,CAAA,gCAAA,CAAA,GAAA,oCAAA;AACA,EAAA,IAAA,CAAA,4BAAA,CAAA,GAAA,gCAAA;AACA,EAAA,IAAA,CAAA,eAAA,CAAA,GAAA,iBAAA,CA1Cc,CA4Cd;;AACA,EAAA,IAAA,CAAA,2BAAA,CAAA,GAAA,8BAAA;AACA,EAAA,IAAA,CAAA,4BAAA,CAAA,GAAA,gCAAA,CA9Cc,CAgDd;;AACA,EAAA,IAAA,CAAA,4BAAA,CAAA,GAAA,+BAAA,CAjDc,CAmDd;;AACA,EAAA,IAAA,CAAA,gCAAA,CAAA,GAAA,gCAAA;AACA,EAAA,IAAA,CAAA,4CAAA,CAAA,GAAA,4CAAA;AACA,EAAA,IAAA,CAAA,2CAAA,CAAA,GAAA,2CAAA;AACA,EAAA,IAAA,CAAA,6CAAA,CAAA,GAAA,6CAAA;AACA,EAAA,IAAA,CAAA,8CAAA,CAAA,GAAA,8CAAA;AACA,EAAA,IAAA,CAAA,8CAAA,CAAA,GAAA,8CAAA;AACA,EAAA,IAAA,CAAA,uCAAA,CAAA,GAAA,uCAAA;AACA,EAAA,IAAA,CAAA,4BAAA,CAAA,GAAA,4BAAA;AACA,EAAA,IAAA,CAAA,8BAAA,CAAA,GAAA,8BAAA;AACA,EAAA,IAAA,CAAA,iCAAA,CAAA,GAAA,iCAAA;AACA,EAAA,IAAA,CAAA,4BAAA,CAAA,GAAA,4BAAA;AACA,EAAA,IAAA,CAAA,gDAAA,CAAA,GAAA,gDAAA;AACA,EAAA,IAAA,CAAA,oCAAA,CAAA,GAAA,oCAAA;AACA,EAAA,IAAA,CAAA,oCAAA,CAAA,GAAA,oCAAA;AACA,EAAA,IAAA,CAAA,oCAAA,CAAA,GAAA,oCAAA;AACA,EAAA,IAAA,CAAA,2CAAA,CAAA,GAAA,2CAAA;AACA,EAAA,IAAA,CAAA,0CAAA,CAAA,GAAA,0CAAA;AACA,EAAA,IAAA,CAAA,sCAAA,CAAA,GAAA,sCAAA;AACA,EAAA,IAAA,CAAA,yCAAA,CAAA,GAAA,yCAAA;AACA,EAAA,IAAA,CAAA,sCAAA,CAAA,GAAA,sCAAA;AACA,EAAA,IAAA,CAAA,qCAAA,CAAA,GAAA,qCAAA;AACA,EAAA,IAAA,CAAA,qCAAA,CAAA,GAAA,qCAAA;AACA,EAAA,IAAA,CAAA,qCAAA,CAAA,GAAA,qCAAA;AACA,EAAA,IAAA,CAAA,yDAAA,CAAA,GAAA,yDAAA;AACA,EAAA,IAAA,CAAA,qCAAA,CAAA,GAAA,qCAAA;AACA,EAAA,IAAA,CAAA,mCAAA,CAAA,GAAA,mCAAA;AACA,EAAA,IAAA,CAAA,oBAAA,CAAA,GAAA,sBAAA;AACA,EAAA,IAAA,CAAA,mBAAA,CAAA,GAAA,qBAAA;AACA,EAAA,IAAA,CAAA,mBAAA,CAAA,GAAA,qBAAA,CAhFc,CAkFd;;AACA,EAAA,IAAA,CAAA,yBAAA,CAAA,GAAA,4BAAA,CAnFc,CAqFd;;AACA,EAAA,IAAA,CAAA,mCAAA,CAAA,GAAA,sCAAA,CAtFc,CAwFd;;AACA,EAAA,IAAA,CAAA,6BAAA,CAAA,GAAA,qBAAA;AACA,EAAA,IAAA,CAAA,mBAAA,CAAA,GAAA,qBAAA;AACA,EAAA,IAAA,CAAA,gBAAA,CAAA,GAAA,kBAAA;AACA,EAAA,IAAA,CAAA,qBAAA,CAAA,GAAA,yBAAA;AACA,EAAA,IAAA,CAAA,cAAA,CAAA,GAAA,gBAAA,CA7Fc,CA+Fd;;AACA,EAAA,IAAA,CAAA,kBAAA,CAAA,GAAA,oBAAA,CAhGc,CAkGd;;AACA,EAAA,IAAA,CAAA,gCAAA,CAAA,GAAA,oCAAA;AACA,EAAA,IAAA,CAAA,oCAAA,CAAA,GAAA,wCAAA;AACA,EAAA,IAAA,CAAA,4BAAA,CAAA,GAAA,+BAAA;AACA,EAAA,IAAA,CAAA,4BAAA,CAAA,GAAA,+BAAA;AACD,CAvGD,EAAY,IAAI,aAAJ,IAAI,GAAJ,IAAI,GAAA,EAAA,CAAhB","sourcesContent":["export enum ErrorType {\n apiError = 'api_error',\n authError = 'authentication_error',\n resourceError = 'rsc_error',\n}\n\nexport enum Code {\n // HTTP Error\n tokenFailure = 'token_authentication_failure',\n authenticationFailure = 'authentication_credentials_failure',\n notFound = 'resource_not_found',\n validationError = 'resource_validation_error',\n constraintError = 'resource_constraint_error',\n outOfRange = 'resource_ofr',\n internalServerError = 'internal_server_error',\n constraintKeyError = 'resource_fk_error',\n serviceUnavailable = 'service_unavailable',\n\n // Annotation Error\n failedCheckBalance = 'failed_check_balance',\n vatIntracomCanOnlyBeSetForDebit = 'vat_intracom_can_only_be_set_for_debit',\n vatMargeCanOnlyBeSetForCredit = 'vat_marge_can_only_be_set_for_credit',\n vatMargeCanOnlyBeSetIfAmountAllTaxIncludedPurchaseIsSet = 'vat_marge_can_only_be_set_if_amount_all_tax_included_purchase_is_set',\n missingParamSplit = 'missing_param_split',\n totalAmountSplitNotEqualTransaction = 'total_amount_split_not_equal_transaction',\n vatManuelIsSetWithNegativeValue = 'vat_manuel_is_set_with_negative_value',\n vatManuelIsNotSetWithSpecialVat = 'vat_manuel_is_not_set_with_special_vat',\n vatManuelCannotBeSetWithSplit = 'vat_manuel_cannot_be_set_with_split',\n vatNotAuthorizeWithThisAccount = 'vat_not_authorize_with_this_account',\n transactionIsAlreadyExported = 'transaction_is_already_exported',\n thirdPartyIsNotFound = 'third_party_is_not_found',\n accountIsNotFound = 'account_is_not_found',\n immobilizationNotSetWithAccountStartTwo = 'immobilization_not_set_with_account_start_two',\n immobilizationCanOnlyBeSetForDebit = 'immobilization_can_only_be_set_for_debit',\n immobilizationCanNotBeSetWithoutAccount = 'immobilization_can_not_be_set_without_account',\n noExerciceFoundForImmobilization = 'no_exercice_found_for_immobilization',\n amountImmobilizationLessThanAmountTransaction = 'amount_immobilization_less_than_amount_transaction',\n amountImmobilizationLessThanAmountAllTaxIncluded = 'amount_immobilization_less_than_amount_all_tax_included',\n amountImmobilizationIsGreaterThanTotalAmountTransactions = 'amount_immobilization_is_greater_than_total_amount_transactions',\n\n // PDF error\n mergeFailed = 'merge_failed',\n generationError = 'generation_error',\n\n // Email error\n emailAlreadyExist = 'email_already_exist',\n societyCustomEmailAlreadyExist = 'society_custom_email_already_exist',\n societyCustomEmailNotFound = 'society_custom_email_not_found',\n emailNotFound = 'email_not_found',\n\n // BankAccount\n missingParamAccountNumber = 'missing_param_account_number',\n accountNumberParamNotFound = 'account_number_param_not_found',\n\n // Income statement\n invalidIncomeStatementList = 'invalid_income_statement_list',\n\n // Shine errors\n AUTHORIZATION_CLIENT_NOT_FOUND = 'AUTHORIZATION_CLIENT_NOT_FOUND',\n AUTHORIZATION_CLIENT_SECRET_DOES_NOT_MATCH = 'AUTHORIZATION_CLIENT_SECRET_DOES_NOT_MATCH',\n AUTHORIZATION_REDIRECT_URI_DOES_NOT_MATCH = 'AUTHORIZATION_REDIRECT_URI_DOES_NOT_MATCH',\n AUTHORIZATION_REQUESTED_SCOPE_NOT_AVAILABLE = 'AUTHORIZATION_REQUESTED_SCOPE_NOT_AVAILABLE',\n AUTHORIZATION_REQUESTED_SCOPE_NOT_AUTHORIZED = 'AUTHORIZATION_REQUESTED_SCOPE_NOT_AUTHORIZED',\n AUTHORIZATION_REQUESTED_SCOPE_MISSING_OPENID = 'AUTHORIZATION_REQUESTED_SCOPE_MISSING_OPENID',\n AUTHORIZATION_CLIENT_STATUS_NOT_VALID = 'AUTHORIZATION_CLIENT_STATUS_NOT_VALID',\n AUTHORIZATION_CODE_MISSING = 'AUTHORIZATION_CODE_MISSING',\n AUTHORIZATION_CODE_NOT_FOUND = 'AUTHORIZATION_CODE_NOT_FOUND',\n AUTHORIZATION_CODE_ALREADY_USED = 'AUTHORIZATION_CODE_ALREADY_USED',\n AUTHORIZATION_CODE_EXPIRED = 'AUTHORIZATION_CODE_EXPIRED',\n AUTHORIZATION_CODE_REDIRECT_URI_DOES_NOT_MATCH = 'AUTHORIZATION_CODE_REDIRECT_URI_DOES_NOT_MATCH',\n AUTHORIZATION_ACCESS_TOKEN_EXPIRED = 'AUTHORIZATION_ACCESS_TOKEN_EXPIRED',\n AUTHORIZATION_INVALID_ACCESS_TOKEN = 'AUTHORIZATION_INVALID_ACCESS_TOKEN',\n AUTHORIZATION_MISSING_ACCESS_TOKEN = 'AUTHORIZATION_MISSING_ACCESS_TOKEN',\n AUTHORIZATION_ACCESS_TOKEN_WRONG_AUDIENCE = 'AUTHORIZATION_ACCESS_TOKEN_WRONG_AUDIENCE',\n AUTHORIZATION_ACCESS_TOKEN_MISSING_SCOPE = 'AUTHORIZATION_ACCESS_TOKEN_MISSING_SCOPE',\n AUTHORIZATION_ACCESS_TOKEN_FORBIDDEN = 'AUTHORIZATION_ACCESS_TOKEN_FORBIDDEN',\n AUTHORIZATION_UNSUPPORTED_RESPONSE_TYPE = 'AUTHORIZATION_UNSUPPORTED_RESPONSE_TYPE',\n AUTHORIZATION_UNSUPPORTED_GRANT_TYPE = 'AUTHORIZATION_UNSUPPORTED_GRANT_TYPE',\n AUTHORIZATION_REFRESH_TOKEN_MISSING = 'AUTHORIZATION_REFRESH_TOKEN_MISSING',\n AUTHORIZATION_REFRESH_TOKEN_EXPIRED = 'AUTHORIZATION_REFRESH_TOKEN_EXPIRED',\n AUTHORIZATION_REFRESH_TOKEN_INVALID = 'AUTHORIZATION_REFRESH_TOKEN_INVALID',\n AUTHORIZATION_REFRESH_TOKEN_REDIRECT_URI_DOES_NOT_MATCH = 'AUTHORIZATION_REFRESH_TOKEN_REDIRECT_URI_DOES_NOT_MATCH',\n AUTHORIZATION_REFRESH_TOKEN_REVOKED = 'AUTHORIZATION_REFRESH_TOKEN_REVOKED',\n AUTHORIZATION_USER_NOT_AUTHORIZED = 'AUTHORIZATION_USER_NOT_AUTHORIZED',\n responseNotManaged = 'response_not_managed',\n bankAccountsError = 'bank_accounts_error',\n refreshTokenError = 'refresh_token_error',\n\n // Balance Sheet\n invalidBalanceSheetList = 'invalid_balance_sheet_list',\n\n // FecFile\n insertAccountingTransactionFailed = 'insert_accounting_transaction_failed',\n\n // User creation\n userAlreadyExistWithSociety = 'user-already-exists',\n userDoesNotExists = 'user-does-not-exist',\n expiredSmsCode = 'expired-sms-code',\n userNotInFmaProcess = 'user-not-in-maf-process',\n wrongSmsCode = 'wrong-sms-code',\n\n // Cerfa\n civilityNotFound = 'civility_not_found',\n\n // Sponsorship\n emailAlreadyUsedForsponsorship = 'email_already_used_for_sponsorship',\n idSocietyAlreadyUsedForsponsorship = 'idSociety_already_used_for_sponsorship',\n sponsorshipCodeDoesntExist = 'sponsorship_code_doesnt_exist',\n sponsorshipLinkDoesntExist = 'sponsorship_link_doesnt_exist',\n}\n\nexport interface IApiError {\n type: ErrorType;\n code: Code;\n message: string;\n param?: string;\n field?: string;\n}\n"],"sourceRoot":"","file":"IApiError.js"}
1
+ {"version":3,"sources":["../../../../ts/types/Interface/models/IApiError.ts"],"names":[],"mappings":"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","sourcesContent":["export enum ErrorType {\n apiError = 'api_error',\n authError = 'authentication_error',\n resourceError = 'rsc_error',\n}\n\nexport enum Code {\n // HTTP Error\n tokenFailure = 'token_authentication_failure',\n authenticationFailure = 'authentication_credentials_failure',\n notFound = 'resource_not_found',\n validationError = 'resource_validation_error',\n constraintError = 'resource_constraint_error',\n outOfRange = 'resource_ofr',\n internalServerError = 'internal_server_error',\n constraintKeyError = 'resource_fk_error',\n serviceUnavailable = 'service_unavailable',\n\n // Annotation Error\n failedCheckBalance = 'failed_check_balance',\n vatIntracomCanOnlyBeSetForDebit = 'vat_intracom_can_only_be_set_for_debit',\n vatMargeCanOnlyBeSetForCredit = 'vat_marge_can_only_be_set_for_credit',\n vatMargeCanOnlyBeSetIfAmountAllTaxIncludedPurchaseIsSet = 'vat_marge_can_only_be_set_if_amount_all_tax_included_purchase_is_set',\n missingParamSplit = 'missing_param_split',\n totalAmountSplitNotEqualTransaction = 'total_amount_split_not_equal_transaction',\n vatManuelIsSetWithNegativeValue = 'vat_manuel_is_set_with_negative_value',\n vatManuelIsNotSetWithSpecialVat = 'vat_manuel_is_not_set_with_special_vat',\n vatManuelCannotBeSetWithSplit = 'vat_manuel_cannot_be_set_with_split',\n vatNotAuthorizeWithThisAccount = 'vat_not_authorize_with_this_account',\n transactionIsAlreadyExported = 'transaction_is_already_exported',\n thirdPartyIsNotFound = 'third_party_is_not_found',\n accountIsNotFound = 'account_is_not_found',\n immobilizationNotSetWithAccountStartTwo = 'immobilization_not_set_with_account_start_two',\n immobilizationCanOnlyBeSetForDebit = 'immobilization_can_only_be_set_for_debit',\n immobilizationCanNotBeSetWithoutAccount = 'immobilization_can_not_be_set_without_account',\n noExerciceFoundForImmobilization = 'no_exercice_found_for_immobilization',\n amountImmobilizationLessThanAmountTransaction = 'amount_immobilization_less_than_amount_transaction',\n amountImmobilizationLessThanAmountAllTaxIncluded = 'amount_immobilization_less_than_amount_all_tax_included',\n amountImmobilizationIsGreaterThanTotalAmountTransactions = 'amount_immobilization_is_greater_than_total_amount_transactions',\n\n // PDF error\n mergeFailed = 'merge_failed',\n generationError = 'generation_error',\n\n // Email error\n emailAlreadyExist = 'email_already_exist',\n societyCustomEmailAlreadyExist = 'society_custom_email_already_exist',\n societyCustomEmailNotFound = 'society_custom_email_not_found',\n emailNotFound = 'email_not_found',\n\n // BankAccount\n missingParamAccountNumber = 'missing_param_account_number',\n accountNumberParamNotFound = 'account_number_param_not_found',\n\n // Income statement\n invalidIncomeStatementList = 'invalid_income_statement_list',\n\n // Shine errors\n AUTHORIZATION_CLIENT_NOT_FOUND = 'AUTHORIZATION_CLIENT_NOT_FOUND',\n AUTHORIZATION_CLIENT_SECRET_DOES_NOT_MATCH = 'AUTHORIZATION_CLIENT_SECRET_DOES_NOT_MATCH',\n AUTHORIZATION_REDIRECT_URI_DOES_NOT_MATCH = 'AUTHORIZATION_REDIRECT_URI_DOES_NOT_MATCH',\n AUTHORIZATION_REQUESTED_SCOPE_NOT_AVAILABLE = 'AUTHORIZATION_REQUESTED_SCOPE_NOT_AVAILABLE',\n AUTHORIZATION_REQUESTED_SCOPE_NOT_AUTHORIZED = 'AUTHORIZATION_REQUESTED_SCOPE_NOT_AUTHORIZED',\n AUTHORIZATION_REQUESTED_SCOPE_MISSING_OPENID = 'AUTHORIZATION_REQUESTED_SCOPE_MISSING_OPENID',\n AUTHORIZATION_CLIENT_STATUS_NOT_VALID = 'AUTHORIZATION_CLIENT_STATUS_NOT_VALID',\n AUTHORIZATION_CODE_MISSING = 'AUTHORIZATION_CODE_MISSING',\n AUTHORIZATION_CODE_NOT_FOUND = 'AUTHORIZATION_CODE_NOT_FOUND',\n AUTHORIZATION_CODE_ALREADY_USED = 'AUTHORIZATION_CODE_ALREADY_USED',\n AUTHORIZATION_CODE_EXPIRED = 'AUTHORIZATION_CODE_EXPIRED',\n AUTHORIZATION_CODE_REDIRECT_URI_DOES_NOT_MATCH = 'AUTHORIZATION_CODE_REDIRECT_URI_DOES_NOT_MATCH',\n AUTHORIZATION_ACCESS_TOKEN_EXPIRED = 'AUTHORIZATION_ACCESS_TOKEN_EXPIRED',\n AUTHORIZATION_INVALID_ACCESS_TOKEN = 'AUTHORIZATION_INVALID_ACCESS_TOKEN',\n AUTHORIZATION_MISSING_ACCESS_TOKEN = 'AUTHORIZATION_MISSING_ACCESS_TOKEN',\n AUTHORIZATION_ACCESS_TOKEN_WRONG_AUDIENCE = 'AUTHORIZATION_ACCESS_TOKEN_WRONG_AUDIENCE',\n AUTHORIZATION_ACCESS_TOKEN_MISSING_SCOPE = 'AUTHORIZATION_ACCESS_TOKEN_MISSING_SCOPE',\n AUTHORIZATION_ACCESS_TOKEN_FORBIDDEN = 'AUTHORIZATION_ACCESS_TOKEN_FORBIDDEN',\n AUTHORIZATION_UNSUPPORTED_RESPONSE_TYPE = 'AUTHORIZATION_UNSUPPORTED_RESPONSE_TYPE',\n AUTHORIZATION_UNSUPPORTED_GRANT_TYPE = 'AUTHORIZATION_UNSUPPORTED_GRANT_TYPE',\n AUTHORIZATION_REFRESH_TOKEN_MISSING = 'AUTHORIZATION_REFRESH_TOKEN_MISSING',\n AUTHORIZATION_REFRESH_TOKEN_EXPIRED = 'AUTHORIZATION_REFRESH_TOKEN_EXPIRED',\n AUTHORIZATION_REFRESH_TOKEN_INVALID = 'AUTHORIZATION_REFRESH_TOKEN_INVALID',\n AUTHORIZATION_REFRESH_TOKEN_REDIRECT_URI_DOES_NOT_MATCH = 'AUTHORIZATION_REFRESH_TOKEN_REDIRECT_URI_DOES_NOT_MATCH',\n AUTHORIZATION_REFRESH_TOKEN_REVOKED = 'AUTHORIZATION_REFRESH_TOKEN_REVOKED',\n AUTHORIZATION_USER_NOT_AUTHORIZED = 'AUTHORIZATION_USER_NOT_AUTHORIZED',\n responseNotManaged = 'response_not_managed',\n bankAccountsError = 'bank_accounts_error',\n refreshTokenError = 'refresh_token_error',\n\n // Balance Sheet\n invalidBalanceSheetList = 'invalid_balance_sheet_list',\n\n // FecFile\n insertAccountingTransactionFailed = 'insert_accounting_transaction_failed',\n\n // User creation\n userAlreadyExistWithSociety = 'user-already-exists',\n userDoesNotExists = 'user-does-not-exist',\n expiredSmsCode = 'expired-sms-code',\n userNotInFmaProcess = 'user-not-in-maf-process',\n wrongSmsCode = 'wrong-sms-code',\n\n // Cerfa\n civilityNotFound = 'civility_not_found',\n invalidData = 'invalidData',\n\n // Sponsorship\n emailAlreadyUsedForsponsorship = 'email_already_used_for_sponsorship',\n idSocietyAlreadyUsedForsponsorship = 'idSociety_already_used_for_sponsorship',\n sponsorshipCodeDoesntExist = 'sponsorship_code_doesnt_exist',\n sponsorshipLinkDoesntExist = 'sponsorship_link_doesnt_exist',\n}\n\nexport interface IApiError {\n type: ErrorType;\n code: Code;\n message: string;\n param?: string;\n field?: string;\n}\n"],"sourceRoot":"","file":"IApiError.js"}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# sourceMappingURL=ISponsorshipCheck.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","sourceRoot":"","file":"ISponsorshipCheck.js"}
package/js/types/index.js CHANGED
@@ -148,6 +148,18 @@ Object.keys(_IAccount).forEach(function (key) {
148
148
  });
149
149
  });
150
150
 
151
+ var _IAccountExtend = require("./Interface/models/IAccountExtend");
152
+
153
+ Object.keys(_IAccountExtend).forEach(function (key) {
154
+ if (key === "default" || key === "__esModule") return;
155
+ Object.defineProperty(exports, key, {
156
+ enumerable: true,
157
+ get: function () {
158
+ return _IAccountExtend[key];
159
+ }
160
+ });
161
+ });
162
+
151
163
  var _IAccountsSocieties = require("./Interface/models/IAccountsSocieties");
152
164
 
153
165
  Object.keys(_IAccountsSocieties).forEach(function (key) {
@@ -2356,6 +2368,18 @@ Object.keys(_ISponsorship).forEach(function (key) {
2356
2368
  });
2357
2369
  });
2358
2370
 
2371
+ var _ISponsorshipCheck = require("./Interface/models/ISponsorshipCheck");
2372
+
2373
+ Object.keys(_ISponsorshipCheck).forEach(function (key) {
2374
+ if (key === "default" || key === "__esModule") return;
2375
+ Object.defineProperty(exports, key, {
2376
+ enumerable: true,
2377
+ get: function () {
2378
+ return _ISponsorshipCheck[key];
2379
+ }
2380
+ });
2381
+ });
2382
+
2359
2383
  var _IStatusSignature = require("./Interface/models/IStatusSignature");
2360
2384
 
2361
2385
  Object.keys(_IStatusSignature).forEach(function (key) {
@@ -3700,14 +3724,14 @@ Object.keys(_DefaultPermissions).forEach(function (key) {
3700
3724
  });
3701
3725
  });
3702
3726
 
3703
- var _SponsorshipEmailState = require("./Enum/SponsorshipEmailState");
3727
+ var _SponsorshipState = require("./Enum/SponsorshipState");
3704
3728
 
3705
- Object.keys(_SponsorshipEmailState).forEach(function (key) {
3729
+ Object.keys(_SponsorshipState).forEach(function (key) {
3706
3730
  if (key === "default" || key === "__esModule") return;
3707
3731
  Object.defineProperty(exports, key, {
3708
3732
  enumerable: true,
3709
3733
  get: function () {
3710
- return _SponsorshipEmailState[key];
3734
+ return _SponsorshipState[key];
3711
3735
  }
3712
3736
  });
3713
3737
  });