@dynamatix/gb-schemas 2.14.8 → 2.14.9

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.
@@ -49,6 +49,7 @@ declare const ApplicationModel: mongoose.Model<{
49
49
  firstAssignedToUserDate: NativeDate;
50
50
  slaClockStart: NativeDate;
51
51
  slaClockStop: NativeDate;
52
+ affordabilityCompletedAt: NativeDate;
52
53
  isApplicationFeePaid: string;
53
54
  bankSolicitor: string;
54
55
  brokerId: mongoose.Types.ObjectId;
@@ -146,6 +147,7 @@ declare const ApplicationModel: mongoose.Model<{
146
147
  firstAssignedToUserDate: NativeDate;
147
148
  slaClockStart: NativeDate;
148
149
  slaClockStop: NativeDate;
150
+ affordabilityCompletedAt: NativeDate;
149
151
  isApplicationFeePaid: string;
150
152
  bankSolicitor: string;
151
153
  brokerId: mongoose.Types.ObjectId;
@@ -243,6 +245,7 @@ declare const ApplicationModel: mongoose.Model<{
243
245
  firstAssignedToUserDate: NativeDate;
244
246
  slaClockStart: NativeDate;
245
247
  slaClockStop: NativeDate;
248
+ affordabilityCompletedAt: NativeDate;
246
249
  isApplicationFeePaid: string;
247
250
  bankSolicitor: string;
248
251
  brokerId: mongoose.Types.ObjectId;
@@ -352,6 +355,7 @@ declare const ApplicationModel: mongoose.Model<{
352
355
  firstAssignedToUserDate: NativeDate;
353
356
  slaClockStart: NativeDate;
354
357
  slaClockStop: NativeDate;
358
+ affordabilityCompletedAt: NativeDate;
355
359
  isApplicationFeePaid: string;
356
360
  bankSolicitor: string;
357
361
  brokerId: mongoose.Types.ObjectId;
@@ -449,6 +453,7 @@ declare const ApplicationModel: mongoose.Model<{
449
453
  firstAssignedToUserDate: NativeDate;
450
454
  slaClockStart: NativeDate;
451
455
  slaClockStop: NativeDate;
456
+ affordabilityCompletedAt: NativeDate;
452
457
  isApplicationFeePaid: string;
453
458
  bankSolicitor: string;
454
459
  brokerId: mongoose.Types.ObjectId;
@@ -546,6 +551,7 @@ declare const ApplicationModel: mongoose.Model<{
546
551
  firstAssignedToUserDate: NativeDate;
547
552
  slaClockStart: NativeDate;
548
553
  slaClockStop: NativeDate;
554
+ affordabilityCompletedAt: NativeDate;
549
555
  isApplicationFeePaid: string;
550
556
  bankSolicitor: string;
551
557
  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;AAgRhC,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAmD,CAAC;AAC1E,eAAe,gBAAgB,CAAC"}
1
+ {"version":3,"file":"application.model.d.ts","sourceRoot":"","sources":["../../applications/application.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAiRhC,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAmD,CAAC;AAC1E,eAAe,gBAAgB,CAAC"}
@@ -14,6 +14,7 @@ const applicationSchema = new mongoose.Schema({
14
14
  firstAssignedToUserDate: { type: Date, default: null },
15
15
  slaClockStart: { type: Date, default: null },
16
16
  slaClockStop: { type: Date, default: null },
17
+ affordabilityCompletedAt: { type: Date, default: null },
17
18
  applicationId: { type: String, required: true },
18
19
  isApplicationFeePaid: { type: String, required: true },
19
20
  applicationNumber: { type: String, required: true },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamatix/gb-schemas",
3
- "version": "2.14.8",
3
+ "version": "2.14.9",
4
4
  "description": "All the schemas for gatehouse bank back-end .",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",