@dynamatix/gb-schemas 2.3.319 → 2.3.320
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.
|
@@ -42,6 +42,7 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
42
42
|
statusLid: mongoose.Types.ObjectId;
|
|
43
43
|
applicationNumber: string;
|
|
44
44
|
queueId: mongoose.Types.ObjectId[];
|
|
45
|
+
assignedToUserDate: NativeDate;
|
|
45
46
|
isApplicationFeePaid: string;
|
|
46
47
|
bankSolicitor: string;
|
|
47
48
|
brokerId: mongoose.Types.ObjectId;
|
|
@@ -121,6 +122,7 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
121
122
|
statusLid: mongoose.Types.ObjectId;
|
|
122
123
|
applicationNumber: string;
|
|
123
124
|
queueId: mongoose.Types.ObjectId[];
|
|
125
|
+
assignedToUserDate: NativeDate;
|
|
124
126
|
isApplicationFeePaid: string;
|
|
125
127
|
bankSolicitor: string;
|
|
126
128
|
brokerId: mongoose.Types.ObjectId;
|
|
@@ -200,6 +202,7 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
200
202
|
statusLid: mongoose.Types.ObjectId;
|
|
201
203
|
applicationNumber: string;
|
|
202
204
|
queueId: mongoose.Types.ObjectId[];
|
|
205
|
+
assignedToUserDate: NativeDate;
|
|
203
206
|
isApplicationFeePaid: string;
|
|
204
207
|
bankSolicitor: string;
|
|
205
208
|
brokerId: mongoose.Types.ObjectId;
|
|
@@ -291,6 +294,7 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
291
294
|
statusLid: mongoose.Types.ObjectId;
|
|
292
295
|
applicationNumber: string;
|
|
293
296
|
queueId: mongoose.Types.ObjectId[];
|
|
297
|
+
assignedToUserDate: NativeDate;
|
|
294
298
|
isApplicationFeePaid: string;
|
|
295
299
|
bankSolicitor: string;
|
|
296
300
|
brokerId: mongoose.Types.ObjectId;
|
|
@@ -370,6 +374,7 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
370
374
|
statusLid: mongoose.Types.ObjectId;
|
|
371
375
|
applicationNumber: string;
|
|
372
376
|
queueId: mongoose.Types.ObjectId[];
|
|
377
|
+
assignedToUserDate: NativeDate;
|
|
373
378
|
isApplicationFeePaid: string;
|
|
374
379
|
bankSolicitor: string;
|
|
375
380
|
brokerId: mongoose.Types.ObjectId;
|
|
@@ -449,6 +454,7 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
449
454
|
statusLid: mongoose.Types.ObjectId;
|
|
450
455
|
applicationNumber: string;
|
|
451
456
|
queueId: mongoose.Types.ObjectId[];
|
|
457
|
+
assignedToUserDate: NativeDate;
|
|
452
458
|
isApplicationFeePaid: string;
|
|
453
459
|
bankSolicitor: string;
|
|
454
460
|
brokerId: mongoose.Types.ObjectId;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application.model.d.ts","sourceRoot":"","sources":["../../applications/application.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"application.model.d.ts","sourceRoot":"","sources":["../../applications/application.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AA+PhC,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAmD,CAAC;AAC1E,eAAe,gBAAgB,CAAC"}
|
|
@@ -9,6 +9,7 @@ const applicationSchema = new mongoose.Schema({
|
|
|
9
9
|
required: true,
|
|
10
10
|
}],
|
|
11
11
|
assignedToUserId: { type: mongoose.Schema.Types.ObjectId, ref: "User" },
|
|
12
|
+
assignedToUserDate: { type: Date, default: null },
|
|
12
13
|
applicationId: { type: String, required: true },
|
|
13
14
|
isApplicationFeePaid: { type: String, required: true },
|
|
14
15
|
applicationNumber: { type: String, required: true },
|