@experts_hub/shared 1.0.733 → 1.0.736

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.
@@ -1,4 +1,24 @@
1
+ export declare class ContactDetailsDto {
2
+ email?: string;
3
+ email_lang?: string;
4
+ send_notification_emails?: boolean;
5
+ phone?: string;
6
+ }
7
+ export declare class ExpectedDetailsDto {
8
+ first_name?: string;
9
+ last_name?: string;
10
+ date_of_birth?: string;
11
+ expected_document_types?: string[];
12
+ }
13
+ export declare class MetadataDto {
14
+ plan?: string;
15
+ signup_source?: string;
16
+ }
1
17
  export declare class CreateEkycSessionDto {
2
18
  workflowId: string;
3
- callback?: string;
19
+ callback: string;
20
+ vendor_data?: string;
21
+ metadata?: MetadataDto;
22
+ contact_details?: ContactDetailsDto;
23
+ expected_details?: ExpectedDetailsDto;
4
24
  }
@@ -50,3 +50,4 @@ export * from './docuseal';
50
50
  export * from './task';
51
51
  export * from './referral';
52
52
  export * from './vendor-api-configuration';
53
+ export * from './didit';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.733",
3
+ "version": "1.0.736",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",