@silexpert/core 1.3.115 → 1.3.116

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 (31) hide show
  1. package/dist/cjs/api/resources/AccountingFiles.d.ts.map +1 -1
  2. package/dist/cjs/api/resources/AccountingFiles.js +1 -0
  3. package/dist/cjs/api/resources/AccountingFiles.js.map +1 -1
  4. package/dist/cjs/api/resources/Inpi.d.ts +10 -4
  5. package/dist/cjs/api/resources/Inpi.d.ts.map +1 -1
  6. package/dist/cjs/api/resources/Inpi.js +14 -6
  7. package/dist/cjs/api/resources/Inpi.js.map +1 -1
  8. package/dist/cjs/types/Interface/api/inpi/inpi.d.ts +55 -0
  9. package/dist/cjs/types/Interface/api/inpi/inpi.d.ts.map +1 -1
  10. package/dist/cjs/types/Interface/api/inpi/inpi.js.map +1 -1
  11. package/dist/cjs/utils/vat/3310/century25.d.ts.map +1 -1
  12. package/dist/cjs/utils/vat/3310/century25.js +10 -10
  13. package/dist/cjs/utils/vat/3310/century25.js.map +1 -1
  14. package/dist/mjs/api/resources/AccountingFiles.d.ts.map +1 -1
  15. package/dist/mjs/api/resources/AccountingFiles.js +1 -0
  16. package/dist/mjs/api/resources/AccountingFiles.js.map +1 -1
  17. package/dist/mjs/api/resources/Inpi.d.ts +10 -4
  18. package/dist/mjs/api/resources/Inpi.d.ts.map +1 -1
  19. package/dist/mjs/api/resources/Inpi.js +14 -6
  20. package/dist/mjs/api/resources/Inpi.js.map +1 -1
  21. package/dist/mjs/types/Interface/api/inpi/inpi.d.ts +55 -0
  22. package/dist/mjs/types/Interface/api/inpi/inpi.d.ts.map +1 -1
  23. package/dist/mjs/types/Interface/api/inpi/inpi.js.map +1 -1
  24. package/dist/mjs/utils/vat/3310/century25.d.ts.map +1 -1
  25. package/dist/mjs/utils/vat/3310/century25.js +10 -10
  26. package/dist/mjs/utils/vat/3310/century25.js.map +1 -1
  27. package/package.json +1 -1
  28. package/ts/api/resources/AccountingFiles.ts +1 -0
  29. package/ts/api/resources/Inpi.ts +15 -6
  30. package/ts/types/Interface/api/inpi/inpi.ts +62 -0
  31. package/ts/utils/vat/3310/century25.ts +10 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@silexpert/core",
3
- "version": "1.3.115",
3
+ "version": "1.3.116",
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",
@@ -65,6 +65,7 @@ export class AccountingFiles extends Resource {
65
65
 
66
66
  return this.axios.$post(`/societies/${params.idSociety}/accounting-files`, formData, {
67
67
  headers: { 'Content-Type': 'multipart/form-data' },
68
+ timeout: 480000,
68
69
  });
69
70
  }
70
71
 
@@ -100,17 +100,17 @@ export class Inpi extends Resource {
100
100
  * @param { string } siren
101
101
  * @returns { any }
102
102
  */
103
- public getCompanyInfoBySiren(siren: string): Promise<any> {
104
- return this.axios.$get(`/inpi/companies/${siren}`);
103
+ public getCompanyInfoBySiret(siret: string): Promise<any> {
104
+ return this.axios.$get(`/inpi/companies/${siret}`);
105
105
  }
106
106
 
107
107
  /**
108
- * Retourne la liste des documents (actes, bilans, bilans saisis) d'une société via son SIREN
109
- * @param { string } siren
108
+ * Retourne la liste des documents (actes, bilans, bilans saisis) d'une société via son SIRET
109
+ * @param { string } siret
110
110
  * @returns { any }
111
111
  */
112
- public getDocumentsBySiren(siren: string): Promise<any> {
113
- return this.axios.$get(`/inpi/companies/${siren}/documents`);
112
+ public getDocumentsBySiret(siret: string): Promise<any> {
113
+ return this.axios.$get(`/inpi/companies/${siret}/documents`);
114
114
  }
115
115
 
116
116
  /**
@@ -139,4 +139,13 @@ export class Inpi extends Resource {
139
139
  public downloadActePdf(id: string): Promise<Buffer> {
140
140
  return this.axios.$get(`/inpi/companies/actes/${id}/download`, { responseType: 'arraybuffer' });
141
141
  }
142
+
143
+ /**
144
+ * Télécharge le PDF de la synthèse d'une société via son SIRET
145
+ * @param { string } siret
146
+ * @returns { Buffer }
147
+ */
148
+ public downloadCompanySynthesis(siret: string): Promise<Buffer> {
149
+ return this.axios.$get(`/inpi/companies/${siret}/synthesis/download`, { responseType: 'arraybuffer' });
150
+ }
142
151
  }
@@ -624,3 +624,65 @@ export interface RneUiDocument {
624
624
  downloadUrl?: string;
625
625
  nomDocument?: string;
626
626
  }
627
+
628
+ export interface IBilanSaisi {
629
+ updatedAt: string;
630
+ siren: string;
631
+ denomination: string;
632
+ dateDepot: string;
633
+ numDepot: string;
634
+ confidentiality: string;
635
+ deleted: boolean;
636
+ id: string;
637
+ bilanSaisi: IBilanSaisiData;
638
+ dateCloture: string;
639
+ typeBilan: string;
640
+ }
641
+
642
+ export interface IBilanSaisiData {
643
+ bilan: IBilan;
644
+ version: string;
645
+ }
646
+
647
+ export interface IBilan {
648
+ identite: IIdentiteBilan;
649
+ detail: IDetailBilan;
650
+ }
651
+
652
+ export interface IIdentiteBilan {
653
+ siren: string;
654
+ dateClotureExercice: string;
655
+ codeGreffe: string;
656
+ numDepot: string;
657
+ numGestion: string;
658
+ codeActivite: string;
659
+ dateClotureExerciceNMoins1: string;
660
+ dureeExerciceN: string;
661
+ dureeExerciceNMoins1: string;
662
+ dateDepot: string;
663
+ codeSaisie: string;
664
+ codeTypeBilan: string;
665
+ codeDevise: string;
666
+ codeOrigineDevise: string;
667
+ codeConfidentialite: string;
668
+ infoTraitement: string;
669
+ denomination: string;
670
+ adresse: string;
671
+ }
672
+
673
+ export interface IDetailBilan {
674
+ pages: IPageBilan[];
675
+ }
676
+
677
+ export interface IPageBilan {
678
+ numero: number;
679
+ liasses: ILiasseBilan[];
680
+ }
681
+
682
+ export interface ILiasseBilan {
683
+ code: string;
684
+ m1?: string;
685
+ m2?: string;
686
+ m3?: string;
687
+ m4?: string;
688
+ }
@@ -1,4 +1,3 @@
1
-
2
1
  import * as dayjs from 'dayjs';
3
2
  import { isDefined } from 'class-validator';
4
3
  import { round as _round, flatten, uniqBy, maxBy } from 'lodash';
@@ -962,16 +961,6 @@ export function getCerfa3310Century25RegistrationFields(data: Cerfa3310_2025): A
962
961
  {
963
962
  name: '3310CA3',
964
963
  fields: [
965
- {
966
- key: 'BA',
967
- value: null,
968
- isMultiple: false,
969
- tags: [1, 2, 3, 4, 5].map((i) => ({
970
- tag: `TexteLibre${i}` as 'TexteLibre1',
971
- description: `FTX Commentaires type ${i}`,
972
- value: textFormatting(comment, 512, 512 * (i - 1)) || null,
973
- })),
974
- },
975
964
  {
976
965
  key: 'BB',
977
966
  tag: 'Valeur',
@@ -986,6 +975,16 @@ export function getCerfa3310Century25RegistrationFields(data: Cerfa3310_2025): A
986
975
  description: 'CCITBX Mention expresse Table TBX avec X pour sélectionné, CCI/7037 = CAV/1131 =',
987
976
  value: comment && comment?.length > 0 ? 'X' : null,
988
977
  },
978
+ {
979
+ key: 'BA',
980
+ value: null,
981
+ isMultiple: false,
982
+ tags: [1, 2, 3, 4, 5].map((i) => ({
983
+ tag: `TexteLibre${i}` as 'TexteLibre1',
984
+ description: `FTX Commentaires type ${i}`,
985
+ value: textFormatting(comment, 512, 512 * (i - 1)) || null,
986
+ })),
987
+ },
989
988
  {
990
989
  key: 'BE',
991
990
  tag: 'Valeur',