@ember-home/unbound-ts-client 0.0.37 → 0.0.39

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.ts CHANGED
@@ -168,7 +168,7 @@ interface APIAddress {
168
168
  * @type {string}
169
169
  * @memberof APIAddress
170
170
  */
171
- 'street1': string | null;
171
+ 'street1'?: string | null;
172
172
  /**
173
173
  *
174
174
  * @type {string}
@@ -180,25 +180,31 @@ interface APIAddress {
180
180
  * @type {string}
181
181
  * @memberof APIAddress
182
182
  */
183
- 'country': string | null;
183
+ 'country'?: string | null;
184
184
  /**
185
185
  *
186
186
  * @type {string}
187
187
  * @memberof APIAddress
188
188
  */
189
- 'locality': string | null;
189
+ 'locality'?: string | null;
190
190
  /**
191
191
  *
192
192
  * @type {string}
193
193
  * @memberof APIAddress
194
194
  */
195
- 'postalCode': string | null;
195
+ 'postalCode'?: string | null;
196
196
  /**
197
197
  *
198
198
  * @type {string}
199
199
  * @memberof APIAddress
200
200
  */
201
- 'region': string | null;
201
+ 'region'?: string | null;
202
+ /**
203
+ *
204
+ * @type {string}
205
+ * @memberof APIAddress
206
+ */
207
+ 'addressId': string;
202
208
  }
203
209
  /**
204
210
  *
@@ -211,7 +217,7 @@ interface APIAddressCreate {
211
217
  * @type {string}
212
218
  * @memberof APIAddressCreate
213
219
  */
214
- 'street1': string | null;
220
+ 'street1'?: string | null;
215
221
  /**
216
222
  *
217
223
  * @type {string}
@@ -223,25 +229,25 @@ interface APIAddressCreate {
223
229
  * @type {string}
224
230
  * @memberof APIAddressCreate
225
231
  */
226
- 'country': string | null;
232
+ 'country'?: string | null;
227
233
  /**
228
234
  *
229
235
  * @type {string}
230
236
  * @memberof APIAddressCreate
231
237
  */
232
- 'locality': string | null;
238
+ 'locality'?: string | null;
233
239
  /**
234
240
  *
235
241
  * @type {string}
236
242
  * @memberof APIAddressCreate
237
243
  */
238
- 'postalCode': string | null;
244
+ 'postalCode'?: string | null;
239
245
  /**
240
246
  *
241
247
  * @type {string}
242
248
  * @memberof APIAddressCreate
243
249
  */
244
- 'region': string | null;
250
+ 'region'?: string | null;
245
251
  }
246
252
  /**
247
253
  *
@@ -254,7 +260,7 @@ interface APIAddressUpdate {
254
260
  * @type {string}
255
261
  * @memberof APIAddressUpdate
256
262
  */
257
- 'street1': string | null;
263
+ 'street1'?: string | null;
258
264
  /**
259
265
  *
260
266
  * @type {string}
@@ -266,25 +272,25 @@ interface APIAddressUpdate {
266
272
  * @type {string}
267
273
  * @memberof APIAddressUpdate
268
274
  */
269
- 'country': string | null;
275
+ 'country'?: string | null;
270
276
  /**
271
277
  *
272
278
  * @type {string}
273
279
  * @memberof APIAddressUpdate
274
280
  */
275
- 'locality': string | null;
281
+ 'locality'?: string | null;
276
282
  /**
277
283
  *
278
284
  * @type {string}
279
285
  * @memberof APIAddressUpdate
280
286
  */
281
- 'postalCode': string | null;
287
+ 'postalCode'?: string | null;
282
288
  /**
283
289
  *
284
290
  * @type {string}
285
291
  * @memberof APIAddressUpdate
286
292
  */
287
- 'region': string | null;
293
+ 'region'?: string | null;
288
294
  /**
289
295
  *
290
296
  * @type {string}
@@ -438,10 +444,10 @@ interface APIContact {
438
444
  'tags'?: Array<string>;
439
445
  /**
440
446
  *
441
- * @type {AddressApi}
447
+ * @type {BaseAddressApi}
442
448
  * @memberof APIContact
443
449
  */
444
- 'primaryAddress'?: AddressApi | null;
450
+ 'primaryAddress'?: BaseAddressApi | null;
445
451
  /**
446
452
  *
447
453
  * @type {Array<AddressApi>}
@@ -450,26 +456,22 @@ interface APIContact {
450
456
  'addresses'?: Array<AddressApi>;
451
457
  /**
452
458
  *
453
- * @type {{ [key: string]: SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi1; }}
459
+ * @type {Array<ProviderEmailsApi>}
454
460
  * @memberof APIContact
455
461
  */
456
- 'providerEmails'?: {
457
- [key: string]: SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi1;
458
- };
462
+ 'providerEmails'?: Array<ProviderEmailsApi>;
459
463
  /**
460
464
  *
461
- * @type {{ [key: string]: SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi2; }}
465
+ * @type {Array<ProviderPhonesApi>}
462
466
  * @memberof APIContact
463
467
  */
464
- 'providerPhones'?: {
465
- [key: string]: SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi2;
466
- };
468
+ 'providerPhones'?: Array<ProviderPhonesApi>;
467
469
  /**
468
470
  *
469
- * @type {Array<ProviderAddressApi>}
471
+ * @type {Array<ProviderAddressesApi>}
470
472
  * @memberof APIContact
471
473
  */
472
- 'providerAddresses'?: Array<ProviderAddressApi>;
474
+ 'providerAddresses'?: Array<ProviderAddressesApi>;
473
475
  /**
474
476
  *
475
477
  * @type {ContactTypeDataApi}
@@ -837,12 +839,6 @@ interface APIEmail {
837
839
  * @memberof APIEmail
838
840
  */
839
841
  'email': string;
840
- /**
841
- *
842
- * @type {boolean}
843
- * @memberof APIEmail
844
- */
845
- 'isPrimary'?: boolean;
846
842
  }
847
843
  /**
848
844
  *
@@ -869,12 +865,6 @@ interface APIEmailUpdate {
869
865
  * @memberof APIEmailUpdate
870
866
  */
871
867
  'email': string;
872
- /**
873
- *
874
- * @type {boolean}
875
- * @memberof APIEmailUpdate
876
- */
877
- 'isPrimary'?: boolean | null;
878
868
  }
879
869
  /**
880
870
  *
@@ -1238,48 +1228,91 @@ interface APIMessageCreate {
1238
1228
  /**
1239
1229
  *
1240
1230
  * @export
1241
- * @interface APIPhoneNumber
1231
+ * @interface APIPhone
1242
1232
  */
1243
- interface APIPhoneNumber {
1233
+ interface APIPhone {
1244
1234
  /**
1245
1235
  *
1246
1236
  * @type {string}
1247
- * @memberof APIPhoneNumber
1237
+ * @memberof APIPhone
1248
1238
  */
1249
1239
  'phoneId': string;
1250
1240
  /**
1251
1241
  *
1252
1242
  * @type {string}
1253
- * @memberof APIPhoneNumber
1243
+ * @memberof APIPhone
1254
1244
  */
1255
1245
  'phone': string;
1256
1246
  }
1257
1247
  /**
1258
1248
  *
1259
1249
  * @export
1260
- * @interface APIPhoneNumberCreate
1250
+ * @interface APIPhoneCreate
1261
1251
  */
1262
- interface APIPhoneNumberCreate {
1252
+ interface APIPhoneCreate {
1263
1253
  /**
1264
1254
  *
1265
1255
  * @type {string}
1266
- * @memberof APIPhoneNumberCreate
1256
+ * @memberof APIPhoneCreate
1267
1257
  */
1268
1258
  'phone': string;
1269
1259
  }
1270
1260
  /**
1271
1261
  *
1272
1262
  * @export
1273
- * @interface APIPhoneNumberUpdate
1263
+ * @interface APIPhoneUpdate
1274
1264
  */
1275
- interface APIPhoneNumberUpdate {
1265
+ interface APIPhoneUpdate {
1276
1266
  /**
1277
1267
  *
1278
1268
  * @type {string}
1279
- * @memberof APIPhoneNumberUpdate
1269
+ * @memberof APIPhoneUpdate
1280
1270
  */
1281
1271
  'phone': string;
1282
1272
  }
1273
+ /**
1274
+ *
1275
+ * @export
1276
+ * @interface APIProvider
1277
+ */
1278
+ interface APIProvider {
1279
+ /**
1280
+ *
1281
+ * @type {string}
1282
+ * @memberof APIProvider
1283
+ */
1284
+ 'providerApiLogin'?: string | null;
1285
+ /**
1286
+ *
1287
+ * @type {string}
1288
+ * @memberof APIProvider
1289
+ */
1290
+ 'webhookLogin'?: string | null;
1291
+ /**
1292
+ *
1293
+ * @type {string}
1294
+ * @memberof APIProvider
1295
+ */
1296
+ 'providerId': string;
1297
+ /**
1298
+ *
1299
+ * @type {string}
1300
+ * @memberof APIProvider
1301
+ */
1302
+ 'providerType': string;
1303
+ /**
1304
+ *
1305
+ * @type {string}
1306
+ * @memberof APIProvider
1307
+ */
1308
+ 'providerAccountId': string;
1309
+ /**
1310
+ *
1311
+ * @type {string}
1312
+ * @memberof APIProvider
1313
+ */
1314
+ 'providerInstance': string;
1315
+ }
1283
1316
  /**
1284
1317
  *
1285
1318
  * @export
@@ -1528,7 +1561,7 @@ interface AddressApi {
1528
1561
  * @type {string}
1529
1562
  * @memberof AddressApi
1530
1563
  */
1531
- 'street1': string | null;
1564
+ 'street1'?: string | null;
1532
1565
  /**
1533
1566
  *
1534
1567
  * @type {string}
@@ -1540,25 +1573,25 @@ interface AddressApi {
1540
1573
  * @type {string}
1541
1574
  * @memberof AddressApi
1542
1575
  */
1543
- 'country': string | null;
1576
+ 'country'?: string | null;
1544
1577
  /**
1545
1578
  *
1546
1579
  * @type {string}
1547
1580
  * @memberof AddressApi
1548
1581
  */
1549
- 'locality': string | null;
1582
+ 'locality'?: string | null;
1550
1583
  /**
1551
1584
  *
1552
1585
  * @type {string}
1553
1586
  * @memberof AddressApi
1554
1587
  */
1555
- 'postalCode': string | null;
1588
+ 'postalCode'?: string | null;
1556
1589
  /**
1557
1590
  *
1558
1591
  * @type {string}
1559
1592
  * @memberof AddressApi
1560
1593
  */
1561
- 'region': string | null;
1594
+ 'region'?: string | null;
1562
1595
  /**
1563
1596
  *
1564
1597
  * @type {string}
@@ -1580,10 +1613,10 @@ interface AttributeSourceApi {
1580
1613
  'providerId': string;
1581
1614
  /**
1582
1615
  *
1583
- * @type {string}
1616
+ * @type {any}
1584
1617
  * @memberof AttributeSourceApi
1585
1618
  */
1586
- 'value': string;
1619
+ 'value': any;
1587
1620
  }
1588
1621
  /**
1589
1622
  *
@@ -1675,7 +1708,7 @@ interface BaseAddressApi {
1675
1708
  * @type {string}
1676
1709
  * @memberof BaseAddressApi
1677
1710
  */
1678
- 'street1': string | null;
1711
+ 'street1'?: string | null;
1679
1712
  /**
1680
1713
  *
1681
1714
  * @type {string}
@@ -1687,25 +1720,25 @@ interface BaseAddressApi {
1687
1720
  * @type {string}
1688
1721
  * @memberof BaseAddressApi
1689
1722
  */
1690
- 'country': string | null;
1723
+ 'country'?: string | null;
1691
1724
  /**
1692
1725
  *
1693
1726
  * @type {string}
1694
1727
  * @memberof BaseAddressApi
1695
1728
  */
1696
- 'locality': string | null;
1729
+ 'locality'?: string | null;
1697
1730
  /**
1698
1731
  *
1699
1732
  * @type {string}
1700
1733
  * @memberof BaseAddressApi
1701
1734
  */
1702
- 'postalCode': string | null;
1735
+ 'postalCode'?: string | null;
1703
1736
  /**
1704
1737
  *
1705
1738
  * @type {string}
1706
1739
  * @memberof BaseAddressApi
1707
1740
  */
1708
- 'region': string | null;
1741
+ 'region'?: string | null;
1709
1742
  }
1710
1743
  /**
1711
1744
  *
@@ -1822,25 +1855,6 @@ interface EmailApi {
1822
1855
  * @memberof EmailApi
1823
1856
  */
1824
1857
  'email': string;
1825
- /**
1826
- *
1827
- * @type {boolean}
1828
- * @memberof EmailApi
1829
- */
1830
- 'isPrimary'?: boolean;
1831
- }
1832
- /**
1833
- *
1834
- * @export
1835
- * @interface EmailAttributionApi
1836
- */
1837
- interface EmailAttributionApi {
1838
- /**
1839
- *
1840
- * @type {Array<string>}
1841
- * @memberof EmailAttributionApi
1842
- */
1843
- 'channels': Array<string>;
1844
1858
  }
1845
1859
  /**
1846
1860
  *
@@ -1983,10 +1997,10 @@ interface ListResponseAPIManagedPhoneNumber {
1983
1997
  interface ListResponseAPIProvider {
1984
1998
  /**
1985
1999
  *
1986
- * @type {Array<object>}
2000
+ * @type {Array<APIProvider>}
1987
2001
  * @memberof ListResponseAPIProvider
1988
2002
  */
1989
- 'data': Array<object>;
2003
+ 'data': Array<APIProvider>;
1990
2004
  }
1991
2005
  /**
1992
2006
  *
@@ -2241,40 +2255,65 @@ interface PhoneApi {
2241
2255
  /**
2242
2256
  *
2243
2257
  * @export
2244
- * @interface PhoneAttributionApi
2258
+ * @interface ProviderAddressesApi
2245
2259
  */
2246
- interface PhoneAttributionApi {
2260
+ interface ProviderAddressesApi {
2247
2261
  /**
2248
2262
  *
2249
- * @type {Array<string>}
2250
- * @memberof PhoneAttributionApi
2263
+ * @type {BaseAddressApi}
2264
+ * @memberof ProviderAddressesApi
2251
2265
  */
2252
- 'channels': Array<string>;
2266
+ 'address': BaseAddressApi;
2267
+ /**
2268
+ *
2269
+ * @type {Array<ProviderAttributionApi>}
2270
+ * @memberof ProviderAddressesApi
2271
+ */
2272
+ 'providers': Array<ProviderAttributionApi>;
2253
2273
  }
2254
2274
  /**
2255
2275
  *
2256
2276
  * @export
2257
- * @interface ProviderAddressApi
2277
+ * @interface ProviderAttributionApi
2258
2278
  */
2259
- interface ProviderAddressApi {
2279
+ interface ProviderAttributionApi {
2260
2280
  /**
2261
2281
  *
2262
2282
  * @type {string}
2263
- * @memberof ProviderAddressApi
2283
+ * @memberof ProviderAttributionApi
2264
2284
  */
2265
2285
  'providerId': string;
2266
2286
  /**
2267
2287
  *
2268
- * @type {BaseAddressApi}
2269
- * @memberof ProviderAddressApi
2288
+ * @type {string}
2289
+ * @memberof ProviderAttributionApi
2270
2290
  */
2271
- 'address': BaseAddressApi;
2291
+ 'createdAt': string;
2292
+ /**
2293
+ *
2294
+ * @type {Array<string>}
2295
+ * @memberof ProviderAttributionApi
2296
+ */
2297
+ 'channels': Array<string>;
2298
+ }
2299
+ /**
2300
+ *
2301
+ * @export
2302
+ * @interface ProviderEmailsApi
2303
+ */
2304
+ interface ProviderEmailsApi {
2272
2305
  /**
2273
2306
  *
2274
2307
  * @type {string}
2275
- * @memberof ProviderAddressApi
2308
+ * @memberof ProviderEmailsApi
2309
+ */
2310
+ 'email': string;
2311
+ /**
2312
+ *
2313
+ * @type {Array<ProviderAttributionApi>}
2314
+ * @memberof ProviderEmailsApi
2276
2315
  */
2277
- 'channelId'?: string | null;
2316
+ 'providers': Array<ProviderAttributionApi>;
2278
2317
  }
2279
2318
  /**
2280
2319
  *
@@ -2293,6 +2332,25 @@ declare const ProviderMessageApiConversationTypeEnum: {
2293
2332
  readonly Provider: "PROVIDER";
2294
2333
  };
2295
2334
  type ProviderMessageApiConversationTypeEnum = typeof ProviderMessageApiConversationTypeEnum[keyof typeof ProviderMessageApiConversationTypeEnum];
2335
+ /**
2336
+ *
2337
+ * @export
2338
+ * @interface ProviderPhonesApi
2339
+ */
2340
+ interface ProviderPhonesApi {
2341
+ /**
2342
+ *
2343
+ * @type {string}
2344
+ * @memberof ProviderPhonesApi
2345
+ */
2346
+ 'phone': string;
2347
+ /**
2348
+ *
2349
+ * @type {Array<ProviderAttributionApi>}
2350
+ * @memberof ProviderPhonesApi
2351
+ */
2352
+ 'providers': Array<ProviderAttributionApi>;
2353
+ }
2296
2354
  /**
2297
2355
  *
2298
2356
  * @export
@@ -2482,36 +2540,6 @@ declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi4Conversation
2482
2540
  readonly Email: "EMAIL";
2483
2541
  };
2484
2542
  type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum];
2485
- /**
2486
- *
2487
- * @export
2488
- * @interface SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi1
2489
- */
2490
- interface SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi1 {
2491
- /**
2492
- *
2493
- * @type {{ [key: string]: EmailAttributionApi; }}
2494
- * @memberof SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi1
2495
- */
2496
- 'providers': {
2497
- [key: string]: EmailAttributionApi;
2498
- };
2499
- }
2500
- /**
2501
- *
2502
- * @export
2503
- * @interface SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi2
2504
- */
2505
- interface SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi2 {
2506
- /**
2507
- *
2508
- * @type {{ [key: string]: PhoneAttributionApi; }}
2509
- * @memberof SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi2
2510
- */
2511
- 'providers': {
2512
- [key: string]: PhoneAttributionApi;
2513
- };
2514
- }
2515
2543
  /**
2516
2544
  *
2517
2545
  * @export
@@ -2768,6 +2796,14 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
2768
2796
  * @throws {RequiredError}
2769
2797
  */
2770
2798
  addressesDelete: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2799
+ /**
2800
+ * Addresses Get
2801
+ * @summary Addresses Get
2802
+ * @param {string} addressId
2803
+ * @param {*} [options] Override http request option.
2804
+ * @throws {RequiredError}
2805
+ */
2806
+ addressesGet: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2771
2807
  /**
2772
2808
  * Addresses Update
2773
2809
  * @summary Addresses Update
@@ -2888,31 +2924,39 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
2888
2924
  */
2889
2925
  emailsUpdate: (emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2890
2926
  /**
2891
- * PhoneNumbers Create
2892
- * @summary PhoneNumbers Create
2927
+ * Phones Create
2928
+ * @summary Phones Create
2893
2929
  * @param {string} contactId
2894
- * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
2930
+ * @param {APIPhoneCreate} aPIPhoneCreate
2931
+ * @param {*} [options] Override http request option.
2932
+ * @throws {RequiredError}
2933
+ */
2934
+ phonesCreate: (contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2935
+ /**
2936
+ * Phones Delete
2937
+ * @summary Phones Delete
2938
+ * @param {string} phoneId
2895
2939
  * @param {*} [options] Override http request option.
2896
2940
  * @throws {RequiredError}
2897
2941
  */
2898
- phoneNumbersCreate: (contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2942
+ phonesDelete: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2899
2943
  /**
2900
- * PhoneNumbers Delete
2901
- * @summary PhoneNumbers Delete
2902
- * @param {string} phoneNumberId
2944
+ * Phones Get
2945
+ * @summary Phones Get
2946
+ * @param {string} phoneId
2903
2947
  * @param {*} [options] Override http request option.
2904
2948
  * @throws {RequiredError}
2905
2949
  */
2906
- phoneNumbersDelete: (phoneNumberId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2950
+ phonesGet: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2907
2951
  /**
2908
- * PhoneNumbers Update
2909
- * @summary PhoneNumbers Update
2910
- * @param {string} phoneNumberId
2911
- * @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
2952
+ * Phones Update
2953
+ * @summary Phones Update
2954
+ * @param {string} phoneId
2955
+ * @param {APIPhoneUpdate} aPIPhoneUpdate
2912
2956
  * @param {*} [options] Override http request option.
2913
2957
  * @throws {RequiredError}
2914
2958
  */
2915
- phoneNumbersUpdate: (phoneNumberId: string, aPIPhoneNumberUpdate: APIPhoneNumberUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2959
+ phonesUpdate: (phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2916
2960
  };
2917
2961
  /**
2918
2962
  * ContactsApi - functional programming interface
@@ -2936,6 +2980,14 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
2936
2980
  * @throws {RequiredError}
2937
2981
  */
2938
2982
  addressesDelete(addressId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2983
+ /**
2984
+ * Addresses Get
2985
+ * @summary Addresses Get
2986
+ * @param {string} addressId
2987
+ * @param {*} [options] Override http request option.
2988
+ * @throws {RequiredError}
2989
+ */
2990
+ addressesGet(addressId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAddress>>;
2939
2991
  /**
2940
2992
  * Addresses Update
2941
2993
  * @summary Addresses Update
@@ -3056,31 +3108,39 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
3056
3108
  */
3057
3109
  emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
3058
3110
  /**
3059
- * PhoneNumbers Create
3060
- * @summary PhoneNumbers Create
3111
+ * Phones Create
3112
+ * @summary Phones Create
3061
3113
  * @param {string} contactId
3062
- * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
3114
+ * @param {APIPhoneCreate} aPIPhoneCreate
3063
3115
  * @param {*} [options] Override http request option.
3064
3116
  * @throws {RequiredError}
3065
3117
  */
3066
- phoneNumbersCreate(contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhoneNumber>>;
3118
+ phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
3067
3119
  /**
3068
- * PhoneNumbers Delete
3069
- * @summary PhoneNumbers Delete
3070
- * @param {string} phoneNumberId
3120
+ * Phones Delete
3121
+ * @summary Phones Delete
3122
+ * @param {string} phoneId
3071
3123
  * @param {*} [options] Override http request option.
3072
3124
  * @throws {RequiredError}
3073
3125
  */
3074
- phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3126
+ phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3075
3127
  /**
3076
- * PhoneNumbers Update
3077
- * @summary PhoneNumbers Update
3078
- * @param {string} phoneNumberId
3079
- * @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
3128
+ * Phones Get
3129
+ * @summary Phones Get
3130
+ * @param {string} phoneId
3080
3131
  * @param {*} [options] Override http request option.
3081
3132
  * @throws {RequiredError}
3082
3133
  */
3083
- phoneNumbersUpdate(phoneNumberId: string, aPIPhoneNumberUpdate: APIPhoneNumberUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhoneNumber>>;
3134
+ phonesGet(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
3135
+ /**
3136
+ * Phones Update
3137
+ * @summary Phones Update
3138
+ * @param {string} phoneId
3139
+ * @param {APIPhoneUpdate} aPIPhoneUpdate
3140
+ * @param {*} [options] Override http request option.
3141
+ * @throws {RequiredError}
3142
+ */
3143
+ phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
3084
3144
  };
3085
3145
  /**
3086
3146
  * ContactsApi - factory interface
@@ -3104,6 +3164,14 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
3104
3164
  * @throws {RequiredError}
3105
3165
  */
3106
3166
  addressesDelete(addressId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3167
+ /**
3168
+ * Addresses Get
3169
+ * @summary Addresses Get
3170
+ * @param {string} addressId
3171
+ * @param {*} [options] Override http request option.
3172
+ * @throws {RequiredError}
3173
+ */
3174
+ addressesGet(addressId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIAddress>;
3107
3175
  /**
3108
3176
  * Addresses Update
3109
3177
  * @summary Addresses Update
@@ -3224,31 +3292,39 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
3224
3292
  */
3225
3293
  emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
3226
3294
  /**
3227
- * PhoneNumbers Create
3228
- * @summary PhoneNumbers Create
3295
+ * Phones Create
3296
+ * @summary Phones Create
3229
3297
  * @param {string} contactId
3230
- * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
3298
+ * @param {APIPhoneCreate} aPIPhoneCreate
3299
+ * @param {*} [options] Override http request option.
3300
+ * @throws {RequiredError}
3301
+ */
3302
+ phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
3303
+ /**
3304
+ * Phones Delete
3305
+ * @summary Phones Delete
3306
+ * @param {string} phoneId
3231
3307
  * @param {*} [options] Override http request option.
3232
3308
  * @throws {RequiredError}
3233
3309
  */
3234
- phoneNumbersCreate(contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhoneNumber>;
3310
+ phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3235
3311
  /**
3236
- * PhoneNumbers Delete
3237
- * @summary PhoneNumbers Delete
3238
- * @param {string} phoneNumberId
3312
+ * Phones Get
3313
+ * @summary Phones Get
3314
+ * @param {string} phoneId
3239
3315
  * @param {*} [options] Override http request option.
3240
3316
  * @throws {RequiredError}
3241
3317
  */
3242
- phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3318
+ phonesGet(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
3243
3319
  /**
3244
- * PhoneNumbers Update
3245
- * @summary PhoneNumbers Update
3246
- * @param {string} phoneNumberId
3247
- * @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
3320
+ * Phones Update
3321
+ * @summary Phones Update
3322
+ * @param {string} phoneId
3323
+ * @param {APIPhoneUpdate} aPIPhoneUpdate
3248
3324
  * @param {*} [options] Override http request option.
3249
3325
  * @throws {RequiredError}
3250
3326
  */
3251
- phoneNumbersUpdate(phoneNumberId: string, aPIPhoneNumberUpdate: APIPhoneNumberUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhoneNumber>;
3327
+ phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
3252
3328
  };
3253
3329
  /**
3254
3330
  * ContactsApi - object-oriented interface
@@ -3276,6 +3352,15 @@ declare class ContactsApi extends BaseAPI {
3276
3352
  * @memberof ContactsApi
3277
3353
  */
3278
3354
  addressesDelete(addressId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
3355
+ /**
3356
+ * Addresses Get
3357
+ * @summary Addresses Get
3358
+ * @param {string} addressId
3359
+ * @param {*} [options] Override http request option.
3360
+ * @throws {RequiredError}
3361
+ * @memberof ContactsApi
3362
+ */
3363
+ addressesGet(addressId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAddress, any>>;
3279
3364
  /**
3280
3365
  * Addresses Update
3281
3366
  * @summary Addresses Update
@@ -3409,34 +3494,43 @@ declare class ContactsApi extends BaseAPI {
3409
3494
  */
3410
3495
  emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
3411
3496
  /**
3412
- * PhoneNumbers Create
3413
- * @summary PhoneNumbers Create
3497
+ * Phones Create
3498
+ * @summary Phones Create
3414
3499
  * @param {string} contactId
3415
- * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
3500
+ * @param {APIPhoneCreate} aPIPhoneCreate
3416
3501
  * @param {*} [options] Override http request option.
3417
3502
  * @throws {RequiredError}
3418
3503
  * @memberof ContactsApi
3419
3504
  */
3420
- phoneNumbersCreate(contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhoneNumber, any>>;
3505
+ phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
3421
3506
  /**
3422
- * PhoneNumbers Delete
3423
- * @summary PhoneNumbers Delete
3424
- * @param {string} phoneNumberId
3507
+ * Phones Delete
3508
+ * @summary Phones Delete
3509
+ * @param {string} phoneId
3425
3510
  * @param {*} [options] Override http request option.
3426
3511
  * @throws {RequiredError}
3427
3512
  * @memberof ContactsApi
3428
3513
  */
3429
- phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
3514
+ phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
3430
3515
  /**
3431
- * PhoneNumbers Update
3432
- * @summary PhoneNumbers Update
3433
- * @param {string} phoneNumberId
3434
- * @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
3516
+ * Phones Get
3517
+ * @summary Phones Get
3518
+ * @param {string} phoneId
3435
3519
  * @param {*} [options] Override http request option.
3436
3520
  * @throws {RequiredError}
3437
3521
  * @memberof ContactsApi
3438
3522
  */
3439
- phoneNumbersUpdate(phoneNumberId: string, aPIPhoneNumberUpdate: APIPhoneNumberUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhoneNumber, any>>;
3523
+ phonesGet(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
3524
+ /**
3525
+ * Phones Update
3526
+ * @summary Phones Update
3527
+ * @param {string} phoneId
3528
+ * @param {APIPhoneUpdate} aPIPhoneUpdate
3529
+ * @param {*} [options] Override http request option.
3530
+ * @throws {RequiredError}
3531
+ * @memberof ContactsApi
3532
+ */
3533
+ phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
3440
3534
  }
3441
3535
  /**
3442
3536
  * ConversationsApi - axios parameter creator
@@ -4094,7 +4188,7 @@ declare const ProvidersApiFp: (configuration?: Configuration) => {
4094
4188
  * @param {*} [options] Override http request option.
4095
4189
  * @throws {RequiredError}
4096
4190
  */
4097
- providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
4191
+ providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIProvider>>;
4098
4192
  /**
4099
4193
  * Providers Get
4100
4194
  * @summary Providers Get
@@ -4102,7 +4196,7 @@ declare const ProvidersApiFp: (configuration?: Configuration) => {
4102
4196
  * @param {*} [options] Override http request option.
4103
4197
  * @throws {RequiredError}
4104
4198
  */
4105
- providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
4199
+ providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIProvider>>;
4106
4200
  /**
4107
4201
  * Providers List
4108
4202
  * @summary Providers List
@@ -4118,7 +4212,7 @@ declare const ProvidersApiFp: (configuration?: Configuration) => {
4118
4212
  * @param {*} [options] Override http request option.
4119
4213
  * @throws {RequiredError}
4120
4214
  */
4121
- providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
4215
+ providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIProvider>>;
4122
4216
  };
4123
4217
  /**
4124
4218
  * ProvidersApi - factory interface
@@ -4132,7 +4226,7 @@ declare const ProvidersApiFactory: (configuration?: Configuration, basePath?: st
4132
4226
  * @param {*} [options] Override http request option.
4133
4227
  * @throws {RequiredError}
4134
4228
  */
4135
- providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<object>;
4229
+ providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIProvider>;
4136
4230
  /**
4137
4231
  * Providers Get
4138
4232
  * @summary Providers Get
@@ -4140,7 +4234,7 @@ declare const ProvidersApiFactory: (configuration?: Configuration, basePath?: st
4140
4234
  * @param {*} [options] Override http request option.
4141
4235
  * @throws {RequiredError}
4142
4236
  */
4143
- providersGet(providerId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
4237
+ providersGet(providerId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIProvider>;
4144
4238
  /**
4145
4239
  * Providers List
4146
4240
  * @summary Providers List
@@ -4156,7 +4250,7 @@ declare const ProvidersApiFactory: (configuration?: Configuration, basePath?: st
4156
4250
  * @param {*} [options] Override http request option.
4157
4251
  * @throws {RequiredError}
4158
4252
  */
4159
- providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): AxiosPromise<object>;
4253
+ providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIProvider>;
4160
4254
  };
4161
4255
  /**
4162
4256
  * ProvidersApi - object-oriented interface
@@ -4173,7 +4267,7 @@ declare class ProvidersApi extends BaseAPI {
4173
4267
  * @throws {RequiredError}
4174
4268
  * @memberof ProvidersApi
4175
4269
  */
4176
- providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
4270
+ providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIProvider, any>>;
4177
4271
  /**
4178
4272
  * Providers Get
4179
4273
  * @summary Providers Get
@@ -4182,7 +4276,7 @@ declare class ProvidersApi extends BaseAPI {
4182
4276
  * @throws {RequiredError}
4183
4277
  * @memberof ProvidersApi
4184
4278
  */
4185
- providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
4279
+ providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIProvider, any>>;
4186
4280
  /**
4187
4281
  * Providers List
4188
4282
  * @summary Providers List
@@ -4200,7 +4294,7 @@ declare class ProvidersApi extends BaseAPI {
4200
4294
  * @throws {RequiredError}
4201
4295
  * @memberof ProvidersApi
4202
4296
  */
4203
- providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
4297
+ providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIProvider, any>>;
4204
4298
  }
4205
4299
  /**
4206
4300
  * ReservationsApi - axios parameter creator
@@ -4347,6 +4441,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
4347
4441
  * @throws {RequiredError}
4348
4442
  */
4349
4443
  addressesDelete: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4444
+ /**
4445
+ * Addresses Get
4446
+ * @summary Addresses Get
4447
+ * @param {string} addressId
4448
+ * @param {*} [options] Override http request option.
4449
+ * @throws {RequiredError}
4450
+ */
4451
+ addressesGet: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4350
4452
  /**
4351
4453
  * Addresses Update
4352
4454
  * @summary Addresses Update
@@ -4575,31 +4677,39 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
4575
4677
  */
4576
4678
  messagesList: (searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4577
4679
  /**
4578
- * PhoneNumbers Create
4579
- * @summary PhoneNumbers Create
4680
+ * Phones Create
4681
+ * @summary Phones Create
4580
4682
  * @param {string} contactId
4581
- * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
4683
+ * @param {APIPhoneCreate} aPIPhoneCreate
4684
+ * @param {*} [options] Override http request option.
4685
+ * @throws {RequiredError}
4686
+ */
4687
+ phonesCreate: (contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4688
+ /**
4689
+ * Phones Delete
4690
+ * @summary Phones Delete
4691
+ * @param {string} phoneId
4582
4692
  * @param {*} [options] Override http request option.
4583
4693
  * @throws {RequiredError}
4584
4694
  */
4585
- phoneNumbersCreate: (contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4695
+ phonesDelete: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4586
4696
  /**
4587
- * PhoneNumbers Delete
4588
- * @summary PhoneNumbers Delete
4589
- * @param {string} phoneNumberId
4697
+ * Phones Get
4698
+ * @summary Phones Get
4699
+ * @param {string} phoneId
4590
4700
  * @param {*} [options] Override http request option.
4591
4701
  * @throws {RequiredError}
4592
4702
  */
4593
- phoneNumbersDelete: (phoneNumberId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4703
+ phonesGet: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4594
4704
  /**
4595
- * PhoneNumbers Update
4596
- * @summary PhoneNumbers Update
4597
- * @param {string} phoneNumberId
4598
- * @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
4705
+ * Phones Update
4706
+ * @summary Phones Update
4707
+ * @param {string} phoneId
4708
+ * @param {APIPhoneUpdate} aPIPhoneUpdate
4599
4709
  * @param {*} [options] Override http request option.
4600
4710
  * @throws {RequiredError}
4601
4711
  */
4602
- phoneNumbersUpdate: (phoneNumberId: string, aPIPhoneNumberUpdate: APIPhoneNumberUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4712
+ phonesUpdate: (phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4603
4713
  /**
4604
4714
  * Providers Create
4605
4715
  * @summary Providers Create
@@ -4692,6 +4802,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
4692
4802
  * @throws {RequiredError}
4693
4803
  */
4694
4804
  addressesDelete(addressId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4805
+ /**
4806
+ * Addresses Get
4807
+ * @summary Addresses Get
4808
+ * @param {string} addressId
4809
+ * @param {*} [options] Override http request option.
4810
+ * @throws {RequiredError}
4811
+ */
4812
+ addressesGet(addressId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAddress>>;
4695
4813
  /**
4696
4814
  * Addresses Update
4697
4815
  * @summary Addresses Update
@@ -4920,31 +5038,39 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
4920
5038
  */
4921
5039
  messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
4922
5040
  /**
4923
- * PhoneNumbers Create
4924
- * @summary PhoneNumbers Create
5041
+ * Phones Create
5042
+ * @summary Phones Create
4925
5043
  * @param {string} contactId
4926
- * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
5044
+ * @param {APIPhoneCreate} aPIPhoneCreate
4927
5045
  * @param {*} [options] Override http request option.
4928
5046
  * @throws {RequiredError}
4929
5047
  */
4930
- phoneNumbersCreate(contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhoneNumber>>;
5048
+ phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
4931
5049
  /**
4932
- * PhoneNumbers Delete
4933
- * @summary PhoneNumbers Delete
4934
- * @param {string} phoneNumberId
5050
+ * Phones Delete
5051
+ * @summary Phones Delete
5052
+ * @param {string} phoneId
4935
5053
  * @param {*} [options] Override http request option.
4936
5054
  * @throws {RequiredError}
4937
5055
  */
4938
- phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5056
+ phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4939
5057
  /**
4940
- * PhoneNumbers Update
4941
- * @summary PhoneNumbers Update
4942
- * @param {string} phoneNumberId
4943
- * @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
5058
+ * Phones Get
5059
+ * @summary Phones Get
5060
+ * @param {string} phoneId
4944
5061
  * @param {*} [options] Override http request option.
4945
5062
  * @throws {RequiredError}
4946
5063
  */
4947
- phoneNumbersUpdate(phoneNumberId: string, aPIPhoneNumberUpdate: APIPhoneNumberUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhoneNumber>>;
5064
+ phonesGet(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
5065
+ /**
5066
+ * Phones Update
5067
+ * @summary Phones Update
5068
+ * @param {string} phoneId
5069
+ * @param {APIPhoneUpdate} aPIPhoneUpdate
5070
+ * @param {*} [options] Override http request option.
5071
+ * @throws {RequiredError}
5072
+ */
5073
+ phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
4948
5074
  /**
4949
5075
  * Providers Create
4950
5076
  * @summary Providers Create
@@ -4952,7 +5078,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
4952
5078
  * @param {*} [options] Override http request option.
4953
5079
  * @throws {RequiredError}
4954
5080
  */
4955
- providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
5081
+ providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIProvider>>;
4956
5082
  /**
4957
5083
  * Providers Get
4958
5084
  * @summary Providers Get
@@ -4960,7 +5086,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
4960
5086
  * @param {*} [options] Override http request option.
4961
5087
  * @throws {RequiredError}
4962
5088
  */
4963
- providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
5089
+ providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIProvider>>;
4964
5090
  /**
4965
5091
  * Providers List
4966
5092
  * @summary Providers List
@@ -4976,7 +5102,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
4976
5102
  * @param {*} [options] Override http request option.
4977
5103
  * @throws {RequiredError}
4978
5104
  */
4979
- providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
5105
+ providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIProvider>>;
4980
5106
  /**
4981
5107
  * Reservations Get
4982
5108
  * @summary Reservations Get
@@ -5037,6 +5163,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
5037
5163
  * @throws {RequiredError}
5038
5164
  */
5039
5165
  addressesDelete(addressId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5166
+ /**
5167
+ * Addresses Get
5168
+ * @summary Addresses Get
5169
+ * @param {string} addressId
5170
+ * @param {*} [options] Override http request option.
5171
+ * @throws {RequiredError}
5172
+ */
5173
+ addressesGet(addressId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIAddress>;
5040
5174
  /**
5041
5175
  * Addresses Update
5042
5176
  * @summary Addresses Update
@@ -5265,31 +5399,39 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
5265
5399
  */
5266
5400
  messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
5267
5401
  /**
5268
- * PhoneNumbers Create
5269
- * @summary PhoneNumbers Create
5402
+ * Phones Create
5403
+ * @summary Phones Create
5270
5404
  * @param {string} contactId
5271
- * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
5405
+ * @param {APIPhoneCreate} aPIPhoneCreate
5406
+ * @param {*} [options] Override http request option.
5407
+ * @throws {RequiredError}
5408
+ */
5409
+ phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
5410
+ /**
5411
+ * Phones Delete
5412
+ * @summary Phones Delete
5413
+ * @param {string} phoneId
5272
5414
  * @param {*} [options] Override http request option.
5273
5415
  * @throws {RequiredError}
5274
5416
  */
5275
- phoneNumbersCreate(contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhoneNumber>;
5417
+ phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5276
5418
  /**
5277
- * PhoneNumbers Delete
5278
- * @summary PhoneNumbers Delete
5279
- * @param {string} phoneNumberId
5419
+ * Phones Get
5420
+ * @summary Phones Get
5421
+ * @param {string} phoneId
5280
5422
  * @param {*} [options] Override http request option.
5281
5423
  * @throws {RequiredError}
5282
5424
  */
5283
- phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5425
+ phonesGet(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
5284
5426
  /**
5285
- * PhoneNumbers Update
5286
- * @summary PhoneNumbers Update
5287
- * @param {string} phoneNumberId
5288
- * @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
5427
+ * Phones Update
5428
+ * @summary Phones Update
5429
+ * @param {string} phoneId
5430
+ * @param {APIPhoneUpdate} aPIPhoneUpdate
5289
5431
  * @param {*} [options] Override http request option.
5290
5432
  * @throws {RequiredError}
5291
5433
  */
5292
- phoneNumbersUpdate(phoneNumberId: string, aPIPhoneNumberUpdate: APIPhoneNumberUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhoneNumber>;
5434
+ phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
5293
5435
  /**
5294
5436
  * Providers Create
5295
5437
  * @summary Providers Create
@@ -5297,7 +5439,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
5297
5439
  * @param {*} [options] Override http request option.
5298
5440
  * @throws {RequiredError}
5299
5441
  */
5300
- providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<object>;
5442
+ providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIProvider>;
5301
5443
  /**
5302
5444
  * Providers Get
5303
5445
  * @summary Providers Get
@@ -5305,7 +5447,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
5305
5447
  * @param {*} [options] Override http request option.
5306
5448
  * @throws {RequiredError}
5307
5449
  */
5308
- providersGet(providerId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
5450
+ providersGet(providerId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIProvider>;
5309
5451
  /**
5310
5452
  * Providers List
5311
5453
  * @summary Providers List
@@ -5321,7 +5463,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
5321
5463
  * @param {*} [options] Override http request option.
5322
5464
  * @throws {RequiredError}
5323
5465
  */
5324
- providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): AxiosPromise<object>;
5466
+ providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIProvider>;
5325
5467
  /**
5326
5468
  * Reservations Get
5327
5469
  * @summary Reservations Get
@@ -5387,6 +5529,15 @@ declare class UnboundApi extends BaseAPI {
5387
5529
  * @memberof UnboundApi
5388
5530
  */
5389
5531
  addressesDelete(addressId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
5532
+ /**
5533
+ * Addresses Get
5534
+ * @summary Addresses Get
5535
+ * @param {string} addressId
5536
+ * @param {*} [options] Override http request option.
5537
+ * @throws {RequiredError}
5538
+ * @memberof UnboundApi
5539
+ */
5540
+ addressesGet(addressId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAddress, any>>;
5390
5541
  /**
5391
5542
  * Addresses Update
5392
5543
  * @summary Addresses Update
@@ -5639,34 +5790,43 @@ declare class UnboundApi extends BaseAPI {
5639
5790
  */
5640
5791
  messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
5641
5792
  /**
5642
- * PhoneNumbers Create
5643
- * @summary PhoneNumbers Create
5793
+ * Phones Create
5794
+ * @summary Phones Create
5644
5795
  * @param {string} contactId
5645
- * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
5796
+ * @param {APIPhoneCreate} aPIPhoneCreate
5797
+ * @param {*} [options] Override http request option.
5798
+ * @throws {RequiredError}
5799
+ * @memberof UnboundApi
5800
+ */
5801
+ phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
5802
+ /**
5803
+ * Phones Delete
5804
+ * @summary Phones Delete
5805
+ * @param {string} phoneId
5646
5806
  * @param {*} [options] Override http request option.
5647
5807
  * @throws {RequiredError}
5648
5808
  * @memberof UnboundApi
5649
5809
  */
5650
- phoneNumbersCreate(contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhoneNumber, any>>;
5810
+ phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
5651
5811
  /**
5652
- * PhoneNumbers Delete
5653
- * @summary PhoneNumbers Delete
5654
- * @param {string} phoneNumberId
5812
+ * Phones Get
5813
+ * @summary Phones Get
5814
+ * @param {string} phoneId
5655
5815
  * @param {*} [options] Override http request option.
5656
5816
  * @throws {RequiredError}
5657
5817
  * @memberof UnboundApi
5658
5818
  */
5659
- phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
5819
+ phonesGet(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
5660
5820
  /**
5661
- * PhoneNumbers Update
5662
- * @summary PhoneNumbers Update
5663
- * @param {string} phoneNumberId
5664
- * @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
5821
+ * Phones Update
5822
+ * @summary Phones Update
5823
+ * @param {string} phoneId
5824
+ * @param {APIPhoneUpdate} aPIPhoneUpdate
5665
5825
  * @param {*} [options] Override http request option.
5666
5826
  * @throws {RequiredError}
5667
5827
  * @memberof UnboundApi
5668
5828
  */
5669
- phoneNumbersUpdate(phoneNumberId: string, aPIPhoneNumberUpdate: APIPhoneNumberUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhoneNumber, any>>;
5829
+ phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
5670
5830
  /**
5671
5831
  * Providers Create
5672
5832
  * @summary Providers Create
@@ -5675,7 +5835,7 @@ declare class UnboundApi extends BaseAPI {
5675
5835
  * @throws {RequiredError}
5676
5836
  * @memberof UnboundApi
5677
5837
  */
5678
- providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
5838
+ providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIProvider, any>>;
5679
5839
  /**
5680
5840
  * Providers Get
5681
5841
  * @summary Providers Get
@@ -5684,7 +5844,7 @@ declare class UnboundApi extends BaseAPI {
5684
5844
  * @throws {RequiredError}
5685
5845
  * @memberof UnboundApi
5686
5846
  */
5687
- providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
5847
+ providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIProvider, any>>;
5688
5848
  /**
5689
5849
  * Providers List
5690
5850
  * @summary Providers List
@@ -5702,7 +5862,7 @@ declare class UnboundApi extends BaseAPI {
5702
5862
  * @throws {RequiredError}
5703
5863
  * @memberof UnboundApi
5704
5864
  */
5705
- providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
5865
+ providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIProvider, any>>;
5706
5866
  /**
5707
5867
  * Reservations Get
5708
5868
  * @summary Reservations Get
@@ -5738,4 +5898,4 @@ declare class UnboundApi extends BaseAPI {
5738
5898
  webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
5739
5899
  }
5740
5900
 
5741
- export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhoneNumber, type APIPhoneNumberCreate, type APIPhoneNumberUpdate, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Conversationtypedata1, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailAttributionApi, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type PhoneApi, type PhoneAttributionApi, type ProviderAddressApi, type ProviderMessageApi, ProviderMessageApiConversationTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsModelConversationSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi1, type SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi2, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioMessageApi, TwilioMessageApiConversationTypeEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
5901
+ export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Conversationtypedata1, type CreateContactListing, type DeleteContactListing, type EmailApi, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type PhoneApi, type ProviderAddressesApi, type ProviderAttributionApi, type ProviderEmailsApi, type ProviderMessageApi, ProviderMessageApiConversationTypeEnum, type ProviderPhonesApi, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsModelConversationSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioMessageApi, TwilioMessageApiConversationTypeEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };