@riocrypto/common 1.0.1211 → 1.0.1213
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/build/types/user.d.ts +18 -1
- package/package.json +1 -1
package/build/types/user.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { PlatformFeeRange } from "./platform-fee-range";
|
|
|
5
5
|
import { UserAttribute } from "./user-attribute";
|
|
6
6
|
import { UserType } from "./user-type";
|
|
7
7
|
declare type IndividualUser = {
|
|
8
|
+
id: string;
|
|
8
9
|
individualData: {
|
|
9
10
|
firstName: string;
|
|
10
11
|
middleName?: string;
|
|
@@ -95,6 +96,22 @@ export declare type User = {
|
|
|
95
96
|
extraFiles?: string[];
|
|
96
97
|
};
|
|
97
98
|
};
|
|
99
|
+
BR?: {
|
|
100
|
+
status: KYCStatus;
|
|
101
|
+
personalId?: string;
|
|
102
|
+
taxId?: string;
|
|
103
|
+
files?: {
|
|
104
|
+
certificateOfIncorporation?: string;
|
|
105
|
+
kycReport?: string;
|
|
106
|
+
taxTranscript?: string;
|
|
107
|
+
proofOfAddress?: string;
|
|
108
|
+
businessRegistration?: string;
|
|
109
|
+
taxIdentificationCertificate?: string;
|
|
110
|
+
legalRepresentativeIdPowerOfAttorney?: string;
|
|
111
|
+
personalIdentificationCertificate?: string;
|
|
112
|
+
extraFiles?: string[];
|
|
113
|
+
};
|
|
114
|
+
};
|
|
98
115
|
US?: {
|
|
99
116
|
status: KYCStatus;
|
|
100
117
|
personalId?: string;
|
|
@@ -116,7 +133,7 @@ export declare type User = {
|
|
|
116
133
|
};
|
|
117
134
|
invoicing?: {
|
|
118
135
|
MX: {
|
|
119
|
-
shouldInvoice
|
|
136
|
+
shouldInvoice?: boolean;
|
|
120
137
|
fiscalName?: string;
|
|
121
138
|
fiscalRegimenCode?: number;
|
|
122
139
|
};
|