@land-catalyst/batch-data-sdk 1.4.0 → 1.5.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.
@@ -1147,6 +1147,11 @@ export interface OpenLienMortgage {
1147
1147
  assignedLenderName?: string;
1148
1148
  ltv?: number;
1149
1149
  estimatedPaymentAmount?: number;
1150
+ transactionType?: string;
1151
+ transactionTypeCode?: string;
1152
+ adjustableRateIndex?: string;
1153
+ firstChangeDateYearConversionRider?: number;
1154
+ firstChangeDateMonthConversionRider?: number;
1150
1155
  }
1151
1156
  /**
1152
1157
  * Open lien information
@@ -1435,6 +1440,14 @@ export interface ResultsMetadata {
1435
1440
  resultCount?: number;
1436
1441
  /** Number of results found. This is the total number of properties that matched the search criteria. */
1437
1442
  resultsFound?: number;
1443
+ /** Number of skip trace requests that resulted in errors */
1444
+ skipTraceErrorCount?: number;
1445
+ /** Number of skip trace requests that found matches */
1446
+ skipTraceMatchCount?: number;
1447
+ /** Number of skip trace requests that found no matches */
1448
+ skipTraceNoMatchCount?: number;
1449
+ /** Total number of skip trace requests made */
1450
+ skipTraceRequestCount?: number;
1438
1451
  }
1439
1452
  /**
1440
1453
  * Response metadata
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@land-catalyst/batch-data-sdk",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "TypeScript SDK for BatchData.io Property API - Types, Builders, and Utilities",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",