@riocrypto/common-server 1.0.1763 → 1.0.1764
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/build/models/user.js +3 -0
- package/package.json +1 -1
package/build/models/user.d.ts
CHANGED
|
@@ -107,6 +107,7 @@ interface UserAttrs {
|
|
|
107
107
|
};
|
|
108
108
|
};
|
|
109
109
|
};
|
|
110
|
+
attioRecordId?: string;
|
|
110
111
|
}
|
|
111
112
|
interface UserModel extends Model<UserDoc> {
|
|
112
113
|
build(attrs: UserAttrs): UserDoc;
|
|
@@ -115,6 +116,7 @@ interface UserDoc extends Document {
|
|
|
115
116
|
_id: string;
|
|
116
117
|
createdAt: Date;
|
|
117
118
|
authIds?: string[];
|
|
119
|
+
attioRecordId?: string;
|
|
118
120
|
registeredWithCoincover?: boolean;
|
|
119
121
|
individualData?: {
|
|
120
122
|
firstName: string;
|
package/build/models/user.js
CHANGED