@dynamatix/gb-schemas 1.2.55 → 1.2.56
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.
|
@@ -30,7 +30,7 @@ declare const MortgageModel: mongoose.Model<{
|
|
|
30
30
|
createdAt: NativeDate;
|
|
31
31
|
updatedAt: NativeDate;
|
|
32
32
|
} & {
|
|
33
|
-
|
|
33
|
+
depositComeFromLids: mongoose.Types.ObjectId[];
|
|
34
34
|
proposedTenantsLid: mongoose.Types.ObjectId[];
|
|
35
35
|
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
36
36
|
createdAt?: {
|
|
@@ -435,7 +435,7 @@ declare const MortgageModel: mongoose.Model<{
|
|
|
435
435
|
createdAt: NativeDate;
|
|
436
436
|
updatedAt: NativeDate;
|
|
437
437
|
} & {
|
|
438
|
-
|
|
438
|
+
depositComeFromLids: mongoose.Types.ObjectId[];
|
|
439
439
|
proposedTenantsLid: mongoose.Types.ObjectId[];
|
|
440
440
|
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
441
441
|
createdAt?: {
|
|
@@ -840,7 +840,7 @@ declare const MortgageModel: mongoose.Model<{
|
|
|
840
840
|
createdAt: NativeDate;
|
|
841
841
|
updatedAt: NativeDate;
|
|
842
842
|
} & {
|
|
843
|
-
|
|
843
|
+
depositComeFromLids: mongoose.Types.ObjectId[];
|
|
844
844
|
proposedTenantsLid: mongoose.Types.ObjectId[];
|
|
845
845
|
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
846
846
|
createdAt?: {
|
|
@@ -1261,7 +1261,7 @@ declare const MortgageModel: mongoose.Model<{
|
|
|
1261
1261
|
pageValidFlag: boolean;
|
|
1262
1262
|
topSlicing: boolean;
|
|
1263
1263
|
purposeOfMortgage: string;
|
|
1264
|
-
|
|
1264
|
+
depositComeFromLids: mongoose.Types.ObjectId[];
|
|
1265
1265
|
ifOtherDetails: string;
|
|
1266
1266
|
purchasePrice: Pound;
|
|
1267
1267
|
repaymentTypeLid: mongoose.Types.ObjectId;
|
|
@@ -1296,7 +1296,7 @@ declare const MortgageModel: mongoose.Model<{
|
|
|
1296
1296
|
pageValidFlag: boolean;
|
|
1297
1297
|
topSlicing: boolean;
|
|
1298
1298
|
purposeOfMortgage: string;
|
|
1299
|
-
|
|
1299
|
+
depositComeFromLids: mongoose.Types.ObjectId[];
|
|
1300
1300
|
ifOtherDetails: string;
|
|
1301
1301
|
purchasePrice: Pound;
|
|
1302
1302
|
repaymentTypeLid: mongoose.Types.ObjectId;
|
|
@@ -1331,7 +1331,7 @@ declare const MortgageModel: mongoose.Model<{
|
|
|
1331
1331
|
pageValidFlag: boolean;
|
|
1332
1332
|
topSlicing: boolean;
|
|
1333
1333
|
purposeOfMortgage: string;
|
|
1334
|
-
|
|
1334
|
+
depositComeFromLids: mongoose.Types.ObjectId[];
|
|
1335
1335
|
ifOtherDetails: string;
|
|
1336
1336
|
purchasePrice: Pound;
|
|
1337
1337
|
repaymentTypeLid: mongoose.Types.ObjectId;
|
|
@@ -28,7 +28,7 @@ const mortgageSchema = new mongoose.Schema({
|
|
|
28
28
|
maxlength: 50,
|
|
29
29
|
description: "Purpose of the mortgage (e.g., purchase, refinance)",
|
|
30
30
|
},
|
|
31
|
-
|
|
31
|
+
depositComeFromLids: {
|
|
32
32
|
type: [mongoose.Schema.Types.ObjectId],
|
|
33
33
|
ref: "Lookup",
|
|
34
34
|
required: true,
|