@riocrypto/common-server 1.0.2367 → 1.0.2368
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/models/user.d.ts +6 -8
- package/package.json +1 -1
package/build/models/user.d.ts
CHANGED
|
@@ -71,11 +71,10 @@ interface UserAttrs {
|
|
|
71
71
|
authorizedPhoneNumbers?: string[];
|
|
72
72
|
onboarding: {
|
|
73
73
|
country: Country;
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
aipriseProfileId?: string;
|
|
75
|
+
aipriseVerificationSessionUrl?: string;
|
|
76
76
|
bridgeCustomerId?: string;
|
|
77
|
-
|
|
78
|
-
aipriseUserVerificationSessionUrl?: string;
|
|
77
|
+
bridgeKYCLinkId?: string;
|
|
79
78
|
status: OnboardingStatus;
|
|
80
79
|
hasAcceptedTerms: boolean;
|
|
81
80
|
};
|
|
@@ -184,11 +183,10 @@ interface UserDoc extends Document {
|
|
|
184
183
|
authorizedPhoneNumbers?: string[];
|
|
185
184
|
onboarding: {
|
|
186
185
|
country: Country;
|
|
187
|
-
|
|
188
|
-
|
|
186
|
+
aipriseProfileId?: string;
|
|
187
|
+
aipriseVerificationSessionUrl?: string;
|
|
189
188
|
bridgeCustomerId?: string;
|
|
190
|
-
|
|
191
|
-
aipriseUserVerificationSessionUrl?: string;
|
|
189
|
+
bridgeKYCLinkId?: string;
|
|
192
190
|
status: OnboardingStatus;
|
|
193
191
|
hasAcceptedTerms: boolean;
|
|
194
192
|
};
|