@dynamatix/gb-schemas 2.3.311 → 2.3.312
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/dist/applicants/applicant-direct-debit.model.d.ts +0 -24
- package/dist/applicants/applicant-direct-debit.model.d.ts.map +1 -1
- package/dist/applicants/applicant-direct-debit.model.js +1 -9
- package/dist/applicants/applicant.model.d.ts +0 -24
- package/dist/applicants/applicant.model.d.ts.map +1 -1
- package/dist/applications/application-direct-debit.model.d.ts +27 -0
- package/dist/applications/application-direct-debit.model.d.ts.map +1 -1
- package/dist/applications/application-direct-debit.model.js +8 -0
- package/dist/users/user.model.d.ts +6 -6
- package/package.json +1 -1
|
@@ -45,14 +45,6 @@ declare const applicantDirectDebitSchema: mongoose.Schema<any, mongoose.Model<an
|
|
|
45
45
|
sortCode?: string | null | undefined;
|
|
46
46
|
selectedPaymentDay?: string | null | undefined;
|
|
47
47
|
Applicants?: string | null | undefined;
|
|
48
|
-
bankWizardCheck?: {
|
|
49
|
-
validation?: string | null | undefined;
|
|
50
|
-
status?: string | null | undefined;
|
|
51
|
-
nameAndDobMatch?: string | null | undefined;
|
|
52
|
-
addressMatch?: string | null | undefined;
|
|
53
|
-
ddCapable?: string | null | undefined;
|
|
54
|
-
failedMessage?: string | null | undefined;
|
|
55
|
-
} | null | undefined;
|
|
56
48
|
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
57
49
|
createdAt: NativeDate;
|
|
58
50
|
updatedAt: NativeDate;
|
|
@@ -69,14 +61,6 @@ declare const applicantDirectDebitSchema: mongoose.Schema<any, mongoose.Model<an
|
|
|
69
61
|
sortCode?: string | null | undefined;
|
|
70
62
|
selectedPaymentDay?: string | null | undefined;
|
|
71
63
|
Applicants?: string | null | undefined;
|
|
72
|
-
bankWizardCheck?: {
|
|
73
|
-
validation?: string | null | undefined;
|
|
74
|
-
status?: string | null | undefined;
|
|
75
|
-
nameAndDobMatch?: string | null | undefined;
|
|
76
|
-
addressMatch?: string | null | undefined;
|
|
77
|
-
ddCapable?: string | null | undefined;
|
|
78
|
-
failedMessage?: string | null | undefined;
|
|
79
|
-
} | null | undefined;
|
|
80
64
|
}>, {}> & mongoose.FlatRecord<{
|
|
81
65
|
createdAt: NativeDate;
|
|
82
66
|
updatedAt: NativeDate;
|
|
@@ -93,14 +77,6 @@ declare const applicantDirectDebitSchema: mongoose.Schema<any, mongoose.Model<an
|
|
|
93
77
|
sortCode?: string | null | undefined;
|
|
94
78
|
selectedPaymentDay?: string | null | undefined;
|
|
95
79
|
Applicants?: string | null | undefined;
|
|
96
|
-
bankWizardCheck?: {
|
|
97
|
-
validation?: string | null | undefined;
|
|
98
|
-
status?: string | null | undefined;
|
|
99
|
-
nameAndDobMatch?: string | null | undefined;
|
|
100
|
-
addressMatch?: string | null | undefined;
|
|
101
|
-
ddCapable?: string | null | undefined;
|
|
102
|
-
failedMessage?: string | null | undefined;
|
|
103
|
-
} | null | undefined;
|
|
104
80
|
}> & {
|
|
105
81
|
_id: mongoose.Types.ObjectId;
|
|
106
82
|
} & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"applicant-direct-debit.model.d.ts","sourceRoot":"","sources":["../../applicants/applicant-direct-debit.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAGhC,QAAA,MAAM,0BAA0B
|
|
1
|
+
{"version":3,"file":"applicant-direct-debit.model.d.ts","sourceRoot":"","sources":["../../applicants/applicant-direct-debit.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAGhC,QAAA,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAaR,CAAC;AAEzB,eAAe,0BAA0B,CAAC"}
|
|
@@ -11,14 +11,6 @@ const applicantDirectDebitSchema = new mongoose.Schema({
|
|
|
11
11
|
isConfirmDeclaration: { type: String, default: false },
|
|
12
12
|
nameOfAccountHolder: { type: String },
|
|
13
13
|
selectedPaymentDay: { type: String },
|
|
14
|
-
sortCode: { type: String }
|
|
15
|
-
bankWizardCheck: {
|
|
16
|
-
nameAndDobMatch: { type: String },
|
|
17
|
-
addressMatch: { type: String },
|
|
18
|
-
ddCapable: { type: String },
|
|
19
|
-
validation: { type: String },
|
|
20
|
-
status: { type: String },
|
|
21
|
-
failedMessage: { type: String },
|
|
22
|
-
},
|
|
14
|
+
sortCode: { type: String }
|
|
23
15
|
}, { timestamps: true });
|
|
24
16
|
export default applicantDirectDebitSchema;
|
|
@@ -1247,14 +1247,6 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
1247
1247
|
sortCode?: string | null | undefined;
|
|
1248
1248
|
selectedPaymentDay?: string | null | undefined;
|
|
1249
1249
|
Applicants?: string | null | undefined;
|
|
1250
|
-
bankWizardCheck?: {
|
|
1251
|
-
validation?: string | null | undefined;
|
|
1252
|
-
status?: string | null | undefined;
|
|
1253
|
-
nameAndDobMatch?: string | null | undefined;
|
|
1254
|
-
addressMatch?: string | null | undefined;
|
|
1255
|
-
ddCapable?: string | null | undefined;
|
|
1256
|
-
failedMessage?: string | null | undefined;
|
|
1257
|
-
} | null | undefined;
|
|
1258
1250
|
}) | null | undefined;
|
|
1259
1251
|
serialName?: string | null | undefined;
|
|
1260
1252
|
ukPassportProfessionLid?: mongoose.Types.ObjectId | null | undefined;
|
|
@@ -1410,14 +1402,6 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
1410
1402
|
sortCode?: string | null | undefined;
|
|
1411
1403
|
selectedPaymentDay?: string | null | undefined;
|
|
1412
1404
|
Applicants?: string | null | undefined;
|
|
1413
|
-
bankWizardCheck?: {
|
|
1414
|
-
validation?: string | null | undefined;
|
|
1415
|
-
status?: string | null | undefined;
|
|
1416
|
-
nameAndDobMatch?: string | null | undefined;
|
|
1417
|
-
addressMatch?: string | null | undefined;
|
|
1418
|
-
ddCapable?: string | null | undefined;
|
|
1419
|
-
failedMessage?: string | null | undefined;
|
|
1420
|
-
} | null | undefined;
|
|
1421
1405
|
}) | null | undefined;
|
|
1422
1406
|
serialName?: string | null | undefined;
|
|
1423
1407
|
ukPassportProfessionLid?: mongoose.Types.ObjectId | null | undefined;
|
|
@@ -1573,14 +1557,6 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
1573
1557
|
sortCode?: string | null | undefined;
|
|
1574
1558
|
selectedPaymentDay?: string | null | undefined;
|
|
1575
1559
|
Applicants?: string | null | undefined;
|
|
1576
|
-
bankWizardCheck?: {
|
|
1577
|
-
validation?: string | null | undefined;
|
|
1578
|
-
status?: string | null | undefined;
|
|
1579
|
-
nameAndDobMatch?: string | null | undefined;
|
|
1580
|
-
addressMatch?: string | null | undefined;
|
|
1581
|
-
ddCapable?: string | null | undefined;
|
|
1582
|
-
failedMessage?: string | null | undefined;
|
|
1583
|
-
} | null | undefined;
|
|
1584
1560
|
}) | null | undefined;
|
|
1585
1561
|
serialName?: string | null | undefined;
|
|
1586
1562
|
ukPassportProfessionLid?: mongoose.Types.ObjectId | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"applicant.model.d.ts","sourceRoot":"","sources":["../../applicants/applicant.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAOhC,OAAO,EAAE,KAAK,EAAe,MAAM,wBAAwB,CAAC;AAwR5D,QAAA,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"applicant.model.d.ts","sourceRoot":"","sources":["../../applicants/applicant.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAOhC,OAAO,EAAE,KAAK,EAAe,MAAM,wBAAwB,CAAC;AAwR5D,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA+C,CAAC;AACpE,eAAe,cAAc,CAAC"}
|
|
@@ -190,6 +190,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
190
190
|
accountErrorLid?: mongoose.Types.ObjectId | null | undefined;
|
|
191
191
|
accountStatusLid?: mongoose.Types.ObjectId | null | undefined;
|
|
192
192
|
bankAccountRequired?: unknown;
|
|
193
|
+
bankWizardCheck?: unknown;
|
|
193
194
|
}, {}, {}, {}, mongoose.Document<unknown, {}, {
|
|
194
195
|
createdAt: NativeDate;
|
|
195
196
|
updatedAt: NativeDate;
|
|
@@ -351,6 +352,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
351
352
|
accountErrorLid?: mongoose.Types.ObjectId | null | undefined;
|
|
352
353
|
accountStatusLid?: mongoose.Types.ObjectId | null | undefined;
|
|
353
354
|
bankAccountRequired?: unknown;
|
|
355
|
+
bankWizardCheck?: unknown;
|
|
354
356
|
}, {}> & {
|
|
355
357
|
createdAt: NativeDate;
|
|
356
358
|
updatedAt: NativeDate;
|
|
@@ -512,6 +514,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
512
514
|
accountErrorLid?: mongoose.Types.ObjectId | null | undefined;
|
|
513
515
|
accountStatusLid?: mongoose.Types.ObjectId | null | undefined;
|
|
514
516
|
bankAccountRequired?: unknown;
|
|
517
|
+
bankWizardCheck?: unknown;
|
|
515
518
|
} & {
|
|
516
519
|
_id: mongoose.Types.ObjectId;
|
|
517
520
|
} & {
|
|
@@ -546,6 +549,14 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
546
549
|
contactPostcode?: string | null | undefined;
|
|
547
550
|
isConfirmDeclaration?: boolean | null | undefined;
|
|
548
551
|
selectedPaymentDayLid?: mongoose.Types.ObjectId | null | undefined;
|
|
552
|
+
bankWizardCheck?: {
|
|
553
|
+
validation?: string | null | undefined;
|
|
554
|
+
nameAndDobMatch?: string | null | undefined;
|
|
555
|
+
addressMatch?: string | null | undefined;
|
|
556
|
+
ddCapable?: string | null | undefined;
|
|
557
|
+
status?: string | null | undefined;
|
|
558
|
+
failedMessage?: string | null | undefined;
|
|
559
|
+
} | null | undefined;
|
|
549
560
|
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
550
561
|
createdAt: NativeDate;
|
|
551
562
|
updatedAt: NativeDate;
|
|
@@ -566,6 +577,14 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
566
577
|
contactPostcode?: string | null | undefined;
|
|
567
578
|
isConfirmDeclaration?: boolean | null | undefined;
|
|
568
579
|
selectedPaymentDayLid?: mongoose.Types.ObjectId | null | undefined;
|
|
580
|
+
bankWizardCheck?: {
|
|
581
|
+
validation?: string | null | undefined;
|
|
582
|
+
nameAndDobMatch?: string | null | undefined;
|
|
583
|
+
addressMatch?: string | null | undefined;
|
|
584
|
+
ddCapable?: string | null | undefined;
|
|
585
|
+
status?: string | null | undefined;
|
|
586
|
+
failedMessage?: string | null | undefined;
|
|
587
|
+
} | null | undefined;
|
|
569
588
|
}>, {}> & mongoose.FlatRecord<{
|
|
570
589
|
createdAt: NativeDate;
|
|
571
590
|
updatedAt: NativeDate;
|
|
@@ -586,6 +605,14 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
586
605
|
contactPostcode?: string | null | undefined;
|
|
587
606
|
isConfirmDeclaration?: boolean | null | undefined;
|
|
588
607
|
selectedPaymentDayLid?: mongoose.Types.ObjectId | null | undefined;
|
|
608
|
+
bankWizardCheck?: {
|
|
609
|
+
validation?: string | null | undefined;
|
|
610
|
+
nameAndDobMatch?: string | null | undefined;
|
|
611
|
+
addressMatch?: string | null | undefined;
|
|
612
|
+
ddCapable?: string | null | undefined;
|
|
613
|
+
status?: string | null | undefined;
|
|
614
|
+
failedMessage?: string | null | undefined;
|
|
615
|
+
} | null | undefined;
|
|
589
616
|
}> & {
|
|
590
617
|
_id: mongoose.Types.ObjectId;
|
|
591
618
|
} & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application-direct-debit.model.d.ts","sourceRoot":"","sources":["../../applications/application-direct-debit.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAEhC,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;
|
|
1
|
+
{"version":3,"file":"application-direct-debit.model.d.ts","sourceRoot":"","sources":["../../applications/application-direct-debit.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAEhC,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAgIhE,QAAA,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA0E,CAAC;AAC5G,eAAe,2BAA2B,CAAC"}
|
|
@@ -81,6 +81,14 @@ const applicationDirectDebitSchema = new mongoose.Schema({
|
|
|
81
81
|
type: Boolean,
|
|
82
82
|
default: false,
|
|
83
83
|
},
|
|
84
|
+
bankWizardCheck: {
|
|
85
|
+
nameAndDobMatch: { type: String },
|
|
86
|
+
addressMatch: { type: String },
|
|
87
|
+
ddCapable: { type: String },
|
|
88
|
+
validation: { type: String },
|
|
89
|
+
status: { type: String },
|
|
90
|
+
failedMessage: { type: String },
|
|
91
|
+
},
|
|
84
92
|
}, {
|
|
85
93
|
timestamps: true,
|
|
86
94
|
toJSON: { virtuals: true, getters: true },
|
|
@@ -32,8 +32,8 @@ declare const UserModel: mongoose.Model<{
|
|
|
32
32
|
updatedAt: NativeDate;
|
|
33
33
|
} & {
|
|
34
34
|
accountId: number;
|
|
35
|
-
fullName: string;
|
|
36
35
|
status: string;
|
|
36
|
+
fullName: string;
|
|
37
37
|
email: string;
|
|
38
38
|
password: string;
|
|
39
39
|
groups: mongoose.Types.ObjectId[];
|
|
@@ -61,8 +61,8 @@ declare const UserModel: mongoose.Model<{
|
|
|
61
61
|
updatedAt: NativeDate;
|
|
62
62
|
} & {
|
|
63
63
|
accountId: number;
|
|
64
|
-
fullName: string;
|
|
65
64
|
status: string;
|
|
65
|
+
fullName: string;
|
|
66
66
|
email: string;
|
|
67
67
|
password: string;
|
|
68
68
|
groups: mongoose.Types.ObjectId[];
|
|
@@ -90,8 +90,8 @@ declare const UserModel: mongoose.Model<{
|
|
|
90
90
|
updatedAt: NativeDate;
|
|
91
91
|
} & {
|
|
92
92
|
accountId: number;
|
|
93
|
-
fullName: string;
|
|
94
93
|
status: string;
|
|
94
|
+
fullName: string;
|
|
95
95
|
email: string;
|
|
96
96
|
password: string;
|
|
97
97
|
groups: mongoose.Types.ObjectId[];
|
|
@@ -125,8 +125,8 @@ declare const UserModel: mongoose.Model<{
|
|
|
125
125
|
updatedAt: NativeDate;
|
|
126
126
|
} & {
|
|
127
127
|
accountId: number;
|
|
128
|
-
fullName: string;
|
|
129
128
|
status: string;
|
|
129
|
+
fullName: string;
|
|
130
130
|
email: string;
|
|
131
131
|
password: string;
|
|
132
132
|
groups: mongoose.Types.ObjectId[];
|
|
@@ -154,8 +154,8 @@ declare const UserModel: mongoose.Model<{
|
|
|
154
154
|
updatedAt: NativeDate;
|
|
155
155
|
} & {
|
|
156
156
|
accountId: number;
|
|
157
|
-
fullName: string;
|
|
158
157
|
status: string;
|
|
158
|
+
fullName: string;
|
|
159
159
|
email: string;
|
|
160
160
|
password: string;
|
|
161
161
|
groups: mongoose.Types.ObjectId[];
|
|
@@ -183,8 +183,8 @@ declare const UserModel: mongoose.Model<{
|
|
|
183
183
|
updatedAt: NativeDate;
|
|
184
184
|
} & {
|
|
185
185
|
accountId: number;
|
|
186
|
-
fullName: string;
|
|
187
186
|
status: string;
|
|
187
|
+
fullName: string;
|
|
188
188
|
email: string;
|
|
189
189
|
password: string;
|
|
190
190
|
groups: mongoose.Types.ObjectId[];
|