@riocrypto/common 1.0.1288 → 1.0.1290
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,5 @@
|
|
|
1
1
|
import { CountryOfOrigin } from "./country-of-origin";
|
|
2
|
+
import { ImmigrationStatus } from "./immigration-status";
|
|
2
3
|
import { OnboardingStatus } from "./onboarding-status";
|
|
3
4
|
export declare type UBOInput = {
|
|
4
5
|
individualData?: {
|
|
@@ -18,7 +19,7 @@ export declare type UBOInput = {
|
|
|
18
19
|
status?: OnboardingStatus;
|
|
19
20
|
personalId?: string;
|
|
20
21
|
taxId?: string;
|
|
21
|
-
|
|
22
|
+
immigrationStatus?: ImmigrationStatus;
|
|
22
23
|
individualIdentityVerification?: {
|
|
23
24
|
status?: "passed" | "failed" | "review";
|
|
24
25
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CountryOfOrigin } from "./country-of-origin";
|
|
2
|
+
import { ImmigrationStatus } from "./immigration-status";
|
|
2
3
|
import { OnboardingStatus } from "./onboarding-status";
|
|
3
4
|
export declare type UBOUpdate = {
|
|
4
5
|
individualData?: {
|
|
@@ -18,7 +19,7 @@ export declare type UBOUpdate = {
|
|
|
18
19
|
status?: OnboardingStatus;
|
|
19
20
|
personalId?: string;
|
|
20
21
|
taxId?: string;
|
|
21
|
-
|
|
22
|
+
immigrationStatus?: ImmigrationStatus;
|
|
22
23
|
individualIdentityVerification?: {
|
|
23
24
|
status?: "passed" | "failed" | "review";
|
|
24
25
|
};
|
package/build/types/UBO.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CountryOfOrigin } from "./country-of-origin";
|
|
2
|
+
import { ImmigrationStatus } from "./immigration-status";
|
|
2
3
|
import { OnboardingStatus } from "./onboarding-status";
|
|
3
4
|
export declare type UBO = {
|
|
4
5
|
id: string;
|
|
@@ -20,7 +21,7 @@ export declare type UBO = {
|
|
|
20
21
|
status?: OnboardingStatus;
|
|
21
22
|
personalId?: string;
|
|
22
23
|
taxId?: string;
|
|
23
|
-
|
|
24
|
+
immigrationStatus?: ImmigrationStatus;
|
|
24
25
|
individualIdentityVerification?: {
|
|
25
26
|
status?: "passed" | "failed" | "review";
|
|
26
27
|
};
|
|
@@ -17,16 +17,9 @@ declare type IndividualUser = {
|
|
|
17
17
|
declare type BusinessUser = {
|
|
18
18
|
businessData?: {
|
|
19
19
|
businessName?: string;
|
|
20
|
-
legalRepresentative?: {
|
|
21
|
-
name?: string;
|
|
22
|
-
email?: string;
|
|
23
|
-
status?: string;
|
|
24
|
-
};
|
|
25
20
|
UBO?: {
|
|
26
|
-
name: string;
|
|
27
|
-
email?: string;
|
|
28
21
|
id?: string;
|
|
29
|
-
|
|
22
|
+
onboardingStatus?: OnboardingStatus;
|
|
30
23
|
};
|
|
31
24
|
};
|
|
32
25
|
};
|
|
@@ -66,6 +59,17 @@ export declare type UserInput = {
|
|
|
66
59
|
personalId?: string;
|
|
67
60
|
taxId?: string;
|
|
68
61
|
immigrationStatus?: ImmigrationStatus;
|
|
62
|
+
individualIdentityVerification?: {
|
|
63
|
+
status?: "passed" | "failed" | "review";
|
|
64
|
+
};
|
|
65
|
+
legalRepresentative?: {
|
|
66
|
+
firstName?: string;
|
|
67
|
+
middleName?: string;
|
|
68
|
+
lastName?: string;
|
|
69
|
+
secondLastName?: string;
|
|
70
|
+
verificationStatus?: "passed" | "failed" | "review";
|
|
71
|
+
email?: string;
|
|
72
|
+
};
|
|
69
73
|
files?: {
|
|
70
74
|
certificateOfIncorporation?: string;
|
|
71
75
|
KYCReport?: string;
|
|
@@ -18,16 +18,9 @@ declare type IndividualUser = {
|
|
|
18
18
|
declare type BusinessUser = {
|
|
19
19
|
businessData?: {
|
|
20
20
|
businessName?: string;
|
|
21
|
-
legalRepresentative?: {
|
|
22
|
-
name?: string;
|
|
23
|
-
email?: string;
|
|
24
|
-
status?: string;
|
|
25
|
-
};
|
|
26
21
|
UBO?: {
|
|
27
|
-
name?: string;
|
|
28
|
-
email?: string;
|
|
29
22
|
id?: string;
|
|
30
|
-
|
|
23
|
+
onboardingStatus?: OnboardingStatus;
|
|
31
24
|
};
|
|
32
25
|
};
|
|
33
26
|
};
|
|
@@ -71,6 +64,9 @@ export declare type UserUpdate = {
|
|
|
71
64
|
taxId?: string;
|
|
72
65
|
hasAcceptedTerms?: boolean;
|
|
73
66
|
immigrationStatus?: ImmigrationStatus;
|
|
67
|
+
individualIdentityVerification?: {
|
|
68
|
+
status?: "passed" | "failed" | "review";
|
|
69
|
+
};
|
|
74
70
|
files?: {
|
|
75
71
|
certificateOfIncorporation?: string;
|
|
76
72
|
KYCReport?: string;
|
|
@@ -82,6 +78,14 @@ export declare type UserUpdate = {
|
|
|
82
78
|
personalIdentificationCertificate?: string;
|
|
83
79
|
extraFiles?: string[];
|
|
84
80
|
};
|
|
81
|
+
legalRepresentative?: {
|
|
82
|
+
firstName?: string;
|
|
83
|
+
middleName?: string;
|
|
84
|
+
lastName?: string;
|
|
85
|
+
secondLastName?: string;
|
|
86
|
+
verificationStatus?: "passed" | "failed" | "review";
|
|
87
|
+
email?: string;
|
|
88
|
+
};
|
|
85
89
|
address?: {
|
|
86
90
|
street1?: string;
|
|
87
91
|
street2?: string;
|
package/build/types/user.d.ts
CHANGED
|
@@ -19,14 +19,9 @@ declare type IndividualUser = {
|
|
|
19
19
|
declare type BusinessUser = {
|
|
20
20
|
businessData?: {
|
|
21
21
|
businessName: string;
|
|
22
|
-
legalRepresentative?: {
|
|
23
|
-
name: string;
|
|
24
|
-
email?: string;
|
|
25
|
-
};
|
|
26
22
|
UBO?: {
|
|
27
|
-
name: string;
|
|
28
|
-
email?: string;
|
|
29
23
|
id?: string;
|
|
24
|
+
onboardingStatus?: OnboardingStatus;
|
|
30
25
|
};
|
|
31
26
|
};
|
|
32
27
|
};
|
|
@@ -74,10 +69,14 @@ export declare type User = {
|
|
|
74
69
|
individualIdentityVerification?: {
|
|
75
70
|
status?: "passed" | "failed" | "review";
|
|
76
71
|
};
|
|
77
|
-
|
|
78
|
-
|
|
72
|
+
legalRepresentative?: {
|
|
73
|
+
firstName?: string;
|
|
74
|
+
middleName?: string;
|
|
75
|
+
lastName?: string;
|
|
76
|
+
secondLastName?: string;
|
|
77
|
+
verificationStatus?: "passed" | "failed" | "review";
|
|
78
|
+
email?: string;
|
|
79
79
|
};
|
|
80
|
-
UBOOnboardingStatus?: OnboardingStatus;
|
|
81
80
|
files?: {
|
|
82
81
|
certificateOfIncorporation?: string;
|
|
83
82
|
KYCReport?: string;
|