@dynamatix/gb-schemas 2.12.3 → 2.13.1
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.
|
@@ -250,6 +250,7 @@ declare const ApplicationValuationModel: mongoose.Model<{
|
|
|
250
250
|
pvqRaisedDate?: unknown;
|
|
251
251
|
pvqClosedDate?: unknown;
|
|
252
252
|
inspectionDate?: unknown;
|
|
253
|
+
valuationBookedDate?: unknown;
|
|
253
254
|
valuationFeePaidDate?: unknown;
|
|
254
255
|
HasLift?: unknown;
|
|
255
256
|
PropertyBuiltType?: unknown;
|
|
@@ -585,6 +586,7 @@ declare const ApplicationValuationModel: mongoose.Model<{
|
|
|
585
586
|
pvqRaisedDate?: unknown;
|
|
586
587
|
pvqClosedDate?: unknown;
|
|
587
588
|
inspectionDate?: unknown;
|
|
589
|
+
valuationBookedDate?: unknown;
|
|
588
590
|
valuationFeePaidDate?: unknown;
|
|
589
591
|
HasLift?: unknown;
|
|
590
592
|
PropertyBuiltType?: unknown;
|
|
@@ -920,6 +922,7 @@ declare const ApplicationValuationModel: mongoose.Model<{
|
|
|
920
922
|
pvqRaisedDate?: unknown;
|
|
921
923
|
pvqClosedDate?: unknown;
|
|
922
924
|
inspectionDate?: unknown;
|
|
925
|
+
valuationBookedDate?: unknown;
|
|
923
926
|
valuationFeePaidDate?: unknown;
|
|
924
927
|
HasLift?: unknown;
|
|
925
928
|
PropertyBuiltType?: unknown;
|
|
@@ -1066,6 +1069,7 @@ declare const ApplicationValuationModel: mongoose.Model<{
|
|
|
1066
1069
|
pvqRaisedDate: string;
|
|
1067
1070
|
pvqClosedDate: string;
|
|
1068
1071
|
inspectionDate: string;
|
|
1072
|
+
valuationBookedDate: string;
|
|
1069
1073
|
valuationFeePaidDate: string;
|
|
1070
1074
|
HasLift: boolean;
|
|
1071
1075
|
PropertyBuiltType: string;
|
|
@@ -1119,6 +1123,7 @@ declare const ApplicationValuationModel: mongoose.Model<{
|
|
|
1119
1123
|
pvqRaisedDate: string;
|
|
1120
1124
|
pvqClosedDate: string;
|
|
1121
1125
|
inspectionDate: string;
|
|
1126
|
+
valuationBookedDate: string;
|
|
1122
1127
|
valuationFeePaidDate: string;
|
|
1123
1128
|
HasLift: boolean;
|
|
1124
1129
|
PropertyBuiltType: string;
|
|
@@ -1172,6 +1177,7 @@ declare const ApplicationValuationModel: mongoose.Model<{
|
|
|
1172
1177
|
pvqRaisedDate: string;
|
|
1173
1178
|
pvqClosedDate: string;
|
|
1174
1179
|
inspectionDate: string;
|
|
1180
|
+
valuationBookedDate: string;
|
|
1175
1181
|
valuationFeePaidDate: string;
|
|
1176
1182
|
HasLift: boolean;
|
|
1177
1183
|
PropertyBuiltType: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application-valuation.model.d.ts","sourceRoot":"","sources":["../../applications/application-valuation.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAEhC,OAAO,EAAe,KAAK,EAAE,MAAM,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"application-valuation.model.d.ts","sourceRoot":"","sources":["../../applications/application-valuation.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAEhC,OAAO,EAAe,KAAK,EAAE,MAAM,wBAAwB,CAAC;AA0E5D,QAAA,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA0D,CAAC;AAC1F,eAAe,yBAAyB,CAAC"}
|
|
@@ -21,6 +21,7 @@ const valuationSchema = new mongoose.Schema({
|
|
|
21
21
|
inspectionDate: { type: String, default: null },
|
|
22
22
|
valuationRequestedDate: { type: String, default: null },
|
|
23
23
|
valuationScheduledDate: { type: String, default: null },
|
|
24
|
+
valuationBookedDate: { type: String, default: null },
|
|
24
25
|
valuationSurveyorDetails: { type: String, default: "" },
|
|
25
26
|
dateOfValuationReceived: { type: String, default: null },
|
|
26
27
|
ninetyDaysValuationAmount: { type: Pound, default: 0.00, get: formatPound },
|