@silexpert/core 2.0.28 → 2.0.29
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.
- package/dist/types/Enum/TaskResponseType.d.ts +2 -1
- package/dist/types/Enum/TaskResponseType.d.ts.map +1 -1
- package/dist/types/Enum/TaskResponseType.js +1 -0
- package/dist/types/Enum/TaskResponseType.js.map +1 -1
- package/dist/types/Interface/api/cerfa/2031.d.ts +7 -185
- package/dist/types/Interface/api/cerfa/2031.d.ts.map +1 -1
- package/dist/types/Interface/api/cerfa/2031.js.map +1 -1
- package/dist/types/Interface/api/cerfa/2033.d.ts +129 -98
- package/dist/types/Interface/api/cerfa/2033.d.ts.map +1 -1
- package/dist/types/Interface/api/cerfa/2033.js +0 -218
- package/dist/types/Interface/api/cerfa/2033.js.map +1 -1
- package/dist/types/Interface/api/cerfa/2035.d.ts +86 -263
- package/dist/types/Interface/api/cerfa/2035.d.ts.map +1 -1
- package/dist/types/Interface/api/cerfa/2035.js.map +1 -1
- package/dist/types/Interface/api/cerfa/2050.d.ts +460 -1
- package/dist/types/Interface/api/cerfa/2050.d.ts.map +1 -1
- package/dist/types/Interface/api/cerfa/2050.js.map +1 -1
- package/dist/types/Interface/api/cerfa/2065.d.ts +4 -126
- package/dist/types/Interface/api/cerfa/2065.d.ts.map +1 -1
- package/dist/types/Interface/api/cerfa/2065.js +0 -9
- package/dist/types/Interface/api/cerfa/2065.js.map +1 -1
- package/dist/types/Interface/api/registration/CreateRegistration.d.ts +0 -2
- package/dist/types/Interface/api/registration/CreateRegistration.d.ts.map +1 -1
- package/dist/types/Interface/api/registration/CreateRegistration.js +0 -16
- package/dist/types/Interface/api/registration/CreateRegistration.js.map +1 -1
- package/dist/utils/task.d.ts.map +1 -1
- package/dist/utils/task.js +1 -0
- package/dist/utils/task.js.map +1 -1
- package/dist/utils/webmail.d.ts.map +1 -1
- package/dist/utils/webmail.js +8 -1
- package/dist/utils/webmail.js.map +1 -1
- package/package.json +1 -1
- package/ts/types/Enum/TaskResponseType.ts +1 -0
- package/ts/types/Interface/api/cerfa/2031.ts +14 -177
- package/ts/types/Interface/api/cerfa/2033.ts +129 -101
- package/ts/types/Interface/api/cerfa/2035.ts +78 -251
- package/ts/types/Interface/api/cerfa/2050.ts +455 -1
- package/ts/types/Interface/api/cerfa/2065.ts +8 -103
- package/ts/types/Interface/api/registration/CreateRegistration.ts +0 -12
- package/ts/utils/task.ts +1 -0
- package/ts/utils/webmail.ts +7 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ApiPropertyOptional } from '@nestjs/swagger';
|
|
2
2
|
import { PhysicShareholder, MoralShareholder, Subsidiarie } from './CreateCerfa.js';
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
type Cerfa2033Society = {
|
|
5
5
|
name: string;
|
|
6
6
|
address: string;
|
|
7
7
|
addressFormatted: string;
|
|
@@ -9,23 +9,23 @@ export class Cerfa2033Society {
|
|
|
9
9
|
siren: string;
|
|
10
10
|
zipCode: string;
|
|
11
11
|
city: string;
|
|
12
|
-
}
|
|
12
|
+
};
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
type Cerfa2033ActiveValues = {
|
|
15
15
|
gross: number;
|
|
16
16
|
amortization: number;
|
|
17
17
|
net: number;
|
|
18
18
|
};
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
type Cerfa2033FixedAsset = {
|
|
21
21
|
intangibleAssetsCommercialFunds: Cerfa2033ActiveValues;
|
|
22
22
|
intangibleAssetsOther: Cerfa2033ActiveValues;
|
|
23
23
|
tangibleFixedAssets: Cerfa2033ActiveValues;
|
|
24
24
|
financialFixedAssets: Cerfa2033ActiveValues;
|
|
25
25
|
total: Cerfa2033ActiveValues;
|
|
26
|
-
}
|
|
26
|
+
};
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
type Cerfa2033CirculatingActive = {
|
|
29
29
|
rawMaterials: Cerfa2033ActiveValues;
|
|
30
30
|
merchandise: Cerfa2033ActiveValues;
|
|
31
31
|
advancesAndDeposit: Cerfa2033ActiveValues;
|
|
@@ -35,24 +35,9 @@ export class Cerfa2033CirculatingActive {
|
|
|
35
35
|
availabilities: Cerfa2033ActiveValues;
|
|
36
36
|
prepaidExpenses: Cerfa2033ActiveValues;
|
|
37
37
|
total: Cerfa2033ActiveValues;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
export class Cerfa2033Equity {
|
|
41
|
-
shareCapital: number;
|
|
42
|
-
revaluationDifferences: number;
|
|
43
|
-
legalReserve: number;
|
|
44
|
-
reglemented: number;
|
|
45
|
-
otherReserve: {
|
|
46
|
-
purchaseOfOriginalWorks: number;
|
|
47
|
-
total: number;
|
|
48
|
-
};
|
|
49
|
-
deferralAgain: number;
|
|
50
|
-
resultOfTheExercise: number;
|
|
51
|
-
regulatedProvisions: number;
|
|
52
|
-
total: number;
|
|
53
|
-
}
|
|
38
|
+
};
|
|
54
39
|
|
|
55
|
-
|
|
40
|
+
type Cerfa2033Equity_2024 = {
|
|
56
41
|
shareCapital: number;
|
|
57
42
|
revaluationDifferences: number;
|
|
58
43
|
legalReserve: number;
|
|
@@ -66,21 +51,9 @@ export class Cerfa2033Equity_2024 {
|
|
|
66
51
|
regulatedProvisions: number;
|
|
67
52
|
investment: number;
|
|
68
53
|
total: number;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
export class Cerfa2033Debts {
|
|
72
|
-
loansAndSimilarDebts: number;
|
|
73
|
-
advances: number;
|
|
74
|
-
accountsPayable: number;
|
|
75
|
-
otherDebts: {
|
|
76
|
-
partnerCurrentAccount: number;
|
|
77
|
-
total: number;
|
|
78
|
-
};
|
|
79
|
-
prepaid: number;
|
|
80
|
-
total: number;
|
|
81
|
-
}
|
|
54
|
+
};
|
|
82
55
|
|
|
83
|
-
|
|
56
|
+
type Cerfa2033Debts_2024 = {
|
|
84
57
|
loansAndSimilarDebts: number;
|
|
85
58
|
advances: number;
|
|
86
59
|
accountsPayable: number;
|
|
@@ -92,18 +65,18 @@ export class Cerfa2033Debts_2024 {
|
|
|
92
65
|
};
|
|
93
66
|
associatesCurrentAccount: number;
|
|
94
67
|
other: number;
|
|
95
|
-
}
|
|
68
|
+
};
|
|
96
69
|
|
|
97
|
-
|
|
70
|
+
type Cerfa2033Referrals = {
|
|
98
71
|
fixedAssets: number;
|
|
99
72
|
debtsMoreThanOneYear: number;
|
|
100
73
|
claims: number; // créances
|
|
101
74
|
currentAccount: number;
|
|
102
75
|
costOfAcquired: number;
|
|
103
76
|
sellPriceWithoutVat: number;
|
|
104
|
-
}
|
|
77
|
+
};
|
|
105
78
|
|
|
106
|
-
|
|
79
|
+
type Cerfa2033ExeploitationProducts = {
|
|
107
80
|
saleOfMerchandise: {
|
|
108
81
|
export: number;
|
|
109
82
|
total: number;
|
|
@@ -123,9 +96,9 @@ export class Cerfa2033ExeploitationProducts {
|
|
|
123
96
|
operatingGrants: number;
|
|
124
97
|
otherProducts: number;
|
|
125
98
|
total: number;
|
|
126
|
-
}
|
|
99
|
+
};
|
|
127
100
|
|
|
128
|
-
|
|
101
|
+
type Cerfa2033ExploitationExpenses_2024 = {
|
|
129
102
|
purchaseOfMerchandise: number;
|
|
130
103
|
stockVariationMerchandise: number;
|
|
131
104
|
purchaseOfRawMaterials: number;
|
|
@@ -141,7 +114,10 @@ export class Cerfa2033ExploitationExpenses {
|
|
|
141
114
|
};
|
|
142
115
|
remunerations: number;
|
|
143
116
|
social: number;
|
|
144
|
-
amortization:
|
|
117
|
+
amortization: {
|
|
118
|
+
article: number;
|
|
119
|
+
total: number;
|
|
120
|
+
};
|
|
145
121
|
provisions: number;
|
|
146
122
|
otherExpenses: {
|
|
147
123
|
provisions: number;
|
|
@@ -149,9 +125,9 @@ export class Cerfa2033ExploitationExpenses {
|
|
|
149
125
|
total: number;
|
|
150
126
|
};
|
|
151
127
|
total: number;
|
|
152
|
-
}
|
|
128
|
+
};
|
|
153
129
|
|
|
154
|
-
|
|
130
|
+
type Cerfa2033ExploitationExpenses_2025 = {
|
|
155
131
|
purchaseOfMerchandise: number;
|
|
156
132
|
stockVariationMerchandise: number;
|
|
157
133
|
purchaseOfRawMaterials: number;
|
|
@@ -166,7 +142,10 @@ export class Cerfa2033ExploitationExpenses_2024 {
|
|
|
166
142
|
total: number;
|
|
167
143
|
};
|
|
168
144
|
remunerations: number;
|
|
169
|
-
social:
|
|
145
|
+
social: {
|
|
146
|
+
cotisation: number;
|
|
147
|
+
total: number;
|
|
148
|
+
};
|
|
170
149
|
amortization: {
|
|
171
150
|
article: number;
|
|
172
151
|
total: number;
|
|
@@ -178,21 +157,21 @@ export class Cerfa2033ExploitationExpenses_2024 {
|
|
|
178
157
|
total: number;
|
|
179
158
|
};
|
|
180
159
|
total: number;
|
|
181
|
-
}
|
|
160
|
+
};
|
|
182
161
|
|
|
183
|
-
|
|
162
|
+
type Cerfa2033AccountingIncome_2024 = {
|
|
184
163
|
isIncomeTax: boolean;
|
|
185
164
|
exploitationProducts: Cerfa2033ExeploitationProducts;
|
|
186
|
-
exploitationExpenses:
|
|
187
|
-
}
|
|
165
|
+
exploitationExpenses: Cerfa2033ExploitationExpenses_2024;
|
|
166
|
+
};
|
|
188
167
|
|
|
189
|
-
|
|
168
|
+
type Cerfa2033AccountingIncome_2025 = {
|
|
190
169
|
isIncomeTax: boolean;
|
|
191
170
|
exploitationProducts: Cerfa2033ExeploitationProducts;
|
|
192
|
-
exploitationExpenses:
|
|
193
|
-
}
|
|
171
|
+
exploitationExpenses: Cerfa2033ExploitationExpenses_2025;
|
|
172
|
+
};
|
|
194
173
|
|
|
195
|
-
|
|
174
|
+
type Cerfa2033ExploitationResult = {
|
|
196
175
|
total: number;
|
|
197
176
|
financialProducts: number;
|
|
198
177
|
financialExpenses: number;
|
|
@@ -203,7 +182,7 @@ export class Cerfa2033ExploitationResult {
|
|
|
203
182
|
total: number;
|
|
204
183
|
};
|
|
205
184
|
benefitTax: number;
|
|
206
|
-
}
|
|
185
|
+
};
|
|
207
186
|
|
|
208
187
|
type Cerfa2033FiscalResultReinstatements = {
|
|
209
188
|
benefitIncome: number;
|
|
@@ -221,7 +200,7 @@ type Cerfa2033FiscalResultReinstatements = {
|
|
|
221
200
|
fiscalResult: number;
|
|
222
201
|
};
|
|
223
202
|
|
|
224
|
-
|
|
203
|
+
type Cerfa2033FiscalResult = {
|
|
225
204
|
reinstatements: Cerfa2033FiscalResultReinstatements;
|
|
226
205
|
deductions: {
|
|
227
206
|
maritimeTransport: number;
|
|
@@ -263,9 +242,9 @@ export class Cerfa2033FiscalResult {
|
|
|
263
242
|
deficit: number;
|
|
264
243
|
};
|
|
265
244
|
};
|
|
266
|
-
}
|
|
245
|
+
};
|
|
267
246
|
|
|
268
|
-
|
|
247
|
+
type Cerfa2033FiscalResult_2025 = {
|
|
269
248
|
reinstatements: Cerfa2033FiscalResultReinstatements;
|
|
270
249
|
deductions: {
|
|
271
250
|
maritimeTransport: number;
|
|
@@ -307,9 +286,9 @@ export class Cerfa2033FiscalResult_2025 {
|
|
|
307
286
|
deficit: number;
|
|
308
287
|
};
|
|
309
288
|
};
|
|
310
|
-
}
|
|
289
|
+
};
|
|
311
290
|
|
|
312
|
-
|
|
291
|
+
type ImmobilizationsArray = {
|
|
313
292
|
grossValueOfExerciseBegining: number;
|
|
314
293
|
increases: number;
|
|
315
294
|
decreases: number;
|
|
@@ -317,7 +296,7 @@ export type ImmobilizationsArray = {
|
|
|
317
296
|
legalReevaluation: number;
|
|
318
297
|
};
|
|
319
298
|
|
|
320
|
-
|
|
299
|
+
type Cerfa2033Immobilizations = {
|
|
321
300
|
commercialFunds: ImmobilizationsArray;
|
|
322
301
|
other: ImmobilizationsArray;
|
|
323
302
|
land: ImmobilizationsArray;
|
|
@@ -328,16 +307,16 @@ export class Cerfa2033Immobilizations {
|
|
|
328
307
|
bodily: ImmobilizationsArray;
|
|
329
308
|
financial: ImmobilizationsArray;
|
|
330
309
|
total: ImmobilizationsArray;
|
|
331
|
-
}
|
|
310
|
+
};
|
|
332
311
|
|
|
333
|
-
|
|
312
|
+
type AmortizationArray = {
|
|
334
313
|
exerciseBegining: number;
|
|
335
314
|
increases: number;
|
|
336
315
|
diminution: number;
|
|
337
316
|
exerciseFinishing: number;
|
|
338
317
|
};
|
|
339
318
|
|
|
340
|
-
|
|
319
|
+
type Cerfa2033Amortizations = {
|
|
341
320
|
commercial: AmortizationArray;
|
|
342
321
|
intangible: AmortizationArray;
|
|
343
322
|
lands: AmortizationArray;
|
|
@@ -347,9 +326,9 @@ export class Cerfa2033Amortizations {
|
|
|
347
326
|
equipmentTransportation: AmortizationArray;
|
|
348
327
|
bodily: AmortizationArray;
|
|
349
328
|
total: AmortizationArray;
|
|
350
|
-
}
|
|
329
|
+
};
|
|
351
330
|
|
|
352
|
-
|
|
331
|
+
type Cerfa2033TaxableValues = {
|
|
353
332
|
active: number;
|
|
354
333
|
amortizations: number;
|
|
355
334
|
residualValue: number;
|
|
@@ -360,7 +339,7 @@ export type Cerfa2033TaxableValues = {
|
|
|
360
339
|
longTerm0: number;
|
|
361
340
|
};
|
|
362
341
|
|
|
363
|
-
|
|
342
|
+
type Cerfa2033Values = {
|
|
364
343
|
natures: string[];
|
|
365
344
|
immobilizations: {
|
|
366
345
|
list: Cerfa2033TaxableValues[];
|
|
@@ -379,15 +358,16 @@ export class Cerfa2033Values {
|
|
|
379
358
|
longTerm15or128: number;
|
|
380
359
|
longTerm0: number;
|
|
381
360
|
};
|
|
382
|
-
}
|
|
361
|
+
};
|
|
383
362
|
|
|
384
|
-
|
|
363
|
+
type Cerfa2033ProvisionNaturesArray = {
|
|
385
364
|
beginingAmount: number;
|
|
386
365
|
increases: number;
|
|
387
366
|
diminution: number;
|
|
388
367
|
finishingAmount: number;
|
|
389
368
|
};
|
|
390
|
-
|
|
369
|
+
|
|
370
|
+
type Cerfa2033ProvisionNatures = {
|
|
391
371
|
amortizations: Cerfa2033ProvisionNaturesArray;
|
|
392
372
|
majorations: Cerfa2033ProvisionNaturesArray;
|
|
393
373
|
other: Cerfa2033ProvisionNaturesArray;
|
|
@@ -397,19 +377,19 @@ export class Cerfa2033ProvisionNatures {
|
|
|
397
377
|
clientAccounts: Cerfa2033ProvisionNaturesArray;
|
|
398
378
|
depreviation: Cerfa2033ProvisionNaturesArray;
|
|
399
379
|
total: Cerfa2033ProvisionNaturesArray;
|
|
400
|
-
}
|
|
380
|
+
};
|
|
401
381
|
|
|
402
|
-
|
|
382
|
+
type Cerfa2033ProvisionMovesDotationsAndRevivals = {
|
|
403
383
|
dotations: number;
|
|
404
384
|
revivals: number;
|
|
405
385
|
};
|
|
406
386
|
|
|
407
|
-
|
|
387
|
+
type Cerfa2033ProvisionMovesVentilation = {
|
|
408
388
|
label: string;
|
|
409
389
|
amount: number;
|
|
410
390
|
};
|
|
411
391
|
|
|
412
|
-
export
|
|
392
|
+
export type Cerfa2033ProvisionMoves = {
|
|
413
393
|
commercial: Cerfa2033ProvisionMovesDotationsAndRevivals;
|
|
414
394
|
bodily: Cerfa2033ProvisionMovesDotationsAndRevivals;
|
|
415
395
|
land: Cerfa2033ProvisionMovesDotationsAndRevivals;
|
|
@@ -419,9 +399,9 @@ export class Cerfa2033ProvisionMoves {
|
|
|
419
399
|
equipmentTransportation: Cerfa2033ProvisionMovesDotationsAndRevivals;
|
|
420
400
|
other: Cerfa2033ProvisionMovesDotationsAndRevivals;
|
|
421
401
|
total: Cerfa2033ProvisionMovesDotationsAndRevivals;
|
|
422
|
-
}
|
|
402
|
+
};
|
|
423
403
|
|
|
424
|
-
|
|
404
|
+
type Cerfa2033ReportableDeficits = {
|
|
425
405
|
remaining: number;
|
|
426
406
|
transferred: number;
|
|
427
407
|
operations: number;
|
|
@@ -429,14 +409,9 @@ export class Cerfa2033ReportableDeficits {
|
|
|
429
409
|
reportable: number;
|
|
430
410
|
exercise: number;
|
|
431
411
|
total: number;
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
export class Cerfa2033ApplicationDeficits {
|
|
435
|
-
result: number;
|
|
436
|
-
stranger: number;
|
|
437
|
-
}
|
|
412
|
+
};
|
|
438
413
|
|
|
439
|
-
|
|
414
|
+
type Cerfa2033ApplicationDiverse = {
|
|
440
415
|
bonuses: {
|
|
441
416
|
deductible: number;
|
|
442
417
|
cotisations: number;
|
|
@@ -452,9 +427,9 @@ export class Cerfa2033ApplicationDiverse {
|
|
|
452
427
|
specimens: number;
|
|
453
428
|
aidReceived: number;
|
|
454
429
|
investment: number;
|
|
455
|
-
}
|
|
430
|
+
};
|
|
456
431
|
|
|
457
|
-
|
|
432
|
+
type Cerfa2033WorkForce = {
|
|
458
433
|
declaration?: {
|
|
459
434
|
average: number;
|
|
460
435
|
apprentices: number;
|
|
@@ -498,17 +473,62 @@ export class Cerfa2033WorkForce {
|
|
|
498
473
|
};
|
|
499
474
|
cessationDate: string;
|
|
500
475
|
};
|
|
501
|
-
}
|
|
502
|
-
|
|
476
|
+
};
|
|
477
|
+
|
|
478
|
+
type Cerfa2033WorkForce_2026 = {
|
|
479
|
+
declaration?: {
|
|
480
|
+
average: number;
|
|
481
|
+
apprentices: number;
|
|
482
|
+
handicapped: number;
|
|
483
|
+
artisanal: number;
|
|
484
|
+
};
|
|
485
|
+
addedValue?: {
|
|
486
|
+
saleOfProducts: number;
|
|
487
|
+
licences: number;
|
|
488
|
+
saleOfImmobilizations: number;
|
|
489
|
+
total1: number;
|
|
490
|
+
otherProducts: number;
|
|
491
|
+
production: number;
|
|
492
|
+
subventions: number;
|
|
493
|
+
positiveVariation: number;
|
|
494
|
+
debts: number;
|
|
495
|
+
total2: number;
|
|
496
|
+
purchases: number;
|
|
497
|
+
negativeVariation: number;
|
|
498
|
+
services: number;
|
|
499
|
+
rents: number;
|
|
500
|
+
taxes: number;
|
|
501
|
+
otherManagementExpenses: number;
|
|
502
|
+
deductibleExpenses: number;
|
|
503
|
+
deductibleFraction: number;
|
|
504
|
+
lessValues: number;
|
|
505
|
+
total3: number;
|
|
506
|
+
addValue: number;
|
|
507
|
+
cotisation: number;
|
|
508
|
+
};
|
|
509
|
+
CVAE?: {
|
|
510
|
+
isEstablishment: boolean;
|
|
511
|
+
turnover: number;
|
|
512
|
+
workforce: number;
|
|
513
|
+
turnoverGroup: number;
|
|
514
|
+
period: {
|
|
515
|
+
startDate: string;
|
|
516
|
+
endDate: string;
|
|
517
|
+
};
|
|
518
|
+
cessationDate: string;
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
|
|
522
|
+
type Cerfa2033ShareCapital = {
|
|
503
523
|
moralAssociates: number;
|
|
504
524
|
moralAssociatesShares: number;
|
|
505
525
|
physicAssociates: number;
|
|
506
526
|
physicAssociatesShares: number;
|
|
507
527
|
moralShareholder: MoralShareholder[];
|
|
508
528
|
physicShareholder: PhysicShareholder[];
|
|
509
|
-
}
|
|
529
|
+
};
|
|
510
530
|
|
|
511
|
-
export interface
|
|
531
|
+
export interface Cerfa2033_2024 {
|
|
512
532
|
isNil: boolean;
|
|
513
533
|
isPageBNil: boolean;
|
|
514
534
|
isPageCNil: boolean;
|
|
@@ -526,12 +546,12 @@ export interface Cerfa2033 {
|
|
|
526
546
|
fixedAsset: Cerfa2033FixedAsset;
|
|
527
547
|
circulatingActive: Cerfa2033CirculatingActive;
|
|
528
548
|
totalActive: Cerfa2033ActiveValues;
|
|
529
|
-
equity:
|
|
549
|
+
equity: Cerfa2033Equity_2024;
|
|
530
550
|
provisionsForRisks: number;
|
|
531
|
-
debts:
|
|
551
|
+
debts: Cerfa2033Debts_2024;
|
|
532
552
|
generalTotal: number;
|
|
533
553
|
referrals: Cerfa2033Referrals;
|
|
534
|
-
accountingIncome:
|
|
554
|
+
accountingIncome: Cerfa2033AccountingIncome_2024;
|
|
535
555
|
exploitationResult: Cerfa2033ExploitationResult;
|
|
536
556
|
benefitsOrLoses: number;
|
|
537
557
|
fiscalResult: Cerfa2033FiscalResult;
|
|
@@ -554,7 +574,7 @@ export interface Cerfa2033 {
|
|
|
554
574
|
isPageENil: boolean;
|
|
555
575
|
}
|
|
556
576
|
|
|
557
|
-
export interface
|
|
577
|
+
export interface Cerfa2033_2025 {
|
|
558
578
|
isNil: boolean;
|
|
559
579
|
isPageBNil: boolean;
|
|
560
580
|
isPageCNil: boolean;
|
|
@@ -580,7 +600,7 @@ export interface Cerfa2033_2024 {
|
|
|
580
600
|
accountingIncome: Cerfa2033AccountingIncome_2024;
|
|
581
601
|
exploitationResult: Cerfa2033ExploitationResult;
|
|
582
602
|
benefitsOrLoses: number;
|
|
583
|
-
fiscalResult:
|
|
603
|
+
fiscalResult: Cerfa2033FiscalResult_2025;
|
|
584
604
|
immobilizations: Cerfa2033Immobilizations;
|
|
585
605
|
amortizations: Cerfa2033Amortizations;
|
|
586
606
|
values: Cerfa2033Values;
|
|
@@ -593,14 +613,14 @@ export interface Cerfa2033_2024 {
|
|
|
593
613
|
reportableDeficits: Cerfa2033ReportableDeficits;
|
|
594
614
|
diverse: Cerfa2033ApplicationDiverse;
|
|
595
615
|
workForce: Cerfa2033WorkForce;
|
|
596
|
-
shareCapital: Cerfa2033ShareCapital;
|
|
616
|
+
shareCapital: Cerfa2033ShareCapital & { totalAssociates: number; totalShares: number };
|
|
597
617
|
subsidiaries: { total: number; list: Subsidiarie[] };
|
|
598
618
|
isPageGNil: boolean;
|
|
599
619
|
isPageFNil: boolean;
|
|
600
620
|
isPageENil: boolean;
|
|
601
621
|
}
|
|
602
622
|
|
|
603
|
-
export interface
|
|
623
|
+
export interface Cerfa2033_2026 {
|
|
604
624
|
isNil: boolean;
|
|
605
625
|
isPageBNil: boolean;
|
|
606
626
|
isPageCNil: boolean;
|
|
@@ -623,7 +643,7 @@ export interface Cerfa2033_2025 {
|
|
|
623
643
|
debts: Cerfa2033Debts_2024;
|
|
624
644
|
generalTotal: number;
|
|
625
645
|
referrals: Cerfa2033Referrals;
|
|
626
|
-
accountingIncome:
|
|
646
|
+
accountingIncome: Cerfa2033AccountingIncome_2025;
|
|
627
647
|
exploitationResult: Cerfa2033ExploitationResult;
|
|
628
648
|
benefitsOrLoses: number;
|
|
629
649
|
fiscalResult: Cerfa2033FiscalResult_2025;
|
|
@@ -637,10 +657,18 @@ export interface Cerfa2033_2025 {
|
|
|
637
657
|
total: number;
|
|
638
658
|
};
|
|
639
659
|
reportableDeficits: Cerfa2033ReportableDeficits;
|
|
640
|
-
diverse: Cerfa2033ApplicationDiverse
|
|
641
|
-
workForce:
|
|
660
|
+
diverse: Omit<Omit<Cerfa2033ApplicationDiverse, 'cotisations'>, 'approvedManagementCenter'>;
|
|
661
|
+
workForce: Cerfa2033WorkForce_2026;
|
|
642
662
|
shareCapital: Cerfa2033ShareCapital & { totalAssociates: number; totalShares: number };
|
|
643
663
|
subsidiaries: { total: number; list: Subsidiarie[] };
|
|
664
|
+
independantWorkers: {
|
|
665
|
+
reintegration: number;
|
|
666
|
+
deduce: number;
|
|
667
|
+
socialRevenue: {
|
|
668
|
+
negative: number;
|
|
669
|
+
positive: number;
|
|
670
|
+
};
|
|
671
|
+
};
|
|
644
672
|
isPageGNil: boolean;
|
|
645
673
|
isPageFNil: boolean;
|
|
646
674
|
isPageENil: boolean;
|
|
@@ -650,4 +678,4 @@ export class ParamsGenerate2033 {
|
|
|
650
678
|
isTest?: boolean;
|
|
651
679
|
}
|
|
652
680
|
|
|
653
|
-
export type AnyCerfa2033Century =
|
|
681
|
+
export type AnyCerfa2033Century = Cerfa2033_2024 | Cerfa2033_2025 | Cerfa2033_2026;
|