htag-sdk 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +6 -4
- package/dist/index.d.ts +6 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -404,16 +404,18 @@ interface RentHistoryOut {
|
|
|
404
404
|
area_id: string;
|
|
405
405
|
period_end: string;
|
|
406
406
|
property_type: string;
|
|
407
|
+
bedrooms?: number | null;
|
|
407
408
|
median_rent: number | null;
|
|
408
409
|
rentals: number | null;
|
|
409
|
-
|
|
410
|
-
|
|
410
|
+
confidence_low: number | null;
|
|
411
|
+
confidence_high: number | null;
|
|
411
412
|
}
|
|
412
413
|
interface YieldHistoryOut {
|
|
413
414
|
area_id: string;
|
|
414
415
|
period_end: string;
|
|
415
416
|
property_type: string;
|
|
416
|
-
|
|
417
|
+
bedrooms?: number | null;
|
|
418
|
+
yield_val: number | null;
|
|
417
419
|
}
|
|
418
420
|
interface FSDMonthlyOut {
|
|
419
421
|
area_id: string;
|
|
@@ -457,7 +459,7 @@ interface GRCOut {
|
|
|
457
459
|
interface DemandProfileOut {
|
|
458
460
|
area_id: string;
|
|
459
461
|
period_end: string;
|
|
460
|
-
|
|
462
|
+
property_type: string;
|
|
461
463
|
bedrooms: string;
|
|
462
464
|
sales: number | null;
|
|
463
465
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -404,16 +404,18 @@ interface RentHistoryOut {
|
|
|
404
404
|
area_id: string;
|
|
405
405
|
period_end: string;
|
|
406
406
|
property_type: string;
|
|
407
|
+
bedrooms?: number | null;
|
|
407
408
|
median_rent: number | null;
|
|
408
409
|
rentals: number | null;
|
|
409
|
-
|
|
410
|
-
|
|
410
|
+
confidence_low: number | null;
|
|
411
|
+
confidence_high: number | null;
|
|
411
412
|
}
|
|
412
413
|
interface YieldHistoryOut {
|
|
413
414
|
area_id: string;
|
|
414
415
|
period_end: string;
|
|
415
416
|
property_type: string;
|
|
416
|
-
|
|
417
|
+
bedrooms?: number | null;
|
|
418
|
+
yield_val: number | null;
|
|
417
419
|
}
|
|
418
420
|
interface FSDMonthlyOut {
|
|
419
421
|
area_id: string;
|
|
@@ -457,7 +459,7 @@ interface GRCOut {
|
|
|
457
459
|
interface DemandProfileOut {
|
|
458
460
|
area_id: string;
|
|
459
461
|
period_end: string;
|
|
460
|
-
|
|
462
|
+
property_type: string;
|
|
461
463
|
bedrooms: string;
|
|
462
464
|
sales: number | null;
|
|
463
465
|
}
|
package/package.json
CHANGED