@dynamatix/gb-schemas 2.3.392 → 2.3.393

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.
@@ -115,12 +115,12 @@ declare const ApplicationModel: mongoose.Model<{
115
115
  lastUpdated?: string | null | undefined;
116
116
  submittedDate?: string | null | undefined;
117
117
  riskNarrative?: {
118
+ call2StatusLid: mongoose.Types.ObjectId;
118
119
  Call1RequestedOn: string;
119
120
  Call2RequestedOn: string;
120
121
  RetryCount: string;
121
122
  RiskRating: string;
122
- Status: mongoose.Types.ObjectId;
123
- Call2Status: mongoose.Types.ObjectId;
123
+ StatusLid: mongoose.Types.ObjectId;
124
124
  } | null | undefined;
125
125
  valuationId?: mongoose.Types.ObjectId | null | undefined;
126
126
  valuationReportId?: mongoose.Types.ObjectId | null | undefined;
@@ -212,12 +212,12 @@ declare const ApplicationModel: mongoose.Model<{
212
212
  lastUpdated?: string | null | undefined;
213
213
  submittedDate?: string | null | undefined;
214
214
  riskNarrative?: {
215
+ call2StatusLid: mongoose.Types.ObjectId;
215
216
  Call1RequestedOn: string;
216
217
  Call2RequestedOn: string;
217
218
  RetryCount: string;
218
219
  RiskRating: string;
219
- Status: mongoose.Types.ObjectId;
220
- Call2Status: mongoose.Types.ObjectId;
220
+ StatusLid: mongoose.Types.ObjectId;
221
221
  } | null | undefined;
222
222
  valuationId?: mongoose.Types.ObjectId | null | undefined;
223
223
  valuationReportId?: mongoose.Types.ObjectId | null | undefined;
@@ -309,12 +309,12 @@ declare const ApplicationModel: mongoose.Model<{
309
309
  lastUpdated?: string | null | undefined;
310
310
  submittedDate?: string | null | undefined;
311
311
  riskNarrative?: {
312
+ call2StatusLid: mongoose.Types.ObjectId;
312
313
  Call1RequestedOn: string;
313
314
  Call2RequestedOn: string;
314
315
  RetryCount: string;
315
316
  RiskRating: string;
316
- Status: mongoose.Types.ObjectId;
317
- Call2Status: mongoose.Types.ObjectId;
317
+ StatusLid: mongoose.Types.ObjectId;
318
318
  } | null | undefined;
319
319
  valuationId?: mongoose.Types.ObjectId | null | undefined;
320
320
  valuationReportId?: mongoose.Types.ObjectId | null | undefined;
@@ -418,12 +418,12 @@ declare const ApplicationModel: mongoose.Model<{
418
418
  lastUpdated?: string | null | undefined;
419
419
  submittedDate?: string | null | undefined;
420
420
  riskNarrative?: {
421
+ call2StatusLid: mongoose.Types.ObjectId;
421
422
  Call1RequestedOn: string;
422
423
  Call2RequestedOn: string;
423
424
  RetryCount: string;
424
425
  RiskRating: string;
425
- Status: mongoose.Types.ObjectId;
426
- Call2Status: mongoose.Types.ObjectId;
426
+ StatusLid: mongoose.Types.ObjectId;
427
427
  } | null | undefined;
428
428
  valuationId?: mongoose.Types.ObjectId | null | undefined;
429
429
  valuationReportId?: mongoose.Types.ObjectId | null | undefined;
@@ -515,12 +515,12 @@ declare const ApplicationModel: mongoose.Model<{
515
515
  lastUpdated?: string | null | undefined;
516
516
  submittedDate?: string | null | undefined;
517
517
  riskNarrative?: {
518
+ call2StatusLid: mongoose.Types.ObjectId;
518
519
  Call1RequestedOn: string;
519
520
  Call2RequestedOn: string;
520
521
  RetryCount: string;
521
522
  RiskRating: string;
522
- Status: mongoose.Types.ObjectId;
523
- Call2Status: mongoose.Types.ObjectId;
523
+ StatusLid: mongoose.Types.ObjectId;
524
524
  } | null | undefined;
525
525
  valuationId?: mongoose.Types.ObjectId | null | undefined;
526
526
  valuationReportId?: mongoose.Types.ObjectId | null | undefined;
@@ -612,12 +612,12 @@ declare const ApplicationModel: mongoose.Model<{
612
612
  lastUpdated?: string | null | undefined;
613
613
  submittedDate?: string | null | undefined;
614
614
  riskNarrative?: {
615
+ call2StatusLid: mongoose.Types.ObjectId;
615
616
  Call1RequestedOn: string;
616
617
  Call2RequestedOn: string;
617
618
  RetryCount: string;
618
619
  RiskRating: string;
619
- Status: mongoose.Types.ObjectId;
620
- Call2Status: mongoose.Types.ObjectId;
620
+ StatusLid: mongoose.Types.ObjectId;
621
621
  } | null | undefined;
622
622
  valuationId?: mongoose.Types.ObjectId | null | undefined;
623
623
  valuationReportId?: mongoose.Types.ObjectId | null | undefined;
@@ -56,8 +56,8 @@ const applicationSchema = new mongoose.Schema({
56
56
  Call2RequestedOn: { type: String, default: null },
57
57
  RetryCount: { type: String, default: null },
58
58
  RiskRating: { type: String, default: null },
59
- Status: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null },
60
- Call2Status: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null },
59
+ StatusLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null },
60
+ call2StatusLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null },
61
61
  },
62
62
  applicants: [
63
63
  { type: mongoose.Schema.Types.ObjectId, ref: "Applicant", default: null }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamatix/gb-schemas",
3
- "version": "2.3.392",
3
+ "version": "2.3.393",
4
4
  "description": "All the schemas for gatehouse bank back-end",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",