@ember-home/unbound-ts-client 0.0.37 → 0.0.38
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.mts +162 -128
- package/dist/index.d.ts +162 -128
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -168,7 +168,7 @@ interface APIAddress {
|
|
|
168
168
|
* @type {string}
|
|
169
169
|
* @memberof APIAddress
|
|
170
170
|
*/
|
|
171
|
-
'street1'
|
|
171
|
+
'street1'?: string | null;
|
|
172
172
|
/**
|
|
173
173
|
*
|
|
174
174
|
* @type {string}
|
|
@@ -180,25 +180,25 @@ interface APIAddress {
|
|
|
180
180
|
* @type {string}
|
|
181
181
|
* @memberof APIAddress
|
|
182
182
|
*/
|
|
183
|
-
'country'
|
|
183
|
+
'country'?: string | null;
|
|
184
184
|
/**
|
|
185
185
|
*
|
|
186
186
|
* @type {string}
|
|
187
187
|
* @memberof APIAddress
|
|
188
188
|
*/
|
|
189
|
-
'locality'
|
|
189
|
+
'locality'?: string | null;
|
|
190
190
|
/**
|
|
191
191
|
*
|
|
192
192
|
* @type {string}
|
|
193
193
|
* @memberof APIAddress
|
|
194
194
|
*/
|
|
195
|
-
'postalCode'
|
|
195
|
+
'postalCode'?: string | null;
|
|
196
196
|
/**
|
|
197
197
|
*
|
|
198
198
|
* @type {string}
|
|
199
199
|
* @memberof APIAddress
|
|
200
200
|
*/
|
|
201
|
-
'region'
|
|
201
|
+
'region'?: string | null;
|
|
202
202
|
}
|
|
203
203
|
/**
|
|
204
204
|
*
|
|
@@ -211,7 +211,7 @@ interface APIAddressCreate {
|
|
|
211
211
|
* @type {string}
|
|
212
212
|
* @memberof APIAddressCreate
|
|
213
213
|
*/
|
|
214
|
-
'street1'
|
|
214
|
+
'street1'?: string | null;
|
|
215
215
|
/**
|
|
216
216
|
*
|
|
217
217
|
* @type {string}
|
|
@@ -223,25 +223,25 @@ interface APIAddressCreate {
|
|
|
223
223
|
* @type {string}
|
|
224
224
|
* @memberof APIAddressCreate
|
|
225
225
|
*/
|
|
226
|
-
'country'
|
|
226
|
+
'country'?: string | null;
|
|
227
227
|
/**
|
|
228
228
|
*
|
|
229
229
|
* @type {string}
|
|
230
230
|
* @memberof APIAddressCreate
|
|
231
231
|
*/
|
|
232
|
-
'locality'
|
|
232
|
+
'locality'?: string | null;
|
|
233
233
|
/**
|
|
234
234
|
*
|
|
235
235
|
* @type {string}
|
|
236
236
|
* @memberof APIAddressCreate
|
|
237
237
|
*/
|
|
238
|
-
'postalCode'
|
|
238
|
+
'postalCode'?: string | null;
|
|
239
239
|
/**
|
|
240
240
|
*
|
|
241
241
|
* @type {string}
|
|
242
242
|
* @memberof APIAddressCreate
|
|
243
243
|
*/
|
|
244
|
-
'region'
|
|
244
|
+
'region'?: string | null;
|
|
245
245
|
}
|
|
246
246
|
/**
|
|
247
247
|
*
|
|
@@ -254,7 +254,7 @@ interface APIAddressUpdate {
|
|
|
254
254
|
* @type {string}
|
|
255
255
|
* @memberof APIAddressUpdate
|
|
256
256
|
*/
|
|
257
|
-
'street1'
|
|
257
|
+
'street1'?: string | null;
|
|
258
258
|
/**
|
|
259
259
|
*
|
|
260
260
|
* @type {string}
|
|
@@ -266,25 +266,25 @@ interface APIAddressUpdate {
|
|
|
266
266
|
* @type {string}
|
|
267
267
|
* @memberof APIAddressUpdate
|
|
268
268
|
*/
|
|
269
|
-
'country'
|
|
269
|
+
'country'?: string | null;
|
|
270
270
|
/**
|
|
271
271
|
*
|
|
272
272
|
* @type {string}
|
|
273
273
|
* @memberof APIAddressUpdate
|
|
274
274
|
*/
|
|
275
|
-
'locality'
|
|
275
|
+
'locality'?: string | null;
|
|
276
276
|
/**
|
|
277
277
|
*
|
|
278
278
|
* @type {string}
|
|
279
279
|
* @memberof APIAddressUpdate
|
|
280
280
|
*/
|
|
281
|
-
'postalCode'
|
|
281
|
+
'postalCode'?: string | null;
|
|
282
282
|
/**
|
|
283
283
|
*
|
|
284
284
|
* @type {string}
|
|
285
285
|
* @memberof APIAddressUpdate
|
|
286
286
|
*/
|
|
287
|
-
'region'
|
|
287
|
+
'region'?: string | null;
|
|
288
288
|
/**
|
|
289
289
|
*
|
|
290
290
|
* @type {string}
|
|
@@ -438,10 +438,10 @@ interface APIContact {
|
|
|
438
438
|
'tags'?: Array<string>;
|
|
439
439
|
/**
|
|
440
440
|
*
|
|
441
|
-
* @type {
|
|
441
|
+
* @type {BaseAddressApi}
|
|
442
442
|
* @memberof APIContact
|
|
443
443
|
*/
|
|
444
|
-
'primaryAddress'?:
|
|
444
|
+
'primaryAddress'?: BaseAddressApi | null;
|
|
445
445
|
/**
|
|
446
446
|
*
|
|
447
447
|
* @type {Array<AddressApi>}
|
|
@@ -450,26 +450,22 @@ interface APIContact {
|
|
|
450
450
|
'addresses'?: Array<AddressApi>;
|
|
451
451
|
/**
|
|
452
452
|
*
|
|
453
|
-
* @type {
|
|
453
|
+
* @type {Array<ProviderEmailsApi>}
|
|
454
454
|
* @memberof APIContact
|
|
455
455
|
*/
|
|
456
|
-
'providerEmails'?:
|
|
457
|
-
[key: string]: SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi1;
|
|
458
|
-
};
|
|
456
|
+
'providerEmails'?: Array<ProviderEmailsApi>;
|
|
459
457
|
/**
|
|
460
458
|
*
|
|
461
|
-
* @type {
|
|
459
|
+
* @type {Array<ProviderPhonesApi>}
|
|
462
460
|
* @memberof APIContact
|
|
463
461
|
*/
|
|
464
|
-
'providerPhones'?:
|
|
465
|
-
[key: string]: SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi2;
|
|
466
|
-
};
|
|
462
|
+
'providerPhones'?: Array<ProviderPhonesApi>;
|
|
467
463
|
/**
|
|
468
464
|
*
|
|
469
|
-
* @type {Array<
|
|
465
|
+
* @type {Array<ProviderAddressesApi>}
|
|
470
466
|
* @memberof APIContact
|
|
471
467
|
*/
|
|
472
|
-
'providerAddresses'?: Array<
|
|
468
|
+
'providerAddresses'?: Array<ProviderAddressesApi>;
|
|
473
469
|
/**
|
|
474
470
|
*
|
|
475
471
|
* @type {ContactTypeDataApi}
|
|
@@ -837,12 +833,6 @@ interface APIEmail {
|
|
|
837
833
|
* @memberof APIEmail
|
|
838
834
|
*/
|
|
839
835
|
'email': string;
|
|
840
|
-
/**
|
|
841
|
-
*
|
|
842
|
-
* @type {boolean}
|
|
843
|
-
* @memberof APIEmail
|
|
844
|
-
*/
|
|
845
|
-
'isPrimary'?: boolean;
|
|
846
836
|
}
|
|
847
837
|
/**
|
|
848
838
|
*
|
|
@@ -856,6 +846,12 @@ interface APIEmailCreate {
|
|
|
856
846
|
* @memberof APIEmailCreate
|
|
857
847
|
*/
|
|
858
848
|
'email': string;
|
|
849
|
+
/**
|
|
850
|
+
*
|
|
851
|
+
* @type {boolean}
|
|
852
|
+
* @memberof APIEmailCreate
|
|
853
|
+
*/
|
|
854
|
+
'isPrimary'?: boolean;
|
|
859
855
|
}
|
|
860
856
|
/**
|
|
861
857
|
*
|
|
@@ -1280,6 +1276,49 @@ interface APIPhoneNumberUpdate {
|
|
|
1280
1276
|
*/
|
|
1281
1277
|
'phone': string;
|
|
1282
1278
|
}
|
|
1279
|
+
/**
|
|
1280
|
+
*
|
|
1281
|
+
* @export
|
|
1282
|
+
* @interface APIProvider
|
|
1283
|
+
*/
|
|
1284
|
+
interface APIProvider {
|
|
1285
|
+
/**
|
|
1286
|
+
*
|
|
1287
|
+
* @type {string}
|
|
1288
|
+
* @memberof APIProvider
|
|
1289
|
+
*/
|
|
1290
|
+
'providerApiLogin'?: string | null;
|
|
1291
|
+
/**
|
|
1292
|
+
*
|
|
1293
|
+
* @type {string}
|
|
1294
|
+
* @memberof APIProvider
|
|
1295
|
+
*/
|
|
1296
|
+
'webhookLogin'?: string | null;
|
|
1297
|
+
/**
|
|
1298
|
+
*
|
|
1299
|
+
* @type {string}
|
|
1300
|
+
* @memberof APIProvider
|
|
1301
|
+
*/
|
|
1302
|
+
'providerId': string;
|
|
1303
|
+
/**
|
|
1304
|
+
*
|
|
1305
|
+
* @type {string}
|
|
1306
|
+
* @memberof APIProvider
|
|
1307
|
+
*/
|
|
1308
|
+
'providerType': string;
|
|
1309
|
+
/**
|
|
1310
|
+
*
|
|
1311
|
+
* @type {string}
|
|
1312
|
+
* @memberof APIProvider
|
|
1313
|
+
*/
|
|
1314
|
+
'providerAccountId': string;
|
|
1315
|
+
/**
|
|
1316
|
+
*
|
|
1317
|
+
* @type {string}
|
|
1318
|
+
* @memberof APIProvider
|
|
1319
|
+
*/
|
|
1320
|
+
'providerInstance': string;
|
|
1321
|
+
}
|
|
1283
1322
|
/**
|
|
1284
1323
|
*
|
|
1285
1324
|
* @export
|
|
@@ -1528,7 +1567,7 @@ interface AddressApi {
|
|
|
1528
1567
|
* @type {string}
|
|
1529
1568
|
* @memberof AddressApi
|
|
1530
1569
|
*/
|
|
1531
|
-
'street1'
|
|
1570
|
+
'street1'?: string | null;
|
|
1532
1571
|
/**
|
|
1533
1572
|
*
|
|
1534
1573
|
* @type {string}
|
|
@@ -1540,25 +1579,25 @@ interface AddressApi {
|
|
|
1540
1579
|
* @type {string}
|
|
1541
1580
|
* @memberof AddressApi
|
|
1542
1581
|
*/
|
|
1543
|
-
'country'
|
|
1582
|
+
'country'?: string | null;
|
|
1544
1583
|
/**
|
|
1545
1584
|
*
|
|
1546
1585
|
* @type {string}
|
|
1547
1586
|
* @memberof AddressApi
|
|
1548
1587
|
*/
|
|
1549
|
-
'locality'
|
|
1588
|
+
'locality'?: string | null;
|
|
1550
1589
|
/**
|
|
1551
1590
|
*
|
|
1552
1591
|
* @type {string}
|
|
1553
1592
|
* @memberof AddressApi
|
|
1554
1593
|
*/
|
|
1555
|
-
'postalCode'
|
|
1594
|
+
'postalCode'?: string | null;
|
|
1556
1595
|
/**
|
|
1557
1596
|
*
|
|
1558
1597
|
* @type {string}
|
|
1559
1598
|
* @memberof AddressApi
|
|
1560
1599
|
*/
|
|
1561
|
-
'region'
|
|
1600
|
+
'region'?: string | null;
|
|
1562
1601
|
/**
|
|
1563
1602
|
*
|
|
1564
1603
|
* @type {string}
|
|
@@ -1580,10 +1619,10 @@ interface AttributeSourceApi {
|
|
|
1580
1619
|
'providerId': string;
|
|
1581
1620
|
/**
|
|
1582
1621
|
*
|
|
1583
|
-
* @type {
|
|
1622
|
+
* @type {any}
|
|
1584
1623
|
* @memberof AttributeSourceApi
|
|
1585
1624
|
*/
|
|
1586
|
-
'value':
|
|
1625
|
+
'value': any;
|
|
1587
1626
|
}
|
|
1588
1627
|
/**
|
|
1589
1628
|
*
|
|
@@ -1675,7 +1714,7 @@ interface BaseAddressApi {
|
|
|
1675
1714
|
* @type {string}
|
|
1676
1715
|
* @memberof BaseAddressApi
|
|
1677
1716
|
*/
|
|
1678
|
-
'street1'
|
|
1717
|
+
'street1'?: string | null;
|
|
1679
1718
|
/**
|
|
1680
1719
|
*
|
|
1681
1720
|
* @type {string}
|
|
@@ -1687,25 +1726,25 @@ interface BaseAddressApi {
|
|
|
1687
1726
|
* @type {string}
|
|
1688
1727
|
* @memberof BaseAddressApi
|
|
1689
1728
|
*/
|
|
1690
|
-
'country'
|
|
1729
|
+
'country'?: string | null;
|
|
1691
1730
|
/**
|
|
1692
1731
|
*
|
|
1693
1732
|
* @type {string}
|
|
1694
1733
|
* @memberof BaseAddressApi
|
|
1695
1734
|
*/
|
|
1696
|
-
'locality'
|
|
1735
|
+
'locality'?: string | null;
|
|
1697
1736
|
/**
|
|
1698
1737
|
*
|
|
1699
1738
|
* @type {string}
|
|
1700
1739
|
* @memberof BaseAddressApi
|
|
1701
1740
|
*/
|
|
1702
|
-
'postalCode'
|
|
1741
|
+
'postalCode'?: string | null;
|
|
1703
1742
|
/**
|
|
1704
1743
|
*
|
|
1705
1744
|
* @type {string}
|
|
1706
1745
|
* @memberof BaseAddressApi
|
|
1707
1746
|
*/
|
|
1708
|
-
'region'
|
|
1747
|
+
'region'?: string | null;
|
|
1709
1748
|
}
|
|
1710
1749
|
/**
|
|
1711
1750
|
*
|
|
@@ -1822,25 +1861,6 @@ interface EmailApi {
|
|
|
1822
1861
|
* @memberof EmailApi
|
|
1823
1862
|
*/
|
|
1824
1863
|
'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
1864
|
}
|
|
1845
1865
|
/**
|
|
1846
1866
|
*
|
|
@@ -1983,10 +2003,10 @@ interface ListResponseAPIManagedPhoneNumber {
|
|
|
1983
2003
|
interface ListResponseAPIProvider {
|
|
1984
2004
|
/**
|
|
1985
2005
|
*
|
|
1986
|
-
* @type {Array<
|
|
2006
|
+
* @type {Array<APIProvider>}
|
|
1987
2007
|
* @memberof ListResponseAPIProvider
|
|
1988
2008
|
*/
|
|
1989
|
-
'data': Array<
|
|
2009
|
+
'data': Array<APIProvider>;
|
|
1990
2010
|
}
|
|
1991
2011
|
/**
|
|
1992
2012
|
*
|
|
@@ -2241,40 +2261,65 @@ interface PhoneApi {
|
|
|
2241
2261
|
/**
|
|
2242
2262
|
*
|
|
2243
2263
|
* @export
|
|
2244
|
-
* @interface
|
|
2264
|
+
* @interface ProviderAddressesApi
|
|
2245
2265
|
*/
|
|
2246
|
-
interface
|
|
2266
|
+
interface ProviderAddressesApi {
|
|
2247
2267
|
/**
|
|
2248
2268
|
*
|
|
2249
|
-
* @type {
|
|
2250
|
-
* @memberof
|
|
2269
|
+
* @type {BaseAddressApi}
|
|
2270
|
+
* @memberof ProviderAddressesApi
|
|
2251
2271
|
*/
|
|
2252
|
-
'
|
|
2272
|
+
'address': BaseAddressApi;
|
|
2273
|
+
/**
|
|
2274
|
+
*
|
|
2275
|
+
* @type {Array<ProviderAttributionApi>}
|
|
2276
|
+
* @memberof ProviderAddressesApi
|
|
2277
|
+
*/
|
|
2278
|
+
'providers': Array<ProviderAttributionApi>;
|
|
2253
2279
|
}
|
|
2254
2280
|
/**
|
|
2255
2281
|
*
|
|
2256
2282
|
* @export
|
|
2257
|
-
* @interface
|
|
2283
|
+
* @interface ProviderAttributionApi
|
|
2258
2284
|
*/
|
|
2259
|
-
interface
|
|
2285
|
+
interface ProviderAttributionApi {
|
|
2260
2286
|
/**
|
|
2261
2287
|
*
|
|
2262
2288
|
* @type {string}
|
|
2263
|
-
* @memberof
|
|
2289
|
+
* @memberof ProviderAttributionApi
|
|
2264
2290
|
*/
|
|
2265
2291
|
'providerId': string;
|
|
2266
2292
|
/**
|
|
2267
2293
|
*
|
|
2268
|
-
* @type {
|
|
2269
|
-
* @memberof
|
|
2294
|
+
* @type {string}
|
|
2295
|
+
* @memberof ProviderAttributionApi
|
|
2270
2296
|
*/
|
|
2271
|
-
'
|
|
2297
|
+
'createdAt': string;
|
|
2298
|
+
/**
|
|
2299
|
+
*
|
|
2300
|
+
* @type {Array<string>}
|
|
2301
|
+
* @memberof ProviderAttributionApi
|
|
2302
|
+
*/
|
|
2303
|
+
'channels': Array<string>;
|
|
2304
|
+
}
|
|
2305
|
+
/**
|
|
2306
|
+
*
|
|
2307
|
+
* @export
|
|
2308
|
+
* @interface ProviderEmailsApi
|
|
2309
|
+
*/
|
|
2310
|
+
interface ProviderEmailsApi {
|
|
2272
2311
|
/**
|
|
2273
2312
|
*
|
|
2274
2313
|
* @type {string}
|
|
2275
|
-
* @memberof
|
|
2314
|
+
* @memberof ProviderEmailsApi
|
|
2315
|
+
*/
|
|
2316
|
+
'email': string;
|
|
2317
|
+
/**
|
|
2318
|
+
*
|
|
2319
|
+
* @type {Array<ProviderAttributionApi>}
|
|
2320
|
+
* @memberof ProviderEmailsApi
|
|
2276
2321
|
*/
|
|
2277
|
-
'
|
|
2322
|
+
'providers': Array<ProviderAttributionApi>;
|
|
2278
2323
|
}
|
|
2279
2324
|
/**
|
|
2280
2325
|
*
|
|
@@ -2293,6 +2338,25 @@ declare const ProviderMessageApiConversationTypeEnum: {
|
|
|
2293
2338
|
readonly Provider: "PROVIDER";
|
|
2294
2339
|
};
|
|
2295
2340
|
type ProviderMessageApiConversationTypeEnum = typeof ProviderMessageApiConversationTypeEnum[keyof typeof ProviderMessageApiConversationTypeEnum];
|
|
2341
|
+
/**
|
|
2342
|
+
*
|
|
2343
|
+
* @export
|
|
2344
|
+
* @interface ProviderPhonesApi
|
|
2345
|
+
*/
|
|
2346
|
+
interface ProviderPhonesApi {
|
|
2347
|
+
/**
|
|
2348
|
+
*
|
|
2349
|
+
* @type {string}
|
|
2350
|
+
* @memberof ProviderPhonesApi
|
|
2351
|
+
*/
|
|
2352
|
+
'phone': string;
|
|
2353
|
+
/**
|
|
2354
|
+
*
|
|
2355
|
+
* @type {Array<ProviderAttributionApi>}
|
|
2356
|
+
* @memberof ProviderPhonesApi
|
|
2357
|
+
*/
|
|
2358
|
+
'providers': Array<ProviderAttributionApi>;
|
|
2359
|
+
}
|
|
2296
2360
|
/**
|
|
2297
2361
|
*
|
|
2298
2362
|
* @export
|
|
@@ -2482,36 +2546,6 @@ declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi4Conversation
|
|
|
2482
2546
|
readonly Email: "EMAIL";
|
|
2483
2547
|
};
|
|
2484
2548
|
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
2549
|
/**
|
|
2516
2550
|
*
|
|
2517
2551
|
* @export
|
|
@@ -4094,7 +4128,7 @@ declare const ProvidersApiFp: (configuration?: Configuration) => {
|
|
|
4094
4128
|
* @param {*} [options] Override http request option.
|
|
4095
4129
|
* @throws {RequiredError}
|
|
4096
4130
|
*/
|
|
4097
|
-
providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4131
|
+
providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIProvider>>;
|
|
4098
4132
|
/**
|
|
4099
4133
|
* Providers Get
|
|
4100
4134
|
* @summary Providers Get
|
|
@@ -4102,7 +4136,7 @@ declare const ProvidersApiFp: (configuration?: Configuration) => {
|
|
|
4102
4136
|
* @param {*} [options] Override http request option.
|
|
4103
4137
|
* @throws {RequiredError}
|
|
4104
4138
|
*/
|
|
4105
|
-
providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4139
|
+
providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIProvider>>;
|
|
4106
4140
|
/**
|
|
4107
4141
|
* Providers List
|
|
4108
4142
|
* @summary Providers List
|
|
@@ -4118,7 +4152,7 @@ declare const ProvidersApiFp: (configuration?: Configuration) => {
|
|
|
4118
4152
|
* @param {*} [options] Override http request option.
|
|
4119
4153
|
* @throws {RequiredError}
|
|
4120
4154
|
*/
|
|
4121
|
-
providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4155
|
+
providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIProvider>>;
|
|
4122
4156
|
};
|
|
4123
4157
|
/**
|
|
4124
4158
|
* ProvidersApi - factory interface
|
|
@@ -4132,7 +4166,7 @@ declare const ProvidersApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
4132
4166
|
* @param {*} [options] Override http request option.
|
|
4133
4167
|
* @throws {RequiredError}
|
|
4134
4168
|
*/
|
|
4135
|
-
providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4169
|
+
providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIProvider>;
|
|
4136
4170
|
/**
|
|
4137
4171
|
* Providers Get
|
|
4138
4172
|
* @summary Providers Get
|
|
@@ -4140,7 +4174,7 @@ declare const ProvidersApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
4140
4174
|
* @param {*} [options] Override http request option.
|
|
4141
4175
|
* @throws {RequiredError}
|
|
4142
4176
|
*/
|
|
4143
|
-
providersGet(providerId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4177
|
+
providersGet(providerId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIProvider>;
|
|
4144
4178
|
/**
|
|
4145
4179
|
* Providers List
|
|
4146
4180
|
* @summary Providers List
|
|
@@ -4156,7 +4190,7 @@ declare const ProvidersApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
4156
4190
|
* @param {*} [options] Override http request option.
|
|
4157
4191
|
* @throws {RequiredError}
|
|
4158
4192
|
*/
|
|
4159
|
-
providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4193
|
+
providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIProvider>;
|
|
4160
4194
|
};
|
|
4161
4195
|
/**
|
|
4162
4196
|
* ProvidersApi - object-oriented interface
|
|
@@ -4173,7 +4207,7 @@ declare class ProvidersApi extends BaseAPI {
|
|
|
4173
4207
|
* @throws {RequiredError}
|
|
4174
4208
|
* @memberof ProvidersApi
|
|
4175
4209
|
*/
|
|
4176
|
-
providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
4210
|
+
providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIProvider, any>>;
|
|
4177
4211
|
/**
|
|
4178
4212
|
* Providers Get
|
|
4179
4213
|
* @summary Providers Get
|
|
@@ -4182,7 +4216,7 @@ declare class ProvidersApi extends BaseAPI {
|
|
|
4182
4216
|
* @throws {RequiredError}
|
|
4183
4217
|
* @memberof ProvidersApi
|
|
4184
4218
|
*/
|
|
4185
|
-
providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
4219
|
+
providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIProvider, any>>;
|
|
4186
4220
|
/**
|
|
4187
4221
|
* Providers List
|
|
4188
4222
|
* @summary Providers List
|
|
@@ -4200,7 +4234,7 @@ declare class ProvidersApi extends BaseAPI {
|
|
|
4200
4234
|
* @throws {RequiredError}
|
|
4201
4235
|
* @memberof ProvidersApi
|
|
4202
4236
|
*/
|
|
4203
|
-
providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
4237
|
+
providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIProvider, any>>;
|
|
4204
4238
|
}
|
|
4205
4239
|
/**
|
|
4206
4240
|
* ReservationsApi - axios parameter creator
|
|
@@ -4952,7 +4986,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4952
4986
|
* @param {*} [options] Override http request option.
|
|
4953
4987
|
* @throws {RequiredError}
|
|
4954
4988
|
*/
|
|
4955
|
-
providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4989
|
+
providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIProvider>>;
|
|
4956
4990
|
/**
|
|
4957
4991
|
* Providers Get
|
|
4958
4992
|
* @summary Providers Get
|
|
@@ -4960,7 +4994,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4960
4994
|
* @param {*} [options] Override http request option.
|
|
4961
4995
|
* @throws {RequiredError}
|
|
4962
4996
|
*/
|
|
4963
|
-
providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4997
|
+
providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIProvider>>;
|
|
4964
4998
|
/**
|
|
4965
4999
|
* Providers List
|
|
4966
5000
|
* @summary Providers List
|
|
@@ -4976,7 +5010,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4976
5010
|
* @param {*} [options] Override http request option.
|
|
4977
5011
|
* @throws {RequiredError}
|
|
4978
5012
|
*/
|
|
4979
|
-
providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5013
|
+
providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIProvider>>;
|
|
4980
5014
|
/**
|
|
4981
5015
|
* Reservations Get
|
|
4982
5016
|
* @summary Reservations Get
|
|
@@ -5297,7 +5331,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5297
5331
|
* @param {*} [options] Override http request option.
|
|
5298
5332
|
* @throws {RequiredError}
|
|
5299
5333
|
*/
|
|
5300
|
-
providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
5334
|
+
providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIProvider>;
|
|
5301
5335
|
/**
|
|
5302
5336
|
* Providers Get
|
|
5303
5337
|
* @summary Providers Get
|
|
@@ -5305,7 +5339,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5305
5339
|
* @param {*} [options] Override http request option.
|
|
5306
5340
|
* @throws {RequiredError}
|
|
5307
5341
|
*/
|
|
5308
|
-
providersGet(providerId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
5342
|
+
providersGet(providerId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIProvider>;
|
|
5309
5343
|
/**
|
|
5310
5344
|
* Providers List
|
|
5311
5345
|
* @summary Providers List
|
|
@@ -5321,7 +5355,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5321
5355
|
* @param {*} [options] Override http request option.
|
|
5322
5356
|
* @throws {RequiredError}
|
|
5323
5357
|
*/
|
|
5324
|
-
providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
5358
|
+
providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIProvider>;
|
|
5325
5359
|
/**
|
|
5326
5360
|
* Reservations Get
|
|
5327
5361
|
* @summary Reservations Get
|
|
@@ -5675,7 +5709,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5675
5709
|
* @throws {RequiredError}
|
|
5676
5710
|
* @memberof UnboundApi
|
|
5677
5711
|
*/
|
|
5678
|
-
providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
5712
|
+
providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIProvider, any>>;
|
|
5679
5713
|
/**
|
|
5680
5714
|
* Providers Get
|
|
5681
5715
|
* @summary Providers Get
|
|
@@ -5684,7 +5718,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5684
5718
|
* @throws {RequiredError}
|
|
5685
5719
|
* @memberof UnboundApi
|
|
5686
5720
|
*/
|
|
5687
|
-
providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
5721
|
+
providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIProvider, any>>;
|
|
5688
5722
|
/**
|
|
5689
5723
|
* Providers List
|
|
5690
5724
|
* @summary Providers List
|
|
@@ -5702,7 +5736,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5702
5736
|
* @throws {RequiredError}
|
|
5703
5737
|
* @memberof UnboundApi
|
|
5704
5738
|
*/
|
|
5705
|
-
providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
5739
|
+
providersUpdate(providerId: string, aPIProviderUpdate: APIProviderUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIProvider, any>>;
|
|
5706
5740
|
/**
|
|
5707
5741
|
* Reservations Get
|
|
5708
5742
|
* @summary Reservations Get
|
|
@@ -5738,4 +5772,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5738
5772
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
5739
5773
|
}
|
|
5740
5774
|
|
|
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
|
|
5775
|
+
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 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 };
|