@silexpert/core 1.3.121 → 1.3.124

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@silexpert/core",
3
- "version": "1.3.121",
3
+ "version": "1.3.124",
4
4
  "description": "Silex Core perform HTTP Request and object binding. Silex core helps developers to retrieve and return formatted object",
5
5
  "homepage": "https://gitlab.compta-clementine.fr/dev/silex-api",
6
6
  "main": "dist/cjs/index.js",
@@ -582,6 +582,7 @@ export type PayloadCerfa3310_2024 = {
582
582
  export type PayloadCerfa3310_2025 = PayloadCerfa3310_2024;
583
583
 
584
584
  export type Cerfa3310_2025 = Cerfa3310_2024 & {
585
+ isHolidayDeposit?: boolean;
585
586
  tic?: {
586
587
  other?: Omit<Tic, 'tax'>;
587
588
  gasoline?: { tax: number };
@@ -481,6 +481,7 @@ export function getCerfa3310Century25Payload(
481
481
 
482
482
  const initialPayload: Cerfa3310_2025 = {
483
483
  isNil,
484
+ isHolidayDeposit,
484
485
  isDGE: false,
485
486
  isUniq: false,
486
487
  declaration: {
@@ -961,6 +962,20 @@ export function getCerfa3310Century25RegistrationFields(data: Cerfa3310_2025): A
961
962
  {
962
963
  name: '3310CA3',
963
964
  fields: [
965
+ {
966
+ key: 'AA',
967
+ tag: 'Valeur',
968
+ isMultiple: false,
969
+ description: 'Acompte congés payés',
970
+ value: data.isHolidayDeposit ? 'X' : null,
971
+ },
972
+ {
973
+ key: 'AC',
974
+ tag: 'Valeur',
975
+ isMultiple: false,
976
+ description: 'Autres',
977
+ value: data.isNil && !data.isHolidayDeposit ? 'X' : null,
978
+ },
964
979
  {
965
980
  key: 'BB',
966
981
  tag: 'Valeur',
@@ -1345,6 +1345,13 @@ export function getCerfa3517Century25RegistrationField(data: Cerfa3517_2025): As
1345
1345
  'Mention déclaration néante Table TBX avec X pour sélectionné, CCI/7037 = CAV/1131 = TBX / Code taxe 0010) 100117 ',
1346
1346
  value: data.isNil ? 'X' : null,
1347
1347
  },
1348
+ {
1349
+ key: 'BK',
1350
+ tag: 'Valeur',
1351
+ isMultiple: false,
1352
+ description: 'Autres',
1353
+ value: data.isNil ? 'X' : null,
1354
+ },
1348
1355
  {
1349
1356
  key: 'SH',
1350
1357
  isMultiple: false,