@riocrypto/common-server 1.0.2367 → 1.0.2369
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 +3 -1
- package/package.json +1 -1
package/build/models/user.d.ts
CHANGED
|
@@ -73,9 +73,10 @@ interface UserAttrs {
|
|
|
73
73
|
country: Country;
|
|
74
74
|
aipriseBusinessProfileId?: string;
|
|
75
75
|
aipriseUserProfileId?: string;
|
|
76
|
-
bridgeCustomerId?: string;
|
|
77
76
|
aipriseBusinessVerificationSessionUrl?: string;
|
|
78
77
|
aipriseUserVerificationSessionUrl?: string;
|
|
78
|
+
bridgeCustomerId?: string;
|
|
79
|
+
bridgeKYCLinkId?: string;
|
|
79
80
|
status: OnboardingStatus;
|
|
80
81
|
hasAcceptedTerms: boolean;
|
|
81
82
|
};
|
|
@@ -189,6 +190,7 @@ interface UserDoc extends Document {
|
|
|
189
190
|
bridgeCustomerId?: string;
|
|
190
191
|
aipriseBusinessVerificationSessionUrl?: string;
|
|
191
192
|
aipriseUserVerificationSessionUrl?: string;
|
|
193
|
+
bridgeKYCLinkId?: string;
|
|
192
194
|
status: OnboardingStatus;
|
|
193
195
|
hasAcceptedTerms: boolean;
|
|
194
196
|
};
|