@silexpert/core 2.0.58 → 2.0.59-society-address-complement

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 (40) hide show
  1. package/dist/api/resources/Docoon.d.ts +2 -2
  2. package/dist/api/resources/Docoon.d.ts.map +1 -1
  3. package/dist/api/resources/Docoon.js +2 -2
  4. package/dist/api/resources/Docoon.js.map +1 -1
  5. package/dist/types/Enum/Kyc.d.ts +9 -0
  6. package/dist/types/Enum/Kyc.d.ts.map +1 -0
  7. package/dist/types/Enum/Kyc.js +10 -0
  8. package/dist/types/Enum/Kyc.js.map +1 -0
  9. package/dist/types/Interface/api/docoon/Query.d.ts +3 -0
  10. package/dist/types/Interface/api/docoon/Query.d.ts.map +1 -1
  11. package/dist/types/Interface/api/docoon/Query.js +9 -0
  12. package/dist/types/Interface/api/docoon/Query.js.map +1 -1
  13. package/dist/types/Interface/api/docoon/Read.d.ts +1 -1
  14. package/dist/types/Interface/api/docoon/Read.d.ts.map +1 -1
  15. package/dist/types/Interface/api/docoon/Read.js.map +1 -1
  16. package/dist/types/Interface/api/society/CreateSociety.d.ts +1 -0
  17. package/dist/types/Interface/api/society/CreateSociety.d.ts.map +1 -1
  18. package/dist/types/Interface/api/society/CreateSociety.js +5 -0
  19. package/dist/types/Interface/api/society/CreateSociety.js.map +1 -1
  20. package/dist/types/Interface/api/society/UpdateSociety.d.ts +1 -0
  21. package/dist/types/Interface/api/society/UpdateSociety.d.ts.map +1 -1
  22. package/dist/types/Interface/api/society/UpdateSociety.js +5 -0
  23. package/dist/types/Interface/api/society/UpdateSociety.js.map +1 -1
  24. package/dist/types/Interface/models/ISociety.d.ts +1 -0
  25. package/dist/types/Interface/models/ISociety.d.ts.map +1 -1
  26. package/dist/types/Interface/models/ISociety.js +1 -0
  27. package/dist/types/Interface/models/ISociety.js.map +1 -1
  28. package/dist/types/index.d.ts +1 -0
  29. package/dist/types/index.d.ts.map +1 -1
  30. package/dist/types/index.js +1 -0
  31. package/dist/types/index.js.map +1 -1
  32. package/package.json +1 -1
  33. package/ts/api/resources/Docoon.ts +3 -2
  34. package/ts/types/Enum/Kyc.ts +8 -0
  35. package/ts/types/Interface/api/docoon/Query.ts +7 -0
  36. package/ts/types/Interface/api/docoon/Read.ts +1 -1
  37. package/ts/types/Interface/api/society/CreateSociety.ts +3 -0
  38. package/ts/types/Interface/api/society/UpdateSociety.ts +3 -0
  39. package/ts/types/Interface/models/ISociety.ts +1 -0
  40. package/ts/types/index.ts +1 -0
@@ -4,6 +4,7 @@ import {
4
4
  ReadDocoonDirectoryLineAdded,
5
5
  ReadDocoonTenantDirectoryLines,
6
6
  RelaunchDirectoryLine,
7
+ QueryDirectoryLineById,
7
8
  } from '../../types/index.js';
8
9
  import { Resource } from '../Resource.js';
9
10
 
@@ -16,8 +17,8 @@ export class Docoon extends Resource {
16
17
  return this.axios.$get(`/societies/${idSociety}/docoon/directory-line`, { params });
17
18
  }
18
19
 
19
- getDirectoryLinesById(idSociety: number): Promise<ReadDocoonTenantDirectoryLines> {
20
- return this.axios.$get(`/societies/${idSociety}/docoon/tenant/directory-line`, {});
20
+ getDirectoryLinesById(idSociety: number, params: QueryDirectoryLineById): Promise<ReadDocoonTenantDirectoryLines> {
21
+ return this.axios.$get(`/societies/${idSociety}/docoon/tenant/directory-line`, { params });
21
22
  }
22
23
 
23
24
  relaunchDirectoryLine(params: RelaunchDirectoryLine): Promise<ReadDocoonDirectoryLineAdded> {
@@ -0,0 +1,8 @@
1
+ export enum MandateStatus {
2
+ PASS = 'PASS',
3
+ REJECTED_FROM_KYC_PROCESS = 'REJECTED_FROM_KYC_PROCESS',
4
+ REJECTED_PARTICIPANT = 'REJECTED_PARTICIPANT',
5
+ REJECTED_ATTACHED_MANDATE_LEGAL_ENTITY = 'REJECTED_ATTACHED_MANDATE_LEGAL_ENTITY',
6
+ REJECTED_STEP = 'REJECTED_STEP',
7
+ REJECTED_DUPLICATE = 'REJECTED_DUPLICATE',
8
+ }
@@ -10,3 +10,10 @@ export class QueryDirectoryLine {
10
10
  @IsOptional()
11
11
  offset?: number;
12
12
  }
13
+
14
+ export class QueryDirectoryLineById {
15
+ @ApiPropertyOptional()
16
+ @IsString()
17
+ @IsOptional()
18
+ directoryLineId?: string;
19
+ }
@@ -170,7 +170,7 @@ export interface ReadDocoonLegalEntityListResponse {
170
170
 
171
171
  export interface ReadDocoonLegalEntityResponse {
172
172
  data: {
173
- legalEntityItems: ReadDocoonLegalEntity[];
173
+ addLegalEntity: ReadDocoonLegalEntity;
174
174
  };
175
175
  }
176
176
 
@@ -21,6 +21,9 @@ export class CreateSociety {
21
21
  @ApiPropertyOptional()
22
22
  address?: string;
23
23
 
24
+ @ApiPropertyOptional()
25
+ addressComplement?: string;
26
+
24
27
  @ApiPropertyOptional()
25
28
  city?: string;
26
29
 
@@ -17,6 +17,9 @@ export class UpdateSociety {
17
17
  @ApiPropertyOptional()
18
18
  address?: string | null;
19
19
 
20
+ @ApiPropertyOptional()
21
+ addressComplement?: string | null;
22
+
20
23
  @ApiPropertyOptional()
21
24
  city?: string | null;
22
25
 
@@ -84,6 +84,7 @@ export class ISociety {
84
84
  city?: string | null;
85
85
  zipCode?: string | null;
86
86
  address?: string | null;
87
+ addressComplement?: string | null;
87
88
  idCityOfGreffe?: CityOfGreffe | null;
88
89
  siret?: string | null;
89
90
  diaCode?: string | null;
package/ts/types/index.ts CHANGED
@@ -535,6 +535,7 @@ export * from './Enum/EbookIntention.js';
535
535
  export * from './Enum/UsersHistory.js';
536
536
  export * from './Enum/UrgencyLevel.js';
537
537
  export * from './Enum/Formalism.js';
538
+ export * from './Enum/Kyc.js';
538
539
 
539
540
  // Interfaces API
540
541
  export * from './Interface/api/accountingTransaction/Create.js';