@silexpert/core 1.0.136 → 1.0.137
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/es/api/resources/Mail.d.ts +2 -2
- package/es/api/resources/Mail.d.ts.map +1 -1
- package/es/api/resources/Mail.js.map +1 -1
- package/es/types/Enum/TaskResponseType.d.ts.map +1 -1
- package/es/types/Enum/TaskResponseType.js +11 -0
- package/es/types/Enum/TaskResponseType.js.map +1 -1
- package/es/types/Interface/api/mail/GetMailPromise.d.ts +5 -0
- package/es/types/Interface/api/mail/GetMailPromise.d.ts.map +1 -0
- package/es/types/Interface/api/mail/GetMailPromise.js +2 -0
- package/es/types/Interface/api/mail/GetMailPromise.js.map +1 -0
- package/es/types/Interface/api/wallet/QueryWallet.d.ts +1 -0
- package/es/types/Interface/api/wallet/QueryWallet.d.ts.map +1 -1
- package/es/types/Interface/api/wallet/QueryWallet.js +5 -0
- package/es/types/Interface/api/wallet/QueryWallet.js.map +1 -1
- package/es/types/index.d.ts +1 -0
- package/es/types/index.d.ts.map +1 -1
- package/es/types/index.js +1 -0
- package/es/types/index.js.map +1 -1
- package/es/utils/documents.js +2 -2
- package/es/utils/documents.js.map +1 -1
- package/js/api/resources/Mail.js.map +1 -1
- package/js/types/Enum/TaskResponseType.js +10 -0
- package/js/types/Enum/TaskResponseType.js.map +1 -1
- package/js/types/Interface/api/mail/GetMailPromise.js +6 -0
- package/js/types/Interface/api/mail/GetMailPromise.js.map +1 -0
- package/js/types/Interface/api/wallet/QueryWallet.js +2 -0
- package/js/types/Interface/api/wallet/QueryWallet.js.map +1 -1
- package/js/types/index.js +12 -0
- package/js/types/index.js.map +1 -1
- package/js/utils/documents.js +2 -2
- package/js/utils/documents.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Mail.ts +2 -1
- package/ts/types/Enum/TaskResponseType.ts +11 -0
- package/ts/types/Interface/api/mail/GetMailPromise.ts +5 -0
- package/ts/types/Interface/api/wallet/QueryWallet.ts +4 -0
- package/ts/types/index.ts +1 -0
- package/ts/utils/documents.ts +2 -2
|
@@ -332,6 +332,17 @@ export const TaskResponseType = {
|
|
|
332
332
|
responseType: ResponseType.CALL,
|
|
333
333
|
description: 'Appel notation suite à la livraison du bilan',
|
|
334
334
|
},
|
|
335
|
+
{
|
|
336
|
+
id: 32,
|
|
337
|
+
label: 'Administratif',
|
|
338
|
+
role: Role.CUSTOMER_SUCCESS,
|
|
339
|
+
deadline: Deadline,
|
|
340
|
+
isForWholeRole: false,
|
|
341
|
+
backToClient: false,
|
|
342
|
+
goToCalendar: false,
|
|
343
|
+
responseType: null,
|
|
344
|
+
description: 'Rendez-vous Clémentine',
|
|
345
|
+
},
|
|
335
346
|
],
|
|
336
347
|
|
|
337
348
|
},
|
package/ts/types/index.ts
CHANGED
|
@@ -535,6 +535,7 @@ export * from './Interface/api/mail/QueryCountMail';
|
|
|
535
535
|
export * from './Interface/api/mail/UpdateMail';
|
|
536
536
|
export * from './Interface/api/mail/CreateMailParams';
|
|
537
537
|
export * from './Interface/api/mail/UpdateMailParams';
|
|
538
|
+
export * from './Interface/api/mail/GetMailPromise';
|
|
538
539
|
export * from './Interface/api/society/LegalFormSiren';
|
|
539
540
|
export * from './Interface/api/society/SocietyWithStatsCaParams';
|
|
540
541
|
export * from './Interface/api/society/QuerySociety';
|
package/ts/utils/documents.ts
CHANGED
|
@@ -15,10 +15,10 @@ const requiredListDocs = (idLegalForm: number, isOnlyPrevi?: boolean, isOnlyJuri
|
|
|
15
15
|
generique.push(GedFileType.DISTRIBUTION_OF_SHARE);
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
if ([LegalForm.SA.id, LegalForm.SAS.id, LegalForm.SARL.id, LegalForm.SCI.id].includes(idLegalForm)) {
|
|
18
|
+
if ([LegalForm.EURL.id, LegalForm.SASU.id, LegalForm.SA.id, LegalForm.SAS.id, LegalForm.SARL.id, LegalForm.SCI.id].includes(idLegalForm)) {
|
|
19
19
|
return [...generique, GedFileType.KBIS, GedFileType.STATUTES, GedFileType.DBE2, GedFileType.SEPA];
|
|
20
20
|
}
|
|
21
|
-
if ([LegalForm.
|
|
21
|
+
if ([LegalForm.SELARL.id].includes(idLegalForm)) {
|
|
22
22
|
return [...generique, GedFileType.KBIS, GedFileType.STATUTES, GedFileType.SEPA]; // , GedFileType.DISTRIBUTION_OF_SHARE ???
|
|
23
23
|
}
|
|
24
24
|
if ([LegalForm.EI.id, LegalForm.AUTO_ENTREPRENEUR.id].includes(idLegalForm)) {
|