@dynamatix/gb-schemas 2.3.373 → 2.3.375
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/README.md +308 -308
- package/dist/applicants/applicant-welcome-call.model.js +9 -9
- package/dist/applications/application-valuation-report.model.d.ts +114 -30
- package/dist/applications/application-valuation-report.model.d.ts.map +1 -1
- package/dist/applications/application-valuation-report.model.js +14 -7
- package/dist/applications/application-valuation-report.type.d.ts +7 -4
- package/dist/applications/application-valuation-report.type.d.ts.map +1 -1
- package/package.json +87 -87
- package/dist/applicants/applicant-income-source.model.d.ts +0 -26
- package/dist/applicants/applicant-income-source.model.d.ts.map +0 -1
- package/dist/applicants/applicant-income.model.d.ts +0 -160
- package/dist/applicants/applicant-income.model.d.ts.map +0 -1
- package/dist/applicants/applicant-other-income.model.d.ts +0 -85
- package/dist/applicants/applicant-other-income.model.d.ts.map +0 -1
- package/dist/applications/application-document.model.d.ts +0 -158
- package/dist/applications/application-document.model.d.ts.map +0 -1
- package/dist/applications/document.model.d.ts +0 -158
- package/dist/applications/document.model.d.ts.map +0 -1
- package/dist/applications/productfeatures.model.d.ts +0 -368
- package/dist/applications/productfeatures.model.d.ts.map +0 -1
- package/dist/shared/document-type-model.d.ts +0 -48
- package/dist/shared/document-type-model.d.ts.map +0 -1
|
@@ -30,8 +30,10 @@ import mongoose from "mongoose";
|
|
|
30
30
|
declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
31
31
|
applicationId: mongoose.Types.ObjectId;
|
|
32
32
|
applicantName: string;
|
|
33
|
+
applicationType: string;
|
|
33
34
|
documentId: mongoose.Types.ObjectId;
|
|
34
35
|
applicationNumber: string;
|
|
36
|
+
dateOfInspection: NativeDate;
|
|
35
37
|
propertyAddress: string;
|
|
36
38
|
postCode: string;
|
|
37
39
|
generalRemarks: string;
|
|
@@ -53,7 +55,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
53
55
|
numberOfUnitsInBlock: number;
|
|
54
56
|
isAboveCommercial: boolean;
|
|
55
57
|
residentialNatureImpact: string;
|
|
56
|
-
|
|
58
|
+
isFreehold: boolean;
|
|
59
|
+
isLeasehold: boolean;
|
|
57
60
|
isFlyingFreehold: boolean;
|
|
58
61
|
flyingFreeholdPercentage: number;
|
|
59
62
|
maintenanceCharge: number;
|
|
@@ -84,7 +87,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
84
87
|
outbuildingDetails: string;
|
|
85
88
|
grossFloorAreaOfDwelling: number;
|
|
86
89
|
} | null | undefined;
|
|
87
|
-
|
|
90
|
+
currentOccupancy?: {
|
|
88
91
|
isEverOccupied: boolean;
|
|
89
92
|
numberOfAdultsInProperty: number;
|
|
90
93
|
isHmoOrMultiUnitFreeholdBlock: boolean;
|
|
@@ -217,7 +220,18 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
217
220
|
investorOnlyDemand: boolean;
|
|
218
221
|
investorOnlyDemandDetails: string;
|
|
219
222
|
} | null | undefined;
|
|
220
|
-
|
|
223
|
+
valuationForFinancePurposeBTL?: {
|
|
224
|
+
valuationComparativeOnly: string;
|
|
225
|
+
isSuitableForFinance: boolean;
|
|
226
|
+
financeSuitabilityDetails: string;
|
|
227
|
+
marketValuePresentCondition: number;
|
|
228
|
+
marketValueAfterRepairs: number;
|
|
229
|
+
purchasePriceOrBorrowerEstimate: number;
|
|
230
|
+
buildingInsuranceReinstatementCost: number;
|
|
231
|
+
isInsurancePremiumLoadingRisk: boolean;
|
|
232
|
+
insurancePremiumLoadingDetails: string;
|
|
233
|
+
} | null | undefined;
|
|
234
|
+
valuationForFinancePurposeHPP?: {
|
|
221
235
|
valuationComparativeOnly: string;
|
|
222
236
|
isSuitableForFinance: boolean;
|
|
223
237
|
financeSuitabilityDetails: string;
|
|
@@ -229,7 +243,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
229
243
|
insurancePremiumLoadingDetails: string;
|
|
230
244
|
} | null | undefined;
|
|
231
245
|
valuersDeclaration?: {
|
|
232
|
-
valuerSignature:
|
|
246
|
+
valuerSignature: string;
|
|
233
247
|
valuerName: string;
|
|
234
248
|
onBehalfOf: string;
|
|
235
249
|
telephone: number;
|
|
@@ -238,7 +252,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
238
252
|
ricsNumber: number;
|
|
239
253
|
valuerAddress: string;
|
|
240
254
|
valuerPostcode: string;
|
|
241
|
-
reportDate:
|
|
255
|
+
reportDate: NativeDate;
|
|
242
256
|
valuerQualifications?: {
|
|
243
257
|
mrics: boolean;
|
|
244
258
|
frics: boolean;
|
|
@@ -248,8 +262,10 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
248
262
|
}, {}, {}, {}, mongoose.Document<unknown, {}, {
|
|
249
263
|
applicationId: mongoose.Types.ObjectId;
|
|
250
264
|
applicantName: string;
|
|
265
|
+
applicationType: string;
|
|
251
266
|
documentId: mongoose.Types.ObjectId;
|
|
252
267
|
applicationNumber: string;
|
|
268
|
+
dateOfInspection: NativeDate;
|
|
253
269
|
propertyAddress: string;
|
|
254
270
|
postCode: string;
|
|
255
271
|
generalRemarks: string;
|
|
@@ -271,7 +287,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
271
287
|
numberOfUnitsInBlock: number;
|
|
272
288
|
isAboveCommercial: boolean;
|
|
273
289
|
residentialNatureImpact: string;
|
|
274
|
-
|
|
290
|
+
isFreehold: boolean;
|
|
291
|
+
isLeasehold: boolean;
|
|
275
292
|
isFlyingFreehold: boolean;
|
|
276
293
|
flyingFreeholdPercentage: number;
|
|
277
294
|
maintenanceCharge: number;
|
|
@@ -302,7 +319,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
302
319
|
outbuildingDetails: string;
|
|
303
320
|
grossFloorAreaOfDwelling: number;
|
|
304
321
|
} | null | undefined;
|
|
305
|
-
|
|
322
|
+
currentOccupancy?: {
|
|
306
323
|
isEverOccupied: boolean;
|
|
307
324
|
numberOfAdultsInProperty: number;
|
|
308
325
|
isHmoOrMultiUnitFreeholdBlock: boolean;
|
|
@@ -435,7 +452,18 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
435
452
|
investorOnlyDemand: boolean;
|
|
436
453
|
investorOnlyDemandDetails: string;
|
|
437
454
|
} | null | undefined;
|
|
438
|
-
|
|
455
|
+
valuationForFinancePurposeBTL?: {
|
|
456
|
+
valuationComparativeOnly: string;
|
|
457
|
+
isSuitableForFinance: boolean;
|
|
458
|
+
financeSuitabilityDetails: string;
|
|
459
|
+
marketValuePresentCondition: number;
|
|
460
|
+
marketValueAfterRepairs: number;
|
|
461
|
+
purchasePriceOrBorrowerEstimate: number;
|
|
462
|
+
buildingInsuranceReinstatementCost: number;
|
|
463
|
+
isInsurancePremiumLoadingRisk: boolean;
|
|
464
|
+
insurancePremiumLoadingDetails: string;
|
|
465
|
+
} | null | undefined;
|
|
466
|
+
valuationForFinancePurposeHPP?: {
|
|
439
467
|
valuationComparativeOnly: string;
|
|
440
468
|
isSuitableForFinance: boolean;
|
|
441
469
|
financeSuitabilityDetails: string;
|
|
@@ -447,7 +475,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
447
475
|
insurancePremiumLoadingDetails: string;
|
|
448
476
|
} | null | undefined;
|
|
449
477
|
valuersDeclaration?: {
|
|
450
|
-
valuerSignature:
|
|
478
|
+
valuerSignature: string;
|
|
451
479
|
valuerName: string;
|
|
452
480
|
onBehalfOf: string;
|
|
453
481
|
telephone: number;
|
|
@@ -456,7 +484,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
456
484
|
ricsNumber: number;
|
|
457
485
|
valuerAddress: string;
|
|
458
486
|
valuerPostcode: string;
|
|
459
|
-
reportDate:
|
|
487
|
+
reportDate: NativeDate;
|
|
460
488
|
valuerQualifications?: {
|
|
461
489
|
mrics: boolean;
|
|
462
490
|
frics: boolean;
|
|
@@ -466,8 +494,10 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
466
494
|
}, {}> & {
|
|
467
495
|
applicationId: mongoose.Types.ObjectId;
|
|
468
496
|
applicantName: string;
|
|
497
|
+
applicationType: string;
|
|
469
498
|
documentId: mongoose.Types.ObjectId;
|
|
470
499
|
applicationNumber: string;
|
|
500
|
+
dateOfInspection: NativeDate;
|
|
471
501
|
propertyAddress: string;
|
|
472
502
|
postCode: string;
|
|
473
503
|
generalRemarks: string;
|
|
@@ -489,7 +519,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
489
519
|
numberOfUnitsInBlock: number;
|
|
490
520
|
isAboveCommercial: boolean;
|
|
491
521
|
residentialNatureImpact: string;
|
|
492
|
-
|
|
522
|
+
isFreehold: boolean;
|
|
523
|
+
isLeasehold: boolean;
|
|
493
524
|
isFlyingFreehold: boolean;
|
|
494
525
|
flyingFreeholdPercentage: number;
|
|
495
526
|
maintenanceCharge: number;
|
|
@@ -520,7 +551,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
520
551
|
outbuildingDetails: string;
|
|
521
552
|
grossFloorAreaOfDwelling: number;
|
|
522
553
|
} | null | undefined;
|
|
523
|
-
|
|
554
|
+
currentOccupancy?: {
|
|
524
555
|
isEverOccupied: boolean;
|
|
525
556
|
numberOfAdultsInProperty: number;
|
|
526
557
|
isHmoOrMultiUnitFreeholdBlock: boolean;
|
|
@@ -653,7 +684,18 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
653
684
|
investorOnlyDemand: boolean;
|
|
654
685
|
investorOnlyDemandDetails: string;
|
|
655
686
|
} | null | undefined;
|
|
656
|
-
|
|
687
|
+
valuationForFinancePurposeBTL?: {
|
|
688
|
+
valuationComparativeOnly: string;
|
|
689
|
+
isSuitableForFinance: boolean;
|
|
690
|
+
financeSuitabilityDetails: string;
|
|
691
|
+
marketValuePresentCondition: number;
|
|
692
|
+
marketValueAfterRepairs: number;
|
|
693
|
+
purchasePriceOrBorrowerEstimate: number;
|
|
694
|
+
buildingInsuranceReinstatementCost: number;
|
|
695
|
+
isInsurancePremiumLoadingRisk: boolean;
|
|
696
|
+
insurancePremiumLoadingDetails: string;
|
|
697
|
+
} | null | undefined;
|
|
698
|
+
valuationForFinancePurposeHPP?: {
|
|
657
699
|
valuationComparativeOnly: string;
|
|
658
700
|
isSuitableForFinance: boolean;
|
|
659
701
|
financeSuitabilityDetails: string;
|
|
@@ -665,7 +707,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
665
707
|
insurancePremiumLoadingDetails: string;
|
|
666
708
|
} | null | undefined;
|
|
667
709
|
valuersDeclaration?: {
|
|
668
|
-
valuerSignature:
|
|
710
|
+
valuerSignature: string;
|
|
669
711
|
valuerName: string;
|
|
670
712
|
onBehalfOf: string;
|
|
671
713
|
telephone: number;
|
|
@@ -674,7 +716,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
674
716
|
ricsNumber: number;
|
|
675
717
|
valuerAddress: string;
|
|
676
718
|
valuerPostcode: string;
|
|
677
|
-
reportDate:
|
|
719
|
+
reportDate: NativeDate;
|
|
678
720
|
valuerQualifications?: {
|
|
679
721
|
mrics: boolean;
|
|
680
722
|
frics: boolean;
|
|
@@ -688,8 +730,10 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
688
730
|
}, mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, {
|
|
689
731
|
applicationId: mongoose.Types.ObjectId;
|
|
690
732
|
applicantName: string;
|
|
733
|
+
applicationType: string;
|
|
691
734
|
documentId: mongoose.Types.ObjectId;
|
|
692
735
|
applicationNumber: string;
|
|
736
|
+
dateOfInspection: NativeDate;
|
|
693
737
|
propertyAddress: string;
|
|
694
738
|
postCode: string;
|
|
695
739
|
generalRemarks: string;
|
|
@@ -711,7 +755,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
711
755
|
numberOfUnitsInBlock: number;
|
|
712
756
|
isAboveCommercial: boolean;
|
|
713
757
|
residentialNatureImpact: string;
|
|
714
|
-
|
|
758
|
+
isFreehold: boolean;
|
|
759
|
+
isLeasehold: boolean;
|
|
715
760
|
isFlyingFreehold: boolean;
|
|
716
761
|
flyingFreeholdPercentage: number;
|
|
717
762
|
maintenanceCharge: number;
|
|
@@ -742,7 +787,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
742
787
|
outbuildingDetails: string;
|
|
743
788
|
grossFloorAreaOfDwelling: number;
|
|
744
789
|
} | null | undefined;
|
|
745
|
-
|
|
790
|
+
currentOccupancy?: {
|
|
746
791
|
isEverOccupied: boolean;
|
|
747
792
|
numberOfAdultsInProperty: number;
|
|
748
793
|
isHmoOrMultiUnitFreeholdBlock: boolean;
|
|
@@ -875,7 +920,18 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
875
920
|
investorOnlyDemand: boolean;
|
|
876
921
|
investorOnlyDemandDetails: string;
|
|
877
922
|
} | null | undefined;
|
|
878
|
-
|
|
923
|
+
valuationForFinancePurposeBTL?: {
|
|
924
|
+
valuationComparativeOnly: string;
|
|
925
|
+
isSuitableForFinance: boolean;
|
|
926
|
+
financeSuitabilityDetails: string;
|
|
927
|
+
marketValuePresentCondition: number;
|
|
928
|
+
marketValueAfterRepairs: number;
|
|
929
|
+
purchasePriceOrBorrowerEstimate: number;
|
|
930
|
+
buildingInsuranceReinstatementCost: number;
|
|
931
|
+
isInsurancePremiumLoadingRisk: boolean;
|
|
932
|
+
insurancePremiumLoadingDetails: string;
|
|
933
|
+
} | null | undefined;
|
|
934
|
+
valuationForFinancePurposeHPP?: {
|
|
879
935
|
valuationComparativeOnly: string;
|
|
880
936
|
isSuitableForFinance: boolean;
|
|
881
937
|
financeSuitabilityDetails: string;
|
|
@@ -887,7 +943,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
887
943
|
insurancePremiumLoadingDetails: string;
|
|
888
944
|
} | null | undefined;
|
|
889
945
|
valuersDeclaration?: {
|
|
890
|
-
valuerSignature:
|
|
946
|
+
valuerSignature: string;
|
|
891
947
|
valuerName: string;
|
|
892
948
|
onBehalfOf: string;
|
|
893
949
|
telephone: number;
|
|
@@ -896,7 +952,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
896
952
|
ricsNumber: number;
|
|
897
953
|
valuerAddress: string;
|
|
898
954
|
valuerPostcode: string;
|
|
899
|
-
reportDate:
|
|
955
|
+
reportDate: NativeDate;
|
|
900
956
|
valuerQualifications?: {
|
|
901
957
|
mrics: boolean;
|
|
902
958
|
frics: boolean;
|
|
@@ -906,8 +962,10 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
906
962
|
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
907
963
|
applicationId: mongoose.Types.ObjectId;
|
|
908
964
|
applicantName: string;
|
|
965
|
+
applicationType: string;
|
|
909
966
|
documentId: mongoose.Types.ObjectId;
|
|
910
967
|
applicationNumber: string;
|
|
968
|
+
dateOfInspection: NativeDate;
|
|
911
969
|
propertyAddress: string;
|
|
912
970
|
postCode: string;
|
|
913
971
|
generalRemarks: string;
|
|
@@ -929,7 +987,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
929
987
|
numberOfUnitsInBlock: number;
|
|
930
988
|
isAboveCommercial: boolean;
|
|
931
989
|
residentialNatureImpact: string;
|
|
932
|
-
|
|
990
|
+
isFreehold: boolean;
|
|
991
|
+
isLeasehold: boolean;
|
|
933
992
|
isFlyingFreehold: boolean;
|
|
934
993
|
flyingFreeholdPercentage: number;
|
|
935
994
|
maintenanceCharge: number;
|
|
@@ -960,7 +1019,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
960
1019
|
outbuildingDetails: string;
|
|
961
1020
|
grossFloorAreaOfDwelling: number;
|
|
962
1021
|
} | null | undefined;
|
|
963
|
-
|
|
1022
|
+
currentOccupancy?: {
|
|
964
1023
|
isEverOccupied: boolean;
|
|
965
1024
|
numberOfAdultsInProperty: number;
|
|
966
1025
|
isHmoOrMultiUnitFreeholdBlock: boolean;
|
|
@@ -1093,7 +1152,18 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
1093
1152
|
investorOnlyDemand: boolean;
|
|
1094
1153
|
investorOnlyDemandDetails: string;
|
|
1095
1154
|
} | null | undefined;
|
|
1096
|
-
|
|
1155
|
+
valuationForFinancePurposeBTL?: {
|
|
1156
|
+
valuationComparativeOnly: string;
|
|
1157
|
+
isSuitableForFinance: boolean;
|
|
1158
|
+
financeSuitabilityDetails: string;
|
|
1159
|
+
marketValuePresentCondition: number;
|
|
1160
|
+
marketValueAfterRepairs: number;
|
|
1161
|
+
purchasePriceOrBorrowerEstimate: number;
|
|
1162
|
+
buildingInsuranceReinstatementCost: number;
|
|
1163
|
+
isInsurancePremiumLoadingRisk: boolean;
|
|
1164
|
+
insurancePremiumLoadingDetails: string;
|
|
1165
|
+
} | null | undefined;
|
|
1166
|
+
valuationForFinancePurposeHPP?: {
|
|
1097
1167
|
valuationComparativeOnly: string;
|
|
1098
1168
|
isSuitableForFinance: boolean;
|
|
1099
1169
|
financeSuitabilityDetails: string;
|
|
@@ -1105,7 +1175,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
1105
1175
|
insurancePremiumLoadingDetails: string;
|
|
1106
1176
|
} | null | undefined;
|
|
1107
1177
|
valuersDeclaration?: {
|
|
1108
|
-
valuerSignature:
|
|
1178
|
+
valuerSignature: string;
|
|
1109
1179
|
valuerName: string;
|
|
1110
1180
|
onBehalfOf: string;
|
|
1111
1181
|
telephone: number;
|
|
@@ -1114,7 +1184,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
1114
1184
|
ricsNumber: number;
|
|
1115
1185
|
valuerAddress: string;
|
|
1116
1186
|
valuerPostcode: string;
|
|
1117
|
-
reportDate:
|
|
1187
|
+
reportDate: NativeDate;
|
|
1118
1188
|
valuerQualifications?: {
|
|
1119
1189
|
mrics: boolean;
|
|
1120
1190
|
frics: boolean;
|
|
@@ -1124,8 +1194,10 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
1124
1194
|
}>, {}> & mongoose.FlatRecord<{
|
|
1125
1195
|
applicationId: mongoose.Types.ObjectId;
|
|
1126
1196
|
applicantName: string;
|
|
1197
|
+
applicationType: string;
|
|
1127
1198
|
documentId: mongoose.Types.ObjectId;
|
|
1128
1199
|
applicationNumber: string;
|
|
1200
|
+
dateOfInspection: NativeDate;
|
|
1129
1201
|
propertyAddress: string;
|
|
1130
1202
|
postCode: string;
|
|
1131
1203
|
generalRemarks: string;
|
|
@@ -1147,7 +1219,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
1147
1219
|
numberOfUnitsInBlock: number;
|
|
1148
1220
|
isAboveCommercial: boolean;
|
|
1149
1221
|
residentialNatureImpact: string;
|
|
1150
|
-
|
|
1222
|
+
isFreehold: boolean;
|
|
1223
|
+
isLeasehold: boolean;
|
|
1151
1224
|
isFlyingFreehold: boolean;
|
|
1152
1225
|
flyingFreeholdPercentage: number;
|
|
1153
1226
|
maintenanceCharge: number;
|
|
@@ -1178,7 +1251,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
1178
1251
|
outbuildingDetails: string;
|
|
1179
1252
|
grossFloorAreaOfDwelling: number;
|
|
1180
1253
|
} | null | undefined;
|
|
1181
|
-
|
|
1254
|
+
currentOccupancy?: {
|
|
1182
1255
|
isEverOccupied: boolean;
|
|
1183
1256
|
numberOfAdultsInProperty: number;
|
|
1184
1257
|
isHmoOrMultiUnitFreeholdBlock: boolean;
|
|
@@ -1311,7 +1384,18 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
1311
1384
|
investorOnlyDemand: boolean;
|
|
1312
1385
|
investorOnlyDemandDetails: string;
|
|
1313
1386
|
} | null | undefined;
|
|
1314
|
-
|
|
1387
|
+
valuationForFinancePurposeBTL?: {
|
|
1388
|
+
valuationComparativeOnly: string;
|
|
1389
|
+
isSuitableForFinance: boolean;
|
|
1390
|
+
financeSuitabilityDetails: string;
|
|
1391
|
+
marketValuePresentCondition: number;
|
|
1392
|
+
marketValueAfterRepairs: number;
|
|
1393
|
+
purchasePriceOrBorrowerEstimate: number;
|
|
1394
|
+
buildingInsuranceReinstatementCost: number;
|
|
1395
|
+
isInsurancePremiumLoadingRisk: boolean;
|
|
1396
|
+
insurancePremiumLoadingDetails: string;
|
|
1397
|
+
} | null | undefined;
|
|
1398
|
+
valuationForFinancePurposeHPP?: {
|
|
1315
1399
|
valuationComparativeOnly: string;
|
|
1316
1400
|
isSuitableForFinance: boolean;
|
|
1317
1401
|
financeSuitabilityDetails: string;
|
|
@@ -1323,7 +1407,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
1323
1407
|
insurancePremiumLoadingDetails: string;
|
|
1324
1408
|
} | null | undefined;
|
|
1325
1409
|
valuersDeclaration?: {
|
|
1326
|
-
valuerSignature:
|
|
1410
|
+
valuerSignature: string;
|
|
1327
1411
|
valuerName: string;
|
|
1328
1412
|
onBehalfOf: string;
|
|
1329
1413
|
telephone: number;
|
|
@@ -1332,7 +1416,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
|
|
|
1332
1416
|
ricsNumber: number;
|
|
1333
1417
|
valuerAddress: string;
|
|
1334
1418
|
valuerPostcode: string;
|
|
1335
|
-
reportDate:
|
|
1419
|
+
reportDate: NativeDate;
|
|
1336
1420
|
valuerQualifications?: {
|
|
1337
1421
|
mrics: boolean;
|
|
1338
1422
|
frics: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application-valuation-report.model.d.ts","sourceRoot":"","sources":["../../applications/application-valuation-report.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"application-valuation-report.model.d.ts","sourceRoot":"","sources":["../../applications/application-valuation-report.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAk0BhC,QAAA,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAsE,CAAC;AAC5G,eAAe,+BAA+B,CAAC"}
|
|
@@ -65,8 +65,12 @@ const propertyTypeSchema = new mongoose.Schema({
|
|
|
65
65
|
type: String,
|
|
66
66
|
default: null
|
|
67
67
|
},
|
|
68
|
-
|
|
69
|
-
type:
|
|
68
|
+
isFreehold: {
|
|
69
|
+
type: Boolean,
|
|
70
|
+
default: null
|
|
71
|
+
},
|
|
72
|
+
isLeasehold: {
|
|
73
|
+
type: Boolean,
|
|
70
74
|
default: null
|
|
71
75
|
},
|
|
72
76
|
isFlyingFreehold: {
|
|
@@ -242,7 +246,7 @@ const newBuildSchema = new mongoose.Schema({
|
|
|
242
246
|
default: null
|
|
243
247
|
}
|
|
244
248
|
});
|
|
245
|
-
const
|
|
249
|
+
const currentOccupancySchema = new mongoose.Schema({
|
|
246
250
|
isEverOccupied: {
|
|
247
251
|
type: Boolean,
|
|
248
252
|
default: null
|
|
@@ -715,7 +719,7 @@ const valuerQualificationsSchema = new mongoose.Schema({
|
|
|
715
719
|
});
|
|
716
720
|
const valuersDeclarationSchema = new mongoose.Schema({
|
|
717
721
|
valuerSignature: {
|
|
718
|
-
type:
|
|
722
|
+
type: String,
|
|
719
723
|
default: null
|
|
720
724
|
},
|
|
721
725
|
valuerName: {
|
|
@@ -752,7 +756,7 @@ const valuersDeclarationSchema = new mongoose.Schema({
|
|
|
752
756
|
default: null
|
|
753
757
|
},
|
|
754
758
|
reportDate: {
|
|
755
|
-
type:
|
|
759
|
+
type: Date,
|
|
756
760
|
default: null
|
|
757
761
|
}
|
|
758
762
|
});
|
|
@@ -767,13 +771,15 @@ const valuationReportSchema = new mongoose.Schema({
|
|
|
767
771
|
ref: "Document",
|
|
768
772
|
required: true
|
|
769
773
|
},
|
|
774
|
+
applicationType: { type: String, default: "" },
|
|
770
775
|
applicationNumber: { type: String, default: "" },
|
|
771
776
|
applicantName: { type: String, default: "" },
|
|
777
|
+
dateOfInspection: { type: Date, default: null },
|
|
772
778
|
propertyAddress: { type: String, default: "" },
|
|
773
779
|
postCode: { type: String, default: "" },
|
|
774
780
|
propertyType: propertyTypeSchema,
|
|
775
781
|
accommodation: accommodationSchema,
|
|
776
|
-
|
|
782
|
+
currentOccupancy: currentOccupancySchema, //wrong
|
|
777
783
|
newBuild: newBuildSchema,
|
|
778
784
|
construction: constructionSchema,
|
|
779
785
|
localityAndDemand: localityAndDemandSchema,
|
|
@@ -783,7 +789,8 @@ const valuationReportSchema = new mongoose.Schema({
|
|
|
783
789
|
energyEfficiency: energyEfficiencySchema,
|
|
784
790
|
essentialRepairs: essentialRepairsSchema,
|
|
785
791
|
rentalInformation: rentalInformationSchema,
|
|
786
|
-
|
|
792
|
+
valuationForFinancePurposeBTL: valuationForFinancePurposeSchema,
|
|
793
|
+
valuationForFinancePurposeHPP: valuationForFinancePurposeSchema,
|
|
787
794
|
generalRemarks: { type: String, default: "" },
|
|
788
795
|
valuersDeclaration: valuersDeclarationSchema,
|
|
789
796
|
extractedText: { type: String, default: "" }
|
|
@@ -75,7 +75,7 @@ interface IAccommodation {
|
|
|
75
75
|
outbuildingDetails: string;
|
|
76
76
|
grossFloorAreaOfDwelling: string;
|
|
77
77
|
}
|
|
78
|
-
interface
|
|
78
|
+
interface ICurrentOccupancy {
|
|
79
79
|
everOccupied: string;
|
|
80
80
|
numberOfAdultsInProperty: string;
|
|
81
81
|
isHmoOrMultiUnitFreeholdBlock: string;
|
|
@@ -222,17 +222,19 @@ interface IValuersDeclaration {
|
|
|
222
222
|
ricsNumber: string;
|
|
223
223
|
valuerAddress: string;
|
|
224
224
|
valuerPostcode: string;
|
|
225
|
-
reportDate:
|
|
225
|
+
reportDate: Date;
|
|
226
226
|
}
|
|
227
227
|
export default interface IApplicationValuationReport extends IBaseType {
|
|
228
228
|
applicationId: Types.ObjectId;
|
|
229
|
+
applicationType: string;
|
|
229
230
|
applicationNumber: string;
|
|
230
231
|
applicantName: string;
|
|
231
232
|
propertyAddress: string;
|
|
233
|
+
dateOfInspection: Date;
|
|
232
234
|
postCode: string;
|
|
233
235
|
propertyType: IPropertyType[];
|
|
234
236
|
accommodation: IAccommodation[];
|
|
235
|
-
|
|
237
|
+
currentOccupancy: ICurrentOccupancy[];
|
|
236
238
|
newBuild: INewBuild[];
|
|
237
239
|
construction: IConstruction[];
|
|
238
240
|
localityAndDemand: ILocalityAndDemand[];
|
|
@@ -242,7 +244,8 @@ export default interface IApplicationValuationReport extends IBaseType {
|
|
|
242
244
|
energyEfficiency: IEnergyEfficiency[];
|
|
243
245
|
essentialRepairs: IEssentialRepairs[];
|
|
244
246
|
rentalInformation: IRentalInformation[];
|
|
245
|
-
|
|
247
|
+
valuationForFinancePurposeBTL: IValuationForFinancePurpose[];
|
|
248
|
+
valuationForFinancePurposeHPP: IValuationForFinancePurpose[];
|
|
246
249
|
generalRemarks: string;
|
|
247
250
|
valuersDeclaration: IValuersDeclaration[];
|
|
248
251
|
extractedText: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application-valuation-report.type.d.ts","sourceRoot":"","sources":["../../applications/application-valuation-report.type.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"application-valuation-report.type.d.ts","sourceRoot":"","sources":["../../applications/application-valuation-report.type.ts"],"names":[],"mappings":"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"}
|