@dynamatix/gb-schemas 1.2.9 → 1.2.12
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.
- package/dist/applicants/applicant-commitment.model.d.ts +6 -6
- package/dist/applicants/applicant.model.d.ts +36 -36
- package/dist/applications/application-mortgage.model.d.ts +345 -237
- package/dist/applications/application-mortgage.model.d.ts.map +1 -1
- package/dist/applications/application-mortgage.model.js +196 -66
- package/dist/applications/application.model.d.ts +42 -42
- package/dist/applications/productfeatures.model.d.ts +3 -3
- package/dist/properties/property.model.d.ts +36 -30
- package/dist/properties/property.model.d.ts.map +1 -1
- package/dist/properties/property.model.js +3 -0
- package/dist/properties/security.model.d.ts +6 -0
- package/dist/properties/security.model.d.ts.map +1 -1
- package/dist/properties/security.model.js +3 -0
- package/package.json +1 -1
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import mongoose from "mongoose";
|
|
2
2
|
declare const applicantCommitmentSchema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, {
|
|
3
3
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
4
|
-
monthlyPayment?: string | null | undefined;
|
|
5
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
6
4
|
commitmentId?: string | null | undefined;
|
|
5
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
7
6
|
lenderName?: string | null | undefined;
|
|
7
|
+
monthlyPayment?: string | null | undefined;
|
|
8
8
|
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
9
9
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
10
|
-
monthlyPayment?: string | null | undefined;
|
|
11
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
12
10
|
commitmentId?: string | null | undefined;
|
|
11
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
13
12
|
lenderName?: string | null | undefined;
|
|
13
|
+
monthlyPayment?: string | null | undefined;
|
|
14
14
|
}>> & mongoose.FlatRecord<{
|
|
15
15
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
16
|
-
monthlyPayment?: string | null | undefined;
|
|
17
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
18
16
|
commitmentId?: string | null | undefined;
|
|
17
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
19
18
|
lenderName?: string | null | undefined;
|
|
19
|
+
monthlyPayment?: string | null | undefined;
|
|
20
20
|
}> & {
|
|
21
21
|
_id: mongoose.Types.ObjectId;
|
|
22
22
|
} & {
|
|
@@ -88,22 +88,22 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
88
88
|
vulnerabilityTypeLids: mongoose.Types.ObjectId[];
|
|
89
89
|
commitments: mongoose.Types.DocumentArray<{
|
|
90
90
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
91
|
-
monthlyPayment?: string | null | undefined;
|
|
92
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
93
91
|
commitmentId?: string | null | undefined;
|
|
92
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
94
93
|
lenderName?: string | null | undefined;
|
|
94
|
+
monthlyPayment?: string | null | undefined;
|
|
95
95
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
96
96
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
97
|
-
monthlyPayment?: string | null | undefined;
|
|
98
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
99
97
|
commitmentId?: string | null | undefined;
|
|
98
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
100
99
|
lenderName?: string | null | undefined;
|
|
100
|
+
monthlyPayment?: string | null | undefined;
|
|
101
101
|
}> & {
|
|
102
102
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
103
|
-
monthlyPayment?: string | null | undefined;
|
|
104
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
105
103
|
commitmentId?: string | null | undefined;
|
|
104
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
106
105
|
lenderName?: string | null | undefined;
|
|
106
|
+
monthlyPayment?: string | null | undefined;
|
|
107
107
|
}>;
|
|
108
108
|
creditProfile?: {
|
|
109
109
|
anyVoluntaryEnforcedPossessionNo: string;
|
|
@@ -371,22 +371,22 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
371
371
|
vulnerabilityTypeLids: mongoose.Types.ObjectId[];
|
|
372
372
|
commitments: mongoose.Types.DocumentArray<{
|
|
373
373
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
374
|
-
monthlyPayment?: string | null | undefined;
|
|
375
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
376
374
|
commitmentId?: string | null | undefined;
|
|
375
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
377
376
|
lenderName?: string | null | undefined;
|
|
377
|
+
monthlyPayment?: string | null | undefined;
|
|
378
378
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
379
379
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
380
|
-
monthlyPayment?: string | null | undefined;
|
|
381
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
382
380
|
commitmentId?: string | null | undefined;
|
|
381
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
383
382
|
lenderName?: string | null | undefined;
|
|
383
|
+
monthlyPayment?: string | null | undefined;
|
|
384
384
|
}> & {
|
|
385
385
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
386
|
-
monthlyPayment?: string | null | undefined;
|
|
387
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
388
386
|
commitmentId?: string | null | undefined;
|
|
387
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
389
388
|
lenderName?: string | null | undefined;
|
|
389
|
+
monthlyPayment?: string | null | undefined;
|
|
390
390
|
}>;
|
|
391
391
|
creditProfile?: {
|
|
392
392
|
anyVoluntaryEnforcedPossessionNo: string;
|
|
@@ -654,22 +654,22 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
654
654
|
vulnerabilityTypeLids: mongoose.Types.ObjectId[];
|
|
655
655
|
commitments: mongoose.Types.DocumentArray<{
|
|
656
656
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
657
|
-
monthlyPayment?: string | null | undefined;
|
|
658
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
659
657
|
commitmentId?: string | null | undefined;
|
|
658
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
660
659
|
lenderName?: string | null | undefined;
|
|
660
|
+
monthlyPayment?: string | null | undefined;
|
|
661
661
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
662
662
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
663
|
-
monthlyPayment?: string | null | undefined;
|
|
664
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
665
663
|
commitmentId?: string | null | undefined;
|
|
664
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
666
665
|
lenderName?: string | null | undefined;
|
|
666
|
+
monthlyPayment?: string | null | undefined;
|
|
667
667
|
}> & {
|
|
668
668
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
669
|
-
monthlyPayment?: string | null | undefined;
|
|
670
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
671
669
|
commitmentId?: string | null | undefined;
|
|
670
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
672
671
|
lenderName?: string | null | undefined;
|
|
672
|
+
monthlyPayment?: string | null | undefined;
|
|
673
673
|
}>;
|
|
674
674
|
creditProfile?: {
|
|
675
675
|
anyVoluntaryEnforcedPossessionNo: string;
|
|
@@ -949,22 +949,22 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
949
949
|
vulnerabilityTypeLids: mongoose.Types.ObjectId[];
|
|
950
950
|
commitments: mongoose.Types.DocumentArray<{
|
|
951
951
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
952
|
-
monthlyPayment?: string | null | undefined;
|
|
953
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
954
952
|
commitmentId?: string | null | undefined;
|
|
953
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
955
954
|
lenderName?: string | null | undefined;
|
|
955
|
+
monthlyPayment?: string | null | undefined;
|
|
956
956
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
957
957
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
958
|
-
monthlyPayment?: string | null | undefined;
|
|
959
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
960
958
|
commitmentId?: string | null | undefined;
|
|
959
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
961
960
|
lenderName?: string | null | undefined;
|
|
961
|
+
monthlyPayment?: string | null | undefined;
|
|
962
962
|
}> & {
|
|
963
963
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
964
|
-
monthlyPayment?: string | null | undefined;
|
|
965
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
966
964
|
commitmentId?: string | null | undefined;
|
|
965
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
967
966
|
lenderName?: string | null | undefined;
|
|
967
|
+
monthlyPayment?: string | null | undefined;
|
|
968
968
|
}>;
|
|
969
969
|
creditProfile?: {
|
|
970
970
|
anyVoluntaryEnforcedPossessionNo: string;
|
|
@@ -1232,22 +1232,22 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
1232
1232
|
vulnerabilityTypeLids: mongoose.Types.ObjectId[];
|
|
1233
1233
|
commitments: mongoose.Types.DocumentArray<{
|
|
1234
1234
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
1235
|
-
monthlyPayment?: string | null | undefined;
|
|
1236
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
1237
1235
|
commitmentId?: string | null | undefined;
|
|
1236
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
1238
1237
|
lenderName?: string | null | undefined;
|
|
1238
|
+
monthlyPayment?: string | null | undefined;
|
|
1239
1239
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
1240
1240
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
1241
|
-
monthlyPayment?: string | null | undefined;
|
|
1242
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
1243
1241
|
commitmentId?: string | null | undefined;
|
|
1242
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
1244
1243
|
lenderName?: string | null | undefined;
|
|
1244
|
+
monthlyPayment?: string | null | undefined;
|
|
1245
1245
|
}> & {
|
|
1246
1246
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
1247
|
-
monthlyPayment?: string | null | undefined;
|
|
1248
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
1249
1247
|
commitmentId?: string | null | undefined;
|
|
1248
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
1250
1249
|
lenderName?: string | null | undefined;
|
|
1250
|
+
monthlyPayment?: string | null | undefined;
|
|
1251
1251
|
}>;
|
|
1252
1252
|
creditProfile?: {
|
|
1253
1253
|
anyVoluntaryEnforcedPossessionNo: string;
|
|
@@ -1515,22 +1515,22 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
1515
1515
|
vulnerabilityTypeLids: mongoose.Types.ObjectId[];
|
|
1516
1516
|
commitments: mongoose.Types.DocumentArray<{
|
|
1517
1517
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
1518
|
-
monthlyPayment?: string | null | undefined;
|
|
1519
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
1520
1518
|
commitmentId?: string | null | undefined;
|
|
1519
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
1521
1520
|
lenderName?: string | null | undefined;
|
|
1521
|
+
monthlyPayment?: string | null | undefined;
|
|
1522
1522
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
1523
1523
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
1524
|
-
monthlyPayment?: string | null | undefined;
|
|
1525
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
1526
1524
|
commitmentId?: string | null | undefined;
|
|
1525
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
1527
1526
|
lenderName?: string | null | undefined;
|
|
1527
|
+
monthlyPayment?: string | null | undefined;
|
|
1528
1528
|
}> & {
|
|
1529
1529
|
commitmentTypeLid: mongoose.Types.ObjectId;
|
|
1530
|
-
monthlyPayment?: string | null | undefined;
|
|
1531
|
-
doHaveSharedResponsibility?: string | null | undefined;
|
|
1532
1530
|
commitmentId?: string | null | undefined;
|
|
1531
|
+
doHaveSharedResponsibility?: string | null | undefined;
|
|
1533
1532
|
lenderName?: string | null | undefined;
|
|
1533
|
+
monthlyPayment?: string | null | undefined;
|
|
1534
1534
|
}>;
|
|
1535
1535
|
creditProfile?: {
|
|
1536
1536
|
anyVoluntaryEnforcedPossessionNo: string;
|