@land-catalyst/batch-data-sdk 1.3.3 → 1.4.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/core/types.d.ts +67 -0
- package/package.json +1 -1
package/dist/core/types.d.ts
CHANGED
|
@@ -1169,6 +1169,43 @@ export interface OwnerName {
|
|
|
1169
1169
|
last?: string;
|
|
1170
1170
|
full?: string;
|
|
1171
1171
|
}
|
|
1172
|
+
/**
|
|
1173
|
+
* Owner phone number (returned when skipTrace option is enabled)
|
|
1174
|
+
*/
|
|
1175
|
+
export interface OwnerPhoneNumber {
|
|
1176
|
+
/** Phone number digits */
|
|
1177
|
+
number?: string;
|
|
1178
|
+
/** Type of phone line: Mobile, Land Line, VoIP, etc. */
|
|
1179
|
+
type?: string;
|
|
1180
|
+
/** Phone carrier name */
|
|
1181
|
+
carrier?: string;
|
|
1182
|
+
/** Whether the phone number has been verified/tested */
|
|
1183
|
+
tested?: boolean;
|
|
1184
|
+
/** Whether the phone number is reachable */
|
|
1185
|
+
reachable?: boolean;
|
|
1186
|
+
/** Whether the phone number is on a Do Not Call list */
|
|
1187
|
+
dnc?: boolean;
|
|
1188
|
+
/** Date when this phone number was last reported */
|
|
1189
|
+
lastReportedDate?: string;
|
|
1190
|
+
/** Confidence score (0-100) for this phone number */
|
|
1191
|
+
score?: number;
|
|
1192
|
+
}
|
|
1193
|
+
/**
|
|
1194
|
+
* Owner enriched email (returned when skipTrace option is enabled)
|
|
1195
|
+
*/
|
|
1196
|
+
export interface OwnerEnrichedEmail {
|
|
1197
|
+
/** Email address */
|
|
1198
|
+
email?: string;
|
|
1199
|
+
/** Whether the email has been verified/tested */
|
|
1200
|
+
tested?: boolean;
|
|
1201
|
+
}
|
|
1202
|
+
/**
|
|
1203
|
+
* Do Not Call registry information
|
|
1204
|
+
*/
|
|
1205
|
+
export interface OwnerDNC {
|
|
1206
|
+
/** Whether the owner is on the TCPA Do Not Call registry */
|
|
1207
|
+
tcpa?: boolean;
|
|
1208
|
+
}
|
|
1172
1209
|
/**
|
|
1173
1210
|
* Owner information
|
|
1174
1211
|
*/
|
|
@@ -1183,6 +1220,36 @@ export interface Owner {
|
|
|
1183
1220
|
fullName?: string;
|
|
1184
1221
|
mailingAddress?: MailingAddress;
|
|
1185
1222
|
names?: OwnerName[];
|
|
1223
|
+
/**
|
|
1224
|
+
* Email addresses associated with the property owner
|
|
1225
|
+
* Returned only when options.skipTrace = true
|
|
1226
|
+
* @fieldPath owner.emails
|
|
1227
|
+
*/
|
|
1228
|
+
emails?: string[];
|
|
1229
|
+
/**
|
|
1230
|
+
* Enriched email information with verification status
|
|
1231
|
+
* Returned only when options.skipTrace = true
|
|
1232
|
+
* @fieldPath owner.enrichedEmails
|
|
1233
|
+
*/
|
|
1234
|
+
enrichedEmails?: OwnerEnrichedEmail[];
|
|
1235
|
+
/**
|
|
1236
|
+
* Phone numbers associated with the property owner
|
|
1237
|
+
* Returned only when options.skipTrace = true
|
|
1238
|
+
* @fieldPath owner.phoneNumbers
|
|
1239
|
+
*/
|
|
1240
|
+
phoneNumbers?: OwnerPhoneNumber[];
|
|
1241
|
+
/**
|
|
1242
|
+
* Flag indicating whether the owner is known to be a TCPA litigator
|
|
1243
|
+
* Returned only when options.skipTrace = true
|
|
1244
|
+
* @fieldPath owner.litigator
|
|
1245
|
+
*/
|
|
1246
|
+
litigator?: boolean;
|
|
1247
|
+
/**
|
|
1248
|
+
* Do Not Call registry information
|
|
1249
|
+
* Returned only when options.skipTrace = true
|
|
1250
|
+
* @fieldPath owner.dnc
|
|
1251
|
+
*/
|
|
1252
|
+
dnc?: OwnerDNC;
|
|
1186
1253
|
}
|
|
1187
1254
|
/**
|
|
1188
1255
|
* Property owner profile
|
package/package.json
CHANGED