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 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
- median_rent_conf_low: number | null;
410
- median_rent_conf_high: number | null;
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
- yield: number | null;
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
- dwelling_type: string;
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
- median_rent_conf_low: number | null;
410
- median_rent_conf_high: number | null;
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
- yield: number | null;
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
- dwelling_type: string;
462
+ property_type: string;
461
463
  bedrooms: string;
462
464
  sales: number | null;
463
465
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "htag-sdk",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "Official TypeScript SDK for HtAG Location Intelligence APIs — address search, property data, and market analytics for Australia",
5
5
  "license": "MIT",
6
6
  "author": {