@silexpert/core 1.2.63 → 1.2.64

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 (46) hide show
  1. package/dist/cjs/api/resources/Transaction.d.ts +2 -1
  2. package/dist/cjs/api/resources/Transaction.d.ts.map +1 -1
  3. package/dist/cjs/api/resources/Transaction.js +3 -0
  4. package/dist/cjs/api/resources/Transaction.js.map +1 -1
  5. package/dist/cjs/types/Enum/PrestationState.d.ts +5 -1
  6. package/dist/cjs/types/Enum/PrestationState.d.ts.map +1 -1
  7. package/dist/cjs/types/Enum/PrestationState.js +28 -0
  8. package/dist/cjs/types/Enum/PrestationState.js.map +1 -1
  9. package/dist/cjs/types/Interface/api/SocietyTransaction/Query.d.ts +4 -0
  10. package/dist/cjs/types/Interface/api/SocietyTransaction/Query.d.ts.map +1 -0
  11. package/dist/cjs/types/Interface/api/SocietyTransaction/Query.js +23 -0
  12. package/dist/cjs/types/Interface/api/SocietyTransaction/Query.js.map +1 -0
  13. package/dist/cjs/types/Interface/api/SocietyTransaction/Read.d.ts +5 -0
  14. package/dist/cjs/types/Interface/api/SocietyTransaction/Read.d.ts.map +1 -0
  15. package/dist/cjs/types/Interface/api/SocietyTransaction/Read.js +7 -0
  16. package/dist/cjs/types/Interface/api/SocietyTransaction/Read.js.map +1 -0
  17. package/dist/cjs/types/index.d.ts +2 -0
  18. package/dist/cjs/types/index.d.ts.map +1 -1
  19. package/dist/cjs/types/index.js +2 -0
  20. package/dist/cjs/types/index.js.map +1 -1
  21. package/dist/mjs/api/resources/Transaction.d.ts +2 -1
  22. package/dist/mjs/api/resources/Transaction.d.ts.map +1 -1
  23. package/dist/mjs/api/resources/Transaction.js +6 -0
  24. package/dist/mjs/api/resources/Transaction.js.map +1 -1
  25. package/dist/mjs/types/Enum/PrestationState.d.ts +5 -1
  26. package/dist/mjs/types/Enum/PrestationState.d.ts.map +1 -1
  27. package/dist/mjs/types/Enum/PrestationState.js +28 -0
  28. package/dist/mjs/types/Enum/PrestationState.js.map +1 -1
  29. package/dist/mjs/types/Interface/api/SocietyTransaction/Query.d.ts +4 -0
  30. package/dist/mjs/types/Interface/api/SocietyTransaction/Query.d.ts.map +1 -0
  31. package/dist/mjs/types/Interface/api/SocietyTransaction/Query.js +20 -0
  32. package/dist/mjs/types/Interface/api/SocietyTransaction/Query.js.map +1 -0
  33. package/dist/mjs/types/Interface/api/SocietyTransaction/Read.d.ts +5 -0
  34. package/dist/mjs/types/Interface/api/SocietyTransaction/Read.d.ts.map +1 -0
  35. package/dist/mjs/types/Interface/api/SocietyTransaction/Read.js +5 -0
  36. package/dist/mjs/types/Interface/api/SocietyTransaction/Read.js.map +1 -0
  37. package/dist/mjs/types/index.d.ts +2 -0
  38. package/dist/mjs/types/index.d.ts.map +1 -1
  39. package/dist/mjs/types/index.js +2 -0
  40. package/dist/mjs/types/index.js.map +1 -1
  41. package/package.json +1 -1
  42. package/ts/api/resources/Transaction.ts +12 -0
  43. package/ts/types/Enum/PrestationState.ts +28 -0
  44. package/ts/types/Interface/api/SocietyTransaction/Query.ts +8 -0
  45. package/ts/types/Interface/api/SocietyTransaction/Read.ts +4 -0
  46. package/ts/types/index.ts +2 -0
@@ -5,7 +5,10 @@ export enum JuridicalPrestationState {
5
5
  WAITING_INFO_BILLING = 4,
6
6
  WAITING_SIGNED_DOCUMENTS_AND_BILLING = 5,
7
7
  WAITING_REGISTRATION = 6,
8
+ WAITING_PAYMENT_OF_COURT_FEES = 7,
8
9
  WAITING_KBIS = 8,
10
+ SENDING_KBIS = 9,
11
+ DISCONTINUED = 10,
9
12
  }
10
13
 
11
14
  export const JuridicalPrestationStateDetail = [
@@ -13,35 +16,60 @@ export const JuridicalPrestationStateDetail = [
13
16
  id: JuridicalPrestationState.TO_CONTACT_BILLING_TO_DO,
14
17
  name: 'A contacter / facturation à faire',
15
18
  color: 'grey lighten-4',
19
+ hidden: false,
16
20
  },
17
21
  {
18
22
  id: JuridicalPrestationState.WAITING_INFO_BILLING,
19
23
  name: 'En attente informations / paiement',
20
24
  color: 'blue lighten-4',
25
+ hidden: false,
21
26
  },
22
27
  {
23
28
  id: JuridicalPrestationState.WAITING_SIGNED_DOCUMENTS_AND_BILLING,
24
29
  name: 'En attente documents signés et paiements',
25
30
  color: 'blue',
31
+ hidden: false,
26
32
  },
27
33
  {
28
34
  id: JuridicalPrestationState.WAITING_REGISTRATION,
29
35
  name: 'En attente enregistrement',
30
36
  color: 'blue lighten-4',
37
+ hidden: false,
31
38
  },
32
39
  {
33
40
  id: JuridicalPrestationState.WAITING_BALANCE_SHEET_LIQUI,
34
41
  name: 'En attente bilan de liquidation',
35
42
  color: 'primary',
43
+ hidden: false,
44
+ },
45
+ {
46
+ id: JuridicalPrestationState.WAITING_PAYMENT_OF_COURT_FEES,
47
+ name: 'En attente paiement des frais de Greffe',
48
+ color: 'purple lighten-4',
49
+ hidden: true,
36
50
  },
37
51
  {
38
52
  id: JuridicalPrestationState.WAITING_KBIS,
39
53
  name: 'En attente KBIS',
40
54
  color: 'yellow lighten-4',
55
+ hidden: false,
56
+ },
57
+ {
58
+ id: JuridicalPrestationState.SENDING_KBIS,
59
+ name: 'Envoi de KBIS',
60
+ color: 'primary lighten-2',
61
+ hidden: true,
41
62
  },
42
63
  {
43
64
  id: JuridicalPrestationState.DONE,
44
65
  name: 'Dossier terminé',
45
66
  color: 'success',
67
+ hidden: false,
68
+ },
69
+ {
70
+ id: JuridicalPrestationState.DISCONTINUED,
71
+ name: 'Dossier abandon',
72
+ color: 'error',
73
+ hidden: true,
46
74
  },
47
75
  ];
@@ -0,0 +1,8 @@
1
+ import { IsDate } from 'class-validator';
2
+ import { ApiProperty } from '../../../../utils';
3
+
4
+ export class QuerySocietyTransactionGetBalance {
5
+ @ApiProperty()
6
+ @IsDate()
7
+ endDate: Date;
8
+ }
@@ -0,0 +1,4 @@
1
+ export class ReadSocietyTransactionGetBalance {
2
+ dateValue?: Date;
3
+ state: boolean;
4
+ }
package/ts/types/index.ts CHANGED
@@ -733,7 +733,9 @@ export * from './Interface/api/vatDeclaration/ReadVatVariousOperations';
733
733
  export * from './Interface/api/vatDeclaration/ResultFormatToEntries';
734
734
  export * from './Interface/api/promoCode/QueryDefaultPromotion';
735
735
  export * from './Interface/api/promoCode/ReadDefaultPromotion';
736
+ export * from './Interface/api/SocietyTransaction/Query';
736
737
  export * from './Interface/api/SocietyTransaction/QuerySocietyTransactionCount';
738
+ export * from './Interface/api/SocietyTransaction/Read';
737
739
  export * from './Interface/api/SocietyTransaction/ReadSocietyTransactionCount';
738
740
  export * from './Interface/api/salesContract/SendSalesContractParams';
739
741
  export * from './Interface/api/salesContract/GenerateSalesContractParams';