@dynamatix/gb-schemas 2.3.328 → 2.3.329
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.
|
@@ -44,6 +44,8 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
44
44
|
queueId: mongoose.Types.ObjectId[];
|
|
45
45
|
assignedToUserId: mongoose.Types.ObjectId;
|
|
46
46
|
assignedToUserDate: NativeDate;
|
|
47
|
+
slaClockStart: NativeDate;
|
|
48
|
+
slaClockStop: NativeDate;
|
|
47
49
|
isApplicationFeePaid: string;
|
|
48
50
|
bankSolicitor: string;
|
|
49
51
|
brokerId: mongoose.Types.ObjectId;
|
|
@@ -124,6 +126,8 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
124
126
|
queueId: mongoose.Types.ObjectId[];
|
|
125
127
|
assignedToUserId: mongoose.Types.ObjectId;
|
|
126
128
|
assignedToUserDate: NativeDate;
|
|
129
|
+
slaClockStart: NativeDate;
|
|
130
|
+
slaClockStop: NativeDate;
|
|
127
131
|
isApplicationFeePaid: string;
|
|
128
132
|
bankSolicitor: string;
|
|
129
133
|
brokerId: mongoose.Types.ObjectId;
|
|
@@ -204,6 +208,8 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
204
208
|
queueId: mongoose.Types.ObjectId[];
|
|
205
209
|
assignedToUserId: mongoose.Types.ObjectId;
|
|
206
210
|
assignedToUserDate: NativeDate;
|
|
211
|
+
slaClockStart: NativeDate;
|
|
212
|
+
slaClockStop: NativeDate;
|
|
207
213
|
isApplicationFeePaid: string;
|
|
208
214
|
bankSolicitor: string;
|
|
209
215
|
brokerId: mongoose.Types.ObjectId;
|
|
@@ -296,6 +302,8 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
296
302
|
queueId: mongoose.Types.ObjectId[];
|
|
297
303
|
assignedToUserId: mongoose.Types.ObjectId;
|
|
298
304
|
assignedToUserDate: NativeDate;
|
|
305
|
+
slaClockStart: NativeDate;
|
|
306
|
+
slaClockStop: NativeDate;
|
|
299
307
|
isApplicationFeePaid: string;
|
|
300
308
|
bankSolicitor: string;
|
|
301
309
|
brokerId: mongoose.Types.ObjectId;
|
|
@@ -376,6 +384,8 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
376
384
|
queueId: mongoose.Types.ObjectId[];
|
|
377
385
|
assignedToUserId: mongoose.Types.ObjectId;
|
|
378
386
|
assignedToUserDate: NativeDate;
|
|
387
|
+
slaClockStart: NativeDate;
|
|
388
|
+
slaClockStop: NativeDate;
|
|
379
389
|
isApplicationFeePaid: string;
|
|
380
390
|
bankSolicitor: string;
|
|
381
391
|
brokerId: mongoose.Types.ObjectId;
|
|
@@ -456,6 +466,8 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
456
466
|
queueId: mongoose.Types.ObjectId[];
|
|
457
467
|
assignedToUserId: mongoose.Types.ObjectId;
|
|
458
468
|
assignedToUserDate: NativeDate;
|
|
469
|
+
slaClockStart: NativeDate;
|
|
470
|
+
slaClockStop: NativeDate;
|
|
459
471
|
isApplicationFeePaid: string;
|
|
460
472
|
bankSolicitor: string;
|
|
461
473
|
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;AAiQhC,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAmD,CAAC;AAC1E,eAAe,gBAAgB,CAAC"}
|
|
@@ -10,6 +10,8 @@ const applicationSchema = new mongoose.Schema({
|
|
|
10
10
|
}],
|
|
11
11
|
assignedToUserId: { type: mongoose.Schema.Types.ObjectId, ref: "User", default: null },
|
|
12
12
|
assignedToUserDate: { type: Date, default: null },
|
|
13
|
+
slaClockStart: { type: Date, default: null },
|
|
14
|
+
slaClockStop: { type: Date, default: null },
|
|
13
15
|
applicationId: { type: String, required: true },
|
|
14
16
|
isApplicationFeePaid: { type: String, required: true },
|
|
15
17
|
applicationNumber: { type: String, required: true },
|