@dynamatix/gb-schemas 1.3.365 → 1.3.366

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.
@@ -70,6 +70,7 @@ declare const ApplicationModel: mongoose.Model<{
70
70
  pendingTaskCountForUser: number;
71
71
  applicationFormSignedDate: NativeDate;
72
72
  isUkResident: boolean;
73
+ creditReportId: string;
73
74
  selectedProduct?: string | null | undefined;
74
75
  product?: string | null | undefined;
75
76
  riskRating?: string | null | undefined;
@@ -135,6 +136,7 @@ declare const ApplicationModel: mongoose.Model<{
135
136
  pendingTaskCountForUser: number;
136
137
  applicationFormSignedDate: NativeDate;
137
138
  isUkResident: boolean;
139
+ creditReportId: string;
138
140
  selectedProduct?: string | null | undefined;
139
141
  product?: string | null | undefined;
140
142
  riskRating?: string | null | undefined;
@@ -200,6 +202,7 @@ declare const ApplicationModel: mongoose.Model<{
200
202
  pendingTaskCountForUser: number;
201
203
  applicationFormSignedDate: NativeDate;
202
204
  isUkResident: boolean;
205
+ creditReportId: string;
203
206
  selectedProduct?: string | null | undefined;
204
207
  product?: string | null | undefined;
205
208
  riskRating?: string | null | undefined;
@@ -277,6 +280,7 @@ declare const ApplicationModel: mongoose.Model<{
277
280
  pendingTaskCountForUser: number;
278
281
  applicationFormSignedDate: NativeDate;
279
282
  isUkResident: boolean;
283
+ creditReportId: string;
280
284
  selectedProduct?: string | null | undefined;
281
285
  product?: string | null | undefined;
282
286
  riskRating?: string | null | undefined;
@@ -342,6 +346,7 @@ declare const ApplicationModel: mongoose.Model<{
342
346
  pendingTaskCountForUser: number;
343
347
  applicationFormSignedDate: NativeDate;
344
348
  isUkResident: boolean;
349
+ creditReportId: string;
345
350
  selectedProduct?: string | null | undefined;
346
351
  product?: string | null | undefined;
347
352
  riskRating?: string | null | undefined;
@@ -407,6 +412,7 @@ declare const ApplicationModel: mongoose.Model<{
407
412
  pendingTaskCountForUser: number;
408
413
  applicationFormSignedDate: NativeDate;
409
414
  isUkResident: boolean;
415
+ creditReportId: string;
410
416
  selectedProduct?: string | null | undefined;
411
417
  product?: string | null | undefined;
412
418
  riskRating?: string | null | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"application.model.d.ts","sourceRoot":"","sources":["../../applications/application.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AA+NhC,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;AAgOhC,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAmD,CAAC;AAC1E,eAAe,gBAAgB,CAAC"}
@@ -74,7 +74,8 @@ const applicationSchema = new mongoose.Schema({
74
74
  isUkResident: {
75
75
  type: Boolean,
76
76
  default: false
77
- }
77
+ },
78
+ creditReportId: { type: String, default: null },
78
79
  }, {
79
80
  timestamps: true,
80
81
  toJSON: { virtuals: true },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamatix/gb-schemas",
3
- "version": "1.3.365",
3
+ "version": "1.3.366",
4
4
  "description": "All the schemas for gatehouse bank back-end",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",