@riocrypto/common-server 1.0.1696 → 1.0.1698
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 +2 -0
- package/package.json +1 -1
package/build/models/user.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ interface UserAttrs {
|
|
|
52
52
|
[country in CountryOfOrigin]?: {
|
|
53
53
|
status?: OnboardingStatus;
|
|
54
54
|
hasAcceptedTerms?: boolean;
|
|
55
|
+
onboardingId?: string;
|
|
55
56
|
aiPriseId?: string;
|
|
56
57
|
bridgeId?: string;
|
|
57
58
|
personalId?: string;
|
|
@@ -162,6 +163,7 @@ interface UserDoc extends Document {
|
|
|
162
163
|
[country in CountryOfOrigin]?: {
|
|
163
164
|
status?: OnboardingStatus;
|
|
164
165
|
hasAcceptedTerms?: boolean;
|
|
166
|
+
onboardingId?: string;
|
|
165
167
|
aiPriseId?: string;
|
|
166
168
|
bridgeId?: string;
|
|
167
169
|
personalId?: string;
|