@dynamatix/gb-schemas 2.3.309 → 2.3.310

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.
@@ -61,6 +61,8 @@ declare const ApplicationModel: mongoose.Model<{
61
61
  underwriter: string;
62
62
  isValuationFeePaid: string;
63
63
  withdrawalReasonLid: mongoose.Types.ObjectId;
64
+ declineReasonLid: mongoose.Types.ObjectId;
65
+ isPortfolioConfirmed: boolean;
64
66
  securityId: mongoose.Types.ObjectId;
65
67
  solicitorId: mongoose.Types.ObjectId;
66
68
  newAuditRecordsCount: number;
@@ -135,6 +137,8 @@ declare const ApplicationModel: mongoose.Model<{
135
137
  underwriter: string;
136
138
  isValuationFeePaid: string;
137
139
  withdrawalReasonLid: mongoose.Types.ObjectId;
140
+ declineReasonLid: mongoose.Types.ObjectId;
141
+ isPortfolioConfirmed: boolean;
138
142
  securityId: mongoose.Types.ObjectId;
139
143
  solicitorId: mongoose.Types.ObjectId;
140
144
  newAuditRecordsCount: number;
@@ -209,6 +213,8 @@ declare const ApplicationModel: mongoose.Model<{
209
213
  underwriter: string;
210
214
  isValuationFeePaid: string;
211
215
  withdrawalReasonLid: mongoose.Types.ObjectId;
216
+ declineReasonLid: mongoose.Types.ObjectId;
217
+ isPortfolioConfirmed: boolean;
212
218
  securityId: mongoose.Types.ObjectId;
213
219
  solicitorId: mongoose.Types.ObjectId;
214
220
  newAuditRecordsCount: number;
@@ -295,6 +301,8 @@ declare const ApplicationModel: mongoose.Model<{
295
301
  underwriter: string;
296
302
  isValuationFeePaid: string;
297
303
  withdrawalReasonLid: mongoose.Types.ObjectId;
304
+ declineReasonLid: mongoose.Types.ObjectId;
305
+ isPortfolioConfirmed: boolean;
298
306
  securityId: mongoose.Types.ObjectId;
299
307
  solicitorId: mongoose.Types.ObjectId;
300
308
  newAuditRecordsCount: number;
@@ -369,6 +377,8 @@ declare const ApplicationModel: mongoose.Model<{
369
377
  underwriter: string;
370
378
  isValuationFeePaid: string;
371
379
  withdrawalReasonLid: mongoose.Types.ObjectId;
380
+ declineReasonLid: mongoose.Types.ObjectId;
381
+ isPortfolioConfirmed: boolean;
372
382
  securityId: mongoose.Types.ObjectId;
373
383
  solicitorId: mongoose.Types.ObjectId;
374
384
  newAuditRecordsCount: number;
@@ -443,6 +453,8 @@ declare const ApplicationModel: mongoose.Model<{
443
453
  underwriter: string;
444
454
  isValuationFeePaid: string;
445
455
  withdrawalReasonLid: mongoose.Types.ObjectId;
456
+ declineReasonLid: mongoose.Types.ObjectId;
457
+ isPortfolioConfirmed: boolean;
446
458
  securityId: mongoose.Types.ObjectId;
447
459
  solicitorId: mongoose.Types.ObjectId;
448
460
  newAuditRecordsCount: number;
@@ -1 +1 @@
1
- {"version":3,"file":"application.model.d.ts","sourceRoot":"","sources":["../../applications/application.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAsPhC,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;AAwPhC,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAmD,CAAC;AAC1E,eAAe,gBAAgB,CAAC"}
@@ -38,6 +38,8 @@ const applicationSchema = new mongoose.Schema({
38
38
  underwriter: { type: String, default: "" },
39
39
  isValuationFeePaid: { type: String, required: true },
40
40
  withdrawalReasonLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null },
41
+ declineReasonLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null },
42
+ isPortfolioConfirmed: { type: Boolean, default: false },
41
43
  productId: { type: mongoose.Schema.Types.ObjectId, ref: "Product", required: false },
42
44
  product: { type: String },
43
45
  securityId: { type: mongoose.Schema.Types.ObjectId, ref: "Security", required: true },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamatix/gb-schemas",
3
- "version": "2.3.309",
3
+ "version": "2.3.310",
4
4
  "description": "All the schemas for gatehouse bank back-end",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",