@dynamatix/gb-schemas 2.3.254 → 2.3.255

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.
@@ -34,19 +34,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
34
34
  propertyAddress: string;
35
35
  postCode: string;
36
36
  propertyType: mongoose.Types.DocumentArray<{
37
- flat: string;
38
- detachedHouse: string;
39
- semiDetachedHouse: string;
40
- terracedHouse: string;
41
- bungalow: string;
42
- maisonette: string;
37
+ isDetachedHouse: boolean;
38
+ isSemiDetachedHouse: boolean;
39
+ isTerracedHouse: boolean;
40
+ isBungalow: boolean;
41
+ isFlat: boolean;
42
+ isMaisonette: boolean;
43
43
  flatMaisonetteFloor: number;
44
44
  numberOfFloorsInBlock: number;
45
45
  isBuiltOrOwnedByLocalAuthority: boolean;
46
- ownerOccupationPercentage: string;
47
- flatMaisonetteConverted: string;
48
- conversionYear: string;
49
- purposeBuilt: string;
46
+ ownerOccupationPercentage: number;
47
+ isFlatMaisonetteConverted: boolean;
48
+ conversionYear: number;
49
+ isPurposeBuilt: boolean;
50
50
  numberOfUnitsInBlock: number;
51
51
  isAboveCommercial: boolean;
52
52
  residentialNatureImpact: string;
@@ -62,19 +62,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
62
62
  isPurchasedUnderSharedOwnership: boolean;
63
63
  yearBuilt: number;
64
64
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
65
- flat: string;
66
- detachedHouse: string;
67
- semiDetachedHouse: string;
68
- terracedHouse: string;
69
- bungalow: string;
70
- maisonette: string;
65
+ isDetachedHouse: boolean;
66
+ isSemiDetachedHouse: boolean;
67
+ isTerracedHouse: boolean;
68
+ isBungalow: boolean;
69
+ isFlat: boolean;
70
+ isMaisonette: boolean;
71
71
  flatMaisonetteFloor: number;
72
72
  numberOfFloorsInBlock: number;
73
73
  isBuiltOrOwnedByLocalAuthority: boolean;
74
- ownerOccupationPercentage: string;
75
- flatMaisonetteConverted: string;
76
- conversionYear: string;
77
- purposeBuilt: string;
74
+ ownerOccupationPercentage: number;
75
+ isFlatMaisonetteConverted: boolean;
76
+ conversionYear: number;
77
+ isPurposeBuilt: boolean;
78
78
  numberOfUnitsInBlock: number;
79
79
  isAboveCommercial: boolean;
80
80
  residentialNatureImpact: string;
@@ -90,19 +90,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
90
90
  isPurchasedUnderSharedOwnership: boolean;
91
91
  yearBuilt: number;
92
92
  }> & {
93
- flat: string;
94
- detachedHouse: string;
95
- semiDetachedHouse: string;
96
- terracedHouse: string;
97
- bungalow: string;
98
- maisonette: string;
93
+ isDetachedHouse: boolean;
94
+ isSemiDetachedHouse: boolean;
95
+ isTerracedHouse: boolean;
96
+ isBungalow: boolean;
97
+ isFlat: boolean;
98
+ isMaisonette: boolean;
99
99
  flatMaisonetteFloor: number;
100
100
  numberOfFloorsInBlock: number;
101
101
  isBuiltOrOwnedByLocalAuthority: boolean;
102
- ownerOccupationPercentage: string;
103
- flatMaisonetteConverted: string;
104
- conversionYear: string;
105
- purposeBuilt: string;
102
+ ownerOccupationPercentage: number;
103
+ isFlatMaisonetteConverted: boolean;
104
+ conversionYear: number;
105
+ isPurposeBuilt: boolean;
106
106
  numberOfUnitsInBlock: number;
107
107
  isAboveCommercial: boolean;
108
108
  residentialNatureImpact: string;
@@ -131,7 +131,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
131
131
  garage: number;
132
132
  parking: number;
133
133
  gardens: boolean;
134
- privateOrCommunal: string;
134
+ isPrivate: boolean;
135
+ isCommunal: boolean;
135
136
  numberOfOutbuildings: number;
136
137
  outbuildingDetails: string;
137
138
  grossFloorAreaOfDwelling: number;
@@ -148,7 +149,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
148
149
  garage: number;
149
150
  parking: number;
150
151
  gardens: boolean;
151
- privateOrCommunal: string;
152
+ isPrivate: boolean;
153
+ isCommunal: boolean;
152
154
  numberOfOutbuildings: number;
153
155
  outbuildingDetails: string;
154
156
  grossFloorAreaOfDwelling: number;
@@ -165,7 +167,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
165
167
  garage: number;
166
168
  parking: number;
167
169
  gardens: boolean;
168
- privateOrCommunal: string;
170
+ isPrivate: boolean;
171
+ isCommunal: boolean;
169
172
  numberOfOutbuildings: number;
170
173
  outbuildingDetails: string;
171
174
  grossFloorAreaOfDwelling: number;
@@ -191,12 +194,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
191
194
  }>;
192
195
  newBuild: mongoose.Types.DocumentArray<{
193
196
  isNewBuildOrRecentlyConverted: boolean;
194
- newBuildStatus: string;
197
+ isCompleted: boolean;
198
+ isUnderConstruction: boolean;
195
199
  isFinalInspectionRequired: boolean;
196
- nhbcCert: string;
197
- buildZone: string;
198
- premier: string;
199
- professionalConsultant: string;
200
+ isNhbcCert: boolean;
201
+ isBuildZone: boolean;
202
+ isPremier: boolean;
203
+ isProfessionalConsultant: boolean;
204
+ isOtherCert: boolean;
200
205
  otherCertDetails: string;
201
206
  isSelfBuildProject: boolean;
202
207
  isInvolvesPartExchange: boolean;
@@ -205,12 +210,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
205
210
  newBuildDeveloperName: string;
206
211
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
207
212
  isNewBuildOrRecentlyConverted: boolean;
208
- newBuildStatus: string;
213
+ isCompleted: boolean;
214
+ isUnderConstruction: boolean;
209
215
  isFinalInspectionRequired: boolean;
210
- nhbcCert: string;
211
- buildZone: string;
212
- premier: string;
213
- professionalConsultant: string;
216
+ isNhbcCert: boolean;
217
+ isBuildZone: boolean;
218
+ isPremier: boolean;
219
+ isProfessionalConsultant: boolean;
220
+ isOtherCert: boolean;
214
221
  otherCertDetails: string;
215
222
  isSelfBuildProject: boolean;
216
223
  isInvolvesPartExchange: boolean;
@@ -219,12 +226,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
219
226
  newBuildDeveloperName: string;
220
227
  }> & {
221
228
  isNewBuildOrRecentlyConverted: boolean;
222
- newBuildStatus: string;
229
+ isCompleted: boolean;
230
+ isUnderConstruction: boolean;
223
231
  isFinalInspectionRequired: boolean;
224
- nhbcCert: string;
225
- buildZone: string;
226
- premier: string;
227
- professionalConsultant: string;
232
+ isNhbcCert: boolean;
233
+ isBuildZone: boolean;
234
+ isPremier: boolean;
235
+ isProfessionalConsultant: boolean;
236
+ isOtherCert: boolean;
228
237
  otherCertDetails: string;
229
238
  isSelfBuildProject: boolean;
230
239
  isInvolvesPartExchange: boolean;
@@ -264,11 +273,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
264
273
  alterationsAge: number;
265
274
  }>;
266
275
  localityAndDemand: mongoose.Types.DocumentArray<{
267
- locationType: string;
268
- marketAppeal: string;
269
- surroundingProperties: string;
270
- propertyPricesTrend: string;
271
- demandTrend: string;
276
+ isUrban: boolean;
277
+ isSuburban: boolean;
278
+ isRural: boolean;
279
+ isGoodMarketAppeal: boolean;
280
+ isAverageMarketAppeal: boolean;
281
+ isPoorMarketAppeal: boolean;
282
+ isSimilarProperties: boolean;
283
+ isBetterProperties: boolean;
284
+ isWorseProperties: boolean;
285
+ isPricesRising: boolean;
286
+ isPricesStatic: boolean;
287
+ isPricesFalling: boolean;
288
+ isDemandRising: boolean;
289
+ isDemandStatic: boolean;
290
+ isDemandFalling: boolean;
272
291
  isAffectedByCompulsoryPurchase: boolean;
273
292
  compulsoryPurchaseDetails: string;
274
293
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -278,11 +297,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
278
297
  isCloseToHighVoltageEquipment: boolean;
279
298
  highVoltageEquipmentDetails: string;
280
299
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
281
- locationType: string;
282
- marketAppeal: string;
283
- surroundingProperties: string;
284
- propertyPricesTrend: string;
285
- demandTrend: string;
300
+ isUrban: boolean;
301
+ isSuburban: boolean;
302
+ isRural: boolean;
303
+ isGoodMarketAppeal: boolean;
304
+ isAverageMarketAppeal: boolean;
305
+ isPoorMarketAppeal: boolean;
306
+ isSimilarProperties: boolean;
307
+ isBetterProperties: boolean;
308
+ isWorseProperties: boolean;
309
+ isPricesRising: boolean;
310
+ isPricesStatic: boolean;
311
+ isPricesFalling: boolean;
312
+ isDemandRising: boolean;
313
+ isDemandStatic: boolean;
314
+ isDemandFalling: boolean;
286
315
  isAffectedByCompulsoryPurchase: boolean;
287
316
  compulsoryPurchaseDetails: string;
288
317
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -292,11 +321,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
292
321
  isCloseToHighVoltageEquipment: boolean;
293
322
  highVoltageEquipmentDetails: string;
294
323
  }> & {
295
- locationType: string;
296
- marketAppeal: string;
297
- surroundingProperties: string;
298
- propertyPricesTrend: string;
299
- demandTrend: string;
324
+ isUrban: boolean;
325
+ isSuburban: boolean;
326
+ isRural: boolean;
327
+ isGoodMarketAppeal: boolean;
328
+ isAverageMarketAppeal: boolean;
329
+ isPoorMarketAppeal: boolean;
330
+ isSimilarProperties: boolean;
331
+ isBetterProperties: boolean;
332
+ isWorseProperties: boolean;
333
+ isPricesRising: boolean;
334
+ isPricesStatic: boolean;
335
+ isPricesFalling: boolean;
336
+ isDemandRising: boolean;
337
+ isDemandStatic: boolean;
338
+ isDemandFalling: boolean;
300
339
  isAffectedByCompulsoryPurchase: boolean;
301
340
  compulsoryPurchaseDetails: string;
302
341
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -307,49 +346,52 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
307
346
  highVoltageEquipmentDetails: string;
308
347
  }>;
309
348
  services: mongoose.Types.DocumentArray<{
310
- unknown: string;
311
- waterSupply: string;
312
- gasSupply: string;
313
- electricitySupply: string;
314
- centralHeating: string;
349
+ isMainsWater: boolean;
350
+ isPrivateWater: boolean;
351
+ isUnknownWater: boolean;
352
+ isGasSupply: boolean;
353
+ isElectricitySupply: boolean;
354
+ isCentralHeating: boolean;
315
355
  centralHeatingType: string;
316
- mainDrainage: string;
317
- septicTankPlant: string;
318
- solarPanels: string;
319
- sharedAccess: string;
320
- roadAdopted: string;
356
+ isMainDrainage: boolean;
357
+ isSepticTankPlant: boolean;
358
+ isSolarPanels: boolean;
359
+ isSharedAccess: boolean;
360
+ isRoadAdopted: boolean;
321
361
  isHasEasementsOrRightsOfWay: boolean;
322
362
  easementsOrRightsDetails: string;
323
363
  servicesSeparateForFlats: string;
324
364
  servicesSeparateDetails: string;
325
365
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
326
- unknown: string;
327
- waterSupply: string;
328
- gasSupply: string;
329
- electricitySupply: string;
330
- centralHeating: string;
366
+ isMainsWater: boolean;
367
+ isPrivateWater: boolean;
368
+ isUnknownWater: boolean;
369
+ isGasSupply: boolean;
370
+ isElectricitySupply: boolean;
371
+ isCentralHeating: boolean;
331
372
  centralHeatingType: string;
332
- mainDrainage: string;
333
- septicTankPlant: string;
334
- solarPanels: string;
335
- sharedAccess: string;
336
- roadAdopted: string;
373
+ isMainDrainage: boolean;
374
+ isSepticTankPlant: boolean;
375
+ isSolarPanels: boolean;
376
+ isSharedAccess: boolean;
377
+ isRoadAdopted: boolean;
337
378
  isHasEasementsOrRightsOfWay: boolean;
338
379
  easementsOrRightsDetails: string;
339
380
  servicesSeparateForFlats: string;
340
381
  servicesSeparateDetails: string;
341
382
  }> & {
342
- unknown: string;
343
- waterSupply: string;
344
- gasSupply: string;
345
- electricitySupply: string;
346
- centralHeating: string;
383
+ isMainsWater: boolean;
384
+ isPrivateWater: boolean;
385
+ isUnknownWater: boolean;
386
+ isGasSupply: boolean;
387
+ isElectricitySupply: boolean;
388
+ isCentralHeating: boolean;
347
389
  centralHeatingType: string;
348
- mainDrainage: string;
349
- septicTankPlant: string;
350
- solarPanels: string;
351
- sharedAccess: string;
352
- roadAdopted: string;
390
+ isMainDrainage: boolean;
391
+ isSepticTankPlant: boolean;
392
+ isSolarPanels: boolean;
393
+ isSharedAccess: boolean;
394
+ isRoadAdopted: boolean;
353
395
  isHasEasementsOrRightsOfWay: boolean;
354
396
  easementsOrRightsDetails: string;
355
397
  servicesSeparateForFlats: string;
@@ -363,22 +405,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
363
405
  structuralModificationsDetails: string;
364
406
  communalAreasMaintained: string;
365
407
  propertyProneTo: mongoose.Types.DocumentArray<{
366
- flooding: string;
367
- subsidence: string;
368
- heave: string;
369
- landslip: string;
408
+ flooding: boolean;
409
+ subsidence: boolean;
410
+ heave: boolean;
411
+ landslip: boolean;
370
412
  details: string;
371
413
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
372
- flooding: string;
373
- subsidence: string;
374
- heave: string;
375
- landslip: string;
414
+ flooding: boolean;
415
+ subsidence: boolean;
416
+ heave: boolean;
417
+ landslip: boolean;
376
418
  details: string;
377
419
  }> & {
378
- flooding: string;
379
- subsidence: string;
380
- heave: string;
381
- landslip: string;
420
+ flooding: boolean;
421
+ subsidence: boolean;
422
+ heave: boolean;
423
+ landslip: boolean;
382
424
  details: string;
383
425
  }>;
384
426
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -394,22 +436,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
394
436
  structuralModificationsDetails: string;
395
437
  communalAreasMaintained: string;
396
438
  propertyProneTo: mongoose.Types.DocumentArray<{
397
- flooding: string;
398
- subsidence: string;
399
- heave: string;
400
- landslip: string;
439
+ flooding: boolean;
440
+ subsidence: boolean;
441
+ heave: boolean;
442
+ landslip: boolean;
401
443
  details: string;
402
444
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
403
- flooding: string;
404
- subsidence: string;
405
- heave: string;
406
- landslip: string;
445
+ flooding: boolean;
446
+ subsidence: boolean;
447
+ heave: boolean;
448
+ landslip: boolean;
407
449
  details: string;
408
450
  }> & {
409
- flooding: string;
410
- subsidence: string;
411
- heave: string;
412
- landslip: string;
451
+ flooding: boolean;
452
+ subsidence: boolean;
453
+ heave: boolean;
454
+ landslip: boolean;
413
455
  details: string;
414
456
  }>;
415
457
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -425,22 +467,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
425
467
  structuralModificationsDetails: string;
426
468
  communalAreasMaintained: string;
427
469
  propertyProneTo: mongoose.Types.DocumentArray<{
428
- flooding: string;
429
- subsidence: string;
430
- heave: string;
431
- landslip: string;
470
+ flooding: boolean;
471
+ subsidence: boolean;
472
+ heave: boolean;
473
+ landslip: boolean;
432
474
  details: string;
433
475
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
434
- flooding: string;
435
- subsidence: string;
436
- heave: string;
437
- landslip: string;
476
+ flooding: boolean;
477
+ subsidence: boolean;
478
+ heave: boolean;
479
+ landslip: boolean;
438
480
  details: string;
439
481
  }> & {
440
- flooding: string;
441
- subsidence: string;
442
- heave: string;
443
- landslip: string;
482
+ flooding: boolean;
483
+ subsidence: boolean;
484
+ heave: boolean;
485
+ landslip: boolean;
444
486
  details: string;
445
487
  }>;
446
488
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -450,46 +492,46 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
450
492
  steepSlopeDetails: string;
451
493
  }>;
452
494
  reports: mongoose.Types.DocumentArray<{
453
- timberDamp: string;
454
- mining: string;
455
- electrical: string;
456
- drains: string;
457
- structuralEngineers: string;
458
- arboricultural: string;
459
- mundic: string;
460
- wallTies: string;
461
- roof: string;
462
- metalliferous: string;
463
- sulfateRedAsh: string;
464
- other: string;
495
+ isTimberDamp: boolean;
496
+ isMining: boolean;
497
+ isElectrical: boolean;
498
+ isDrains: boolean;
499
+ isStructuralEngineers: boolean;
500
+ isArboricultural: boolean;
501
+ isMundic: boolean;
502
+ isWallTies: boolean;
503
+ isRoof: boolean;
504
+ isMetalliferous: boolean;
505
+ isSulfateRedAsh: boolean;
506
+ isOtherReport: boolean;
465
507
  otherReportDetails: string;
466
508
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
467
- timberDamp: string;
468
- mining: string;
469
- electrical: string;
470
- drains: string;
471
- structuralEngineers: string;
472
- arboricultural: string;
473
- mundic: string;
474
- wallTies: string;
475
- roof: string;
476
- metalliferous: string;
477
- sulfateRedAsh: string;
478
- other: string;
509
+ isTimberDamp: boolean;
510
+ isMining: boolean;
511
+ isElectrical: boolean;
512
+ isDrains: boolean;
513
+ isStructuralEngineers: boolean;
514
+ isArboricultural: boolean;
515
+ isMundic: boolean;
516
+ isWallTies: boolean;
517
+ isRoof: boolean;
518
+ isMetalliferous: boolean;
519
+ isSulfateRedAsh: boolean;
520
+ isOtherReport: boolean;
479
521
  otherReportDetails: string;
480
522
  }> & {
481
- timberDamp: string;
482
- mining: string;
483
- electrical: string;
484
- drains: string;
485
- structuralEngineers: string;
486
- arboricultural: string;
487
- mundic: string;
488
- wallTies: string;
489
- roof: string;
490
- metalliferous: string;
491
- sulfateRedAsh: string;
492
- other: string;
523
+ isTimberDamp: boolean;
524
+ isMining: boolean;
525
+ isElectrical: boolean;
526
+ isDrains: boolean;
527
+ isStructuralEngineers: boolean;
528
+ isArboricultural: boolean;
529
+ isMundic: boolean;
530
+ isWallTies: boolean;
531
+ isRoof: boolean;
532
+ isMetalliferous: boolean;
533
+ isSulfateRedAsh: boolean;
534
+ isOtherReport: boolean;
493
535
  otherReportDetails: string;
494
536
  }>;
495
537
  energyEfficiency: mongoose.Types.DocumentArray<{
@@ -522,7 +564,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
522
564
  monthlyMarketRentImprovedCondition: number;
523
565
  isOtherLettingDemandFactors: boolean;
524
566
  otherLettingDemandDetails: string;
525
- isInvestorOnlyDemand: boolean;
567
+ investorOnlyDemand: boolean;
526
568
  investorOnlyDemandDetails: string;
527
569
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
528
570
  isRentalDemandInLocality: boolean;
@@ -531,7 +573,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
531
573
  monthlyMarketRentImprovedCondition: number;
532
574
  isOtherLettingDemandFactors: boolean;
533
575
  otherLettingDemandDetails: string;
534
- isInvestorOnlyDemand: boolean;
576
+ investorOnlyDemand: boolean;
535
577
  investorOnlyDemandDetails: string;
536
578
  }> & {
537
579
  isRentalDemandInLocality: boolean;
@@ -540,7 +582,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
540
582
  monthlyMarketRentImprovedCondition: number;
541
583
  isOtherLettingDemandFactors: boolean;
542
584
  otherLettingDemandDetails: string;
543
- isInvestorOnlyDemand: boolean;
585
+ investorOnlyDemand: boolean;
544
586
  investorOnlyDemandDetails: string;
545
587
  }>;
546
588
  valuationForFinancePurpose: mongoose.Types.DocumentArray<{
@@ -583,22 +625,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
583
625
  fax: number;
584
626
  email: string;
585
627
  valuerQualifications: mongoose.Types.DocumentArray<{
586
- mrics: string;
587
- frics: string;
588
- assocRics: string;
628
+ mrics: boolean;
629
+ frics: boolean;
630
+ assocRics: boolean;
589
631
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
590
- mrics: string;
591
- frics: string;
592
- assocRics: string;
632
+ mrics: boolean;
633
+ frics: boolean;
634
+ assocRics: boolean;
593
635
  }> & {
594
- mrics: string;
595
- frics: string;
596
- assocRics: string;
636
+ mrics: boolean;
637
+ frics: boolean;
638
+ assocRics: boolean;
597
639
  }>;
598
640
  ricsNumber: number;
599
641
  valuerAddress: string;
600
642
  valuerPostcode: string;
601
- reportDate: string;
643
+ reportDate: number;
602
644
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
603
645
  valuerSignature: number;
604
646
  valuerName: string;
@@ -607,22 +649,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
607
649
  fax: number;
608
650
  email: string;
609
651
  valuerQualifications: mongoose.Types.DocumentArray<{
610
- mrics: string;
611
- frics: string;
612
- assocRics: string;
652
+ mrics: boolean;
653
+ frics: boolean;
654
+ assocRics: boolean;
613
655
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
614
- mrics: string;
615
- frics: string;
616
- assocRics: string;
656
+ mrics: boolean;
657
+ frics: boolean;
658
+ assocRics: boolean;
617
659
  }> & {
618
- mrics: string;
619
- frics: string;
620
- assocRics: string;
660
+ mrics: boolean;
661
+ frics: boolean;
662
+ assocRics: boolean;
621
663
  }>;
622
664
  ricsNumber: number;
623
665
  valuerAddress: string;
624
666
  valuerPostcode: string;
625
- reportDate: string;
667
+ reportDate: number;
626
668
  }> & {
627
669
  valuerSignature: number;
628
670
  valuerName: string;
@@ -631,22 +673,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
631
673
  fax: number;
632
674
  email: string;
633
675
  valuerQualifications: mongoose.Types.DocumentArray<{
634
- mrics: string;
635
- frics: string;
636
- assocRics: string;
676
+ mrics: boolean;
677
+ frics: boolean;
678
+ assocRics: boolean;
637
679
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
638
- mrics: string;
639
- frics: string;
640
- assocRics: string;
680
+ mrics: boolean;
681
+ frics: boolean;
682
+ assocRics: boolean;
641
683
  }> & {
642
- mrics: string;
643
- frics: string;
644
- assocRics: string;
684
+ mrics: boolean;
685
+ frics: boolean;
686
+ assocRics: boolean;
645
687
  }>;
646
688
  ricsNumber: number;
647
689
  valuerAddress: string;
648
690
  valuerPostcode: string;
649
- reportDate: string;
691
+ reportDate: number;
650
692
  }>;
651
693
  extractedText: string;
652
694
  }, {}, {}, {}, mongoose.Document<unknown, {}, {
@@ -656,19 +698,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
656
698
  propertyAddress: string;
657
699
  postCode: string;
658
700
  propertyType: mongoose.Types.DocumentArray<{
659
- flat: string;
660
- detachedHouse: string;
661
- semiDetachedHouse: string;
662
- terracedHouse: string;
663
- bungalow: string;
664
- maisonette: string;
701
+ isDetachedHouse: boolean;
702
+ isSemiDetachedHouse: boolean;
703
+ isTerracedHouse: boolean;
704
+ isBungalow: boolean;
705
+ isFlat: boolean;
706
+ isMaisonette: boolean;
665
707
  flatMaisonetteFloor: number;
666
708
  numberOfFloorsInBlock: number;
667
709
  isBuiltOrOwnedByLocalAuthority: boolean;
668
- ownerOccupationPercentage: string;
669
- flatMaisonetteConverted: string;
670
- conversionYear: string;
671
- purposeBuilt: string;
710
+ ownerOccupationPercentage: number;
711
+ isFlatMaisonetteConverted: boolean;
712
+ conversionYear: number;
713
+ isPurposeBuilt: boolean;
672
714
  numberOfUnitsInBlock: number;
673
715
  isAboveCommercial: boolean;
674
716
  residentialNatureImpact: string;
@@ -684,19 +726,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
684
726
  isPurchasedUnderSharedOwnership: boolean;
685
727
  yearBuilt: number;
686
728
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
687
- flat: string;
688
- detachedHouse: string;
689
- semiDetachedHouse: string;
690
- terracedHouse: string;
691
- bungalow: string;
692
- maisonette: string;
729
+ isDetachedHouse: boolean;
730
+ isSemiDetachedHouse: boolean;
731
+ isTerracedHouse: boolean;
732
+ isBungalow: boolean;
733
+ isFlat: boolean;
734
+ isMaisonette: boolean;
693
735
  flatMaisonetteFloor: number;
694
736
  numberOfFloorsInBlock: number;
695
737
  isBuiltOrOwnedByLocalAuthority: boolean;
696
- ownerOccupationPercentage: string;
697
- flatMaisonetteConverted: string;
698
- conversionYear: string;
699
- purposeBuilt: string;
738
+ ownerOccupationPercentage: number;
739
+ isFlatMaisonetteConverted: boolean;
740
+ conversionYear: number;
741
+ isPurposeBuilt: boolean;
700
742
  numberOfUnitsInBlock: number;
701
743
  isAboveCommercial: boolean;
702
744
  residentialNatureImpact: string;
@@ -712,19 +754,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
712
754
  isPurchasedUnderSharedOwnership: boolean;
713
755
  yearBuilt: number;
714
756
  }> & {
715
- flat: string;
716
- detachedHouse: string;
717
- semiDetachedHouse: string;
718
- terracedHouse: string;
719
- bungalow: string;
720
- maisonette: string;
757
+ isDetachedHouse: boolean;
758
+ isSemiDetachedHouse: boolean;
759
+ isTerracedHouse: boolean;
760
+ isBungalow: boolean;
761
+ isFlat: boolean;
762
+ isMaisonette: boolean;
721
763
  flatMaisonetteFloor: number;
722
764
  numberOfFloorsInBlock: number;
723
765
  isBuiltOrOwnedByLocalAuthority: boolean;
724
- ownerOccupationPercentage: string;
725
- flatMaisonetteConverted: string;
726
- conversionYear: string;
727
- purposeBuilt: string;
766
+ ownerOccupationPercentage: number;
767
+ isFlatMaisonetteConverted: boolean;
768
+ conversionYear: number;
769
+ isPurposeBuilt: boolean;
728
770
  numberOfUnitsInBlock: number;
729
771
  isAboveCommercial: boolean;
730
772
  residentialNatureImpact: string;
@@ -753,7 +795,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
753
795
  garage: number;
754
796
  parking: number;
755
797
  gardens: boolean;
756
- privateOrCommunal: string;
798
+ isPrivate: boolean;
799
+ isCommunal: boolean;
757
800
  numberOfOutbuildings: number;
758
801
  outbuildingDetails: string;
759
802
  grossFloorAreaOfDwelling: number;
@@ -770,7 +813,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
770
813
  garage: number;
771
814
  parking: number;
772
815
  gardens: boolean;
773
- privateOrCommunal: string;
816
+ isPrivate: boolean;
817
+ isCommunal: boolean;
774
818
  numberOfOutbuildings: number;
775
819
  outbuildingDetails: string;
776
820
  grossFloorAreaOfDwelling: number;
@@ -787,7 +831,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
787
831
  garage: number;
788
832
  parking: number;
789
833
  gardens: boolean;
790
- privateOrCommunal: string;
834
+ isPrivate: boolean;
835
+ isCommunal: boolean;
791
836
  numberOfOutbuildings: number;
792
837
  outbuildingDetails: string;
793
838
  grossFloorAreaOfDwelling: number;
@@ -813,12 +858,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
813
858
  }>;
814
859
  newBuild: mongoose.Types.DocumentArray<{
815
860
  isNewBuildOrRecentlyConverted: boolean;
816
- newBuildStatus: string;
861
+ isCompleted: boolean;
862
+ isUnderConstruction: boolean;
817
863
  isFinalInspectionRequired: boolean;
818
- nhbcCert: string;
819
- buildZone: string;
820
- premier: string;
821
- professionalConsultant: string;
864
+ isNhbcCert: boolean;
865
+ isBuildZone: boolean;
866
+ isPremier: boolean;
867
+ isProfessionalConsultant: boolean;
868
+ isOtherCert: boolean;
822
869
  otherCertDetails: string;
823
870
  isSelfBuildProject: boolean;
824
871
  isInvolvesPartExchange: boolean;
@@ -827,12 +874,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
827
874
  newBuildDeveloperName: string;
828
875
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
829
876
  isNewBuildOrRecentlyConverted: boolean;
830
- newBuildStatus: string;
877
+ isCompleted: boolean;
878
+ isUnderConstruction: boolean;
831
879
  isFinalInspectionRequired: boolean;
832
- nhbcCert: string;
833
- buildZone: string;
834
- premier: string;
835
- professionalConsultant: string;
880
+ isNhbcCert: boolean;
881
+ isBuildZone: boolean;
882
+ isPremier: boolean;
883
+ isProfessionalConsultant: boolean;
884
+ isOtherCert: boolean;
836
885
  otherCertDetails: string;
837
886
  isSelfBuildProject: boolean;
838
887
  isInvolvesPartExchange: boolean;
@@ -841,12 +890,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
841
890
  newBuildDeveloperName: string;
842
891
  }> & {
843
892
  isNewBuildOrRecentlyConverted: boolean;
844
- newBuildStatus: string;
893
+ isCompleted: boolean;
894
+ isUnderConstruction: boolean;
845
895
  isFinalInspectionRequired: boolean;
846
- nhbcCert: string;
847
- buildZone: string;
848
- premier: string;
849
- professionalConsultant: string;
896
+ isNhbcCert: boolean;
897
+ isBuildZone: boolean;
898
+ isPremier: boolean;
899
+ isProfessionalConsultant: boolean;
900
+ isOtherCert: boolean;
850
901
  otherCertDetails: string;
851
902
  isSelfBuildProject: boolean;
852
903
  isInvolvesPartExchange: boolean;
@@ -886,11 +937,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
886
937
  alterationsAge: number;
887
938
  }>;
888
939
  localityAndDemand: mongoose.Types.DocumentArray<{
889
- locationType: string;
890
- marketAppeal: string;
891
- surroundingProperties: string;
892
- propertyPricesTrend: string;
893
- demandTrend: string;
940
+ isUrban: boolean;
941
+ isSuburban: boolean;
942
+ isRural: boolean;
943
+ isGoodMarketAppeal: boolean;
944
+ isAverageMarketAppeal: boolean;
945
+ isPoorMarketAppeal: boolean;
946
+ isSimilarProperties: boolean;
947
+ isBetterProperties: boolean;
948
+ isWorseProperties: boolean;
949
+ isPricesRising: boolean;
950
+ isPricesStatic: boolean;
951
+ isPricesFalling: boolean;
952
+ isDemandRising: boolean;
953
+ isDemandStatic: boolean;
954
+ isDemandFalling: boolean;
894
955
  isAffectedByCompulsoryPurchase: boolean;
895
956
  compulsoryPurchaseDetails: string;
896
957
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -900,11 +961,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
900
961
  isCloseToHighVoltageEquipment: boolean;
901
962
  highVoltageEquipmentDetails: string;
902
963
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
903
- locationType: string;
904
- marketAppeal: string;
905
- surroundingProperties: string;
906
- propertyPricesTrend: string;
907
- demandTrend: string;
964
+ isUrban: boolean;
965
+ isSuburban: boolean;
966
+ isRural: boolean;
967
+ isGoodMarketAppeal: boolean;
968
+ isAverageMarketAppeal: boolean;
969
+ isPoorMarketAppeal: boolean;
970
+ isSimilarProperties: boolean;
971
+ isBetterProperties: boolean;
972
+ isWorseProperties: boolean;
973
+ isPricesRising: boolean;
974
+ isPricesStatic: boolean;
975
+ isPricesFalling: boolean;
976
+ isDemandRising: boolean;
977
+ isDemandStatic: boolean;
978
+ isDemandFalling: boolean;
908
979
  isAffectedByCompulsoryPurchase: boolean;
909
980
  compulsoryPurchaseDetails: string;
910
981
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -914,11 +985,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
914
985
  isCloseToHighVoltageEquipment: boolean;
915
986
  highVoltageEquipmentDetails: string;
916
987
  }> & {
917
- locationType: string;
918
- marketAppeal: string;
919
- surroundingProperties: string;
920
- propertyPricesTrend: string;
921
- demandTrend: string;
988
+ isUrban: boolean;
989
+ isSuburban: boolean;
990
+ isRural: boolean;
991
+ isGoodMarketAppeal: boolean;
992
+ isAverageMarketAppeal: boolean;
993
+ isPoorMarketAppeal: boolean;
994
+ isSimilarProperties: boolean;
995
+ isBetterProperties: boolean;
996
+ isWorseProperties: boolean;
997
+ isPricesRising: boolean;
998
+ isPricesStatic: boolean;
999
+ isPricesFalling: boolean;
1000
+ isDemandRising: boolean;
1001
+ isDemandStatic: boolean;
1002
+ isDemandFalling: boolean;
922
1003
  isAffectedByCompulsoryPurchase: boolean;
923
1004
  compulsoryPurchaseDetails: string;
924
1005
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -929,49 +1010,52 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
929
1010
  highVoltageEquipmentDetails: string;
930
1011
  }>;
931
1012
  services: mongoose.Types.DocumentArray<{
932
- unknown: string;
933
- waterSupply: string;
934
- gasSupply: string;
935
- electricitySupply: string;
936
- centralHeating: string;
1013
+ isMainsWater: boolean;
1014
+ isPrivateWater: boolean;
1015
+ isUnknownWater: boolean;
1016
+ isGasSupply: boolean;
1017
+ isElectricitySupply: boolean;
1018
+ isCentralHeating: boolean;
937
1019
  centralHeatingType: string;
938
- mainDrainage: string;
939
- septicTankPlant: string;
940
- solarPanels: string;
941
- sharedAccess: string;
942
- roadAdopted: string;
1020
+ isMainDrainage: boolean;
1021
+ isSepticTankPlant: boolean;
1022
+ isSolarPanels: boolean;
1023
+ isSharedAccess: boolean;
1024
+ isRoadAdopted: boolean;
943
1025
  isHasEasementsOrRightsOfWay: boolean;
944
1026
  easementsOrRightsDetails: string;
945
1027
  servicesSeparateForFlats: string;
946
1028
  servicesSeparateDetails: string;
947
1029
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
948
- unknown: string;
949
- waterSupply: string;
950
- gasSupply: string;
951
- electricitySupply: string;
952
- centralHeating: string;
1030
+ isMainsWater: boolean;
1031
+ isPrivateWater: boolean;
1032
+ isUnknownWater: boolean;
1033
+ isGasSupply: boolean;
1034
+ isElectricitySupply: boolean;
1035
+ isCentralHeating: boolean;
953
1036
  centralHeatingType: string;
954
- mainDrainage: string;
955
- septicTankPlant: string;
956
- solarPanels: string;
957
- sharedAccess: string;
958
- roadAdopted: string;
1037
+ isMainDrainage: boolean;
1038
+ isSepticTankPlant: boolean;
1039
+ isSolarPanels: boolean;
1040
+ isSharedAccess: boolean;
1041
+ isRoadAdopted: boolean;
959
1042
  isHasEasementsOrRightsOfWay: boolean;
960
1043
  easementsOrRightsDetails: string;
961
1044
  servicesSeparateForFlats: string;
962
1045
  servicesSeparateDetails: string;
963
1046
  }> & {
964
- unknown: string;
965
- waterSupply: string;
966
- gasSupply: string;
967
- electricitySupply: string;
968
- centralHeating: string;
1047
+ isMainsWater: boolean;
1048
+ isPrivateWater: boolean;
1049
+ isUnknownWater: boolean;
1050
+ isGasSupply: boolean;
1051
+ isElectricitySupply: boolean;
1052
+ isCentralHeating: boolean;
969
1053
  centralHeatingType: string;
970
- mainDrainage: string;
971
- septicTankPlant: string;
972
- solarPanels: string;
973
- sharedAccess: string;
974
- roadAdopted: string;
1054
+ isMainDrainage: boolean;
1055
+ isSepticTankPlant: boolean;
1056
+ isSolarPanels: boolean;
1057
+ isSharedAccess: boolean;
1058
+ isRoadAdopted: boolean;
975
1059
  isHasEasementsOrRightsOfWay: boolean;
976
1060
  easementsOrRightsDetails: string;
977
1061
  servicesSeparateForFlats: string;
@@ -985,22 +1069,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
985
1069
  structuralModificationsDetails: string;
986
1070
  communalAreasMaintained: string;
987
1071
  propertyProneTo: mongoose.Types.DocumentArray<{
988
- flooding: string;
989
- subsidence: string;
990
- heave: string;
991
- landslip: string;
1072
+ flooding: boolean;
1073
+ subsidence: boolean;
1074
+ heave: boolean;
1075
+ landslip: boolean;
992
1076
  details: string;
993
1077
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
994
- flooding: string;
995
- subsidence: string;
996
- heave: string;
997
- landslip: string;
1078
+ flooding: boolean;
1079
+ subsidence: boolean;
1080
+ heave: boolean;
1081
+ landslip: boolean;
998
1082
  details: string;
999
1083
  }> & {
1000
- flooding: string;
1001
- subsidence: string;
1002
- heave: string;
1003
- landslip: string;
1084
+ flooding: boolean;
1085
+ subsidence: boolean;
1086
+ heave: boolean;
1087
+ landslip: boolean;
1004
1088
  details: string;
1005
1089
  }>;
1006
1090
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -1016,22 +1100,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1016
1100
  structuralModificationsDetails: string;
1017
1101
  communalAreasMaintained: string;
1018
1102
  propertyProneTo: mongoose.Types.DocumentArray<{
1019
- flooding: string;
1020
- subsidence: string;
1021
- heave: string;
1022
- landslip: string;
1103
+ flooding: boolean;
1104
+ subsidence: boolean;
1105
+ heave: boolean;
1106
+ landslip: boolean;
1023
1107
  details: string;
1024
1108
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1025
- flooding: string;
1026
- subsidence: string;
1027
- heave: string;
1028
- landslip: string;
1109
+ flooding: boolean;
1110
+ subsidence: boolean;
1111
+ heave: boolean;
1112
+ landslip: boolean;
1029
1113
  details: string;
1030
1114
  }> & {
1031
- flooding: string;
1032
- subsidence: string;
1033
- heave: string;
1034
- landslip: string;
1115
+ flooding: boolean;
1116
+ subsidence: boolean;
1117
+ heave: boolean;
1118
+ landslip: boolean;
1035
1119
  details: string;
1036
1120
  }>;
1037
1121
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -1047,22 +1131,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1047
1131
  structuralModificationsDetails: string;
1048
1132
  communalAreasMaintained: string;
1049
1133
  propertyProneTo: mongoose.Types.DocumentArray<{
1050
- flooding: string;
1051
- subsidence: string;
1052
- heave: string;
1053
- landslip: string;
1134
+ flooding: boolean;
1135
+ subsidence: boolean;
1136
+ heave: boolean;
1137
+ landslip: boolean;
1054
1138
  details: string;
1055
1139
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1056
- flooding: string;
1057
- subsidence: string;
1058
- heave: string;
1059
- landslip: string;
1140
+ flooding: boolean;
1141
+ subsidence: boolean;
1142
+ heave: boolean;
1143
+ landslip: boolean;
1060
1144
  details: string;
1061
1145
  }> & {
1062
- flooding: string;
1063
- subsidence: string;
1064
- heave: string;
1065
- landslip: string;
1146
+ flooding: boolean;
1147
+ subsidence: boolean;
1148
+ heave: boolean;
1149
+ landslip: boolean;
1066
1150
  details: string;
1067
1151
  }>;
1068
1152
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -1072,46 +1156,46 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1072
1156
  steepSlopeDetails: string;
1073
1157
  }>;
1074
1158
  reports: mongoose.Types.DocumentArray<{
1075
- timberDamp: string;
1076
- mining: string;
1077
- electrical: string;
1078
- drains: string;
1079
- structuralEngineers: string;
1080
- arboricultural: string;
1081
- mundic: string;
1082
- wallTies: string;
1083
- roof: string;
1084
- metalliferous: string;
1085
- sulfateRedAsh: string;
1086
- other: string;
1159
+ isTimberDamp: boolean;
1160
+ isMining: boolean;
1161
+ isElectrical: boolean;
1162
+ isDrains: boolean;
1163
+ isStructuralEngineers: boolean;
1164
+ isArboricultural: boolean;
1165
+ isMundic: boolean;
1166
+ isWallTies: boolean;
1167
+ isRoof: boolean;
1168
+ isMetalliferous: boolean;
1169
+ isSulfateRedAsh: boolean;
1170
+ isOtherReport: boolean;
1087
1171
  otherReportDetails: string;
1088
1172
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1089
- timberDamp: string;
1090
- mining: string;
1091
- electrical: string;
1092
- drains: string;
1093
- structuralEngineers: string;
1094
- arboricultural: string;
1095
- mundic: string;
1096
- wallTies: string;
1097
- roof: string;
1098
- metalliferous: string;
1099
- sulfateRedAsh: string;
1100
- other: string;
1173
+ isTimberDamp: boolean;
1174
+ isMining: boolean;
1175
+ isElectrical: boolean;
1176
+ isDrains: boolean;
1177
+ isStructuralEngineers: boolean;
1178
+ isArboricultural: boolean;
1179
+ isMundic: boolean;
1180
+ isWallTies: boolean;
1181
+ isRoof: boolean;
1182
+ isMetalliferous: boolean;
1183
+ isSulfateRedAsh: boolean;
1184
+ isOtherReport: boolean;
1101
1185
  otherReportDetails: string;
1102
1186
  }> & {
1103
- timberDamp: string;
1104
- mining: string;
1105
- electrical: string;
1106
- drains: string;
1107
- structuralEngineers: string;
1108
- arboricultural: string;
1109
- mundic: string;
1110
- wallTies: string;
1111
- roof: string;
1112
- metalliferous: string;
1113
- sulfateRedAsh: string;
1114
- other: string;
1187
+ isTimberDamp: boolean;
1188
+ isMining: boolean;
1189
+ isElectrical: boolean;
1190
+ isDrains: boolean;
1191
+ isStructuralEngineers: boolean;
1192
+ isArboricultural: boolean;
1193
+ isMundic: boolean;
1194
+ isWallTies: boolean;
1195
+ isRoof: boolean;
1196
+ isMetalliferous: boolean;
1197
+ isSulfateRedAsh: boolean;
1198
+ isOtherReport: boolean;
1115
1199
  otherReportDetails: string;
1116
1200
  }>;
1117
1201
  energyEfficiency: mongoose.Types.DocumentArray<{
@@ -1144,7 +1228,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1144
1228
  monthlyMarketRentImprovedCondition: number;
1145
1229
  isOtherLettingDemandFactors: boolean;
1146
1230
  otherLettingDemandDetails: string;
1147
- isInvestorOnlyDemand: boolean;
1231
+ investorOnlyDemand: boolean;
1148
1232
  investorOnlyDemandDetails: string;
1149
1233
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1150
1234
  isRentalDemandInLocality: boolean;
@@ -1153,7 +1237,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1153
1237
  monthlyMarketRentImprovedCondition: number;
1154
1238
  isOtherLettingDemandFactors: boolean;
1155
1239
  otherLettingDemandDetails: string;
1156
- isInvestorOnlyDemand: boolean;
1240
+ investorOnlyDemand: boolean;
1157
1241
  investorOnlyDemandDetails: string;
1158
1242
  }> & {
1159
1243
  isRentalDemandInLocality: boolean;
@@ -1162,7 +1246,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1162
1246
  monthlyMarketRentImprovedCondition: number;
1163
1247
  isOtherLettingDemandFactors: boolean;
1164
1248
  otherLettingDemandDetails: string;
1165
- isInvestorOnlyDemand: boolean;
1249
+ investorOnlyDemand: boolean;
1166
1250
  investorOnlyDemandDetails: string;
1167
1251
  }>;
1168
1252
  valuationForFinancePurpose: mongoose.Types.DocumentArray<{
@@ -1205,22 +1289,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1205
1289
  fax: number;
1206
1290
  email: string;
1207
1291
  valuerQualifications: mongoose.Types.DocumentArray<{
1208
- mrics: string;
1209
- frics: string;
1210
- assocRics: string;
1292
+ mrics: boolean;
1293
+ frics: boolean;
1294
+ assocRics: boolean;
1211
1295
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1212
- mrics: string;
1213
- frics: string;
1214
- assocRics: string;
1296
+ mrics: boolean;
1297
+ frics: boolean;
1298
+ assocRics: boolean;
1215
1299
  }> & {
1216
- mrics: string;
1217
- frics: string;
1218
- assocRics: string;
1300
+ mrics: boolean;
1301
+ frics: boolean;
1302
+ assocRics: boolean;
1219
1303
  }>;
1220
1304
  ricsNumber: number;
1221
1305
  valuerAddress: string;
1222
1306
  valuerPostcode: string;
1223
- reportDate: string;
1307
+ reportDate: number;
1224
1308
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1225
1309
  valuerSignature: number;
1226
1310
  valuerName: string;
@@ -1229,22 +1313,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1229
1313
  fax: number;
1230
1314
  email: string;
1231
1315
  valuerQualifications: mongoose.Types.DocumentArray<{
1232
- mrics: string;
1233
- frics: string;
1234
- assocRics: string;
1316
+ mrics: boolean;
1317
+ frics: boolean;
1318
+ assocRics: boolean;
1235
1319
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1236
- mrics: string;
1237
- frics: string;
1238
- assocRics: string;
1320
+ mrics: boolean;
1321
+ frics: boolean;
1322
+ assocRics: boolean;
1239
1323
  }> & {
1240
- mrics: string;
1241
- frics: string;
1242
- assocRics: string;
1324
+ mrics: boolean;
1325
+ frics: boolean;
1326
+ assocRics: boolean;
1243
1327
  }>;
1244
1328
  ricsNumber: number;
1245
1329
  valuerAddress: string;
1246
1330
  valuerPostcode: string;
1247
- reportDate: string;
1331
+ reportDate: number;
1248
1332
  }> & {
1249
1333
  valuerSignature: number;
1250
1334
  valuerName: string;
@@ -1253,22 +1337,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1253
1337
  fax: number;
1254
1338
  email: string;
1255
1339
  valuerQualifications: mongoose.Types.DocumentArray<{
1256
- mrics: string;
1257
- frics: string;
1258
- assocRics: string;
1340
+ mrics: boolean;
1341
+ frics: boolean;
1342
+ assocRics: boolean;
1259
1343
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1260
- mrics: string;
1261
- frics: string;
1262
- assocRics: string;
1344
+ mrics: boolean;
1345
+ frics: boolean;
1346
+ assocRics: boolean;
1263
1347
  }> & {
1264
- mrics: string;
1265
- frics: string;
1266
- assocRics: string;
1348
+ mrics: boolean;
1349
+ frics: boolean;
1350
+ assocRics: boolean;
1267
1351
  }>;
1268
1352
  ricsNumber: number;
1269
1353
  valuerAddress: string;
1270
1354
  valuerPostcode: string;
1271
- reportDate: string;
1355
+ reportDate: number;
1272
1356
  }>;
1273
1357
  extractedText: string;
1274
1358
  }, {}> & {
@@ -1278,19 +1362,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1278
1362
  propertyAddress: string;
1279
1363
  postCode: string;
1280
1364
  propertyType: mongoose.Types.DocumentArray<{
1281
- flat: string;
1282
- detachedHouse: string;
1283
- semiDetachedHouse: string;
1284
- terracedHouse: string;
1285
- bungalow: string;
1286
- maisonette: string;
1365
+ isDetachedHouse: boolean;
1366
+ isSemiDetachedHouse: boolean;
1367
+ isTerracedHouse: boolean;
1368
+ isBungalow: boolean;
1369
+ isFlat: boolean;
1370
+ isMaisonette: boolean;
1287
1371
  flatMaisonetteFloor: number;
1288
1372
  numberOfFloorsInBlock: number;
1289
1373
  isBuiltOrOwnedByLocalAuthority: boolean;
1290
- ownerOccupationPercentage: string;
1291
- flatMaisonetteConverted: string;
1292
- conversionYear: string;
1293
- purposeBuilt: string;
1374
+ ownerOccupationPercentage: number;
1375
+ isFlatMaisonetteConverted: boolean;
1376
+ conversionYear: number;
1377
+ isPurposeBuilt: boolean;
1294
1378
  numberOfUnitsInBlock: number;
1295
1379
  isAboveCommercial: boolean;
1296
1380
  residentialNatureImpact: string;
@@ -1306,19 +1390,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1306
1390
  isPurchasedUnderSharedOwnership: boolean;
1307
1391
  yearBuilt: number;
1308
1392
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1309
- flat: string;
1310
- detachedHouse: string;
1311
- semiDetachedHouse: string;
1312
- terracedHouse: string;
1313
- bungalow: string;
1314
- maisonette: string;
1393
+ isDetachedHouse: boolean;
1394
+ isSemiDetachedHouse: boolean;
1395
+ isTerracedHouse: boolean;
1396
+ isBungalow: boolean;
1397
+ isFlat: boolean;
1398
+ isMaisonette: boolean;
1315
1399
  flatMaisonetteFloor: number;
1316
1400
  numberOfFloorsInBlock: number;
1317
1401
  isBuiltOrOwnedByLocalAuthority: boolean;
1318
- ownerOccupationPercentage: string;
1319
- flatMaisonetteConverted: string;
1320
- conversionYear: string;
1321
- purposeBuilt: string;
1402
+ ownerOccupationPercentage: number;
1403
+ isFlatMaisonetteConverted: boolean;
1404
+ conversionYear: number;
1405
+ isPurposeBuilt: boolean;
1322
1406
  numberOfUnitsInBlock: number;
1323
1407
  isAboveCommercial: boolean;
1324
1408
  residentialNatureImpact: string;
@@ -1334,19 +1418,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1334
1418
  isPurchasedUnderSharedOwnership: boolean;
1335
1419
  yearBuilt: number;
1336
1420
  }> & {
1337
- flat: string;
1338
- detachedHouse: string;
1339
- semiDetachedHouse: string;
1340
- terracedHouse: string;
1341
- bungalow: string;
1342
- maisonette: string;
1421
+ isDetachedHouse: boolean;
1422
+ isSemiDetachedHouse: boolean;
1423
+ isTerracedHouse: boolean;
1424
+ isBungalow: boolean;
1425
+ isFlat: boolean;
1426
+ isMaisonette: boolean;
1343
1427
  flatMaisonetteFloor: number;
1344
1428
  numberOfFloorsInBlock: number;
1345
1429
  isBuiltOrOwnedByLocalAuthority: boolean;
1346
- ownerOccupationPercentage: string;
1347
- flatMaisonetteConverted: string;
1348
- conversionYear: string;
1349
- purposeBuilt: string;
1430
+ ownerOccupationPercentage: number;
1431
+ isFlatMaisonetteConverted: boolean;
1432
+ conversionYear: number;
1433
+ isPurposeBuilt: boolean;
1350
1434
  numberOfUnitsInBlock: number;
1351
1435
  isAboveCommercial: boolean;
1352
1436
  residentialNatureImpact: string;
@@ -1375,7 +1459,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1375
1459
  garage: number;
1376
1460
  parking: number;
1377
1461
  gardens: boolean;
1378
- privateOrCommunal: string;
1462
+ isPrivate: boolean;
1463
+ isCommunal: boolean;
1379
1464
  numberOfOutbuildings: number;
1380
1465
  outbuildingDetails: string;
1381
1466
  grossFloorAreaOfDwelling: number;
@@ -1392,7 +1477,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1392
1477
  garage: number;
1393
1478
  parking: number;
1394
1479
  gardens: boolean;
1395
- privateOrCommunal: string;
1480
+ isPrivate: boolean;
1481
+ isCommunal: boolean;
1396
1482
  numberOfOutbuildings: number;
1397
1483
  outbuildingDetails: string;
1398
1484
  grossFloorAreaOfDwelling: number;
@@ -1409,7 +1495,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1409
1495
  garage: number;
1410
1496
  parking: number;
1411
1497
  gardens: boolean;
1412
- privateOrCommunal: string;
1498
+ isPrivate: boolean;
1499
+ isCommunal: boolean;
1413
1500
  numberOfOutbuildings: number;
1414
1501
  outbuildingDetails: string;
1415
1502
  grossFloorAreaOfDwelling: number;
@@ -1435,12 +1522,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1435
1522
  }>;
1436
1523
  newBuild: mongoose.Types.DocumentArray<{
1437
1524
  isNewBuildOrRecentlyConverted: boolean;
1438
- newBuildStatus: string;
1525
+ isCompleted: boolean;
1526
+ isUnderConstruction: boolean;
1439
1527
  isFinalInspectionRequired: boolean;
1440
- nhbcCert: string;
1441
- buildZone: string;
1442
- premier: string;
1443
- professionalConsultant: string;
1528
+ isNhbcCert: boolean;
1529
+ isBuildZone: boolean;
1530
+ isPremier: boolean;
1531
+ isProfessionalConsultant: boolean;
1532
+ isOtherCert: boolean;
1444
1533
  otherCertDetails: string;
1445
1534
  isSelfBuildProject: boolean;
1446
1535
  isInvolvesPartExchange: boolean;
@@ -1449,12 +1538,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1449
1538
  newBuildDeveloperName: string;
1450
1539
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1451
1540
  isNewBuildOrRecentlyConverted: boolean;
1452
- newBuildStatus: string;
1541
+ isCompleted: boolean;
1542
+ isUnderConstruction: boolean;
1453
1543
  isFinalInspectionRequired: boolean;
1454
- nhbcCert: string;
1455
- buildZone: string;
1456
- premier: string;
1457
- professionalConsultant: string;
1544
+ isNhbcCert: boolean;
1545
+ isBuildZone: boolean;
1546
+ isPremier: boolean;
1547
+ isProfessionalConsultant: boolean;
1548
+ isOtherCert: boolean;
1458
1549
  otherCertDetails: string;
1459
1550
  isSelfBuildProject: boolean;
1460
1551
  isInvolvesPartExchange: boolean;
@@ -1463,12 +1554,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1463
1554
  newBuildDeveloperName: string;
1464
1555
  }> & {
1465
1556
  isNewBuildOrRecentlyConverted: boolean;
1466
- newBuildStatus: string;
1557
+ isCompleted: boolean;
1558
+ isUnderConstruction: boolean;
1467
1559
  isFinalInspectionRequired: boolean;
1468
- nhbcCert: string;
1469
- buildZone: string;
1470
- premier: string;
1471
- professionalConsultant: string;
1560
+ isNhbcCert: boolean;
1561
+ isBuildZone: boolean;
1562
+ isPremier: boolean;
1563
+ isProfessionalConsultant: boolean;
1564
+ isOtherCert: boolean;
1472
1565
  otherCertDetails: string;
1473
1566
  isSelfBuildProject: boolean;
1474
1567
  isInvolvesPartExchange: boolean;
@@ -1508,11 +1601,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1508
1601
  alterationsAge: number;
1509
1602
  }>;
1510
1603
  localityAndDemand: mongoose.Types.DocumentArray<{
1511
- locationType: string;
1512
- marketAppeal: string;
1513
- surroundingProperties: string;
1514
- propertyPricesTrend: string;
1515
- demandTrend: string;
1604
+ isUrban: boolean;
1605
+ isSuburban: boolean;
1606
+ isRural: boolean;
1607
+ isGoodMarketAppeal: boolean;
1608
+ isAverageMarketAppeal: boolean;
1609
+ isPoorMarketAppeal: boolean;
1610
+ isSimilarProperties: boolean;
1611
+ isBetterProperties: boolean;
1612
+ isWorseProperties: boolean;
1613
+ isPricesRising: boolean;
1614
+ isPricesStatic: boolean;
1615
+ isPricesFalling: boolean;
1616
+ isDemandRising: boolean;
1617
+ isDemandStatic: boolean;
1618
+ isDemandFalling: boolean;
1516
1619
  isAffectedByCompulsoryPurchase: boolean;
1517
1620
  compulsoryPurchaseDetails: string;
1518
1621
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -1522,11 +1625,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1522
1625
  isCloseToHighVoltageEquipment: boolean;
1523
1626
  highVoltageEquipmentDetails: string;
1524
1627
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1525
- locationType: string;
1526
- marketAppeal: string;
1527
- surroundingProperties: string;
1528
- propertyPricesTrend: string;
1529
- demandTrend: string;
1628
+ isUrban: boolean;
1629
+ isSuburban: boolean;
1630
+ isRural: boolean;
1631
+ isGoodMarketAppeal: boolean;
1632
+ isAverageMarketAppeal: boolean;
1633
+ isPoorMarketAppeal: boolean;
1634
+ isSimilarProperties: boolean;
1635
+ isBetterProperties: boolean;
1636
+ isWorseProperties: boolean;
1637
+ isPricesRising: boolean;
1638
+ isPricesStatic: boolean;
1639
+ isPricesFalling: boolean;
1640
+ isDemandRising: boolean;
1641
+ isDemandStatic: boolean;
1642
+ isDemandFalling: boolean;
1530
1643
  isAffectedByCompulsoryPurchase: boolean;
1531
1644
  compulsoryPurchaseDetails: string;
1532
1645
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -1536,11 +1649,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1536
1649
  isCloseToHighVoltageEquipment: boolean;
1537
1650
  highVoltageEquipmentDetails: string;
1538
1651
  }> & {
1539
- locationType: string;
1540
- marketAppeal: string;
1541
- surroundingProperties: string;
1542
- propertyPricesTrend: string;
1543
- demandTrend: string;
1652
+ isUrban: boolean;
1653
+ isSuburban: boolean;
1654
+ isRural: boolean;
1655
+ isGoodMarketAppeal: boolean;
1656
+ isAverageMarketAppeal: boolean;
1657
+ isPoorMarketAppeal: boolean;
1658
+ isSimilarProperties: boolean;
1659
+ isBetterProperties: boolean;
1660
+ isWorseProperties: boolean;
1661
+ isPricesRising: boolean;
1662
+ isPricesStatic: boolean;
1663
+ isPricesFalling: boolean;
1664
+ isDemandRising: boolean;
1665
+ isDemandStatic: boolean;
1666
+ isDemandFalling: boolean;
1544
1667
  isAffectedByCompulsoryPurchase: boolean;
1545
1668
  compulsoryPurchaseDetails: string;
1546
1669
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -1551,49 +1674,52 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1551
1674
  highVoltageEquipmentDetails: string;
1552
1675
  }>;
1553
1676
  services: mongoose.Types.DocumentArray<{
1554
- unknown: string;
1555
- waterSupply: string;
1556
- gasSupply: string;
1557
- electricitySupply: string;
1558
- centralHeating: string;
1677
+ isMainsWater: boolean;
1678
+ isPrivateWater: boolean;
1679
+ isUnknownWater: boolean;
1680
+ isGasSupply: boolean;
1681
+ isElectricitySupply: boolean;
1682
+ isCentralHeating: boolean;
1559
1683
  centralHeatingType: string;
1560
- mainDrainage: string;
1561
- septicTankPlant: string;
1562
- solarPanels: string;
1563
- sharedAccess: string;
1564
- roadAdopted: string;
1684
+ isMainDrainage: boolean;
1685
+ isSepticTankPlant: boolean;
1686
+ isSolarPanels: boolean;
1687
+ isSharedAccess: boolean;
1688
+ isRoadAdopted: boolean;
1565
1689
  isHasEasementsOrRightsOfWay: boolean;
1566
1690
  easementsOrRightsDetails: string;
1567
1691
  servicesSeparateForFlats: string;
1568
1692
  servicesSeparateDetails: string;
1569
1693
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1570
- unknown: string;
1571
- waterSupply: string;
1572
- gasSupply: string;
1573
- electricitySupply: string;
1574
- centralHeating: string;
1694
+ isMainsWater: boolean;
1695
+ isPrivateWater: boolean;
1696
+ isUnknownWater: boolean;
1697
+ isGasSupply: boolean;
1698
+ isElectricitySupply: boolean;
1699
+ isCentralHeating: boolean;
1575
1700
  centralHeatingType: string;
1576
- mainDrainage: string;
1577
- septicTankPlant: string;
1578
- solarPanels: string;
1579
- sharedAccess: string;
1580
- roadAdopted: string;
1701
+ isMainDrainage: boolean;
1702
+ isSepticTankPlant: boolean;
1703
+ isSolarPanels: boolean;
1704
+ isSharedAccess: boolean;
1705
+ isRoadAdopted: boolean;
1581
1706
  isHasEasementsOrRightsOfWay: boolean;
1582
1707
  easementsOrRightsDetails: string;
1583
1708
  servicesSeparateForFlats: string;
1584
1709
  servicesSeparateDetails: string;
1585
1710
  }> & {
1586
- unknown: string;
1587
- waterSupply: string;
1588
- gasSupply: string;
1589
- electricitySupply: string;
1590
- centralHeating: string;
1711
+ isMainsWater: boolean;
1712
+ isPrivateWater: boolean;
1713
+ isUnknownWater: boolean;
1714
+ isGasSupply: boolean;
1715
+ isElectricitySupply: boolean;
1716
+ isCentralHeating: boolean;
1591
1717
  centralHeatingType: string;
1592
- mainDrainage: string;
1593
- septicTankPlant: string;
1594
- solarPanels: string;
1595
- sharedAccess: string;
1596
- roadAdopted: string;
1718
+ isMainDrainage: boolean;
1719
+ isSepticTankPlant: boolean;
1720
+ isSolarPanels: boolean;
1721
+ isSharedAccess: boolean;
1722
+ isRoadAdopted: boolean;
1597
1723
  isHasEasementsOrRightsOfWay: boolean;
1598
1724
  easementsOrRightsDetails: string;
1599
1725
  servicesSeparateForFlats: string;
@@ -1607,22 +1733,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1607
1733
  structuralModificationsDetails: string;
1608
1734
  communalAreasMaintained: string;
1609
1735
  propertyProneTo: mongoose.Types.DocumentArray<{
1610
- flooding: string;
1611
- subsidence: string;
1612
- heave: string;
1613
- landslip: string;
1736
+ flooding: boolean;
1737
+ subsidence: boolean;
1738
+ heave: boolean;
1739
+ landslip: boolean;
1614
1740
  details: string;
1615
1741
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1616
- flooding: string;
1617
- subsidence: string;
1618
- heave: string;
1619
- landslip: string;
1742
+ flooding: boolean;
1743
+ subsidence: boolean;
1744
+ heave: boolean;
1745
+ landslip: boolean;
1620
1746
  details: string;
1621
1747
  }> & {
1622
- flooding: string;
1623
- subsidence: string;
1624
- heave: string;
1625
- landslip: string;
1748
+ flooding: boolean;
1749
+ subsidence: boolean;
1750
+ heave: boolean;
1751
+ landslip: boolean;
1626
1752
  details: string;
1627
1753
  }>;
1628
1754
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -1638,22 +1764,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1638
1764
  structuralModificationsDetails: string;
1639
1765
  communalAreasMaintained: string;
1640
1766
  propertyProneTo: mongoose.Types.DocumentArray<{
1641
- flooding: string;
1642
- subsidence: string;
1643
- heave: string;
1644
- landslip: string;
1767
+ flooding: boolean;
1768
+ subsidence: boolean;
1769
+ heave: boolean;
1770
+ landslip: boolean;
1645
1771
  details: string;
1646
1772
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1647
- flooding: string;
1648
- subsidence: string;
1649
- heave: string;
1650
- landslip: string;
1773
+ flooding: boolean;
1774
+ subsidence: boolean;
1775
+ heave: boolean;
1776
+ landslip: boolean;
1651
1777
  details: string;
1652
1778
  }> & {
1653
- flooding: string;
1654
- subsidence: string;
1655
- heave: string;
1656
- landslip: string;
1779
+ flooding: boolean;
1780
+ subsidence: boolean;
1781
+ heave: boolean;
1782
+ landslip: boolean;
1657
1783
  details: string;
1658
1784
  }>;
1659
1785
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -1669,22 +1795,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1669
1795
  structuralModificationsDetails: string;
1670
1796
  communalAreasMaintained: string;
1671
1797
  propertyProneTo: mongoose.Types.DocumentArray<{
1672
- flooding: string;
1673
- subsidence: string;
1674
- heave: string;
1675
- landslip: string;
1798
+ flooding: boolean;
1799
+ subsidence: boolean;
1800
+ heave: boolean;
1801
+ landslip: boolean;
1676
1802
  details: string;
1677
1803
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1678
- flooding: string;
1679
- subsidence: string;
1680
- heave: string;
1681
- landslip: string;
1804
+ flooding: boolean;
1805
+ subsidence: boolean;
1806
+ heave: boolean;
1807
+ landslip: boolean;
1682
1808
  details: string;
1683
1809
  }> & {
1684
- flooding: string;
1685
- subsidence: string;
1686
- heave: string;
1687
- landslip: string;
1810
+ flooding: boolean;
1811
+ subsidence: boolean;
1812
+ heave: boolean;
1813
+ landslip: boolean;
1688
1814
  details: string;
1689
1815
  }>;
1690
1816
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -1694,46 +1820,46 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1694
1820
  steepSlopeDetails: string;
1695
1821
  }>;
1696
1822
  reports: mongoose.Types.DocumentArray<{
1697
- timberDamp: string;
1698
- mining: string;
1699
- electrical: string;
1700
- drains: string;
1701
- structuralEngineers: string;
1702
- arboricultural: string;
1703
- mundic: string;
1704
- wallTies: string;
1705
- roof: string;
1706
- metalliferous: string;
1707
- sulfateRedAsh: string;
1708
- other: string;
1823
+ isTimberDamp: boolean;
1824
+ isMining: boolean;
1825
+ isElectrical: boolean;
1826
+ isDrains: boolean;
1827
+ isStructuralEngineers: boolean;
1828
+ isArboricultural: boolean;
1829
+ isMundic: boolean;
1830
+ isWallTies: boolean;
1831
+ isRoof: boolean;
1832
+ isMetalliferous: boolean;
1833
+ isSulfateRedAsh: boolean;
1834
+ isOtherReport: boolean;
1709
1835
  otherReportDetails: string;
1710
1836
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1711
- timberDamp: string;
1712
- mining: string;
1713
- electrical: string;
1714
- drains: string;
1715
- structuralEngineers: string;
1716
- arboricultural: string;
1717
- mundic: string;
1718
- wallTies: string;
1719
- roof: string;
1720
- metalliferous: string;
1721
- sulfateRedAsh: string;
1722
- other: string;
1837
+ isTimberDamp: boolean;
1838
+ isMining: boolean;
1839
+ isElectrical: boolean;
1840
+ isDrains: boolean;
1841
+ isStructuralEngineers: boolean;
1842
+ isArboricultural: boolean;
1843
+ isMundic: boolean;
1844
+ isWallTies: boolean;
1845
+ isRoof: boolean;
1846
+ isMetalliferous: boolean;
1847
+ isSulfateRedAsh: boolean;
1848
+ isOtherReport: boolean;
1723
1849
  otherReportDetails: string;
1724
1850
  }> & {
1725
- timberDamp: string;
1726
- mining: string;
1727
- electrical: string;
1728
- drains: string;
1729
- structuralEngineers: string;
1730
- arboricultural: string;
1731
- mundic: string;
1732
- wallTies: string;
1733
- roof: string;
1734
- metalliferous: string;
1735
- sulfateRedAsh: string;
1736
- other: string;
1851
+ isTimberDamp: boolean;
1852
+ isMining: boolean;
1853
+ isElectrical: boolean;
1854
+ isDrains: boolean;
1855
+ isStructuralEngineers: boolean;
1856
+ isArboricultural: boolean;
1857
+ isMundic: boolean;
1858
+ isWallTies: boolean;
1859
+ isRoof: boolean;
1860
+ isMetalliferous: boolean;
1861
+ isSulfateRedAsh: boolean;
1862
+ isOtherReport: boolean;
1737
1863
  otherReportDetails: string;
1738
1864
  }>;
1739
1865
  energyEfficiency: mongoose.Types.DocumentArray<{
@@ -1766,7 +1892,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1766
1892
  monthlyMarketRentImprovedCondition: number;
1767
1893
  isOtherLettingDemandFactors: boolean;
1768
1894
  otherLettingDemandDetails: string;
1769
- isInvestorOnlyDemand: boolean;
1895
+ investorOnlyDemand: boolean;
1770
1896
  investorOnlyDemandDetails: string;
1771
1897
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1772
1898
  isRentalDemandInLocality: boolean;
@@ -1775,7 +1901,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1775
1901
  monthlyMarketRentImprovedCondition: number;
1776
1902
  isOtherLettingDemandFactors: boolean;
1777
1903
  otherLettingDemandDetails: string;
1778
- isInvestorOnlyDemand: boolean;
1904
+ investorOnlyDemand: boolean;
1779
1905
  investorOnlyDemandDetails: string;
1780
1906
  }> & {
1781
1907
  isRentalDemandInLocality: boolean;
@@ -1784,7 +1910,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1784
1910
  monthlyMarketRentImprovedCondition: number;
1785
1911
  isOtherLettingDemandFactors: boolean;
1786
1912
  otherLettingDemandDetails: string;
1787
- isInvestorOnlyDemand: boolean;
1913
+ investorOnlyDemand: boolean;
1788
1914
  investorOnlyDemandDetails: string;
1789
1915
  }>;
1790
1916
  valuationForFinancePurpose: mongoose.Types.DocumentArray<{
@@ -1827,22 +1953,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1827
1953
  fax: number;
1828
1954
  email: string;
1829
1955
  valuerQualifications: mongoose.Types.DocumentArray<{
1830
- mrics: string;
1831
- frics: string;
1832
- assocRics: string;
1956
+ mrics: boolean;
1957
+ frics: boolean;
1958
+ assocRics: boolean;
1833
1959
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1834
- mrics: string;
1835
- frics: string;
1836
- assocRics: string;
1960
+ mrics: boolean;
1961
+ frics: boolean;
1962
+ assocRics: boolean;
1837
1963
  }> & {
1838
- mrics: string;
1839
- frics: string;
1840
- assocRics: string;
1964
+ mrics: boolean;
1965
+ frics: boolean;
1966
+ assocRics: boolean;
1841
1967
  }>;
1842
1968
  ricsNumber: number;
1843
1969
  valuerAddress: string;
1844
1970
  valuerPostcode: string;
1845
- reportDate: string;
1971
+ reportDate: number;
1846
1972
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1847
1973
  valuerSignature: number;
1848
1974
  valuerName: string;
@@ -1851,22 +1977,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1851
1977
  fax: number;
1852
1978
  email: string;
1853
1979
  valuerQualifications: mongoose.Types.DocumentArray<{
1854
- mrics: string;
1855
- frics: string;
1856
- assocRics: string;
1980
+ mrics: boolean;
1981
+ frics: boolean;
1982
+ assocRics: boolean;
1857
1983
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1858
- mrics: string;
1859
- frics: string;
1860
- assocRics: string;
1984
+ mrics: boolean;
1985
+ frics: boolean;
1986
+ assocRics: boolean;
1861
1987
  }> & {
1862
- mrics: string;
1863
- frics: string;
1864
- assocRics: string;
1988
+ mrics: boolean;
1989
+ frics: boolean;
1990
+ assocRics: boolean;
1865
1991
  }>;
1866
1992
  ricsNumber: number;
1867
1993
  valuerAddress: string;
1868
1994
  valuerPostcode: string;
1869
- reportDate: string;
1995
+ reportDate: number;
1870
1996
  }> & {
1871
1997
  valuerSignature: number;
1872
1998
  valuerName: string;
@@ -1875,22 +2001,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1875
2001
  fax: number;
1876
2002
  email: string;
1877
2003
  valuerQualifications: mongoose.Types.DocumentArray<{
1878
- mrics: string;
1879
- frics: string;
1880
- assocRics: string;
2004
+ mrics: boolean;
2005
+ frics: boolean;
2006
+ assocRics: boolean;
1881
2007
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1882
- mrics: string;
1883
- frics: string;
1884
- assocRics: string;
2008
+ mrics: boolean;
2009
+ frics: boolean;
2010
+ assocRics: boolean;
1885
2011
  }> & {
1886
- mrics: string;
1887
- frics: string;
1888
- assocRics: string;
2012
+ mrics: boolean;
2013
+ frics: boolean;
2014
+ assocRics: boolean;
1889
2015
  }>;
1890
2016
  ricsNumber: number;
1891
2017
  valuerAddress: string;
1892
2018
  valuerPostcode: string;
1893
- reportDate: string;
2019
+ reportDate: number;
1894
2020
  }>;
1895
2021
  extractedText: string;
1896
2022
  } & {
@@ -1904,19 +2030,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1904
2030
  propertyAddress: string;
1905
2031
  postCode: string;
1906
2032
  propertyType: mongoose.Types.DocumentArray<{
1907
- flat: string;
1908
- detachedHouse: string;
1909
- semiDetachedHouse: string;
1910
- terracedHouse: string;
1911
- bungalow: string;
1912
- maisonette: string;
2033
+ isDetachedHouse: boolean;
2034
+ isSemiDetachedHouse: boolean;
2035
+ isTerracedHouse: boolean;
2036
+ isBungalow: boolean;
2037
+ isFlat: boolean;
2038
+ isMaisonette: boolean;
1913
2039
  flatMaisonetteFloor: number;
1914
2040
  numberOfFloorsInBlock: number;
1915
2041
  isBuiltOrOwnedByLocalAuthority: boolean;
1916
- ownerOccupationPercentage: string;
1917
- flatMaisonetteConverted: string;
1918
- conversionYear: string;
1919
- purposeBuilt: string;
2042
+ ownerOccupationPercentage: number;
2043
+ isFlatMaisonetteConverted: boolean;
2044
+ conversionYear: number;
2045
+ isPurposeBuilt: boolean;
1920
2046
  numberOfUnitsInBlock: number;
1921
2047
  isAboveCommercial: boolean;
1922
2048
  residentialNatureImpact: string;
@@ -1932,19 +2058,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1932
2058
  isPurchasedUnderSharedOwnership: boolean;
1933
2059
  yearBuilt: number;
1934
2060
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
1935
- flat: string;
1936
- detachedHouse: string;
1937
- semiDetachedHouse: string;
1938
- terracedHouse: string;
1939
- bungalow: string;
1940
- maisonette: string;
2061
+ isDetachedHouse: boolean;
2062
+ isSemiDetachedHouse: boolean;
2063
+ isTerracedHouse: boolean;
2064
+ isBungalow: boolean;
2065
+ isFlat: boolean;
2066
+ isMaisonette: boolean;
1941
2067
  flatMaisonetteFloor: number;
1942
2068
  numberOfFloorsInBlock: number;
1943
2069
  isBuiltOrOwnedByLocalAuthority: boolean;
1944
- ownerOccupationPercentage: string;
1945
- flatMaisonetteConverted: string;
1946
- conversionYear: string;
1947
- purposeBuilt: string;
2070
+ ownerOccupationPercentage: number;
2071
+ isFlatMaisonetteConverted: boolean;
2072
+ conversionYear: number;
2073
+ isPurposeBuilt: boolean;
1948
2074
  numberOfUnitsInBlock: number;
1949
2075
  isAboveCommercial: boolean;
1950
2076
  residentialNatureImpact: string;
@@ -1960,19 +2086,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
1960
2086
  isPurchasedUnderSharedOwnership: boolean;
1961
2087
  yearBuilt: number;
1962
2088
  }> & {
1963
- flat: string;
1964
- detachedHouse: string;
1965
- semiDetachedHouse: string;
1966
- terracedHouse: string;
1967
- bungalow: string;
1968
- maisonette: string;
2089
+ isDetachedHouse: boolean;
2090
+ isSemiDetachedHouse: boolean;
2091
+ isTerracedHouse: boolean;
2092
+ isBungalow: boolean;
2093
+ isFlat: boolean;
2094
+ isMaisonette: boolean;
1969
2095
  flatMaisonetteFloor: number;
1970
2096
  numberOfFloorsInBlock: number;
1971
2097
  isBuiltOrOwnedByLocalAuthority: boolean;
1972
- ownerOccupationPercentage: string;
1973
- flatMaisonetteConverted: string;
1974
- conversionYear: string;
1975
- purposeBuilt: string;
2098
+ ownerOccupationPercentage: number;
2099
+ isFlatMaisonetteConverted: boolean;
2100
+ conversionYear: number;
2101
+ isPurposeBuilt: boolean;
1976
2102
  numberOfUnitsInBlock: number;
1977
2103
  isAboveCommercial: boolean;
1978
2104
  residentialNatureImpact: string;
@@ -2001,7 +2127,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2001
2127
  garage: number;
2002
2128
  parking: number;
2003
2129
  gardens: boolean;
2004
- privateOrCommunal: string;
2130
+ isPrivate: boolean;
2131
+ isCommunal: boolean;
2005
2132
  numberOfOutbuildings: number;
2006
2133
  outbuildingDetails: string;
2007
2134
  grossFloorAreaOfDwelling: number;
@@ -2018,7 +2145,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2018
2145
  garage: number;
2019
2146
  parking: number;
2020
2147
  gardens: boolean;
2021
- privateOrCommunal: string;
2148
+ isPrivate: boolean;
2149
+ isCommunal: boolean;
2022
2150
  numberOfOutbuildings: number;
2023
2151
  outbuildingDetails: string;
2024
2152
  grossFloorAreaOfDwelling: number;
@@ -2035,7 +2163,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2035
2163
  garage: number;
2036
2164
  parking: number;
2037
2165
  gardens: boolean;
2038
- privateOrCommunal: string;
2166
+ isPrivate: boolean;
2167
+ isCommunal: boolean;
2039
2168
  numberOfOutbuildings: number;
2040
2169
  outbuildingDetails: string;
2041
2170
  grossFloorAreaOfDwelling: number;
@@ -2061,12 +2190,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2061
2190
  }>;
2062
2191
  newBuild: mongoose.Types.DocumentArray<{
2063
2192
  isNewBuildOrRecentlyConverted: boolean;
2064
- newBuildStatus: string;
2193
+ isCompleted: boolean;
2194
+ isUnderConstruction: boolean;
2065
2195
  isFinalInspectionRequired: boolean;
2066
- nhbcCert: string;
2067
- buildZone: string;
2068
- premier: string;
2069
- professionalConsultant: string;
2196
+ isNhbcCert: boolean;
2197
+ isBuildZone: boolean;
2198
+ isPremier: boolean;
2199
+ isProfessionalConsultant: boolean;
2200
+ isOtherCert: boolean;
2070
2201
  otherCertDetails: string;
2071
2202
  isSelfBuildProject: boolean;
2072
2203
  isInvolvesPartExchange: boolean;
@@ -2075,12 +2206,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2075
2206
  newBuildDeveloperName: string;
2076
2207
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2077
2208
  isNewBuildOrRecentlyConverted: boolean;
2078
- newBuildStatus: string;
2209
+ isCompleted: boolean;
2210
+ isUnderConstruction: boolean;
2079
2211
  isFinalInspectionRequired: boolean;
2080
- nhbcCert: string;
2081
- buildZone: string;
2082
- premier: string;
2083
- professionalConsultant: string;
2212
+ isNhbcCert: boolean;
2213
+ isBuildZone: boolean;
2214
+ isPremier: boolean;
2215
+ isProfessionalConsultant: boolean;
2216
+ isOtherCert: boolean;
2084
2217
  otherCertDetails: string;
2085
2218
  isSelfBuildProject: boolean;
2086
2219
  isInvolvesPartExchange: boolean;
@@ -2089,12 +2222,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2089
2222
  newBuildDeveloperName: string;
2090
2223
  }> & {
2091
2224
  isNewBuildOrRecentlyConverted: boolean;
2092
- newBuildStatus: string;
2225
+ isCompleted: boolean;
2226
+ isUnderConstruction: boolean;
2093
2227
  isFinalInspectionRequired: boolean;
2094
- nhbcCert: string;
2095
- buildZone: string;
2096
- premier: string;
2097
- professionalConsultant: string;
2228
+ isNhbcCert: boolean;
2229
+ isBuildZone: boolean;
2230
+ isPremier: boolean;
2231
+ isProfessionalConsultant: boolean;
2232
+ isOtherCert: boolean;
2098
2233
  otherCertDetails: string;
2099
2234
  isSelfBuildProject: boolean;
2100
2235
  isInvolvesPartExchange: boolean;
@@ -2134,11 +2269,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2134
2269
  alterationsAge: number;
2135
2270
  }>;
2136
2271
  localityAndDemand: mongoose.Types.DocumentArray<{
2137
- locationType: string;
2138
- marketAppeal: string;
2139
- surroundingProperties: string;
2140
- propertyPricesTrend: string;
2141
- demandTrend: string;
2272
+ isUrban: boolean;
2273
+ isSuburban: boolean;
2274
+ isRural: boolean;
2275
+ isGoodMarketAppeal: boolean;
2276
+ isAverageMarketAppeal: boolean;
2277
+ isPoorMarketAppeal: boolean;
2278
+ isSimilarProperties: boolean;
2279
+ isBetterProperties: boolean;
2280
+ isWorseProperties: boolean;
2281
+ isPricesRising: boolean;
2282
+ isPricesStatic: boolean;
2283
+ isPricesFalling: boolean;
2284
+ isDemandRising: boolean;
2285
+ isDemandStatic: boolean;
2286
+ isDemandFalling: boolean;
2142
2287
  isAffectedByCompulsoryPurchase: boolean;
2143
2288
  compulsoryPurchaseDetails: string;
2144
2289
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -2148,11 +2293,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2148
2293
  isCloseToHighVoltageEquipment: boolean;
2149
2294
  highVoltageEquipmentDetails: string;
2150
2295
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2151
- locationType: string;
2152
- marketAppeal: string;
2153
- surroundingProperties: string;
2154
- propertyPricesTrend: string;
2155
- demandTrend: string;
2296
+ isUrban: boolean;
2297
+ isSuburban: boolean;
2298
+ isRural: boolean;
2299
+ isGoodMarketAppeal: boolean;
2300
+ isAverageMarketAppeal: boolean;
2301
+ isPoorMarketAppeal: boolean;
2302
+ isSimilarProperties: boolean;
2303
+ isBetterProperties: boolean;
2304
+ isWorseProperties: boolean;
2305
+ isPricesRising: boolean;
2306
+ isPricesStatic: boolean;
2307
+ isPricesFalling: boolean;
2308
+ isDemandRising: boolean;
2309
+ isDemandStatic: boolean;
2310
+ isDemandFalling: boolean;
2156
2311
  isAffectedByCompulsoryPurchase: boolean;
2157
2312
  compulsoryPurchaseDetails: string;
2158
2313
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -2162,11 +2317,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2162
2317
  isCloseToHighVoltageEquipment: boolean;
2163
2318
  highVoltageEquipmentDetails: string;
2164
2319
  }> & {
2165
- locationType: string;
2166
- marketAppeal: string;
2167
- surroundingProperties: string;
2168
- propertyPricesTrend: string;
2169
- demandTrend: string;
2320
+ isUrban: boolean;
2321
+ isSuburban: boolean;
2322
+ isRural: boolean;
2323
+ isGoodMarketAppeal: boolean;
2324
+ isAverageMarketAppeal: boolean;
2325
+ isPoorMarketAppeal: boolean;
2326
+ isSimilarProperties: boolean;
2327
+ isBetterProperties: boolean;
2328
+ isWorseProperties: boolean;
2329
+ isPricesRising: boolean;
2330
+ isPricesStatic: boolean;
2331
+ isPricesFalling: boolean;
2332
+ isDemandRising: boolean;
2333
+ isDemandStatic: boolean;
2334
+ isDemandFalling: boolean;
2170
2335
  isAffectedByCompulsoryPurchase: boolean;
2171
2336
  compulsoryPurchaseDetails: string;
2172
2337
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -2177,49 +2342,52 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2177
2342
  highVoltageEquipmentDetails: string;
2178
2343
  }>;
2179
2344
  services: mongoose.Types.DocumentArray<{
2180
- unknown: string;
2181
- waterSupply: string;
2182
- gasSupply: string;
2183
- electricitySupply: string;
2184
- centralHeating: string;
2345
+ isMainsWater: boolean;
2346
+ isPrivateWater: boolean;
2347
+ isUnknownWater: boolean;
2348
+ isGasSupply: boolean;
2349
+ isElectricitySupply: boolean;
2350
+ isCentralHeating: boolean;
2185
2351
  centralHeatingType: string;
2186
- mainDrainage: string;
2187
- septicTankPlant: string;
2188
- solarPanels: string;
2189
- sharedAccess: string;
2190
- roadAdopted: string;
2352
+ isMainDrainage: boolean;
2353
+ isSepticTankPlant: boolean;
2354
+ isSolarPanels: boolean;
2355
+ isSharedAccess: boolean;
2356
+ isRoadAdopted: boolean;
2191
2357
  isHasEasementsOrRightsOfWay: boolean;
2192
2358
  easementsOrRightsDetails: string;
2193
2359
  servicesSeparateForFlats: string;
2194
2360
  servicesSeparateDetails: string;
2195
2361
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2196
- unknown: string;
2197
- waterSupply: string;
2198
- gasSupply: string;
2199
- electricitySupply: string;
2200
- centralHeating: string;
2362
+ isMainsWater: boolean;
2363
+ isPrivateWater: boolean;
2364
+ isUnknownWater: boolean;
2365
+ isGasSupply: boolean;
2366
+ isElectricitySupply: boolean;
2367
+ isCentralHeating: boolean;
2201
2368
  centralHeatingType: string;
2202
- mainDrainage: string;
2203
- septicTankPlant: string;
2204
- solarPanels: string;
2205
- sharedAccess: string;
2206
- roadAdopted: string;
2369
+ isMainDrainage: boolean;
2370
+ isSepticTankPlant: boolean;
2371
+ isSolarPanels: boolean;
2372
+ isSharedAccess: boolean;
2373
+ isRoadAdopted: boolean;
2207
2374
  isHasEasementsOrRightsOfWay: boolean;
2208
2375
  easementsOrRightsDetails: string;
2209
2376
  servicesSeparateForFlats: string;
2210
2377
  servicesSeparateDetails: string;
2211
2378
  }> & {
2212
- unknown: string;
2213
- waterSupply: string;
2214
- gasSupply: string;
2215
- electricitySupply: string;
2216
- centralHeating: string;
2379
+ isMainsWater: boolean;
2380
+ isPrivateWater: boolean;
2381
+ isUnknownWater: boolean;
2382
+ isGasSupply: boolean;
2383
+ isElectricitySupply: boolean;
2384
+ isCentralHeating: boolean;
2217
2385
  centralHeatingType: string;
2218
- mainDrainage: string;
2219
- septicTankPlant: string;
2220
- solarPanels: string;
2221
- sharedAccess: string;
2222
- roadAdopted: string;
2386
+ isMainDrainage: boolean;
2387
+ isSepticTankPlant: boolean;
2388
+ isSolarPanels: boolean;
2389
+ isSharedAccess: boolean;
2390
+ isRoadAdopted: boolean;
2223
2391
  isHasEasementsOrRightsOfWay: boolean;
2224
2392
  easementsOrRightsDetails: string;
2225
2393
  servicesSeparateForFlats: string;
@@ -2233,22 +2401,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2233
2401
  structuralModificationsDetails: string;
2234
2402
  communalAreasMaintained: string;
2235
2403
  propertyProneTo: mongoose.Types.DocumentArray<{
2236
- flooding: string;
2237
- subsidence: string;
2238
- heave: string;
2239
- landslip: string;
2404
+ flooding: boolean;
2405
+ subsidence: boolean;
2406
+ heave: boolean;
2407
+ landslip: boolean;
2240
2408
  details: string;
2241
2409
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2242
- flooding: string;
2243
- subsidence: string;
2244
- heave: string;
2245
- landslip: string;
2410
+ flooding: boolean;
2411
+ subsidence: boolean;
2412
+ heave: boolean;
2413
+ landslip: boolean;
2246
2414
  details: string;
2247
2415
  }> & {
2248
- flooding: string;
2249
- subsidence: string;
2250
- heave: string;
2251
- landslip: string;
2416
+ flooding: boolean;
2417
+ subsidence: boolean;
2418
+ heave: boolean;
2419
+ landslip: boolean;
2252
2420
  details: string;
2253
2421
  }>;
2254
2422
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -2264,22 +2432,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2264
2432
  structuralModificationsDetails: string;
2265
2433
  communalAreasMaintained: string;
2266
2434
  propertyProneTo: mongoose.Types.DocumentArray<{
2267
- flooding: string;
2268
- subsidence: string;
2269
- heave: string;
2270
- landslip: string;
2435
+ flooding: boolean;
2436
+ subsidence: boolean;
2437
+ heave: boolean;
2438
+ landslip: boolean;
2271
2439
  details: string;
2272
2440
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2273
- flooding: string;
2274
- subsidence: string;
2275
- heave: string;
2276
- landslip: string;
2441
+ flooding: boolean;
2442
+ subsidence: boolean;
2443
+ heave: boolean;
2444
+ landslip: boolean;
2277
2445
  details: string;
2278
2446
  }> & {
2279
- flooding: string;
2280
- subsidence: string;
2281
- heave: string;
2282
- landslip: string;
2447
+ flooding: boolean;
2448
+ subsidence: boolean;
2449
+ heave: boolean;
2450
+ landslip: boolean;
2283
2451
  details: string;
2284
2452
  }>;
2285
2453
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -2295,22 +2463,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2295
2463
  structuralModificationsDetails: string;
2296
2464
  communalAreasMaintained: string;
2297
2465
  propertyProneTo: mongoose.Types.DocumentArray<{
2298
- flooding: string;
2299
- subsidence: string;
2300
- heave: string;
2301
- landslip: string;
2466
+ flooding: boolean;
2467
+ subsidence: boolean;
2468
+ heave: boolean;
2469
+ landslip: boolean;
2302
2470
  details: string;
2303
2471
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2304
- flooding: string;
2305
- subsidence: string;
2306
- heave: string;
2307
- landslip: string;
2472
+ flooding: boolean;
2473
+ subsidence: boolean;
2474
+ heave: boolean;
2475
+ landslip: boolean;
2308
2476
  details: string;
2309
2477
  }> & {
2310
- flooding: string;
2311
- subsidence: string;
2312
- heave: string;
2313
- landslip: string;
2478
+ flooding: boolean;
2479
+ subsidence: boolean;
2480
+ heave: boolean;
2481
+ landslip: boolean;
2314
2482
  details: string;
2315
2483
  }>;
2316
2484
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -2320,46 +2488,46 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2320
2488
  steepSlopeDetails: string;
2321
2489
  }>;
2322
2490
  reports: mongoose.Types.DocumentArray<{
2323
- timberDamp: string;
2324
- mining: string;
2325
- electrical: string;
2326
- drains: string;
2327
- structuralEngineers: string;
2328
- arboricultural: string;
2329
- mundic: string;
2330
- wallTies: string;
2331
- roof: string;
2332
- metalliferous: string;
2333
- sulfateRedAsh: string;
2334
- other: string;
2491
+ isTimberDamp: boolean;
2492
+ isMining: boolean;
2493
+ isElectrical: boolean;
2494
+ isDrains: boolean;
2495
+ isStructuralEngineers: boolean;
2496
+ isArboricultural: boolean;
2497
+ isMundic: boolean;
2498
+ isWallTies: boolean;
2499
+ isRoof: boolean;
2500
+ isMetalliferous: boolean;
2501
+ isSulfateRedAsh: boolean;
2502
+ isOtherReport: boolean;
2335
2503
  otherReportDetails: string;
2336
2504
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2337
- timberDamp: string;
2338
- mining: string;
2339
- electrical: string;
2340
- drains: string;
2341
- structuralEngineers: string;
2342
- arboricultural: string;
2343
- mundic: string;
2344
- wallTies: string;
2345
- roof: string;
2346
- metalliferous: string;
2347
- sulfateRedAsh: string;
2348
- other: string;
2505
+ isTimberDamp: boolean;
2506
+ isMining: boolean;
2507
+ isElectrical: boolean;
2508
+ isDrains: boolean;
2509
+ isStructuralEngineers: boolean;
2510
+ isArboricultural: boolean;
2511
+ isMundic: boolean;
2512
+ isWallTies: boolean;
2513
+ isRoof: boolean;
2514
+ isMetalliferous: boolean;
2515
+ isSulfateRedAsh: boolean;
2516
+ isOtherReport: boolean;
2349
2517
  otherReportDetails: string;
2350
2518
  }> & {
2351
- timberDamp: string;
2352
- mining: string;
2353
- electrical: string;
2354
- drains: string;
2355
- structuralEngineers: string;
2356
- arboricultural: string;
2357
- mundic: string;
2358
- wallTies: string;
2359
- roof: string;
2360
- metalliferous: string;
2361
- sulfateRedAsh: string;
2362
- other: string;
2519
+ isTimberDamp: boolean;
2520
+ isMining: boolean;
2521
+ isElectrical: boolean;
2522
+ isDrains: boolean;
2523
+ isStructuralEngineers: boolean;
2524
+ isArboricultural: boolean;
2525
+ isMundic: boolean;
2526
+ isWallTies: boolean;
2527
+ isRoof: boolean;
2528
+ isMetalliferous: boolean;
2529
+ isSulfateRedAsh: boolean;
2530
+ isOtherReport: boolean;
2363
2531
  otherReportDetails: string;
2364
2532
  }>;
2365
2533
  energyEfficiency: mongoose.Types.DocumentArray<{
@@ -2392,7 +2560,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2392
2560
  monthlyMarketRentImprovedCondition: number;
2393
2561
  isOtherLettingDemandFactors: boolean;
2394
2562
  otherLettingDemandDetails: string;
2395
- isInvestorOnlyDemand: boolean;
2563
+ investorOnlyDemand: boolean;
2396
2564
  investorOnlyDemandDetails: string;
2397
2565
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2398
2566
  isRentalDemandInLocality: boolean;
@@ -2401,7 +2569,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2401
2569
  monthlyMarketRentImprovedCondition: number;
2402
2570
  isOtherLettingDemandFactors: boolean;
2403
2571
  otherLettingDemandDetails: string;
2404
- isInvestorOnlyDemand: boolean;
2572
+ investorOnlyDemand: boolean;
2405
2573
  investorOnlyDemandDetails: string;
2406
2574
  }> & {
2407
2575
  isRentalDemandInLocality: boolean;
@@ -2410,7 +2578,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2410
2578
  monthlyMarketRentImprovedCondition: number;
2411
2579
  isOtherLettingDemandFactors: boolean;
2412
2580
  otherLettingDemandDetails: string;
2413
- isInvestorOnlyDemand: boolean;
2581
+ investorOnlyDemand: boolean;
2414
2582
  investorOnlyDemandDetails: string;
2415
2583
  }>;
2416
2584
  valuationForFinancePurpose: mongoose.Types.DocumentArray<{
@@ -2453,22 +2621,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2453
2621
  fax: number;
2454
2622
  email: string;
2455
2623
  valuerQualifications: mongoose.Types.DocumentArray<{
2456
- mrics: string;
2457
- frics: string;
2458
- assocRics: string;
2624
+ mrics: boolean;
2625
+ frics: boolean;
2626
+ assocRics: boolean;
2459
2627
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2460
- mrics: string;
2461
- frics: string;
2462
- assocRics: string;
2628
+ mrics: boolean;
2629
+ frics: boolean;
2630
+ assocRics: boolean;
2463
2631
  }> & {
2464
- mrics: string;
2465
- frics: string;
2466
- assocRics: string;
2632
+ mrics: boolean;
2633
+ frics: boolean;
2634
+ assocRics: boolean;
2467
2635
  }>;
2468
2636
  ricsNumber: number;
2469
2637
  valuerAddress: string;
2470
2638
  valuerPostcode: string;
2471
- reportDate: string;
2639
+ reportDate: number;
2472
2640
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2473
2641
  valuerSignature: number;
2474
2642
  valuerName: string;
@@ -2477,22 +2645,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2477
2645
  fax: number;
2478
2646
  email: string;
2479
2647
  valuerQualifications: mongoose.Types.DocumentArray<{
2480
- mrics: string;
2481
- frics: string;
2482
- assocRics: string;
2648
+ mrics: boolean;
2649
+ frics: boolean;
2650
+ assocRics: boolean;
2483
2651
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2484
- mrics: string;
2485
- frics: string;
2486
- assocRics: string;
2652
+ mrics: boolean;
2653
+ frics: boolean;
2654
+ assocRics: boolean;
2487
2655
  }> & {
2488
- mrics: string;
2489
- frics: string;
2490
- assocRics: string;
2656
+ mrics: boolean;
2657
+ frics: boolean;
2658
+ assocRics: boolean;
2491
2659
  }>;
2492
2660
  ricsNumber: number;
2493
2661
  valuerAddress: string;
2494
2662
  valuerPostcode: string;
2495
- reportDate: string;
2663
+ reportDate: number;
2496
2664
  }> & {
2497
2665
  valuerSignature: number;
2498
2666
  valuerName: string;
@@ -2501,22 +2669,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2501
2669
  fax: number;
2502
2670
  email: string;
2503
2671
  valuerQualifications: mongoose.Types.DocumentArray<{
2504
- mrics: string;
2505
- frics: string;
2506
- assocRics: string;
2672
+ mrics: boolean;
2673
+ frics: boolean;
2674
+ assocRics: boolean;
2507
2675
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2508
- mrics: string;
2509
- frics: string;
2510
- assocRics: string;
2676
+ mrics: boolean;
2677
+ frics: boolean;
2678
+ assocRics: boolean;
2511
2679
  }> & {
2512
- mrics: string;
2513
- frics: string;
2514
- assocRics: string;
2680
+ mrics: boolean;
2681
+ frics: boolean;
2682
+ assocRics: boolean;
2515
2683
  }>;
2516
2684
  ricsNumber: number;
2517
2685
  valuerAddress: string;
2518
2686
  valuerPostcode: string;
2519
- reportDate: string;
2687
+ reportDate: number;
2520
2688
  }>;
2521
2689
  extractedText: string;
2522
2690
  }, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
@@ -2526,19 +2694,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2526
2694
  propertyAddress: string;
2527
2695
  postCode: string;
2528
2696
  propertyType: mongoose.Types.DocumentArray<{
2529
- flat: string;
2530
- detachedHouse: string;
2531
- semiDetachedHouse: string;
2532
- terracedHouse: string;
2533
- bungalow: string;
2534
- maisonette: string;
2697
+ isDetachedHouse: boolean;
2698
+ isSemiDetachedHouse: boolean;
2699
+ isTerracedHouse: boolean;
2700
+ isBungalow: boolean;
2701
+ isFlat: boolean;
2702
+ isMaisonette: boolean;
2535
2703
  flatMaisonetteFloor: number;
2536
2704
  numberOfFloorsInBlock: number;
2537
2705
  isBuiltOrOwnedByLocalAuthority: boolean;
2538
- ownerOccupationPercentage: string;
2539
- flatMaisonetteConverted: string;
2540
- conversionYear: string;
2541
- purposeBuilt: string;
2706
+ ownerOccupationPercentage: number;
2707
+ isFlatMaisonetteConverted: boolean;
2708
+ conversionYear: number;
2709
+ isPurposeBuilt: boolean;
2542
2710
  numberOfUnitsInBlock: number;
2543
2711
  isAboveCommercial: boolean;
2544
2712
  residentialNatureImpact: string;
@@ -2554,19 +2722,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2554
2722
  isPurchasedUnderSharedOwnership: boolean;
2555
2723
  yearBuilt: number;
2556
2724
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2557
- flat: string;
2558
- detachedHouse: string;
2559
- semiDetachedHouse: string;
2560
- terracedHouse: string;
2561
- bungalow: string;
2562
- maisonette: string;
2725
+ isDetachedHouse: boolean;
2726
+ isSemiDetachedHouse: boolean;
2727
+ isTerracedHouse: boolean;
2728
+ isBungalow: boolean;
2729
+ isFlat: boolean;
2730
+ isMaisonette: boolean;
2563
2731
  flatMaisonetteFloor: number;
2564
2732
  numberOfFloorsInBlock: number;
2565
2733
  isBuiltOrOwnedByLocalAuthority: boolean;
2566
- ownerOccupationPercentage: string;
2567
- flatMaisonetteConverted: string;
2568
- conversionYear: string;
2569
- purposeBuilt: string;
2734
+ ownerOccupationPercentage: number;
2735
+ isFlatMaisonetteConverted: boolean;
2736
+ conversionYear: number;
2737
+ isPurposeBuilt: boolean;
2570
2738
  numberOfUnitsInBlock: number;
2571
2739
  isAboveCommercial: boolean;
2572
2740
  residentialNatureImpact: string;
@@ -2582,19 +2750,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2582
2750
  isPurchasedUnderSharedOwnership: boolean;
2583
2751
  yearBuilt: number;
2584
2752
  }> & {
2585
- flat: string;
2586
- detachedHouse: string;
2587
- semiDetachedHouse: string;
2588
- terracedHouse: string;
2589
- bungalow: string;
2590
- maisonette: string;
2753
+ isDetachedHouse: boolean;
2754
+ isSemiDetachedHouse: boolean;
2755
+ isTerracedHouse: boolean;
2756
+ isBungalow: boolean;
2757
+ isFlat: boolean;
2758
+ isMaisonette: boolean;
2591
2759
  flatMaisonetteFloor: number;
2592
2760
  numberOfFloorsInBlock: number;
2593
2761
  isBuiltOrOwnedByLocalAuthority: boolean;
2594
- ownerOccupationPercentage: string;
2595
- flatMaisonetteConverted: string;
2596
- conversionYear: string;
2597
- purposeBuilt: string;
2762
+ ownerOccupationPercentage: number;
2763
+ isFlatMaisonetteConverted: boolean;
2764
+ conversionYear: number;
2765
+ isPurposeBuilt: boolean;
2598
2766
  numberOfUnitsInBlock: number;
2599
2767
  isAboveCommercial: boolean;
2600
2768
  residentialNatureImpact: string;
@@ -2623,7 +2791,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2623
2791
  garage: number;
2624
2792
  parking: number;
2625
2793
  gardens: boolean;
2626
- privateOrCommunal: string;
2794
+ isPrivate: boolean;
2795
+ isCommunal: boolean;
2627
2796
  numberOfOutbuildings: number;
2628
2797
  outbuildingDetails: string;
2629
2798
  grossFloorAreaOfDwelling: number;
@@ -2640,7 +2809,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2640
2809
  garage: number;
2641
2810
  parking: number;
2642
2811
  gardens: boolean;
2643
- privateOrCommunal: string;
2812
+ isPrivate: boolean;
2813
+ isCommunal: boolean;
2644
2814
  numberOfOutbuildings: number;
2645
2815
  outbuildingDetails: string;
2646
2816
  grossFloorAreaOfDwelling: number;
@@ -2657,7 +2827,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2657
2827
  garage: number;
2658
2828
  parking: number;
2659
2829
  gardens: boolean;
2660
- privateOrCommunal: string;
2830
+ isPrivate: boolean;
2831
+ isCommunal: boolean;
2661
2832
  numberOfOutbuildings: number;
2662
2833
  outbuildingDetails: string;
2663
2834
  grossFloorAreaOfDwelling: number;
@@ -2683,12 +2854,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2683
2854
  }>;
2684
2855
  newBuild: mongoose.Types.DocumentArray<{
2685
2856
  isNewBuildOrRecentlyConverted: boolean;
2686
- newBuildStatus: string;
2857
+ isCompleted: boolean;
2858
+ isUnderConstruction: boolean;
2687
2859
  isFinalInspectionRequired: boolean;
2688
- nhbcCert: string;
2689
- buildZone: string;
2690
- premier: string;
2691
- professionalConsultant: string;
2860
+ isNhbcCert: boolean;
2861
+ isBuildZone: boolean;
2862
+ isPremier: boolean;
2863
+ isProfessionalConsultant: boolean;
2864
+ isOtherCert: boolean;
2692
2865
  otherCertDetails: string;
2693
2866
  isSelfBuildProject: boolean;
2694
2867
  isInvolvesPartExchange: boolean;
@@ -2697,12 +2870,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2697
2870
  newBuildDeveloperName: string;
2698
2871
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2699
2872
  isNewBuildOrRecentlyConverted: boolean;
2700
- newBuildStatus: string;
2873
+ isCompleted: boolean;
2874
+ isUnderConstruction: boolean;
2701
2875
  isFinalInspectionRequired: boolean;
2702
- nhbcCert: string;
2703
- buildZone: string;
2704
- premier: string;
2705
- professionalConsultant: string;
2876
+ isNhbcCert: boolean;
2877
+ isBuildZone: boolean;
2878
+ isPremier: boolean;
2879
+ isProfessionalConsultant: boolean;
2880
+ isOtherCert: boolean;
2706
2881
  otherCertDetails: string;
2707
2882
  isSelfBuildProject: boolean;
2708
2883
  isInvolvesPartExchange: boolean;
@@ -2711,12 +2886,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2711
2886
  newBuildDeveloperName: string;
2712
2887
  }> & {
2713
2888
  isNewBuildOrRecentlyConverted: boolean;
2714
- newBuildStatus: string;
2889
+ isCompleted: boolean;
2890
+ isUnderConstruction: boolean;
2715
2891
  isFinalInspectionRequired: boolean;
2716
- nhbcCert: string;
2717
- buildZone: string;
2718
- premier: string;
2719
- professionalConsultant: string;
2892
+ isNhbcCert: boolean;
2893
+ isBuildZone: boolean;
2894
+ isPremier: boolean;
2895
+ isProfessionalConsultant: boolean;
2896
+ isOtherCert: boolean;
2720
2897
  otherCertDetails: string;
2721
2898
  isSelfBuildProject: boolean;
2722
2899
  isInvolvesPartExchange: boolean;
@@ -2756,11 +2933,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2756
2933
  alterationsAge: number;
2757
2934
  }>;
2758
2935
  localityAndDemand: mongoose.Types.DocumentArray<{
2759
- locationType: string;
2760
- marketAppeal: string;
2761
- surroundingProperties: string;
2762
- propertyPricesTrend: string;
2763
- demandTrend: string;
2936
+ isUrban: boolean;
2937
+ isSuburban: boolean;
2938
+ isRural: boolean;
2939
+ isGoodMarketAppeal: boolean;
2940
+ isAverageMarketAppeal: boolean;
2941
+ isPoorMarketAppeal: boolean;
2942
+ isSimilarProperties: boolean;
2943
+ isBetterProperties: boolean;
2944
+ isWorseProperties: boolean;
2945
+ isPricesRising: boolean;
2946
+ isPricesStatic: boolean;
2947
+ isPricesFalling: boolean;
2948
+ isDemandRising: boolean;
2949
+ isDemandStatic: boolean;
2950
+ isDemandFalling: boolean;
2764
2951
  isAffectedByCompulsoryPurchase: boolean;
2765
2952
  compulsoryPurchaseDetails: string;
2766
2953
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -2770,11 +2957,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2770
2957
  isCloseToHighVoltageEquipment: boolean;
2771
2958
  highVoltageEquipmentDetails: string;
2772
2959
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2773
- locationType: string;
2774
- marketAppeal: string;
2775
- surroundingProperties: string;
2776
- propertyPricesTrend: string;
2777
- demandTrend: string;
2960
+ isUrban: boolean;
2961
+ isSuburban: boolean;
2962
+ isRural: boolean;
2963
+ isGoodMarketAppeal: boolean;
2964
+ isAverageMarketAppeal: boolean;
2965
+ isPoorMarketAppeal: boolean;
2966
+ isSimilarProperties: boolean;
2967
+ isBetterProperties: boolean;
2968
+ isWorseProperties: boolean;
2969
+ isPricesRising: boolean;
2970
+ isPricesStatic: boolean;
2971
+ isPricesFalling: boolean;
2972
+ isDemandRising: boolean;
2973
+ isDemandStatic: boolean;
2974
+ isDemandFalling: boolean;
2778
2975
  isAffectedByCompulsoryPurchase: boolean;
2779
2976
  compulsoryPurchaseDetails: string;
2780
2977
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -2784,11 +2981,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2784
2981
  isCloseToHighVoltageEquipment: boolean;
2785
2982
  highVoltageEquipmentDetails: string;
2786
2983
  }> & {
2787
- locationType: string;
2788
- marketAppeal: string;
2789
- surroundingProperties: string;
2790
- propertyPricesTrend: string;
2791
- demandTrend: string;
2984
+ isUrban: boolean;
2985
+ isSuburban: boolean;
2986
+ isRural: boolean;
2987
+ isGoodMarketAppeal: boolean;
2988
+ isAverageMarketAppeal: boolean;
2989
+ isPoorMarketAppeal: boolean;
2990
+ isSimilarProperties: boolean;
2991
+ isBetterProperties: boolean;
2992
+ isWorseProperties: boolean;
2993
+ isPricesRising: boolean;
2994
+ isPricesStatic: boolean;
2995
+ isPricesFalling: boolean;
2996
+ isDemandRising: boolean;
2997
+ isDemandStatic: boolean;
2998
+ isDemandFalling: boolean;
2792
2999
  isAffectedByCompulsoryPurchase: boolean;
2793
3000
  compulsoryPurchaseDetails: string;
2794
3001
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -2799,49 +3006,52 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2799
3006
  highVoltageEquipmentDetails: string;
2800
3007
  }>;
2801
3008
  services: mongoose.Types.DocumentArray<{
2802
- unknown: string;
2803
- waterSupply: string;
2804
- gasSupply: string;
2805
- electricitySupply: string;
2806
- centralHeating: string;
3009
+ isMainsWater: boolean;
3010
+ isPrivateWater: boolean;
3011
+ isUnknownWater: boolean;
3012
+ isGasSupply: boolean;
3013
+ isElectricitySupply: boolean;
3014
+ isCentralHeating: boolean;
2807
3015
  centralHeatingType: string;
2808
- mainDrainage: string;
2809
- septicTankPlant: string;
2810
- solarPanels: string;
2811
- sharedAccess: string;
2812
- roadAdopted: string;
3016
+ isMainDrainage: boolean;
3017
+ isSepticTankPlant: boolean;
3018
+ isSolarPanels: boolean;
3019
+ isSharedAccess: boolean;
3020
+ isRoadAdopted: boolean;
2813
3021
  isHasEasementsOrRightsOfWay: boolean;
2814
3022
  easementsOrRightsDetails: string;
2815
3023
  servicesSeparateForFlats: string;
2816
3024
  servicesSeparateDetails: string;
2817
3025
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2818
- unknown: string;
2819
- waterSupply: string;
2820
- gasSupply: string;
2821
- electricitySupply: string;
2822
- centralHeating: string;
3026
+ isMainsWater: boolean;
3027
+ isPrivateWater: boolean;
3028
+ isUnknownWater: boolean;
3029
+ isGasSupply: boolean;
3030
+ isElectricitySupply: boolean;
3031
+ isCentralHeating: boolean;
2823
3032
  centralHeatingType: string;
2824
- mainDrainage: string;
2825
- septicTankPlant: string;
2826
- solarPanels: string;
2827
- sharedAccess: string;
2828
- roadAdopted: string;
3033
+ isMainDrainage: boolean;
3034
+ isSepticTankPlant: boolean;
3035
+ isSolarPanels: boolean;
3036
+ isSharedAccess: boolean;
3037
+ isRoadAdopted: boolean;
2829
3038
  isHasEasementsOrRightsOfWay: boolean;
2830
3039
  easementsOrRightsDetails: string;
2831
3040
  servicesSeparateForFlats: string;
2832
3041
  servicesSeparateDetails: string;
2833
3042
  }> & {
2834
- unknown: string;
2835
- waterSupply: string;
2836
- gasSupply: string;
2837
- electricitySupply: string;
2838
- centralHeating: string;
3043
+ isMainsWater: boolean;
3044
+ isPrivateWater: boolean;
3045
+ isUnknownWater: boolean;
3046
+ isGasSupply: boolean;
3047
+ isElectricitySupply: boolean;
3048
+ isCentralHeating: boolean;
2839
3049
  centralHeatingType: string;
2840
- mainDrainage: string;
2841
- septicTankPlant: string;
2842
- solarPanels: string;
2843
- sharedAccess: string;
2844
- roadAdopted: string;
3050
+ isMainDrainage: boolean;
3051
+ isSepticTankPlant: boolean;
3052
+ isSolarPanels: boolean;
3053
+ isSharedAccess: boolean;
3054
+ isRoadAdopted: boolean;
2845
3055
  isHasEasementsOrRightsOfWay: boolean;
2846
3056
  easementsOrRightsDetails: string;
2847
3057
  servicesSeparateForFlats: string;
@@ -2855,22 +3065,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2855
3065
  structuralModificationsDetails: string;
2856
3066
  communalAreasMaintained: string;
2857
3067
  propertyProneTo: mongoose.Types.DocumentArray<{
2858
- flooding: string;
2859
- subsidence: string;
2860
- heave: string;
2861
- landslip: string;
3068
+ flooding: boolean;
3069
+ subsidence: boolean;
3070
+ heave: boolean;
3071
+ landslip: boolean;
2862
3072
  details: string;
2863
3073
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2864
- flooding: string;
2865
- subsidence: string;
2866
- heave: string;
2867
- landslip: string;
3074
+ flooding: boolean;
3075
+ subsidence: boolean;
3076
+ heave: boolean;
3077
+ landslip: boolean;
2868
3078
  details: string;
2869
3079
  }> & {
2870
- flooding: string;
2871
- subsidence: string;
2872
- heave: string;
2873
- landslip: string;
3080
+ flooding: boolean;
3081
+ subsidence: boolean;
3082
+ heave: boolean;
3083
+ landslip: boolean;
2874
3084
  details: string;
2875
3085
  }>;
2876
3086
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -2886,22 +3096,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2886
3096
  structuralModificationsDetails: string;
2887
3097
  communalAreasMaintained: string;
2888
3098
  propertyProneTo: mongoose.Types.DocumentArray<{
2889
- flooding: string;
2890
- subsidence: string;
2891
- heave: string;
2892
- landslip: string;
3099
+ flooding: boolean;
3100
+ subsidence: boolean;
3101
+ heave: boolean;
3102
+ landslip: boolean;
2893
3103
  details: string;
2894
3104
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2895
- flooding: string;
2896
- subsidence: string;
2897
- heave: string;
2898
- landslip: string;
3105
+ flooding: boolean;
3106
+ subsidence: boolean;
3107
+ heave: boolean;
3108
+ landslip: boolean;
2899
3109
  details: string;
2900
3110
  }> & {
2901
- flooding: string;
2902
- subsidence: string;
2903
- heave: string;
2904
- landslip: string;
3111
+ flooding: boolean;
3112
+ subsidence: boolean;
3113
+ heave: boolean;
3114
+ landslip: boolean;
2905
3115
  details: string;
2906
3116
  }>;
2907
3117
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -2917,22 +3127,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2917
3127
  structuralModificationsDetails: string;
2918
3128
  communalAreasMaintained: string;
2919
3129
  propertyProneTo: mongoose.Types.DocumentArray<{
2920
- flooding: string;
2921
- subsidence: string;
2922
- heave: string;
2923
- landslip: string;
3130
+ flooding: boolean;
3131
+ subsidence: boolean;
3132
+ heave: boolean;
3133
+ landslip: boolean;
2924
3134
  details: string;
2925
3135
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2926
- flooding: string;
2927
- subsidence: string;
2928
- heave: string;
2929
- landslip: string;
3136
+ flooding: boolean;
3137
+ subsidence: boolean;
3138
+ heave: boolean;
3139
+ landslip: boolean;
2930
3140
  details: string;
2931
3141
  }> & {
2932
- flooding: string;
2933
- subsidence: string;
2934
- heave: string;
2935
- landslip: string;
3142
+ flooding: boolean;
3143
+ subsidence: boolean;
3144
+ heave: boolean;
3145
+ landslip: boolean;
2936
3146
  details: string;
2937
3147
  }>;
2938
3148
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -2942,46 +3152,46 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
2942
3152
  steepSlopeDetails: string;
2943
3153
  }>;
2944
3154
  reports: mongoose.Types.DocumentArray<{
2945
- timberDamp: string;
2946
- mining: string;
2947
- electrical: string;
2948
- drains: string;
2949
- structuralEngineers: string;
2950
- arboricultural: string;
2951
- mundic: string;
2952
- wallTies: string;
2953
- roof: string;
2954
- metalliferous: string;
2955
- sulfateRedAsh: string;
2956
- other: string;
3155
+ isTimberDamp: boolean;
3156
+ isMining: boolean;
3157
+ isElectrical: boolean;
3158
+ isDrains: boolean;
3159
+ isStructuralEngineers: boolean;
3160
+ isArboricultural: boolean;
3161
+ isMundic: boolean;
3162
+ isWallTies: boolean;
3163
+ isRoof: boolean;
3164
+ isMetalliferous: boolean;
3165
+ isSulfateRedAsh: boolean;
3166
+ isOtherReport: boolean;
2957
3167
  otherReportDetails: string;
2958
3168
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
2959
- timberDamp: string;
2960
- mining: string;
2961
- electrical: string;
2962
- drains: string;
2963
- structuralEngineers: string;
2964
- arboricultural: string;
2965
- mundic: string;
2966
- wallTies: string;
2967
- roof: string;
2968
- metalliferous: string;
2969
- sulfateRedAsh: string;
2970
- other: string;
3169
+ isTimberDamp: boolean;
3170
+ isMining: boolean;
3171
+ isElectrical: boolean;
3172
+ isDrains: boolean;
3173
+ isStructuralEngineers: boolean;
3174
+ isArboricultural: boolean;
3175
+ isMundic: boolean;
3176
+ isWallTies: boolean;
3177
+ isRoof: boolean;
3178
+ isMetalliferous: boolean;
3179
+ isSulfateRedAsh: boolean;
3180
+ isOtherReport: boolean;
2971
3181
  otherReportDetails: string;
2972
3182
  }> & {
2973
- timberDamp: string;
2974
- mining: string;
2975
- electrical: string;
2976
- drains: string;
2977
- structuralEngineers: string;
2978
- arboricultural: string;
2979
- mundic: string;
2980
- wallTies: string;
2981
- roof: string;
2982
- metalliferous: string;
2983
- sulfateRedAsh: string;
2984
- other: string;
3183
+ isTimberDamp: boolean;
3184
+ isMining: boolean;
3185
+ isElectrical: boolean;
3186
+ isDrains: boolean;
3187
+ isStructuralEngineers: boolean;
3188
+ isArboricultural: boolean;
3189
+ isMundic: boolean;
3190
+ isWallTies: boolean;
3191
+ isRoof: boolean;
3192
+ isMetalliferous: boolean;
3193
+ isSulfateRedAsh: boolean;
3194
+ isOtherReport: boolean;
2985
3195
  otherReportDetails: string;
2986
3196
  }>;
2987
3197
  energyEfficiency: mongoose.Types.DocumentArray<{
@@ -3014,7 +3224,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3014
3224
  monthlyMarketRentImprovedCondition: number;
3015
3225
  isOtherLettingDemandFactors: boolean;
3016
3226
  otherLettingDemandDetails: string;
3017
- isInvestorOnlyDemand: boolean;
3227
+ investorOnlyDemand: boolean;
3018
3228
  investorOnlyDemandDetails: string;
3019
3229
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3020
3230
  isRentalDemandInLocality: boolean;
@@ -3023,7 +3233,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3023
3233
  monthlyMarketRentImprovedCondition: number;
3024
3234
  isOtherLettingDemandFactors: boolean;
3025
3235
  otherLettingDemandDetails: string;
3026
- isInvestorOnlyDemand: boolean;
3236
+ investorOnlyDemand: boolean;
3027
3237
  investorOnlyDemandDetails: string;
3028
3238
  }> & {
3029
3239
  isRentalDemandInLocality: boolean;
@@ -3032,7 +3242,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3032
3242
  monthlyMarketRentImprovedCondition: number;
3033
3243
  isOtherLettingDemandFactors: boolean;
3034
3244
  otherLettingDemandDetails: string;
3035
- isInvestorOnlyDemand: boolean;
3245
+ investorOnlyDemand: boolean;
3036
3246
  investorOnlyDemandDetails: string;
3037
3247
  }>;
3038
3248
  valuationForFinancePurpose: mongoose.Types.DocumentArray<{
@@ -3075,22 +3285,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3075
3285
  fax: number;
3076
3286
  email: string;
3077
3287
  valuerQualifications: mongoose.Types.DocumentArray<{
3078
- mrics: string;
3079
- frics: string;
3080
- assocRics: string;
3288
+ mrics: boolean;
3289
+ frics: boolean;
3290
+ assocRics: boolean;
3081
3291
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3082
- mrics: string;
3083
- frics: string;
3084
- assocRics: string;
3292
+ mrics: boolean;
3293
+ frics: boolean;
3294
+ assocRics: boolean;
3085
3295
  }> & {
3086
- mrics: string;
3087
- frics: string;
3088
- assocRics: string;
3296
+ mrics: boolean;
3297
+ frics: boolean;
3298
+ assocRics: boolean;
3089
3299
  }>;
3090
3300
  ricsNumber: number;
3091
3301
  valuerAddress: string;
3092
3302
  valuerPostcode: string;
3093
- reportDate: string;
3303
+ reportDate: number;
3094
3304
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3095
3305
  valuerSignature: number;
3096
3306
  valuerName: string;
@@ -3099,22 +3309,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3099
3309
  fax: number;
3100
3310
  email: string;
3101
3311
  valuerQualifications: mongoose.Types.DocumentArray<{
3102
- mrics: string;
3103
- frics: string;
3104
- assocRics: string;
3312
+ mrics: boolean;
3313
+ frics: boolean;
3314
+ assocRics: boolean;
3105
3315
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3106
- mrics: string;
3107
- frics: string;
3108
- assocRics: string;
3316
+ mrics: boolean;
3317
+ frics: boolean;
3318
+ assocRics: boolean;
3109
3319
  }> & {
3110
- mrics: string;
3111
- frics: string;
3112
- assocRics: string;
3320
+ mrics: boolean;
3321
+ frics: boolean;
3322
+ assocRics: boolean;
3113
3323
  }>;
3114
3324
  ricsNumber: number;
3115
3325
  valuerAddress: string;
3116
3326
  valuerPostcode: string;
3117
- reportDate: string;
3327
+ reportDate: number;
3118
3328
  }> & {
3119
3329
  valuerSignature: number;
3120
3330
  valuerName: string;
@@ -3123,22 +3333,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3123
3333
  fax: number;
3124
3334
  email: string;
3125
3335
  valuerQualifications: mongoose.Types.DocumentArray<{
3126
- mrics: string;
3127
- frics: string;
3128
- assocRics: string;
3336
+ mrics: boolean;
3337
+ frics: boolean;
3338
+ assocRics: boolean;
3129
3339
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3130
- mrics: string;
3131
- frics: string;
3132
- assocRics: string;
3340
+ mrics: boolean;
3341
+ frics: boolean;
3342
+ assocRics: boolean;
3133
3343
  }> & {
3134
- mrics: string;
3135
- frics: string;
3136
- assocRics: string;
3344
+ mrics: boolean;
3345
+ frics: boolean;
3346
+ assocRics: boolean;
3137
3347
  }>;
3138
3348
  ricsNumber: number;
3139
3349
  valuerAddress: string;
3140
3350
  valuerPostcode: string;
3141
- reportDate: string;
3351
+ reportDate: number;
3142
3352
  }>;
3143
3353
  extractedText: string;
3144
3354
  }>, {}> & mongoose.FlatRecord<{
@@ -3148,19 +3358,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3148
3358
  propertyAddress: string;
3149
3359
  postCode: string;
3150
3360
  propertyType: mongoose.Types.DocumentArray<{
3151
- flat: string;
3152
- detachedHouse: string;
3153
- semiDetachedHouse: string;
3154
- terracedHouse: string;
3155
- bungalow: string;
3156
- maisonette: string;
3361
+ isDetachedHouse: boolean;
3362
+ isSemiDetachedHouse: boolean;
3363
+ isTerracedHouse: boolean;
3364
+ isBungalow: boolean;
3365
+ isFlat: boolean;
3366
+ isMaisonette: boolean;
3157
3367
  flatMaisonetteFloor: number;
3158
3368
  numberOfFloorsInBlock: number;
3159
3369
  isBuiltOrOwnedByLocalAuthority: boolean;
3160
- ownerOccupationPercentage: string;
3161
- flatMaisonetteConverted: string;
3162
- conversionYear: string;
3163
- purposeBuilt: string;
3370
+ ownerOccupationPercentage: number;
3371
+ isFlatMaisonetteConverted: boolean;
3372
+ conversionYear: number;
3373
+ isPurposeBuilt: boolean;
3164
3374
  numberOfUnitsInBlock: number;
3165
3375
  isAboveCommercial: boolean;
3166
3376
  residentialNatureImpact: string;
@@ -3176,19 +3386,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3176
3386
  isPurchasedUnderSharedOwnership: boolean;
3177
3387
  yearBuilt: number;
3178
3388
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3179
- flat: string;
3180
- detachedHouse: string;
3181
- semiDetachedHouse: string;
3182
- terracedHouse: string;
3183
- bungalow: string;
3184
- maisonette: string;
3389
+ isDetachedHouse: boolean;
3390
+ isSemiDetachedHouse: boolean;
3391
+ isTerracedHouse: boolean;
3392
+ isBungalow: boolean;
3393
+ isFlat: boolean;
3394
+ isMaisonette: boolean;
3185
3395
  flatMaisonetteFloor: number;
3186
3396
  numberOfFloorsInBlock: number;
3187
3397
  isBuiltOrOwnedByLocalAuthority: boolean;
3188
- ownerOccupationPercentage: string;
3189
- flatMaisonetteConverted: string;
3190
- conversionYear: string;
3191
- purposeBuilt: string;
3398
+ ownerOccupationPercentage: number;
3399
+ isFlatMaisonetteConverted: boolean;
3400
+ conversionYear: number;
3401
+ isPurposeBuilt: boolean;
3192
3402
  numberOfUnitsInBlock: number;
3193
3403
  isAboveCommercial: boolean;
3194
3404
  residentialNatureImpact: string;
@@ -3204,19 +3414,19 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3204
3414
  isPurchasedUnderSharedOwnership: boolean;
3205
3415
  yearBuilt: number;
3206
3416
  }> & {
3207
- flat: string;
3208
- detachedHouse: string;
3209
- semiDetachedHouse: string;
3210
- terracedHouse: string;
3211
- bungalow: string;
3212
- maisonette: string;
3417
+ isDetachedHouse: boolean;
3418
+ isSemiDetachedHouse: boolean;
3419
+ isTerracedHouse: boolean;
3420
+ isBungalow: boolean;
3421
+ isFlat: boolean;
3422
+ isMaisonette: boolean;
3213
3423
  flatMaisonetteFloor: number;
3214
3424
  numberOfFloorsInBlock: number;
3215
3425
  isBuiltOrOwnedByLocalAuthority: boolean;
3216
- ownerOccupationPercentage: string;
3217
- flatMaisonetteConverted: string;
3218
- conversionYear: string;
3219
- purposeBuilt: string;
3426
+ ownerOccupationPercentage: number;
3427
+ isFlatMaisonetteConverted: boolean;
3428
+ conversionYear: number;
3429
+ isPurposeBuilt: boolean;
3220
3430
  numberOfUnitsInBlock: number;
3221
3431
  isAboveCommercial: boolean;
3222
3432
  residentialNatureImpact: string;
@@ -3245,7 +3455,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3245
3455
  garage: number;
3246
3456
  parking: number;
3247
3457
  gardens: boolean;
3248
- privateOrCommunal: string;
3458
+ isPrivate: boolean;
3459
+ isCommunal: boolean;
3249
3460
  numberOfOutbuildings: number;
3250
3461
  outbuildingDetails: string;
3251
3462
  grossFloorAreaOfDwelling: number;
@@ -3262,7 +3473,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3262
3473
  garage: number;
3263
3474
  parking: number;
3264
3475
  gardens: boolean;
3265
- privateOrCommunal: string;
3476
+ isPrivate: boolean;
3477
+ isCommunal: boolean;
3266
3478
  numberOfOutbuildings: number;
3267
3479
  outbuildingDetails: string;
3268
3480
  grossFloorAreaOfDwelling: number;
@@ -3279,7 +3491,8 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3279
3491
  garage: number;
3280
3492
  parking: number;
3281
3493
  gardens: boolean;
3282
- privateOrCommunal: string;
3494
+ isPrivate: boolean;
3495
+ isCommunal: boolean;
3283
3496
  numberOfOutbuildings: number;
3284
3497
  outbuildingDetails: string;
3285
3498
  grossFloorAreaOfDwelling: number;
@@ -3305,12 +3518,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3305
3518
  }>;
3306
3519
  newBuild: mongoose.Types.DocumentArray<{
3307
3520
  isNewBuildOrRecentlyConverted: boolean;
3308
- newBuildStatus: string;
3521
+ isCompleted: boolean;
3522
+ isUnderConstruction: boolean;
3309
3523
  isFinalInspectionRequired: boolean;
3310
- nhbcCert: string;
3311
- buildZone: string;
3312
- premier: string;
3313
- professionalConsultant: string;
3524
+ isNhbcCert: boolean;
3525
+ isBuildZone: boolean;
3526
+ isPremier: boolean;
3527
+ isProfessionalConsultant: boolean;
3528
+ isOtherCert: boolean;
3314
3529
  otherCertDetails: string;
3315
3530
  isSelfBuildProject: boolean;
3316
3531
  isInvolvesPartExchange: boolean;
@@ -3319,12 +3534,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3319
3534
  newBuildDeveloperName: string;
3320
3535
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3321
3536
  isNewBuildOrRecentlyConverted: boolean;
3322
- newBuildStatus: string;
3537
+ isCompleted: boolean;
3538
+ isUnderConstruction: boolean;
3323
3539
  isFinalInspectionRequired: boolean;
3324
- nhbcCert: string;
3325
- buildZone: string;
3326
- premier: string;
3327
- professionalConsultant: string;
3540
+ isNhbcCert: boolean;
3541
+ isBuildZone: boolean;
3542
+ isPremier: boolean;
3543
+ isProfessionalConsultant: boolean;
3544
+ isOtherCert: boolean;
3328
3545
  otherCertDetails: string;
3329
3546
  isSelfBuildProject: boolean;
3330
3547
  isInvolvesPartExchange: boolean;
@@ -3333,12 +3550,14 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3333
3550
  newBuildDeveloperName: string;
3334
3551
  }> & {
3335
3552
  isNewBuildOrRecentlyConverted: boolean;
3336
- newBuildStatus: string;
3553
+ isCompleted: boolean;
3554
+ isUnderConstruction: boolean;
3337
3555
  isFinalInspectionRequired: boolean;
3338
- nhbcCert: string;
3339
- buildZone: string;
3340
- premier: string;
3341
- professionalConsultant: string;
3556
+ isNhbcCert: boolean;
3557
+ isBuildZone: boolean;
3558
+ isPremier: boolean;
3559
+ isProfessionalConsultant: boolean;
3560
+ isOtherCert: boolean;
3342
3561
  otherCertDetails: string;
3343
3562
  isSelfBuildProject: boolean;
3344
3563
  isInvolvesPartExchange: boolean;
@@ -3378,11 +3597,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3378
3597
  alterationsAge: number;
3379
3598
  }>;
3380
3599
  localityAndDemand: mongoose.Types.DocumentArray<{
3381
- locationType: string;
3382
- marketAppeal: string;
3383
- surroundingProperties: string;
3384
- propertyPricesTrend: string;
3385
- demandTrend: string;
3600
+ isUrban: boolean;
3601
+ isSuburban: boolean;
3602
+ isRural: boolean;
3603
+ isGoodMarketAppeal: boolean;
3604
+ isAverageMarketAppeal: boolean;
3605
+ isPoorMarketAppeal: boolean;
3606
+ isSimilarProperties: boolean;
3607
+ isBetterProperties: boolean;
3608
+ isWorseProperties: boolean;
3609
+ isPricesRising: boolean;
3610
+ isPricesStatic: boolean;
3611
+ isPricesFalling: boolean;
3612
+ isDemandRising: boolean;
3613
+ isDemandStatic: boolean;
3614
+ isDemandFalling: boolean;
3386
3615
  isAffectedByCompulsoryPurchase: boolean;
3387
3616
  compulsoryPurchaseDetails: string;
3388
3617
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -3392,11 +3621,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3392
3621
  isCloseToHighVoltageEquipment: boolean;
3393
3622
  highVoltageEquipmentDetails: string;
3394
3623
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3395
- locationType: string;
3396
- marketAppeal: string;
3397
- surroundingProperties: string;
3398
- propertyPricesTrend: string;
3399
- demandTrend: string;
3624
+ isUrban: boolean;
3625
+ isSuburban: boolean;
3626
+ isRural: boolean;
3627
+ isGoodMarketAppeal: boolean;
3628
+ isAverageMarketAppeal: boolean;
3629
+ isPoorMarketAppeal: boolean;
3630
+ isSimilarProperties: boolean;
3631
+ isBetterProperties: boolean;
3632
+ isWorseProperties: boolean;
3633
+ isPricesRising: boolean;
3634
+ isPricesStatic: boolean;
3635
+ isPricesFalling: boolean;
3636
+ isDemandRising: boolean;
3637
+ isDemandStatic: boolean;
3638
+ isDemandFalling: boolean;
3400
3639
  isAffectedByCompulsoryPurchase: boolean;
3401
3640
  compulsoryPurchaseDetails: string;
3402
3641
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -3406,11 +3645,21 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3406
3645
  isCloseToHighVoltageEquipment: boolean;
3407
3646
  highVoltageEquipmentDetails: string;
3408
3647
  }> & {
3409
- locationType: string;
3410
- marketAppeal: string;
3411
- surroundingProperties: string;
3412
- propertyPricesTrend: string;
3413
- demandTrend: string;
3648
+ isUrban: boolean;
3649
+ isSuburban: boolean;
3650
+ isRural: boolean;
3651
+ isGoodMarketAppeal: boolean;
3652
+ isAverageMarketAppeal: boolean;
3653
+ isPoorMarketAppeal: boolean;
3654
+ isSimilarProperties: boolean;
3655
+ isBetterProperties: boolean;
3656
+ isWorseProperties: boolean;
3657
+ isPricesRising: boolean;
3658
+ isPricesStatic: boolean;
3659
+ isPricesFalling: boolean;
3660
+ isDemandRising: boolean;
3661
+ isDemandStatic: boolean;
3662
+ isDemandFalling: boolean;
3414
3663
  isAffectedByCompulsoryPurchase: boolean;
3415
3664
  compulsoryPurchaseDetails: string;
3416
3665
  isVacantOrBoardedPropertiesNearby: boolean;
@@ -3421,49 +3670,52 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3421
3670
  highVoltageEquipmentDetails: string;
3422
3671
  }>;
3423
3672
  services: mongoose.Types.DocumentArray<{
3424
- unknown: string;
3425
- waterSupply: string;
3426
- gasSupply: string;
3427
- electricitySupply: string;
3428
- centralHeating: string;
3673
+ isMainsWater: boolean;
3674
+ isPrivateWater: boolean;
3675
+ isUnknownWater: boolean;
3676
+ isGasSupply: boolean;
3677
+ isElectricitySupply: boolean;
3678
+ isCentralHeating: boolean;
3429
3679
  centralHeatingType: string;
3430
- mainDrainage: string;
3431
- septicTankPlant: string;
3432
- solarPanels: string;
3433
- sharedAccess: string;
3434
- roadAdopted: string;
3680
+ isMainDrainage: boolean;
3681
+ isSepticTankPlant: boolean;
3682
+ isSolarPanels: boolean;
3683
+ isSharedAccess: boolean;
3684
+ isRoadAdopted: boolean;
3435
3685
  isHasEasementsOrRightsOfWay: boolean;
3436
3686
  easementsOrRightsDetails: string;
3437
3687
  servicesSeparateForFlats: string;
3438
3688
  servicesSeparateDetails: string;
3439
3689
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3440
- unknown: string;
3441
- waterSupply: string;
3442
- gasSupply: string;
3443
- electricitySupply: string;
3444
- centralHeating: string;
3690
+ isMainsWater: boolean;
3691
+ isPrivateWater: boolean;
3692
+ isUnknownWater: boolean;
3693
+ isGasSupply: boolean;
3694
+ isElectricitySupply: boolean;
3695
+ isCentralHeating: boolean;
3445
3696
  centralHeatingType: string;
3446
- mainDrainage: string;
3447
- septicTankPlant: string;
3448
- solarPanels: string;
3449
- sharedAccess: string;
3450
- roadAdopted: string;
3697
+ isMainDrainage: boolean;
3698
+ isSepticTankPlant: boolean;
3699
+ isSolarPanels: boolean;
3700
+ isSharedAccess: boolean;
3701
+ isRoadAdopted: boolean;
3451
3702
  isHasEasementsOrRightsOfWay: boolean;
3452
3703
  easementsOrRightsDetails: string;
3453
3704
  servicesSeparateForFlats: string;
3454
3705
  servicesSeparateDetails: string;
3455
3706
  }> & {
3456
- unknown: string;
3457
- waterSupply: string;
3458
- gasSupply: string;
3459
- electricitySupply: string;
3460
- centralHeating: string;
3707
+ isMainsWater: boolean;
3708
+ isPrivateWater: boolean;
3709
+ isUnknownWater: boolean;
3710
+ isGasSupply: boolean;
3711
+ isElectricitySupply: boolean;
3712
+ isCentralHeating: boolean;
3461
3713
  centralHeatingType: string;
3462
- mainDrainage: string;
3463
- septicTankPlant: string;
3464
- solarPanels: string;
3465
- sharedAccess: string;
3466
- roadAdopted: string;
3714
+ isMainDrainage: boolean;
3715
+ isSepticTankPlant: boolean;
3716
+ isSolarPanels: boolean;
3717
+ isSharedAccess: boolean;
3718
+ isRoadAdopted: boolean;
3467
3719
  isHasEasementsOrRightsOfWay: boolean;
3468
3720
  easementsOrRightsDetails: string;
3469
3721
  servicesSeparateForFlats: string;
@@ -3477,22 +3729,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3477
3729
  structuralModificationsDetails: string;
3478
3730
  communalAreasMaintained: string;
3479
3731
  propertyProneTo: mongoose.Types.DocumentArray<{
3480
- flooding: string;
3481
- subsidence: string;
3482
- heave: string;
3483
- landslip: string;
3732
+ flooding: boolean;
3733
+ subsidence: boolean;
3734
+ heave: boolean;
3735
+ landslip: boolean;
3484
3736
  details: string;
3485
3737
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3486
- flooding: string;
3487
- subsidence: string;
3488
- heave: string;
3489
- landslip: string;
3738
+ flooding: boolean;
3739
+ subsidence: boolean;
3740
+ heave: boolean;
3741
+ landslip: boolean;
3490
3742
  details: string;
3491
3743
  }> & {
3492
- flooding: string;
3493
- subsidence: string;
3494
- heave: string;
3495
- landslip: string;
3744
+ flooding: boolean;
3745
+ subsidence: boolean;
3746
+ heave: boolean;
3747
+ landslip: boolean;
3496
3748
  details: string;
3497
3749
  }>;
3498
3750
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -3508,22 +3760,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3508
3760
  structuralModificationsDetails: string;
3509
3761
  communalAreasMaintained: string;
3510
3762
  propertyProneTo: mongoose.Types.DocumentArray<{
3511
- flooding: string;
3512
- subsidence: string;
3513
- heave: string;
3514
- landslip: string;
3763
+ flooding: boolean;
3764
+ subsidence: boolean;
3765
+ heave: boolean;
3766
+ landslip: boolean;
3515
3767
  details: string;
3516
3768
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3517
- flooding: string;
3518
- subsidence: string;
3519
- heave: string;
3520
- landslip: string;
3769
+ flooding: boolean;
3770
+ subsidence: boolean;
3771
+ heave: boolean;
3772
+ landslip: boolean;
3521
3773
  details: string;
3522
3774
  }> & {
3523
- flooding: string;
3524
- subsidence: string;
3525
- heave: string;
3526
- landslip: string;
3775
+ flooding: boolean;
3776
+ subsidence: boolean;
3777
+ heave: boolean;
3778
+ landslip: boolean;
3527
3779
  details: string;
3528
3780
  }>;
3529
3781
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -3539,22 +3791,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3539
3791
  structuralModificationsDetails: string;
3540
3792
  communalAreasMaintained: string;
3541
3793
  propertyProneTo: mongoose.Types.DocumentArray<{
3542
- flooding: string;
3543
- subsidence: string;
3544
- heave: string;
3545
- landslip: string;
3794
+ flooding: boolean;
3795
+ subsidence: boolean;
3796
+ heave: boolean;
3797
+ landslip: boolean;
3546
3798
  details: string;
3547
3799
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3548
- flooding: string;
3549
- subsidence: string;
3550
- heave: string;
3551
- landslip: string;
3800
+ flooding: boolean;
3801
+ subsidence: boolean;
3802
+ heave: boolean;
3803
+ landslip: boolean;
3552
3804
  details: string;
3553
3805
  }> & {
3554
- flooding: string;
3555
- subsidence: string;
3556
- heave: string;
3557
- landslip: string;
3806
+ flooding: boolean;
3807
+ subsidence: boolean;
3808
+ heave: boolean;
3809
+ landslip: boolean;
3558
3810
  details: string;
3559
3811
  }>;
3560
3812
  isPlotBoundariesDefinedUnderPointFourHectares: boolean;
@@ -3564,46 +3816,46 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3564
3816
  steepSlopeDetails: string;
3565
3817
  }>;
3566
3818
  reports: mongoose.Types.DocumentArray<{
3567
- timberDamp: string;
3568
- mining: string;
3569
- electrical: string;
3570
- drains: string;
3571
- structuralEngineers: string;
3572
- arboricultural: string;
3573
- mundic: string;
3574
- wallTies: string;
3575
- roof: string;
3576
- metalliferous: string;
3577
- sulfateRedAsh: string;
3578
- other: string;
3819
+ isTimberDamp: boolean;
3820
+ isMining: boolean;
3821
+ isElectrical: boolean;
3822
+ isDrains: boolean;
3823
+ isStructuralEngineers: boolean;
3824
+ isArboricultural: boolean;
3825
+ isMundic: boolean;
3826
+ isWallTies: boolean;
3827
+ isRoof: boolean;
3828
+ isMetalliferous: boolean;
3829
+ isSulfateRedAsh: boolean;
3830
+ isOtherReport: boolean;
3579
3831
  otherReportDetails: string;
3580
3832
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3581
- timberDamp: string;
3582
- mining: string;
3583
- electrical: string;
3584
- drains: string;
3585
- structuralEngineers: string;
3586
- arboricultural: string;
3587
- mundic: string;
3588
- wallTies: string;
3589
- roof: string;
3590
- metalliferous: string;
3591
- sulfateRedAsh: string;
3592
- other: string;
3833
+ isTimberDamp: boolean;
3834
+ isMining: boolean;
3835
+ isElectrical: boolean;
3836
+ isDrains: boolean;
3837
+ isStructuralEngineers: boolean;
3838
+ isArboricultural: boolean;
3839
+ isMundic: boolean;
3840
+ isWallTies: boolean;
3841
+ isRoof: boolean;
3842
+ isMetalliferous: boolean;
3843
+ isSulfateRedAsh: boolean;
3844
+ isOtherReport: boolean;
3593
3845
  otherReportDetails: string;
3594
3846
  }> & {
3595
- timberDamp: string;
3596
- mining: string;
3597
- electrical: string;
3598
- drains: string;
3599
- structuralEngineers: string;
3600
- arboricultural: string;
3601
- mundic: string;
3602
- wallTies: string;
3603
- roof: string;
3604
- metalliferous: string;
3605
- sulfateRedAsh: string;
3606
- other: string;
3847
+ isTimberDamp: boolean;
3848
+ isMining: boolean;
3849
+ isElectrical: boolean;
3850
+ isDrains: boolean;
3851
+ isStructuralEngineers: boolean;
3852
+ isArboricultural: boolean;
3853
+ isMundic: boolean;
3854
+ isWallTies: boolean;
3855
+ isRoof: boolean;
3856
+ isMetalliferous: boolean;
3857
+ isSulfateRedAsh: boolean;
3858
+ isOtherReport: boolean;
3607
3859
  otherReportDetails: string;
3608
3860
  }>;
3609
3861
  energyEfficiency: mongoose.Types.DocumentArray<{
@@ -3636,7 +3888,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3636
3888
  monthlyMarketRentImprovedCondition: number;
3637
3889
  isOtherLettingDemandFactors: boolean;
3638
3890
  otherLettingDemandDetails: string;
3639
- isInvestorOnlyDemand: boolean;
3891
+ investorOnlyDemand: boolean;
3640
3892
  investorOnlyDemandDetails: string;
3641
3893
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3642
3894
  isRentalDemandInLocality: boolean;
@@ -3645,7 +3897,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3645
3897
  monthlyMarketRentImprovedCondition: number;
3646
3898
  isOtherLettingDemandFactors: boolean;
3647
3899
  otherLettingDemandDetails: string;
3648
- isInvestorOnlyDemand: boolean;
3900
+ investorOnlyDemand: boolean;
3649
3901
  investorOnlyDemandDetails: string;
3650
3902
  }> & {
3651
3903
  isRentalDemandInLocality: boolean;
@@ -3654,7 +3906,7 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3654
3906
  monthlyMarketRentImprovedCondition: number;
3655
3907
  isOtherLettingDemandFactors: boolean;
3656
3908
  otherLettingDemandDetails: string;
3657
- isInvestorOnlyDemand: boolean;
3909
+ investorOnlyDemand: boolean;
3658
3910
  investorOnlyDemandDetails: string;
3659
3911
  }>;
3660
3912
  valuationForFinancePurpose: mongoose.Types.DocumentArray<{
@@ -3697,22 +3949,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3697
3949
  fax: number;
3698
3950
  email: string;
3699
3951
  valuerQualifications: mongoose.Types.DocumentArray<{
3700
- mrics: string;
3701
- frics: string;
3702
- assocRics: string;
3952
+ mrics: boolean;
3953
+ frics: boolean;
3954
+ assocRics: boolean;
3703
3955
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3704
- mrics: string;
3705
- frics: string;
3706
- assocRics: string;
3956
+ mrics: boolean;
3957
+ frics: boolean;
3958
+ assocRics: boolean;
3707
3959
  }> & {
3708
- mrics: string;
3709
- frics: string;
3710
- assocRics: string;
3960
+ mrics: boolean;
3961
+ frics: boolean;
3962
+ assocRics: boolean;
3711
3963
  }>;
3712
3964
  ricsNumber: number;
3713
3965
  valuerAddress: string;
3714
3966
  valuerPostcode: string;
3715
- reportDate: string;
3967
+ reportDate: number;
3716
3968
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3717
3969
  valuerSignature: number;
3718
3970
  valuerName: string;
@@ -3721,22 +3973,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3721
3973
  fax: number;
3722
3974
  email: string;
3723
3975
  valuerQualifications: mongoose.Types.DocumentArray<{
3724
- mrics: string;
3725
- frics: string;
3726
- assocRics: string;
3976
+ mrics: boolean;
3977
+ frics: boolean;
3978
+ assocRics: boolean;
3727
3979
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3728
- mrics: string;
3729
- frics: string;
3730
- assocRics: string;
3980
+ mrics: boolean;
3981
+ frics: boolean;
3982
+ assocRics: boolean;
3731
3983
  }> & {
3732
- mrics: string;
3733
- frics: string;
3734
- assocRics: string;
3984
+ mrics: boolean;
3985
+ frics: boolean;
3986
+ assocRics: boolean;
3735
3987
  }>;
3736
3988
  ricsNumber: number;
3737
3989
  valuerAddress: string;
3738
3990
  valuerPostcode: string;
3739
- reportDate: string;
3991
+ reportDate: number;
3740
3992
  }> & {
3741
3993
  valuerSignature: number;
3742
3994
  valuerName: string;
@@ -3745,22 +3997,22 @@ declare const ApplicationValuationReportModel: mongoose.Model<{
3745
3997
  fax: number;
3746
3998
  email: string;
3747
3999
  valuerQualifications: mongoose.Types.DocumentArray<{
3748
- mrics: string;
3749
- frics: string;
3750
- assocRics: string;
4000
+ mrics: boolean;
4001
+ frics: boolean;
4002
+ assocRics: boolean;
3751
4003
  }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
3752
- mrics: string;
3753
- frics: string;
3754
- assocRics: string;
4004
+ mrics: boolean;
4005
+ frics: boolean;
4006
+ assocRics: boolean;
3755
4007
  }> & {
3756
- mrics: string;
3757
- frics: string;
3758
- assocRics: string;
4008
+ mrics: boolean;
4009
+ frics: boolean;
4010
+ assocRics: boolean;
3759
4011
  }>;
3760
4012
  ricsNumber: number;
3761
4013
  valuerAddress: string;
3762
4014
  valuerPostcode: string;
3763
- reportDate: string;
4015
+ reportDate: number;
3764
4016
  }>;
3765
4017
  extractedText: string;
3766
4018
  }> & {