@dynamatix/gb-schemas 2.3.360 → 2.3.362
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.
|
@@ -56,6 +56,7 @@ declare const UserModel: mongoose.Model<{
|
|
|
56
56
|
deletedOn?: string | null | undefined;
|
|
57
57
|
deletedById?: string | null | undefined;
|
|
58
58
|
token?: string | null | undefined;
|
|
59
|
+
apprivoPermanentToken?: string | null | undefined;
|
|
59
60
|
}, {}, {}, {}, mongoose.Document<unknown, {}, {
|
|
60
61
|
createdAt: NativeDate;
|
|
61
62
|
updatedAt: NativeDate;
|
|
@@ -85,6 +86,7 @@ declare const UserModel: mongoose.Model<{
|
|
|
85
86
|
deletedOn?: string | null | undefined;
|
|
86
87
|
deletedById?: string | null | undefined;
|
|
87
88
|
token?: string | null | undefined;
|
|
89
|
+
apprivoPermanentToken?: string | null | undefined;
|
|
88
90
|
}, {}> & {
|
|
89
91
|
createdAt: NativeDate;
|
|
90
92
|
updatedAt: NativeDate;
|
|
@@ -114,6 +116,7 @@ declare const UserModel: mongoose.Model<{
|
|
|
114
116
|
deletedOn?: string | null | undefined;
|
|
115
117
|
deletedById?: string | null | undefined;
|
|
116
118
|
token?: string | null | undefined;
|
|
119
|
+
apprivoPermanentToken?: string | null | undefined;
|
|
117
120
|
} & {
|
|
118
121
|
_id: mongoose.Types.ObjectId;
|
|
119
122
|
} & {
|
|
@@ -149,6 +152,7 @@ declare const UserModel: mongoose.Model<{
|
|
|
149
152
|
deletedOn?: string | null | undefined;
|
|
150
153
|
deletedById?: string | null | undefined;
|
|
151
154
|
token?: string | null | undefined;
|
|
155
|
+
apprivoPermanentToken?: string | null | undefined;
|
|
152
156
|
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
153
157
|
createdAt: NativeDate;
|
|
154
158
|
updatedAt: NativeDate;
|
|
@@ -178,6 +182,7 @@ declare const UserModel: mongoose.Model<{
|
|
|
178
182
|
deletedOn?: string | null | undefined;
|
|
179
183
|
deletedById?: string | null | undefined;
|
|
180
184
|
token?: string | null | undefined;
|
|
185
|
+
apprivoPermanentToken?: string | null | undefined;
|
|
181
186
|
}>, {}> & mongoose.FlatRecord<{
|
|
182
187
|
createdAt: NativeDate;
|
|
183
188
|
updatedAt: NativeDate;
|
|
@@ -207,6 +212,7 @@ declare const UserModel: mongoose.Model<{
|
|
|
207
212
|
deletedOn?: string | null | undefined;
|
|
208
213
|
deletedById?: string | null | undefined;
|
|
209
214
|
token?: string | null | undefined;
|
|
215
|
+
apprivoPermanentToken?: string | null | undefined;
|
|
210
216
|
}> & {
|
|
211
217
|
_id: mongoose.Types.ObjectId;
|
|
212
218
|
} & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.model.d.ts","sourceRoot":"","sources":["../../users/user.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"user.model.d.ts","sourceRoot":"","sources":["../../users/user.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AA8ChC,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAqC,CAAC;AAErD,eAAe,SAAS,CAAC"}
|
package/dist/users/user.model.js
CHANGED
|
@@ -22,7 +22,8 @@ const userSchema = new mongoose.Schema({
|
|
|
22
22
|
createdById: { type: String },
|
|
23
23
|
deletedOn: { type: String },
|
|
24
24
|
deletedById: { type: String },
|
|
25
|
-
token: { type: String }
|
|
25
|
+
token: { type: String },
|
|
26
|
+
apprivoPermanentToken: { type: String },
|
|
26
27
|
}, {
|
|
27
28
|
timestamps: true
|
|
28
29
|
});
|