-
Notifications
You must be signed in to change notification settings - Fork 512
/
phoneNumber.ts
412 lines (373 loc) · 13.9 KB
/
phoneNumber.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Lookups
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { inspect, InspectOptions } from "util";
import V2 from "../V2";
const deserialize = require("../../../base/deserialize");
const serialize = require("../../../base/serialize");
import { isValidPathParam } from "../../../base/utility";
export type PhoneNumberValidationError =
| "TOO_SHORT"
| "TOO_LONG"
| "INVALID_BUT_POSSIBLE"
| "INVALID_COUNTRY_CODE"
| "INVALID_LENGTH"
| "NOT_A_NUMBER";
/**
* Options to pass to fetch a PhoneNumberInstance
*/
export interface PhoneNumberContextFetchOptions {
/** A comma-separated list of fields to return. Possible values are caller_name, sim_swap, call_forwarding, live_activity, line_type_intelligence, identity_match, reassigned_number. */
fields?: string;
/** The [country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) used if the phone number provided is in national format. */
countryCode?: string;
/** User’s first name. This query parameter is only used (optionally) for identity_match package requests. */
firstName?: string;
/** User’s last name. This query parameter is only used (optionally) for identity_match package requests. */
lastName?: string;
/** User’s first address line. This query parameter is only used (optionally) for identity_match package requests. */
addressLine1?: string;
/** User’s second address line. This query parameter is only used (optionally) for identity_match package requests. */
addressLine2?: string;
/** User’s city. This query parameter is only used (optionally) for identity_match package requests. */
city?: string;
/** User’s country subdivision, such as state, province, or locality. This query parameter is only used (optionally) for identity_match package requests. */
state?: string;
/** User’s postal zip code. This query parameter is only used (optionally) for identity_match package requests. */
postalCode?: string;
/** User’s country, up to two characters. This query parameter is only used (optionally) for identity_match package requests. */
addressCountryCode?: string;
/** User’s national ID, such as SSN or Passport ID. This query parameter is only used (optionally) for identity_match package requests. */
nationalId?: string;
/** User’s date of birth, in YYYYMMDD format. This query parameter is only used (optionally) for identity_match package requests. */
dateOfBirth?: string;
/** The date you obtained consent to call or text the end-user of the phone number or a date on which you are reasonably certain that the end-user could still be reached at that number. This query parameter is only used (optionally) for reassigned_number package requests. */
lastVerifiedDate?: string;
}
export interface PhoneNumberContext {
/**
* Fetch a PhoneNumberInstance
*
* @param callback - Callback to handle processed record
*
* @returns Resolves to processed PhoneNumberInstance
*/
fetch(
callback?: (error: Error | null, item?: PhoneNumberInstance) => any
): Promise<PhoneNumberInstance>;
/**
* Fetch a PhoneNumberInstance
*
* @param params - Parameter for request
* @param callback - Callback to handle processed record
*
* @returns Resolves to processed PhoneNumberInstance
*/
fetch(
params: PhoneNumberContextFetchOptions,
callback?: (error: Error | null, item?: PhoneNumberInstance) => any
): Promise<PhoneNumberInstance>;
/**
* Provide a user-friendly representation
*/
toJSON(): any;
[inspect.custom](_depth: any, options: InspectOptions): any;
}
export interface PhoneNumberContextSolution {
phoneNumber: string;
}
export class PhoneNumberContextImpl implements PhoneNumberContext {
protected _solution: PhoneNumberContextSolution;
protected _uri: string;
constructor(protected _version: V2, phoneNumber: string) {
if (!isValidPathParam(phoneNumber)) {
throw new Error("Parameter 'phoneNumber' is not valid.");
}
this._solution = { phoneNumber };
this._uri = `/PhoneNumbers/${phoneNumber}`;
}
fetch(
params?:
| PhoneNumberContextFetchOptions
| ((error: Error | null, item?: PhoneNumberInstance) => any),
callback?: (error: Error | null, item?: PhoneNumberInstance) => any
): Promise<PhoneNumberInstance> {
if (params instanceof Function) {
callback = params;
params = {};
} else {
params = params || {};
}
let data: any = {};
if (params["fields"] !== undefined) data["Fields"] = params["fields"];
if (params["countryCode"] !== undefined)
data["CountryCode"] = params["countryCode"];
if (params["firstName"] !== undefined)
data["FirstName"] = params["firstName"];
if (params["lastName"] !== undefined) data["LastName"] = params["lastName"];
if (params["addressLine1"] !== undefined)
data["AddressLine1"] = params["addressLine1"];
if (params["addressLine2"] !== undefined)
data["AddressLine2"] = params["addressLine2"];
if (params["city"] !== undefined) data["City"] = params["city"];
if (params["state"] !== undefined) data["State"] = params["state"];
if (params["postalCode"] !== undefined)
data["PostalCode"] = params["postalCode"];
if (params["addressCountryCode"] !== undefined)
data["AddressCountryCode"] = params["addressCountryCode"];
if (params["nationalId"] !== undefined)
data["NationalId"] = params["nationalId"];
if (params["dateOfBirth"] !== undefined)
data["DateOfBirth"] = params["dateOfBirth"];
if (params["lastVerifiedDate"] !== undefined)
data["LastVerifiedDate"] = params["lastVerifiedDate"];
const headers: any = {};
const instance = this;
let operationVersion = instance._version,
operationPromise = operationVersion.fetch({
uri: instance._uri,
method: "get",
params: data,
headers,
});
operationPromise = operationPromise.then(
(payload) =>
new PhoneNumberInstance(
operationVersion,
payload,
instance._solution.phoneNumber
)
);
operationPromise = instance._version.setPromiseCallback(
operationPromise,
callback
);
return operationPromise;
}
/**
* Provide a user-friendly representation
*
* @returns Object
*/
toJSON() {
return this._solution;
}
[inspect.custom](_depth: any, options: InspectOptions) {
return inspect(this.toJSON(), options);
}
}
interface PhoneNumberPayload extends PhoneNumberResource {}
interface PhoneNumberResource {
calling_country_code: string;
country_code: string;
phone_number: string;
national_format: string;
valid: boolean;
validation_errors: Array<PhoneNumberValidationError>;
caller_name: any;
sim_swap: any;
call_forwarding: any;
live_activity: any;
line_type_intelligence: any;
identity_match: any;
reassigned_number: any;
sms_pumping_risk: any;
disposable_phone_number_risk: any;
url: string;
}
export class PhoneNumberInstance {
protected _solution: PhoneNumberContextSolution;
protected _context?: PhoneNumberContext;
constructor(
protected _version: V2,
payload: PhoneNumberResource,
phoneNumber?: string
) {
this.callingCountryCode = payload.calling_country_code;
this.countryCode = payload.country_code;
this.phoneNumber = payload.phone_number;
this.nationalFormat = payload.national_format;
this.valid = payload.valid;
this.validationErrors = payload.validation_errors;
this.callerName = payload.caller_name;
this.simSwap = payload.sim_swap;
this.callForwarding = payload.call_forwarding;
this.liveActivity = payload.live_activity;
this.lineTypeIntelligence = payload.line_type_intelligence;
this.identityMatch = payload.identity_match;
this.reassignedNumber = payload.reassigned_number;
this.smsPumpingRisk = payload.sms_pumping_risk;
this.disposablePhoneNumberRisk = payload.disposable_phone_number_risk;
this.url = payload.url;
this._solution = { phoneNumber: phoneNumber || this.phoneNumber };
}
/**
* International dialing prefix of the phone number defined in the E.164 standard.
*/
callingCountryCode: string;
/**
* The phone number\'s [ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
*/
countryCode: string;
/**
* The phone number in [E.164](https://www.twilio.com/docs/glossary/what-e164) format, which consists of a + followed by the country code and subscriber number.
*/
phoneNumber: string;
/**
* The phone number in [national format](https://en.wikipedia.org/wiki/National_conventions_for_writing_telephone_numbers).
*/
nationalFormat: string;
/**
* Boolean which indicates if the phone number is in a valid range that can be freely assigned by a carrier to a user.
*/
valid: boolean;
/**
* Contains reasons why a phone number is invalid. Possible values: TOO_SHORT, TOO_LONG, INVALID_BUT_POSSIBLE, INVALID_COUNTRY_CODE, INVALID_LENGTH, NOT_A_NUMBER.
*/
validationErrors: Array<PhoneNumberValidationError>;
/**
* An object that contains caller name information based on [CNAM](https://support.twilio.com/hc/en-us/articles/360051670533-Getting-Started-with-CNAM-Caller-ID).
*/
callerName: any;
/**
* An object that contains information on the last date the subscriber identity module (SIM) was changed for a mobile phone number.
*/
simSwap: any;
/**
* An object that contains information on the unconditional call forwarding status of mobile phone number.
*/
callForwarding: any;
/**
* An object that contains live activity information for a mobile phone number.
*/
liveActivity: any;
/**
* An object that contains line type information including the carrier name, mobile country code, and mobile network code.
*/
lineTypeIntelligence: any;
/**
* An object that contains identity match information. The result of comparing user-provided information including name, address, date of birth, national ID, against authoritative phone-based data sources
*/
identityMatch: any;
/**
* An object that contains reassigned number information. Reassigned Numbers will return a phone number\'s reassignment status given a phone number and date
*/
reassignedNumber: any;
/**
* An object that contains information on if a phone number has been currently or previously blocked by Verify Fraud Guard for receiving malicious SMS pumping traffic as well as other signals associated with risky carriers and low conversion rates.
*/
smsPumpingRisk: any;
/**
* An object that contains information on if a mobile phone number could be a disposable or burner number.
*/
disposablePhoneNumberRisk: any;
/**
* The absolute URL of the resource.
*/
url: string;
private get _proxy(): PhoneNumberContext {
this._context =
this._context ||
new PhoneNumberContextImpl(this._version, this._solution.phoneNumber);
return this._context;
}
/**
* Fetch a PhoneNumberInstance
*
* @param callback - Callback to handle processed record
*
* @returns Resolves to processed PhoneNumberInstance
*/
fetch(
callback?: (error: Error | null, item?: PhoneNumberInstance) => any
): Promise<PhoneNumberInstance>;
/**
* Fetch a PhoneNumberInstance
*
* @param params - Parameter for request
* @param callback - Callback to handle processed record
*
* @returns Resolves to processed PhoneNumberInstance
*/
fetch(
params: PhoneNumberContextFetchOptions,
callback?: (error: Error | null, item?: PhoneNumberInstance) => any
): Promise<PhoneNumberInstance>;
fetch(
params?: any,
callback?: (error: Error | null, item?: PhoneNumberInstance) => any
): Promise<PhoneNumberInstance> {
return this._proxy.fetch(params, callback);
}
/**
* Provide a user-friendly representation
*
* @returns Object
*/
toJSON() {
return {
callingCountryCode: this.callingCountryCode,
countryCode: this.countryCode,
phoneNumber: this.phoneNumber,
nationalFormat: this.nationalFormat,
valid: this.valid,
validationErrors: this.validationErrors,
callerName: this.callerName,
simSwap: this.simSwap,
callForwarding: this.callForwarding,
liveActivity: this.liveActivity,
lineTypeIntelligence: this.lineTypeIntelligence,
identityMatch: this.identityMatch,
reassignedNumber: this.reassignedNumber,
smsPumpingRisk: this.smsPumpingRisk,
disposablePhoneNumberRisk: this.disposablePhoneNumberRisk,
url: this.url,
};
}
[inspect.custom](_depth: any, options: InspectOptions) {
return inspect(this.toJSON(), options);
}
}
export interface PhoneNumberSolution {}
export interface PhoneNumberListInstance {
_version: V2;
_solution: PhoneNumberSolution;
_uri: string;
(phoneNumber: string): PhoneNumberContext;
get(phoneNumber: string): PhoneNumberContext;
/**
* Provide a user-friendly representation
*/
toJSON(): any;
[inspect.custom](_depth: any, options: InspectOptions): any;
}
export function PhoneNumberListInstance(version: V2): PhoneNumberListInstance {
const instance = ((phoneNumber) =>
instance.get(phoneNumber)) as PhoneNumberListInstance;
instance.get = function get(phoneNumber): PhoneNumberContext {
return new PhoneNumberContextImpl(version, phoneNumber);
};
instance._version = version;
instance._solution = {};
instance._uri = ``;
instance.toJSON = function toJSON() {
return instance._solution;
};
instance[inspect.custom] = function inspectImpl(
_depth: any,
options: InspectOptions
) {
return inspect(instance.toJSON(), options);
};
return instance;
}