@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.
Files changed (38) hide show
  1. package/es/api/resources/Mail.d.ts +2 -2
  2. package/es/api/resources/Mail.d.ts.map +1 -1
  3. package/es/api/resources/Mail.js.map +1 -1
  4. package/es/types/Enum/TaskResponseType.d.ts.map +1 -1
  5. package/es/types/Enum/TaskResponseType.js +11 -0
  6. package/es/types/Enum/TaskResponseType.js.map +1 -1
  7. package/es/types/Interface/api/mail/GetMailPromise.d.ts +5 -0
  8. package/es/types/Interface/api/mail/GetMailPromise.d.ts.map +1 -0
  9. package/es/types/Interface/api/mail/GetMailPromise.js +2 -0
  10. package/es/types/Interface/api/mail/GetMailPromise.js.map +1 -0
  11. package/es/types/Interface/api/wallet/QueryWallet.d.ts +1 -0
  12. package/es/types/Interface/api/wallet/QueryWallet.d.ts.map +1 -1
  13. package/es/types/Interface/api/wallet/QueryWallet.js +5 -0
  14. package/es/types/Interface/api/wallet/QueryWallet.js.map +1 -1
  15. package/es/types/index.d.ts +1 -0
  16. package/es/types/index.d.ts.map +1 -1
  17. package/es/types/index.js +1 -0
  18. package/es/types/index.js.map +1 -1
  19. package/es/utils/documents.js +2 -2
  20. package/es/utils/documents.js.map +1 -1
  21. package/js/api/resources/Mail.js.map +1 -1
  22. package/js/types/Enum/TaskResponseType.js +10 -0
  23. package/js/types/Enum/TaskResponseType.js.map +1 -1
  24. package/js/types/Interface/api/mail/GetMailPromise.js +6 -0
  25. package/js/types/Interface/api/mail/GetMailPromise.js.map +1 -0
  26. package/js/types/Interface/api/wallet/QueryWallet.js +2 -0
  27. package/js/types/Interface/api/wallet/QueryWallet.js.map +1 -1
  28. package/js/types/index.js +12 -0
  29. package/js/types/index.js.map +1 -1
  30. package/js/utils/documents.js +2 -2
  31. package/js/utils/documents.js.map +1 -1
  32. package/package.json +1 -1
  33. package/ts/api/resources/Mail.ts +2 -1
  34. package/ts/types/Enum/TaskResponseType.ts +11 -0
  35. package/ts/types/Interface/api/mail/GetMailPromise.ts +5 -0
  36. package/ts/types/Interface/api/wallet/QueryWallet.ts +4 -0
  37. package/ts/types/index.ts +1 -0
  38. 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
  },
@@ -0,0 +1,5 @@
1
+ import { IMail } from '../../models/IMail';
2
+
3
+ export interface GetMailPromise extends IMail {
4
+ displayPrevisionalAttribution: boolean,
5
+ }
@@ -16,4 +16,8 @@ export class QueryWallet {
16
16
  @IsString()
17
17
  @IsOptional()
18
18
  search?: string;
19
+
20
+ @ApiPropertyOptional()
21
+ @IsOptional()
22
+ activWallet?: boolean;
19
23
  }
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';
@@ -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.EURL.id, LegalForm.SASU.id, LegalForm.SELARL.id].includes(idLegalForm)) {
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)) {