@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.
- package/dist/cjs/api/resources/Transaction.d.ts +2 -1
- package/dist/cjs/api/resources/Transaction.d.ts.map +1 -1
- package/dist/cjs/api/resources/Transaction.js +3 -0
- package/dist/cjs/api/resources/Transaction.js.map +1 -1
- package/dist/cjs/types/Enum/PrestationState.d.ts +5 -1
- package/dist/cjs/types/Enum/PrestationState.d.ts.map +1 -1
- package/dist/cjs/types/Enum/PrestationState.js +28 -0
- package/dist/cjs/types/Enum/PrestationState.js.map +1 -1
- package/dist/cjs/types/Interface/api/SocietyTransaction/Query.d.ts +4 -0
- package/dist/cjs/types/Interface/api/SocietyTransaction/Query.d.ts.map +1 -0
- package/dist/cjs/types/Interface/api/SocietyTransaction/Query.js +23 -0
- package/dist/cjs/types/Interface/api/SocietyTransaction/Query.js.map +1 -0
- package/dist/cjs/types/Interface/api/SocietyTransaction/Read.d.ts +5 -0
- package/dist/cjs/types/Interface/api/SocietyTransaction/Read.d.ts.map +1 -0
- package/dist/cjs/types/Interface/api/SocietyTransaction/Read.js +7 -0
- package/dist/cjs/types/Interface/api/SocietyTransaction/Read.js.map +1 -0
- package/dist/cjs/types/index.d.ts +2 -0
- package/dist/cjs/types/index.d.ts.map +1 -1
- package/dist/cjs/types/index.js +2 -0
- package/dist/cjs/types/index.js.map +1 -1
- package/dist/mjs/api/resources/Transaction.d.ts +2 -1
- package/dist/mjs/api/resources/Transaction.d.ts.map +1 -1
- package/dist/mjs/api/resources/Transaction.js +6 -0
- package/dist/mjs/api/resources/Transaction.js.map +1 -1
- package/dist/mjs/types/Enum/PrestationState.d.ts +5 -1
- package/dist/mjs/types/Enum/PrestationState.d.ts.map +1 -1
- package/dist/mjs/types/Enum/PrestationState.js +28 -0
- package/dist/mjs/types/Enum/PrestationState.js.map +1 -1
- package/dist/mjs/types/Interface/api/SocietyTransaction/Query.d.ts +4 -0
- package/dist/mjs/types/Interface/api/SocietyTransaction/Query.d.ts.map +1 -0
- package/dist/mjs/types/Interface/api/SocietyTransaction/Query.js +20 -0
- package/dist/mjs/types/Interface/api/SocietyTransaction/Query.js.map +1 -0
- package/dist/mjs/types/Interface/api/SocietyTransaction/Read.d.ts +5 -0
- package/dist/mjs/types/Interface/api/SocietyTransaction/Read.d.ts.map +1 -0
- package/dist/mjs/types/Interface/api/SocietyTransaction/Read.js +5 -0
- package/dist/mjs/types/Interface/api/SocietyTransaction/Read.js.map +1 -0
- package/dist/mjs/types/index.d.ts +2 -0
- package/dist/mjs/types/index.d.ts.map +1 -1
- package/dist/mjs/types/index.js +2 -0
- package/dist/mjs/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Transaction.ts +12 -0
- package/ts/types/Enum/PrestationState.ts +28 -0
- package/ts/types/Interface/api/SocietyTransaction/Query.ts +8 -0
- package/ts/types/Interface/api/SocietyTransaction/Read.ts +4 -0
- 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
|
];
|
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';
|