@land-catalyst/batch-data-sdk 1.3.3 → 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
@@ -1169,6 +1174,43 @@ export interface OwnerName {
1169
1174
  last?: string;
1170
1175
  full?: string;
1171
1176
  }
1177
+ /**
1178
+ * Owner phone number (returned when skipTrace option is enabled)
1179
+ */
1180
+ export interface OwnerPhoneNumber {
1181
+ /** Phone number digits */
1182
+ number?: string;
1183
+ /** Type of phone line: Mobile, Land Line, VoIP, etc. */
1184
+ type?: string;
1185
+ /** Phone carrier name */
1186
+ carrier?: string;
1187
+ /** Whether the phone number has been verified/tested */
1188
+ tested?: boolean;
1189
+ /** Whether the phone number is reachable */
1190
+ reachable?: boolean;
1191
+ /** Whether the phone number is on a Do Not Call list */
1192
+ dnc?: boolean;
1193
+ /** Date when this phone number was last reported */
1194
+ lastReportedDate?: string;
1195
+ /** Confidence score (0-100) for this phone number */
1196
+ score?: number;
1197
+ }
1198
+ /**
1199
+ * Owner enriched email (returned when skipTrace option is enabled)
1200
+ */
1201
+ export interface OwnerEnrichedEmail {
1202
+ /** Email address */
1203
+ email?: string;
1204
+ /** Whether the email has been verified/tested */
1205
+ tested?: boolean;
1206
+ }
1207
+ /**
1208
+ * Do Not Call registry information
1209
+ */
1210
+ export interface OwnerDNC {
1211
+ /** Whether the owner is on the TCPA Do Not Call registry */
1212
+ tcpa?: boolean;
1213
+ }
1172
1214
  /**
1173
1215
  * Owner information
1174
1216
  */
@@ -1183,6 +1225,36 @@ export interface Owner {
1183
1225
  fullName?: string;
1184
1226
  mailingAddress?: MailingAddress;
1185
1227
  names?: OwnerName[];
1228
+ /**
1229
+ * Email addresses associated with the property owner
1230
+ * Returned only when options.skipTrace = true
1231
+ * @fieldPath owner.emails
1232
+ */
1233
+ emails?: string[];
1234
+ /**
1235
+ * Enriched email information with verification status
1236
+ * Returned only when options.skipTrace = true
1237
+ * @fieldPath owner.enrichedEmails
1238
+ */
1239
+ enrichedEmails?: OwnerEnrichedEmail[];
1240
+ /**
1241
+ * Phone numbers associated with the property owner
1242
+ * Returned only when options.skipTrace = true
1243
+ * @fieldPath owner.phoneNumbers
1244
+ */
1245
+ phoneNumbers?: OwnerPhoneNumber[];
1246
+ /**
1247
+ * Flag indicating whether the owner is known to be a TCPA litigator
1248
+ * Returned only when options.skipTrace = true
1249
+ * @fieldPath owner.litigator
1250
+ */
1251
+ litigator?: boolean;
1252
+ /**
1253
+ * Do Not Call registry information
1254
+ * Returned only when options.skipTrace = true
1255
+ * @fieldPath owner.dnc
1256
+ */
1257
+ dnc?: OwnerDNC;
1186
1258
  }
1187
1259
  /**
1188
1260
  * Property owner profile
@@ -1368,6 +1440,14 @@ export interface ResultsMetadata {
1368
1440
  resultCount?: number;
1369
1441
  /** Number of results found. This is the total number of properties that matched the search criteria. */
1370
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;
1371
1451
  }
1372
1452
  /**
1373
1453
  * Response metadata
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@land-catalyst/batch-data-sdk",
3
- "version": "1.3.3",
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",