@ember-home/unbound-ts-client 0.0.22 → 0.0.24
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 +1110 -126
- package/dist/index.d.ts +1110 -126
- package/dist/index.js +1082 -279
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +953 -150
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -156,6 +156,37 @@ interface APIValidationError {
|
|
|
156
156
|
* @export
|
|
157
157
|
*/
|
|
158
158
|
type APIValidationErrorLocInner = number | string;
|
|
159
|
+
/**
|
|
160
|
+
*
|
|
161
|
+
* @export
|
|
162
|
+
* @interface AccountsList
|
|
163
|
+
*/
|
|
164
|
+
interface AccountsList {
|
|
165
|
+
/**
|
|
166
|
+
*
|
|
167
|
+
* @type {string}
|
|
168
|
+
* @memberof AccountsList
|
|
169
|
+
*/
|
|
170
|
+
'accountId': string | null;
|
|
171
|
+
/**
|
|
172
|
+
*
|
|
173
|
+
* @type {string}
|
|
174
|
+
* @memberof AccountsList
|
|
175
|
+
*/
|
|
176
|
+
'accountName': string;
|
|
177
|
+
/**
|
|
178
|
+
*
|
|
179
|
+
* @type {string}
|
|
180
|
+
* @memberof AccountsList
|
|
181
|
+
*/
|
|
182
|
+
'createdAt'?: string | null;
|
|
183
|
+
/**
|
|
184
|
+
*
|
|
185
|
+
* @type {string}
|
|
186
|
+
* @memberof AccountsList
|
|
187
|
+
*/
|
|
188
|
+
'updatedAt'?: string | null;
|
|
189
|
+
}
|
|
159
190
|
/**
|
|
160
191
|
*
|
|
161
192
|
* @export
|
|
@@ -754,7 +785,7 @@ interface Contacts {
|
|
|
754
785
|
* @type {AddressApi}
|
|
755
786
|
* @memberof Contacts
|
|
756
787
|
*/
|
|
757
|
-
'
|
|
788
|
+
'primaryAddress'?: AddressApi | null;
|
|
758
789
|
/**
|
|
759
790
|
*
|
|
760
791
|
* @type {Array<AddressItemApi>}
|
|
@@ -929,7 +960,7 @@ interface ContactsCreate {
|
|
|
929
960
|
* @type {AddressApi}
|
|
930
961
|
* @memberof ContactsCreate
|
|
931
962
|
*/
|
|
932
|
-
'
|
|
963
|
+
'primaryAddress'?: AddressApi | null;
|
|
933
964
|
/**
|
|
934
965
|
*
|
|
935
966
|
* @type {Array<AddressItemApi>}
|
|
@@ -1104,7 +1135,7 @@ interface ContactsGet {
|
|
|
1104
1135
|
* @type {AddressApi}
|
|
1105
1136
|
* @memberof ContactsGet
|
|
1106
1137
|
*/
|
|
1107
|
-
'
|
|
1138
|
+
'primaryAddress'?: AddressApi | null;
|
|
1108
1139
|
/**
|
|
1109
1140
|
*
|
|
1110
1141
|
* @type {Array<AddressItemApi>}
|
|
@@ -1279,7 +1310,7 @@ interface ContactsUpdate {
|
|
|
1279
1310
|
* @type {AddressApi}
|
|
1280
1311
|
* @memberof ContactsUpdate
|
|
1281
1312
|
*/
|
|
1282
|
-
'
|
|
1313
|
+
'primaryAddress'?: AddressApi | null;
|
|
1283
1314
|
/**
|
|
1284
1315
|
*
|
|
1285
1316
|
* @type {Array<AddressItemApi>}
|
|
@@ -1293,6 +1324,301 @@ interface ContactsUpdate {
|
|
|
1293
1324
|
*/
|
|
1294
1325
|
'contactTypeData'?: ContactTypeDataApi;
|
|
1295
1326
|
}
|
|
1327
|
+
/**
|
|
1328
|
+
*
|
|
1329
|
+
* @export
|
|
1330
|
+
* @interface ConversationCreate
|
|
1331
|
+
*/
|
|
1332
|
+
interface ConversationCreate {
|
|
1333
|
+
/**
|
|
1334
|
+
*
|
|
1335
|
+
* @type {Conversationtypedata}
|
|
1336
|
+
* @memberof ConversationCreate
|
|
1337
|
+
*/
|
|
1338
|
+
'conversationTypeData': Conversationtypedata;
|
|
1339
|
+
}
|
|
1340
|
+
/**
|
|
1341
|
+
*
|
|
1342
|
+
* @export
|
|
1343
|
+
* @enum {string}
|
|
1344
|
+
*/
|
|
1345
|
+
declare const ConversationStatus: {
|
|
1346
|
+
readonly Open: "OPEN";
|
|
1347
|
+
readonly Closed: "CLOSED";
|
|
1348
|
+
};
|
|
1349
|
+
type ConversationStatus = typeof ConversationStatus[keyof typeof ConversationStatus];
|
|
1350
|
+
/**
|
|
1351
|
+
*
|
|
1352
|
+
* @export
|
|
1353
|
+
* @interface ConversationUpdate
|
|
1354
|
+
*/
|
|
1355
|
+
interface ConversationUpdate {
|
|
1356
|
+
/**
|
|
1357
|
+
*
|
|
1358
|
+
* @type {Conversationtypedata1}
|
|
1359
|
+
* @memberof ConversationUpdate
|
|
1360
|
+
*/
|
|
1361
|
+
'conversationTypeData': Conversationtypedata1;
|
|
1362
|
+
}
|
|
1363
|
+
/**
|
|
1364
|
+
*
|
|
1365
|
+
* @export
|
|
1366
|
+
* @interface ConversationsCreate
|
|
1367
|
+
*/
|
|
1368
|
+
interface ConversationsCreate {
|
|
1369
|
+
/**
|
|
1370
|
+
*
|
|
1371
|
+
* @type {string}
|
|
1372
|
+
* @memberof ConversationsCreate
|
|
1373
|
+
*/
|
|
1374
|
+
'conversationId': string;
|
|
1375
|
+
/**
|
|
1376
|
+
*
|
|
1377
|
+
* @type {Conversationtypedata2}
|
|
1378
|
+
* @memberof ConversationsCreate
|
|
1379
|
+
*/
|
|
1380
|
+
'conversationTypeData': Conversationtypedata2;
|
|
1381
|
+
/**
|
|
1382
|
+
*
|
|
1383
|
+
* @type {string}
|
|
1384
|
+
* @memberof ConversationsCreate
|
|
1385
|
+
*/
|
|
1386
|
+
'createdAt': string;
|
|
1387
|
+
/**
|
|
1388
|
+
*
|
|
1389
|
+
* @type {string}
|
|
1390
|
+
* @memberof ConversationsCreate
|
|
1391
|
+
*/
|
|
1392
|
+
'updatedAt': string;
|
|
1393
|
+
/**
|
|
1394
|
+
*
|
|
1395
|
+
* @type {string}
|
|
1396
|
+
* @memberof ConversationsCreate
|
|
1397
|
+
*/
|
|
1398
|
+
'createdBy': string;
|
|
1399
|
+
/**
|
|
1400
|
+
*
|
|
1401
|
+
* @type {string}
|
|
1402
|
+
* @memberof ConversationsCreate
|
|
1403
|
+
*/
|
|
1404
|
+
'updatedBy': string;
|
|
1405
|
+
/**
|
|
1406
|
+
*
|
|
1407
|
+
* @type {string}
|
|
1408
|
+
* @memberof ConversationsCreate
|
|
1409
|
+
*/
|
|
1410
|
+
'lastMessageAt': string;
|
|
1411
|
+
/**
|
|
1412
|
+
*
|
|
1413
|
+
* @type {number}
|
|
1414
|
+
* @memberof ConversationsCreate
|
|
1415
|
+
*/
|
|
1416
|
+
'unreadCount': number;
|
|
1417
|
+
/**
|
|
1418
|
+
*
|
|
1419
|
+
* @type {ConversationStatus}
|
|
1420
|
+
* @memberof ConversationsCreate
|
|
1421
|
+
*/
|
|
1422
|
+
'status': ConversationStatus;
|
|
1423
|
+
}
|
|
1424
|
+
/**
|
|
1425
|
+
*
|
|
1426
|
+
* @export
|
|
1427
|
+
* @interface ConversationsGet
|
|
1428
|
+
*/
|
|
1429
|
+
interface ConversationsGet {
|
|
1430
|
+
/**
|
|
1431
|
+
*
|
|
1432
|
+
* @type {string}
|
|
1433
|
+
* @memberof ConversationsGet
|
|
1434
|
+
*/
|
|
1435
|
+
'conversationId': string;
|
|
1436
|
+
/**
|
|
1437
|
+
*
|
|
1438
|
+
* @type {Conversationtypedata2}
|
|
1439
|
+
* @memberof ConversationsGet
|
|
1440
|
+
*/
|
|
1441
|
+
'conversationTypeData': Conversationtypedata2;
|
|
1442
|
+
/**
|
|
1443
|
+
*
|
|
1444
|
+
* @type {string}
|
|
1445
|
+
* @memberof ConversationsGet
|
|
1446
|
+
*/
|
|
1447
|
+
'createdAt': string;
|
|
1448
|
+
/**
|
|
1449
|
+
*
|
|
1450
|
+
* @type {string}
|
|
1451
|
+
* @memberof ConversationsGet
|
|
1452
|
+
*/
|
|
1453
|
+
'updatedAt': string;
|
|
1454
|
+
/**
|
|
1455
|
+
*
|
|
1456
|
+
* @type {string}
|
|
1457
|
+
* @memberof ConversationsGet
|
|
1458
|
+
*/
|
|
1459
|
+
'createdBy': string;
|
|
1460
|
+
/**
|
|
1461
|
+
*
|
|
1462
|
+
* @type {string}
|
|
1463
|
+
* @memberof ConversationsGet
|
|
1464
|
+
*/
|
|
1465
|
+
'updatedBy': string;
|
|
1466
|
+
/**
|
|
1467
|
+
*
|
|
1468
|
+
* @type {string}
|
|
1469
|
+
* @memberof ConversationsGet
|
|
1470
|
+
*/
|
|
1471
|
+
'lastMessageAt': string;
|
|
1472
|
+
/**
|
|
1473
|
+
*
|
|
1474
|
+
* @type {number}
|
|
1475
|
+
* @memberof ConversationsGet
|
|
1476
|
+
*/
|
|
1477
|
+
'unreadCount': number;
|
|
1478
|
+
/**
|
|
1479
|
+
*
|
|
1480
|
+
* @type {ConversationStatus}
|
|
1481
|
+
* @memberof ConversationsGet
|
|
1482
|
+
*/
|
|
1483
|
+
'status': ConversationStatus;
|
|
1484
|
+
}
|
|
1485
|
+
/**
|
|
1486
|
+
*
|
|
1487
|
+
* @export
|
|
1488
|
+
* @interface ConversationsList
|
|
1489
|
+
*/
|
|
1490
|
+
interface ConversationsList {
|
|
1491
|
+
/**
|
|
1492
|
+
*
|
|
1493
|
+
* @type {string}
|
|
1494
|
+
* @memberof ConversationsList
|
|
1495
|
+
*/
|
|
1496
|
+
'conversationId': string;
|
|
1497
|
+
/**
|
|
1498
|
+
*
|
|
1499
|
+
* @type {Conversationtypedata2}
|
|
1500
|
+
* @memberof ConversationsList
|
|
1501
|
+
*/
|
|
1502
|
+
'conversationTypeData': Conversationtypedata2;
|
|
1503
|
+
/**
|
|
1504
|
+
*
|
|
1505
|
+
* @type {string}
|
|
1506
|
+
* @memberof ConversationsList
|
|
1507
|
+
*/
|
|
1508
|
+
'createdAt': string;
|
|
1509
|
+
/**
|
|
1510
|
+
*
|
|
1511
|
+
* @type {string}
|
|
1512
|
+
* @memberof ConversationsList
|
|
1513
|
+
*/
|
|
1514
|
+
'updatedAt': string;
|
|
1515
|
+
/**
|
|
1516
|
+
*
|
|
1517
|
+
* @type {string}
|
|
1518
|
+
* @memberof ConversationsList
|
|
1519
|
+
*/
|
|
1520
|
+
'createdBy': string;
|
|
1521
|
+
/**
|
|
1522
|
+
*
|
|
1523
|
+
* @type {string}
|
|
1524
|
+
* @memberof ConversationsList
|
|
1525
|
+
*/
|
|
1526
|
+
'updatedBy': string;
|
|
1527
|
+
/**
|
|
1528
|
+
*
|
|
1529
|
+
* @type {string}
|
|
1530
|
+
* @memberof ConversationsList
|
|
1531
|
+
*/
|
|
1532
|
+
'lastMessageAt': string;
|
|
1533
|
+
/**
|
|
1534
|
+
*
|
|
1535
|
+
* @type {number}
|
|
1536
|
+
* @memberof ConversationsList
|
|
1537
|
+
*/
|
|
1538
|
+
'unreadCount': number;
|
|
1539
|
+
/**
|
|
1540
|
+
*
|
|
1541
|
+
* @type {ConversationStatus}
|
|
1542
|
+
* @memberof ConversationsList
|
|
1543
|
+
*/
|
|
1544
|
+
'status': ConversationStatus;
|
|
1545
|
+
}
|
|
1546
|
+
/**
|
|
1547
|
+
*
|
|
1548
|
+
* @export
|
|
1549
|
+
* @interface ConversationsUpdate
|
|
1550
|
+
*/
|
|
1551
|
+
interface ConversationsUpdate {
|
|
1552
|
+
/**
|
|
1553
|
+
*
|
|
1554
|
+
* @type {string}
|
|
1555
|
+
* @memberof ConversationsUpdate
|
|
1556
|
+
*/
|
|
1557
|
+
'conversationId': string;
|
|
1558
|
+
/**
|
|
1559
|
+
*
|
|
1560
|
+
* @type {Conversationtypedata2}
|
|
1561
|
+
* @memberof ConversationsUpdate
|
|
1562
|
+
*/
|
|
1563
|
+
'conversationTypeData': Conversationtypedata2;
|
|
1564
|
+
/**
|
|
1565
|
+
*
|
|
1566
|
+
* @type {string}
|
|
1567
|
+
* @memberof ConversationsUpdate
|
|
1568
|
+
*/
|
|
1569
|
+
'createdAt': string;
|
|
1570
|
+
/**
|
|
1571
|
+
*
|
|
1572
|
+
* @type {string}
|
|
1573
|
+
* @memberof ConversationsUpdate
|
|
1574
|
+
*/
|
|
1575
|
+
'updatedAt': string;
|
|
1576
|
+
/**
|
|
1577
|
+
*
|
|
1578
|
+
* @type {string}
|
|
1579
|
+
* @memberof ConversationsUpdate
|
|
1580
|
+
*/
|
|
1581
|
+
'createdBy': string;
|
|
1582
|
+
/**
|
|
1583
|
+
*
|
|
1584
|
+
* @type {string}
|
|
1585
|
+
* @memberof ConversationsUpdate
|
|
1586
|
+
*/
|
|
1587
|
+
'updatedBy': string;
|
|
1588
|
+
/**
|
|
1589
|
+
*
|
|
1590
|
+
* @type {string}
|
|
1591
|
+
* @memberof ConversationsUpdate
|
|
1592
|
+
*/
|
|
1593
|
+
'lastMessageAt': string;
|
|
1594
|
+
/**
|
|
1595
|
+
*
|
|
1596
|
+
* @type {number}
|
|
1597
|
+
* @memberof ConversationsUpdate
|
|
1598
|
+
*/
|
|
1599
|
+
'unreadCount': number;
|
|
1600
|
+
/**
|
|
1601
|
+
*
|
|
1602
|
+
* @type {ConversationStatus}
|
|
1603
|
+
* @memberof ConversationsUpdate
|
|
1604
|
+
*/
|
|
1605
|
+
'status': ConversationStatus;
|
|
1606
|
+
}
|
|
1607
|
+
/**
|
|
1608
|
+
* @type Conversationtypedata
|
|
1609
|
+
* @export
|
|
1610
|
+
*/
|
|
1611
|
+
type Conversationtypedata = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi2;
|
|
1612
|
+
/**
|
|
1613
|
+
* @type Conversationtypedata1
|
|
1614
|
+
* @export
|
|
1615
|
+
*/
|
|
1616
|
+
type Conversationtypedata1 = SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1 | SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2;
|
|
1617
|
+
/**
|
|
1618
|
+
* @type Conversationtypedata2
|
|
1619
|
+
* @export
|
|
1620
|
+
*/
|
|
1621
|
+
type Conversationtypedata2 = object;
|
|
1296
1622
|
/**
|
|
1297
1623
|
*
|
|
1298
1624
|
* @export
|
|
@@ -1520,6 +1846,32 @@ interface LeadDataApi {
|
|
|
1520
1846
|
*/
|
|
1521
1847
|
'listingIds': Array<string>;
|
|
1522
1848
|
}
|
|
1849
|
+
/**
|
|
1850
|
+
*
|
|
1851
|
+
* @export
|
|
1852
|
+
* @interface ListResponseAccountsList
|
|
1853
|
+
*/
|
|
1854
|
+
interface ListResponseAccountsList {
|
|
1855
|
+
/**
|
|
1856
|
+
*
|
|
1857
|
+
* @type {Array<AccountsList>}
|
|
1858
|
+
* @memberof ListResponseAccountsList
|
|
1859
|
+
*/
|
|
1860
|
+
'data': Array<AccountsList>;
|
|
1861
|
+
}
|
|
1862
|
+
/**
|
|
1863
|
+
*
|
|
1864
|
+
* @export
|
|
1865
|
+
* @interface ListResponseConversationsList
|
|
1866
|
+
*/
|
|
1867
|
+
interface ListResponseConversationsList {
|
|
1868
|
+
/**
|
|
1869
|
+
*
|
|
1870
|
+
* @type {Array<ConversationsList>}
|
|
1871
|
+
* @memberof ListResponseConversationsList
|
|
1872
|
+
*/
|
|
1873
|
+
'data': Array<ConversationsList>;
|
|
1874
|
+
}
|
|
1523
1875
|
/**
|
|
1524
1876
|
*
|
|
1525
1877
|
* @export
|
|
@@ -1546,6 +1898,19 @@ interface ListResponseListingsList {
|
|
|
1546
1898
|
*/
|
|
1547
1899
|
'data': Array<ListingsList>;
|
|
1548
1900
|
}
|
|
1901
|
+
/**
|
|
1902
|
+
*
|
|
1903
|
+
* @export
|
|
1904
|
+
* @interface ListResponseManagedPhoneNumbersList
|
|
1905
|
+
*/
|
|
1906
|
+
interface ListResponseManagedPhoneNumbersList {
|
|
1907
|
+
/**
|
|
1908
|
+
*
|
|
1909
|
+
* @type {Array<ManagedPhoneNumbersList>}
|
|
1910
|
+
* @memberof ListResponseManagedPhoneNumbersList
|
|
1911
|
+
*/
|
|
1912
|
+
'data': Array<ManagedPhoneNumbersList>;
|
|
1913
|
+
}
|
|
1549
1914
|
/**
|
|
1550
1915
|
*
|
|
1551
1916
|
* @export
|
|
@@ -1599,31 +1964,80 @@ interface ListingsList {
|
|
|
1599
1964
|
/**
|
|
1600
1965
|
*
|
|
1601
1966
|
* @export
|
|
1602
|
-
* @interface
|
|
1967
|
+
* @interface ManagedPhoneNumbersList
|
|
1603
1968
|
*/
|
|
1604
|
-
interface
|
|
1969
|
+
interface ManagedPhoneNumbersList {
|
|
1605
1970
|
/**
|
|
1606
1971
|
*
|
|
1607
1972
|
* @type {string}
|
|
1608
|
-
* @memberof
|
|
1973
|
+
* @memberof ManagedPhoneNumbersList
|
|
1609
1974
|
*/
|
|
1610
|
-
'
|
|
1975
|
+
'managedPhoneNumberId': string;
|
|
1611
1976
|
/**
|
|
1612
1977
|
*
|
|
1613
1978
|
* @type {string}
|
|
1614
|
-
* @memberof
|
|
1979
|
+
* @memberof ManagedPhoneNumbersList
|
|
1615
1980
|
*/
|
|
1616
|
-
'
|
|
1981
|
+
'phoneNumber': string;
|
|
1617
1982
|
/**
|
|
1618
1983
|
*
|
|
1619
|
-
* @type {
|
|
1620
|
-
* @memberof
|
|
1984
|
+
* @type {string}
|
|
1985
|
+
* @memberof ManagedPhoneNumbersList
|
|
1621
1986
|
*/
|
|
1622
|
-
'
|
|
1987
|
+
'name'?: string | null;
|
|
1623
1988
|
/**
|
|
1624
1989
|
*
|
|
1625
|
-
* @type {
|
|
1626
|
-
* @memberof
|
|
1990
|
+
* @type {string}
|
|
1991
|
+
* @memberof ManagedPhoneNumbersList
|
|
1992
|
+
*/
|
|
1993
|
+
'countryCode': string;
|
|
1994
|
+
/**
|
|
1995
|
+
*
|
|
1996
|
+
* @type {string}
|
|
1997
|
+
* @memberof ManagedPhoneNumbersList
|
|
1998
|
+
*/
|
|
1999
|
+
'region': string;
|
|
2000
|
+
/**
|
|
2001
|
+
*
|
|
2002
|
+
* @type {string}
|
|
2003
|
+
* @memberof ManagedPhoneNumbersList
|
|
2004
|
+
*/
|
|
2005
|
+
'createdAt': string;
|
|
2006
|
+
/**
|
|
2007
|
+
*
|
|
2008
|
+
* @type {string}
|
|
2009
|
+
* @memberof ManagedPhoneNumbersList
|
|
2010
|
+
*/
|
|
2011
|
+
'updatedAt': string;
|
|
2012
|
+
}
|
|
2013
|
+
/**
|
|
2014
|
+
*
|
|
2015
|
+
* @export
|
|
2016
|
+
* @interface OwnerDataApi
|
|
2017
|
+
*/
|
|
2018
|
+
interface OwnerDataApi {
|
|
2019
|
+
/**
|
|
2020
|
+
*
|
|
2021
|
+
* @type {string}
|
|
2022
|
+
* @memberof OwnerDataApi
|
|
2023
|
+
*/
|
|
2024
|
+
'firstBookedAt'?: string;
|
|
2025
|
+
/**
|
|
2026
|
+
*
|
|
2027
|
+
* @type {string}
|
|
2028
|
+
* @memberof OwnerDataApi
|
|
2029
|
+
*/
|
|
2030
|
+
'firstStayAt'?: string;
|
|
2031
|
+
/**
|
|
2032
|
+
*
|
|
2033
|
+
* @type {number}
|
|
2034
|
+
* @memberof OwnerDataApi
|
|
2035
|
+
*/
|
|
2036
|
+
'totalNightsStayed'?: number;
|
|
2037
|
+
/**
|
|
2038
|
+
*
|
|
2039
|
+
* @type {Array<string>}
|
|
2040
|
+
* @memberof OwnerDataApi
|
|
1627
2041
|
*/
|
|
1628
2042
|
'listingIds': Array<string>;
|
|
1629
2043
|
}
|
|
@@ -1708,56 +2122,56 @@ interface PhoneApi {
|
|
|
1708
2122
|
/**
|
|
1709
2123
|
*
|
|
1710
2124
|
* @export
|
|
1711
|
-
* @interface
|
|
2125
|
+
* @interface PhoneNumberCreate
|
|
1712
2126
|
*/
|
|
1713
|
-
interface
|
|
2127
|
+
interface PhoneNumberCreate {
|
|
1714
2128
|
/**
|
|
1715
2129
|
*
|
|
1716
2130
|
* @type {string}
|
|
1717
|
-
* @memberof
|
|
2131
|
+
* @memberof PhoneNumberCreate
|
|
1718
2132
|
*/
|
|
1719
2133
|
'phone': string;
|
|
1720
2134
|
/**
|
|
1721
2135
|
*
|
|
1722
2136
|
* @type {boolean}
|
|
1723
|
-
* @memberof
|
|
2137
|
+
* @memberof PhoneNumberCreate
|
|
1724
2138
|
*/
|
|
1725
2139
|
'isPrimary'?: boolean | null;
|
|
1726
2140
|
}
|
|
1727
2141
|
/**
|
|
1728
2142
|
*
|
|
1729
2143
|
* @export
|
|
1730
|
-
* @interface
|
|
2144
|
+
* @interface PhoneNumbersCreate
|
|
1731
2145
|
*/
|
|
1732
|
-
interface
|
|
2146
|
+
interface PhoneNumbersCreate {
|
|
1733
2147
|
/**
|
|
1734
2148
|
*
|
|
1735
2149
|
* @type {string}
|
|
1736
|
-
* @memberof
|
|
2150
|
+
* @memberof PhoneNumbersCreate
|
|
1737
2151
|
*/
|
|
1738
2152
|
'phoneId': string;
|
|
1739
2153
|
/**
|
|
1740
2154
|
*
|
|
1741
2155
|
* @type {string}
|
|
1742
|
-
* @memberof
|
|
2156
|
+
* @memberof PhoneNumbersCreate
|
|
1743
2157
|
*/
|
|
1744
2158
|
'phone': string;
|
|
1745
2159
|
/**
|
|
1746
2160
|
*
|
|
1747
2161
|
* @type {string}
|
|
1748
|
-
* @memberof
|
|
2162
|
+
* @memberof PhoneNumbersCreate
|
|
1749
2163
|
*/
|
|
1750
2164
|
'providerId': string;
|
|
1751
2165
|
/**
|
|
1752
2166
|
*
|
|
1753
2167
|
* @type {string}
|
|
1754
|
-
* @memberof
|
|
2168
|
+
* @memberof PhoneNumbersCreate
|
|
1755
2169
|
*/
|
|
1756
2170
|
'deletedAt'?: string | null;
|
|
1757
2171
|
/**
|
|
1758
2172
|
*
|
|
1759
2173
|
* @type {boolean}
|
|
1760
|
-
* @memberof
|
|
2174
|
+
* @memberof PhoneNumbersCreate
|
|
1761
2175
|
*/
|
|
1762
2176
|
'isPrimary': boolean;
|
|
1763
2177
|
}
|
|
@@ -1767,6 +2181,12 @@ interface PhonesCreate {
|
|
|
1767
2181
|
* @interface ReservationsList
|
|
1768
2182
|
*/
|
|
1769
2183
|
interface ReservationsList {
|
|
2184
|
+
/**
|
|
2185
|
+
*
|
|
2186
|
+
* @type {string}
|
|
2187
|
+
* @memberof ReservationsList
|
|
2188
|
+
*/
|
|
2189
|
+
'providerId': string;
|
|
1770
2190
|
/**
|
|
1771
2191
|
*
|
|
1772
2192
|
* @type {string}
|
|
@@ -1820,6 +2240,104 @@ declare const SortOrder: {
|
|
|
1820
2240
|
readonly Desc: "desc";
|
|
1821
2241
|
};
|
|
1822
2242
|
type SortOrder = typeof SortOrder[keyof typeof SortOrder];
|
|
2243
|
+
/**
|
|
2244
|
+
*
|
|
2245
|
+
* @export
|
|
2246
|
+
* @interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2247
|
+
*/
|
|
2248
|
+
interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 {
|
|
2249
|
+
/**
|
|
2250
|
+
*
|
|
2251
|
+
* @type {string}
|
|
2252
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2253
|
+
*/
|
|
2254
|
+
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum;
|
|
2255
|
+
/**
|
|
2256
|
+
*
|
|
2257
|
+
* @type {string}
|
|
2258
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2259
|
+
*/
|
|
2260
|
+
'fromManagedPhoneId': string;
|
|
2261
|
+
/**
|
|
2262
|
+
*
|
|
2263
|
+
* @type {Array<string>}
|
|
2264
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2265
|
+
*/
|
|
2266
|
+
'toContactPhoneIds'?: Array<string> | null;
|
|
2267
|
+
}
|
|
2268
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum: {
|
|
2269
|
+
readonly Twilio: "TWILIO";
|
|
2270
|
+
};
|
|
2271
|
+
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum];
|
|
2272
|
+
/**
|
|
2273
|
+
*
|
|
2274
|
+
* @export
|
|
2275
|
+
* @interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
2276
|
+
*/
|
|
2277
|
+
interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi2 {
|
|
2278
|
+
/**
|
|
2279
|
+
*
|
|
2280
|
+
* @type {string}
|
|
2281
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
2282
|
+
*/
|
|
2283
|
+
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum;
|
|
2284
|
+
/**
|
|
2285
|
+
*
|
|
2286
|
+
* @type {Array<string>}
|
|
2287
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
2288
|
+
*/
|
|
2289
|
+
'emailIds'?: Array<string> | null;
|
|
2290
|
+
}
|
|
2291
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum: {
|
|
2292
|
+
readonly Email: "EMAIL";
|
|
2293
|
+
};
|
|
2294
|
+
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum];
|
|
2295
|
+
/**
|
|
2296
|
+
*
|
|
2297
|
+
* @export
|
|
2298
|
+
* @interface SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1
|
|
2299
|
+
*/
|
|
2300
|
+
interface SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1 {
|
|
2301
|
+
/**
|
|
2302
|
+
*
|
|
2303
|
+
* @type {string}
|
|
2304
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1
|
|
2305
|
+
*/
|
|
2306
|
+
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum;
|
|
2307
|
+
/**
|
|
2308
|
+
*
|
|
2309
|
+
* @type {Array<string>}
|
|
2310
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1
|
|
2311
|
+
*/
|
|
2312
|
+
'toContactPhoneIds'?: Array<string> | null;
|
|
2313
|
+
}
|
|
2314
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum: {
|
|
2315
|
+
readonly Twilio: "TWILIO";
|
|
2316
|
+
};
|
|
2317
|
+
type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum];
|
|
2318
|
+
/**
|
|
2319
|
+
*
|
|
2320
|
+
* @export
|
|
2321
|
+
* @interface SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2
|
|
2322
|
+
*/
|
|
2323
|
+
interface SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2 {
|
|
2324
|
+
/**
|
|
2325
|
+
*
|
|
2326
|
+
* @type {string}
|
|
2327
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2
|
|
2328
|
+
*/
|
|
2329
|
+
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum;
|
|
2330
|
+
/**
|
|
2331
|
+
*
|
|
2332
|
+
* @type {Array<string>}
|
|
2333
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2
|
|
2334
|
+
*/
|
|
2335
|
+
'emailIds'?: Array<string> | null;
|
|
2336
|
+
}
|
|
2337
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum: {
|
|
2338
|
+
readonly Email: "EMAIL";
|
|
2339
|
+
};
|
|
2340
|
+
type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum];
|
|
1823
2341
|
/**
|
|
1824
2342
|
*
|
|
1825
2343
|
* @export
|
|
@@ -1845,6 +2363,61 @@ interface UpdateContactListing {
|
|
|
1845
2363
|
*/
|
|
1846
2364
|
'endDate'?: string | null;
|
|
1847
2365
|
}
|
|
2366
|
+
/**
|
|
2367
|
+
* AccountsApi - axios parameter creator
|
|
2368
|
+
* @export
|
|
2369
|
+
*/
|
|
2370
|
+
declare const AccountsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2371
|
+
/**
|
|
2372
|
+
*
|
|
2373
|
+
* @summary Accounts List
|
|
2374
|
+
* @param {*} [options] Override http request option.
|
|
2375
|
+
* @throws {RequiredError}
|
|
2376
|
+
*/
|
|
2377
|
+
accountsList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2378
|
+
};
|
|
2379
|
+
/**
|
|
2380
|
+
* AccountsApi - functional programming interface
|
|
2381
|
+
* @export
|
|
2382
|
+
*/
|
|
2383
|
+
declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
2384
|
+
/**
|
|
2385
|
+
*
|
|
2386
|
+
* @summary Accounts List
|
|
2387
|
+
* @param {*} [options] Override http request option.
|
|
2388
|
+
* @throws {RequiredError}
|
|
2389
|
+
*/
|
|
2390
|
+
accountsList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAccountsList>>;
|
|
2391
|
+
};
|
|
2392
|
+
/**
|
|
2393
|
+
* AccountsApi - factory interface
|
|
2394
|
+
* @export
|
|
2395
|
+
*/
|
|
2396
|
+
declare const AccountsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2397
|
+
/**
|
|
2398
|
+
*
|
|
2399
|
+
* @summary Accounts List
|
|
2400
|
+
* @param {*} [options] Override http request option.
|
|
2401
|
+
* @throws {RequiredError}
|
|
2402
|
+
*/
|
|
2403
|
+
accountsList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAccountsList>;
|
|
2404
|
+
};
|
|
2405
|
+
/**
|
|
2406
|
+
* AccountsApi - object-oriented interface
|
|
2407
|
+
* @export
|
|
2408
|
+
* @class AccountsApi
|
|
2409
|
+
* @extends {BaseAPI}
|
|
2410
|
+
*/
|
|
2411
|
+
declare class AccountsApi extends BaseAPI {
|
|
2412
|
+
/**
|
|
2413
|
+
*
|
|
2414
|
+
* @summary Accounts List
|
|
2415
|
+
* @param {*} [options] Override http request option.
|
|
2416
|
+
* @throws {RequiredError}
|
|
2417
|
+
* @memberof AccountsApi
|
|
2418
|
+
*/
|
|
2419
|
+
accountsList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAccountsList, any>>;
|
|
2420
|
+
}
|
|
1848
2421
|
/**
|
|
1849
2422
|
* AddressesApi - axios parameter creator
|
|
1850
2423
|
* @export
|
|
@@ -2046,7 +2619,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2046
2619
|
/**
|
|
2047
2620
|
*
|
|
2048
2621
|
* @summary Contacts List
|
|
2049
|
-
* @param {string} [searchString]
|
|
2622
|
+
* @param {string | null} [searchString]
|
|
2050
2623
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2051
2624
|
* @param {number} [limit]
|
|
2052
2625
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2055,7 +2628,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2055
2628
|
* @param {*} [options] Override http request option.
|
|
2056
2629
|
* @throws {RequiredError}
|
|
2057
2630
|
*/
|
|
2058
|
-
contactsList: (searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2631
|
+
contactsList: (searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2059
2632
|
/**
|
|
2060
2633
|
* Removes an association between a contact and a listing.
|
|
2061
2634
|
* @summary Delete Contact Listing
|
|
@@ -2104,21 +2677,21 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2104
2677
|
emailsDelete: (emailId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2105
2678
|
/**
|
|
2106
2679
|
*
|
|
2107
|
-
* @summary
|
|
2680
|
+
* @summary Phone_numbers Create
|
|
2108
2681
|
* @param {string} contactId
|
|
2109
|
-
* @param {
|
|
2682
|
+
* @param {PhoneNumberCreate} phoneNumberCreate
|
|
2110
2683
|
* @param {*} [options] Override http request option.
|
|
2111
2684
|
* @throws {RequiredError}
|
|
2112
2685
|
*/
|
|
2113
|
-
|
|
2686
|
+
phoneNumbersCreate: (contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2114
2687
|
/**
|
|
2115
2688
|
*
|
|
2116
|
-
* @summary
|
|
2117
|
-
* @param {string}
|
|
2689
|
+
* @summary Phone_numbers Delete
|
|
2690
|
+
* @param {string} phoneNumberId
|
|
2118
2691
|
* @param {*} [options] Override http request option.
|
|
2119
2692
|
* @throws {RequiredError}
|
|
2120
2693
|
*/
|
|
2121
|
-
|
|
2694
|
+
phoneNumbersDelete: (phoneNumberId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2122
2695
|
};
|
|
2123
2696
|
/**
|
|
2124
2697
|
* ContactsApi - functional programming interface
|
|
@@ -2188,7 +2761,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2188
2761
|
/**
|
|
2189
2762
|
*
|
|
2190
2763
|
* @summary Contacts List
|
|
2191
|
-
* @param {string} [searchString]
|
|
2764
|
+
* @param {string | null} [searchString]
|
|
2192
2765
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2193
2766
|
* @param {number} [limit]
|
|
2194
2767
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2197,7 +2770,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2197
2770
|
* @param {*} [options] Override http request option.
|
|
2198
2771
|
* @throws {RequiredError}
|
|
2199
2772
|
*/
|
|
2200
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
2773
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
2201
2774
|
/**
|
|
2202
2775
|
* Removes an association between a contact and a listing.
|
|
2203
2776
|
* @summary Delete Contact Listing
|
|
@@ -2246,21 +2819,21 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2246
2819
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2247
2820
|
/**
|
|
2248
2821
|
*
|
|
2249
|
-
* @summary
|
|
2822
|
+
* @summary Phone_numbers Create
|
|
2250
2823
|
* @param {string} contactId
|
|
2251
|
-
* @param {
|
|
2824
|
+
* @param {PhoneNumberCreate} phoneNumberCreate
|
|
2252
2825
|
* @param {*} [options] Override http request option.
|
|
2253
2826
|
* @throws {RequiredError}
|
|
2254
2827
|
*/
|
|
2255
|
-
|
|
2828
|
+
phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PhoneNumbersCreate>>;
|
|
2256
2829
|
/**
|
|
2257
2830
|
*
|
|
2258
|
-
* @summary
|
|
2259
|
-
* @param {string}
|
|
2831
|
+
* @summary Phone_numbers Delete
|
|
2832
|
+
* @param {string} phoneNumberId
|
|
2260
2833
|
* @param {*} [options] Override http request option.
|
|
2261
2834
|
* @throws {RequiredError}
|
|
2262
2835
|
*/
|
|
2263
|
-
|
|
2836
|
+
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2264
2837
|
};
|
|
2265
2838
|
/**
|
|
2266
2839
|
* ContactsApi - factory interface
|
|
@@ -2330,7 +2903,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2330
2903
|
/**
|
|
2331
2904
|
*
|
|
2332
2905
|
* @summary Contacts List
|
|
2333
|
-
* @param {string} [searchString]
|
|
2906
|
+
* @param {string | null} [searchString]
|
|
2334
2907
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2335
2908
|
* @param {number} [limit]
|
|
2336
2909
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2339,7 +2912,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2339
2912
|
* @param {*} [options] Override http request option.
|
|
2340
2913
|
* @throws {RequiredError}
|
|
2341
2914
|
*/
|
|
2342
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
2915
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
2343
2916
|
/**
|
|
2344
2917
|
* Removes an association between a contact and a listing.
|
|
2345
2918
|
* @summary Delete Contact Listing
|
|
@@ -2388,21 +2961,21 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2388
2961
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2389
2962
|
/**
|
|
2390
2963
|
*
|
|
2391
|
-
* @summary
|
|
2964
|
+
* @summary Phone_numbers Create
|
|
2392
2965
|
* @param {string} contactId
|
|
2393
|
-
* @param {
|
|
2966
|
+
* @param {PhoneNumberCreate} phoneNumberCreate
|
|
2394
2967
|
* @param {*} [options] Override http request option.
|
|
2395
2968
|
* @throws {RequiredError}
|
|
2396
2969
|
*/
|
|
2397
|
-
|
|
2970
|
+
phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): AxiosPromise<PhoneNumbersCreate>;
|
|
2398
2971
|
/**
|
|
2399
2972
|
*
|
|
2400
|
-
* @summary
|
|
2401
|
-
* @param {string}
|
|
2973
|
+
* @summary Phone_numbers Delete
|
|
2974
|
+
* @param {string} phoneNumberId
|
|
2402
2975
|
* @param {*} [options] Override http request option.
|
|
2403
2976
|
* @throws {RequiredError}
|
|
2404
2977
|
*/
|
|
2405
|
-
|
|
2978
|
+
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2406
2979
|
};
|
|
2407
2980
|
/**
|
|
2408
2981
|
* ContactsApi - object-oriented interface
|
|
@@ -2481,7 +3054,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2481
3054
|
/**
|
|
2482
3055
|
*
|
|
2483
3056
|
* @summary Contacts List
|
|
2484
|
-
* @param {string} [searchString]
|
|
3057
|
+
* @param {string | null} [searchString]
|
|
2485
3058
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2486
3059
|
* @param {number} [limit]
|
|
2487
3060
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2491,7 +3064,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2491
3064
|
* @throws {RequiredError}
|
|
2492
3065
|
* @memberof ContactsApi
|
|
2493
3066
|
*/
|
|
2494
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
3067
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
2495
3068
|
/**
|
|
2496
3069
|
* Removes an association between a contact and a listing.
|
|
2497
3070
|
* @summary Delete Contact Listing
|
|
@@ -2545,23 +3118,185 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2545
3118
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2546
3119
|
/**
|
|
2547
3120
|
*
|
|
2548
|
-
* @summary
|
|
3121
|
+
* @summary Phone_numbers Create
|
|
2549
3122
|
* @param {string} contactId
|
|
2550
|
-
* @param {
|
|
3123
|
+
* @param {PhoneNumberCreate} phoneNumberCreate
|
|
2551
3124
|
* @param {*} [options] Override http request option.
|
|
2552
3125
|
* @throws {RequiredError}
|
|
2553
3126
|
* @memberof ContactsApi
|
|
2554
3127
|
*/
|
|
2555
|
-
|
|
3128
|
+
phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhoneNumbersCreate, any>>;
|
|
2556
3129
|
/**
|
|
2557
3130
|
*
|
|
2558
|
-
* @summary
|
|
2559
|
-
* @param {string}
|
|
3131
|
+
* @summary Phone_numbers Delete
|
|
3132
|
+
* @param {string} phoneNumberId
|
|
2560
3133
|
* @param {*} [options] Override http request option.
|
|
2561
3134
|
* @throws {RequiredError}
|
|
2562
3135
|
* @memberof ContactsApi
|
|
2563
3136
|
*/
|
|
2564
|
-
|
|
3137
|
+
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3138
|
+
}
|
|
3139
|
+
/**
|
|
3140
|
+
* ConversationsApi - axios parameter creator
|
|
3141
|
+
* @export
|
|
3142
|
+
*/
|
|
3143
|
+
declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3144
|
+
/**
|
|
3145
|
+
*
|
|
3146
|
+
* @summary Conversations Create
|
|
3147
|
+
* @param {ConversationCreate} conversationCreate
|
|
3148
|
+
* @param {*} [options] Override http request option.
|
|
3149
|
+
* @throws {RequiredError}
|
|
3150
|
+
*/
|
|
3151
|
+
conversationsCreate: (conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3152
|
+
/**
|
|
3153
|
+
*
|
|
3154
|
+
* @summary Conversations Get
|
|
3155
|
+
* @param {string} conversationId
|
|
3156
|
+
* @param {*} [options] Override http request option.
|
|
3157
|
+
* @throws {RequiredError}
|
|
3158
|
+
*/
|
|
3159
|
+
conversationsGet: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3160
|
+
/**
|
|
3161
|
+
* List all conversations, optionally filtered by contact_id
|
|
3162
|
+
* @summary Conversations List
|
|
3163
|
+
* @param {string} [contactId]
|
|
3164
|
+
* @param {*} [options] Override http request option.
|
|
3165
|
+
* @throws {RequiredError}
|
|
3166
|
+
*/
|
|
3167
|
+
conversationsList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3168
|
+
/**
|
|
3169
|
+
*
|
|
3170
|
+
* @summary Conversations Update
|
|
3171
|
+
* @param {string} conversationId
|
|
3172
|
+
* @param {ConversationUpdate} conversationUpdate
|
|
3173
|
+
* @param {*} [options] Override http request option.
|
|
3174
|
+
* @throws {RequiredError}
|
|
3175
|
+
*/
|
|
3176
|
+
conversationsUpdate: (conversationId: string, conversationUpdate: ConversationUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3177
|
+
};
|
|
3178
|
+
/**
|
|
3179
|
+
* ConversationsApi - functional programming interface
|
|
3180
|
+
* @export
|
|
3181
|
+
*/
|
|
3182
|
+
declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
3183
|
+
/**
|
|
3184
|
+
*
|
|
3185
|
+
* @summary Conversations Create
|
|
3186
|
+
* @param {ConversationCreate} conversationCreate
|
|
3187
|
+
* @param {*} [options] Override http request option.
|
|
3188
|
+
* @throws {RequiredError}
|
|
3189
|
+
*/
|
|
3190
|
+
conversationsCreate(conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConversationsCreate>>;
|
|
3191
|
+
/**
|
|
3192
|
+
*
|
|
3193
|
+
* @summary Conversations Get
|
|
3194
|
+
* @param {string} conversationId
|
|
3195
|
+
* @param {*} [options] Override http request option.
|
|
3196
|
+
* @throws {RequiredError}
|
|
3197
|
+
*/
|
|
3198
|
+
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConversationsGet>>;
|
|
3199
|
+
/**
|
|
3200
|
+
* List all conversations, optionally filtered by contact_id
|
|
3201
|
+
* @summary Conversations List
|
|
3202
|
+
* @param {string} [contactId]
|
|
3203
|
+
* @param {*} [options] Override http request option.
|
|
3204
|
+
* @throws {RequiredError}
|
|
3205
|
+
*/
|
|
3206
|
+
conversationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseConversationsList>>;
|
|
3207
|
+
/**
|
|
3208
|
+
*
|
|
3209
|
+
* @summary Conversations Update
|
|
3210
|
+
* @param {string} conversationId
|
|
3211
|
+
* @param {ConversationUpdate} conversationUpdate
|
|
3212
|
+
* @param {*} [options] Override http request option.
|
|
3213
|
+
* @throws {RequiredError}
|
|
3214
|
+
*/
|
|
3215
|
+
conversationsUpdate(conversationId: string, conversationUpdate: ConversationUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConversationsUpdate>>;
|
|
3216
|
+
};
|
|
3217
|
+
/**
|
|
3218
|
+
* ConversationsApi - factory interface
|
|
3219
|
+
* @export
|
|
3220
|
+
*/
|
|
3221
|
+
declare const ConversationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3222
|
+
/**
|
|
3223
|
+
*
|
|
3224
|
+
* @summary Conversations Create
|
|
3225
|
+
* @param {ConversationCreate} conversationCreate
|
|
3226
|
+
* @param {*} [options] Override http request option.
|
|
3227
|
+
* @throws {RequiredError}
|
|
3228
|
+
*/
|
|
3229
|
+
conversationsCreate(conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig): AxiosPromise<ConversationsCreate>;
|
|
3230
|
+
/**
|
|
3231
|
+
*
|
|
3232
|
+
* @summary Conversations Get
|
|
3233
|
+
* @param {string} conversationId
|
|
3234
|
+
* @param {*} [options] Override http request option.
|
|
3235
|
+
* @throws {RequiredError}
|
|
3236
|
+
*/
|
|
3237
|
+
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<ConversationsGet>;
|
|
3238
|
+
/**
|
|
3239
|
+
* List all conversations, optionally filtered by contact_id
|
|
3240
|
+
* @summary Conversations List
|
|
3241
|
+
* @param {string} [contactId]
|
|
3242
|
+
* @param {*} [options] Override http request option.
|
|
3243
|
+
* @throws {RequiredError}
|
|
3244
|
+
*/
|
|
3245
|
+
conversationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseConversationsList>;
|
|
3246
|
+
/**
|
|
3247
|
+
*
|
|
3248
|
+
* @summary Conversations Update
|
|
3249
|
+
* @param {string} conversationId
|
|
3250
|
+
* @param {ConversationUpdate} conversationUpdate
|
|
3251
|
+
* @param {*} [options] Override http request option.
|
|
3252
|
+
* @throws {RequiredError}
|
|
3253
|
+
*/
|
|
3254
|
+
conversationsUpdate(conversationId: string, conversationUpdate: ConversationUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ConversationsUpdate>;
|
|
3255
|
+
};
|
|
3256
|
+
/**
|
|
3257
|
+
* ConversationsApi - object-oriented interface
|
|
3258
|
+
* @export
|
|
3259
|
+
* @class ConversationsApi
|
|
3260
|
+
* @extends {BaseAPI}
|
|
3261
|
+
*/
|
|
3262
|
+
declare class ConversationsApi extends BaseAPI {
|
|
3263
|
+
/**
|
|
3264
|
+
*
|
|
3265
|
+
* @summary Conversations Create
|
|
3266
|
+
* @param {ConversationCreate} conversationCreate
|
|
3267
|
+
* @param {*} [options] Override http request option.
|
|
3268
|
+
* @throws {RequiredError}
|
|
3269
|
+
* @memberof ConversationsApi
|
|
3270
|
+
*/
|
|
3271
|
+
conversationsCreate(conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ConversationsCreate, any>>;
|
|
3272
|
+
/**
|
|
3273
|
+
*
|
|
3274
|
+
* @summary Conversations Get
|
|
3275
|
+
* @param {string} conversationId
|
|
3276
|
+
* @param {*} [options] Override http request option.
|
|
3277
|
+
* @throws {RequiredError}
|
|
3278
|
+
* @memberof ConversationsApi
|
|
3279
|
+
*/
|
|
3280
|
+
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ConversationsGet, any>>;
|
|
3281
|
+
/**
|
|
3282
|
+
* List all conversations, optionally filtered by contact_id
|
|
3283
|
+
* @summary Conversations List
|
|
3284
|
+
* @param {string} [contactId]
|
|
3285
|
+
* @param {*} [options] Override http request option.
|
|
3286
|
+
* @throws {RequiredError}
|
|
3287
|
+
* @memberof ConversationsApi
|
|
3288
|
+
*/
|
|
3289
|
+
conversationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseConversationsList, any>>;
|
|
3290
|
+
/**
|
|
3291
|
+
*
|
|
3292
|
+
* @summary Conversations Update
|
|
3293
|
+
* @param {string} conversationId
|
|
3294
|
+
* @param {ConversationUpdate} conversationUpdate
|
|
3295
|
+
* @param {*} [options] Override http request option.
|
|
3296
|
+
* @throws {RequiredError}
|
|
3297
|
+
* @memberof ConversationsApi
|
|
3298
|
+
*/
|
|
3299
|
+
conversationsUpdate(conversationId: string, conversationUpdate: ConversationUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ConversationsUpdate, any>>;
|
|
2565
3300
|
}
|
|
2566
3301
|
/**
|
|
2567
3302
|
* EmailsApi - axios parameter creator
|
|
@@ -2837,100 +3572,155 @@ declare class ListingsApi extends BaseAPI {
|
|
|
2837
3572
|
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseListingsList, any>>;
|
|
2838
3573
|
}
|
|
2839
3574
|
/**
|
|
2840
|
-
*
|
|
3575
|
+
* ManagedPhoneNumbersApi - axios parameter creator
|
|
3576
|
+
* @export
|
|
3577
|
+
*/
|
|
3578
|
+
declare const ManagedPhoneNumbersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3579
|
+
/**
|
|
3580
|
+
*
|
|
3581
|
+
* @summary Managed_phone_numbers List
|
|
3582
|
+
* @param {*} [options] Override http request option.
|
|
3583
|
+
* @throws {RequiredError}
|
|
3584
|
+
*/
|
|
3585
|
+
managedPhoneNumbersList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3586
|
+
};
|
|
3587
|
+
/**
|
|
3588
|
+
* ManagedPhoneNumbersApi - functional programming interface
|
|
3589
|
+
* @export
|
|
3590
|
+
*/
|
|
3591
|
+
declare const ManagedPhoneNumbersApiFp: (configuration?: Configuration) => {
|
|
3592
|
+
/**
|
|
3593
|
+
*
|
|
3594
|
+
* @summary Managed_phone_numbers List
|
|
3595
|
+
* @param {*} [options] Override http request option.
|
|
3596
|
+
* @throws {RequiredError}
|
|
3597
|
+
*/
|
|
3598
|
+
managedPhoneNumbersList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseManagedPhoneNumbersList>>;
|
|
3599
|
+
};
|
|
3600
|
+
/**
|
|
3601
|
+
* ManagedPhoneNumbersApi - factory interface
|
|
3602
|
+
* @export
|
|
3603
|
+
*/
|
|
3604
|
+
declare const ManagedPhoneNumbersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3605
|
+
/**
|
|
3606
|
+
*
|
|
3607
|
+
* @summary Managed_phone_numbers List
|
|
3608
|
+
* @param {*} [options] Override http request option.
|
|
3609
|
+
* @throws {RequiredError}
|
|
3610
|
+
*/
|
|
3611
|
+
managedPhoneNumbersList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseManagedPhoneNumbersList>;
|
|
3612
|
+
};
|
|
3613
|
+
/**
|
|
3614
|
+
* ManagedPhoneNumbersApi - object-oriented interface
|
|
3615
|
+
* @export
|
|
3616
|
+
* @class ManagedPhoneNumbersApi
|
|
3617
|
+
* @extends {BaseAPI}
|
|
3618
|
+
*/
|
|
3619
|
+
declare class ManagedPhoneNumbersApi extends BaseAPI {
|
|
3620
|
+
/**
|
|
3621
|
+
*
|
|
3622
|
+
* @summary Managed_phone_numbers List
|
|
3623
|
+
* @param {*} [options] Override http request option.
|
|
3624
|
+
* @throws {RequiredError}
|
|
3625
|
+
* @memberof ManagedPhoneNumbersApi
|
|
3626
|
+
*/
|
|
3627
|
+
managedPhoneNumbersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseManagedPhoneNumbersList, any>>;
|
|
3628
|
+
}
|
|
3629
|
+
/**
|
|
3630
|
+
* PhoneNumbersApi - axios parameter creator
|
|
2841
3631
|
* @export
|
|
2842
3632
|
*/
|
|
2843
|
-
declare const
|
|
3633
|
+
declare const PhoneNumbersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2844
3634
|
/**
|
|
2845
3635
|
*
|
|
2846
|
-
* @summary
|
|
3636
|
+
* @summary Phone_numbers Create
|
|
2847
3637
|
* @param {string} contactId
|
|
2848
|
-
* @param {
|
|
3638
|
+
* @param {PhoneNumberCreate} phoneNumberCreate
|
|
2849
3639
|
* @param {*} [options] Override http request option.
|
|
2850
3640
|
* @throws {RequiredError}
|
|
2851
3641
|
*/
|
|
2852
|
-
|
|
3642
|
+
phoneNumbersCreate: (contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2853
3643
|
/**
|
|
2854
3644
|
*
|
|
2855
|
-
* @summary
|
|
2856
|
-
* @param {string}
|
|
3645
|
+
* @summary Phone_numbers Delete
|
|
3646
|
+
* @param {string} phoneNumberId
|
|
2857
3647
|
* @param {*} [options] Override http request option.
|
|
2858
3648
|
* @throws {RequiredError}
|
|
2859
3649
|
*/
|
|
2860
|
-
|
|
3650
|
+
phoneNumbersDelete: (phoneNumberId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2861
3651
|
};
|
|
2862
3652
|
/**
|
|
2863
|
-
*
|
|
3653
|
+
* PhoneNumbersApi - functional programming interface
|
|
2864
3654
|
* @export
|
|
2865
3655
|
*/
|
|
2866
|
-
declare const
|
|
3656
|
+
declare const PhoneNumbersApiFp: (configuration?: Configuration) => {
|
|
2867
3657
|
/**
|
|
2868
3658
|
*
|
|
2869
|
-
* @summary
|
|
3659
|
+
* @summary Phone_numbers Create
|
|
2870
3660
|
* @param {string} contactId
|
|
2871
|
-
* @param {
|
|
3661
|
+
* @param {PhoneNumberCreate} phoneNumberCreate
|
|
2872
3662
|
* @param {*} [options] Override http request option.
|
|
2873
3663
|
* @throws {RequiredError}
|
|
2874
3664
|
*/
|
|
2875
|
-
|
|
3665
|
+
phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PhoneNumbersCreate>>;
|
|
2876
3666
|
/**
|
|
2877
3667
|
*
|
|
2878
|
-
* @summary
|
|
2879
|
-
* @param {string}
|
|
3668
|
+
* @summary Phone_numbers Delete
|
|
3669
|
+
* @param {string} phoneNumberId
|
|
2880
3670
|
* @param {*} [options] Override http request option.
|
|
2881
3671
|
* @throws {RequiredError}
|
|
2882
3672
|
*/
|
|
2883
|
-
|
|
3673
|
+
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2884
3674
|
};
|
|
2885
3675
|
/**
|
|
2886
|
-
*
|
|
3676
|
+
* PhoneNumbersApi - factory interface
|
|
2887
3677
|
* @export
|
|
2888
3678
|
*/
|
|
2889
|
-
declare const
|
|
3679
|
+
declare const PhoneNumbersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2890
3680
|
/**
|
|
2891
3681
|
*
|
|
2892
|
-
* @summary
|
|
3682
|
+
* @summary Phone_numbers Create
|
|
2893
3683
|
* @param {string} contactId
|
|
2894
|
-
* @param {
|
|
3684
|
+
* @param {PhoneNumberCreate} phoneNumberCreate
|
|
2895
3685
|
* @param {*} [options] Override http request option.
|
|
2896
3686
|
* @throws {RequiredError}
|
|
2897
3687
|
*/
|
|
2898
|
-
|
|
3688
|
+
phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): AxiosPromise<PhoneNumbersCreate>;
|
|
2899
3689
|
/**
|
|
2900
3690
|
*
|
|
2901
|
-
* @summary
|
|
2902
|
-
* @param {string}
|
|
3691
|
+
* @summary Phone_numbers Delete
|
|
3692
|
+
* @param {string} phoneNumberId
|
|
2903
3693
|
* @param {*} [options] Override http request option.
|
|
2904
3694
|
* @throws {RequiredError}
|
|
2905
3695
|
*/
|
|
2906
|
-
|
|
3696
|
+
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2907
3697
|
};
|
|
2908
3698
|
/**
|
|
2909
|
-
*
|
|
3699
|
+
* PhoneNumbersApi - object-oriented interface
|
|
2910
3700
|
* @export
|
|
2911
|
-
* @class
|
|
3701
|
+
* @class PhoneNumbersApi
|
|
2912
3702
|
* @extends {BaseAPI}
|
|
2913
3703
|
*/
|
|
2914
|
-
declare class
|
|
3704
|
+
declare class PhoneNumbersApi extends BaseAPI {
|
|
2915
3705
|
/**
|
|
2916
3706
|
*
|
|
2917
|
-
* @summary
|
|
3707
|
+
* @summary Phone_numbers Create
|
|
2918
3708
|
* @param {string} contactId
|
|
2919
|
-
* @param {
|
|
3709
|
+
* @param {PhoneNumberCreate} phoneNumberCreate
|
|
2920
3710
|
* @param {*} [options] Override http request option.
|
|
2921
3711
|
* @throws {RequiredError}
|
|
2922
|
-
* @memberof
|
|
3712
|
+
* @memberof PhoneNumbersApi
|
|
2923
3713
|
*/
|
|
2924
|
-
|
|
3714
|
+
phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhoneNumbersCreate, any>>;
|
|
2925
3715
|
/**
|
|
2926
3716
|
*
|
|
2927
|
-
* @summary
|
|
2928
|
-
* @param {string}
|
|
3717
|
+
* @summary Phone_numbers Delete
|
|
3718
|
+
* @param {string} phoneNumberId
|
|
2929
3719
|
* @param {*} [options] Override http request option.
|
|
2930
3720
|
* @throws {RequiredError}
|
|
2931
|
-
* @memberof
|
|
3721
|
+
* @memberof PhoneNumbersApi
|
|
2932
3722
|
*/
|
|
2933
|
-
|
|
3723
|
+
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2934
3724
|
}
|
|
2935
3725
|
/**
|
|
2936
3726
|
* ReservationsApi - axios parameter creator
|
|
@@ -2996,6 +3786,13 @@ declare class ReservationsApi extends BaseAPI {
|
|
|
2996
3786
|
* @export
|
|
2997
3787
|
*/
|
|
2998
3788
|
declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3789
|
+
/**
|
|
3790
|
+
*
|
|
3791
|
+
* @summary Accounts List
|
|
3792
|
+
* @param {*} [options] Override http request option.
|
|
3793
|
+
* @throws {RequiredError}
|
|
3794
|
+
*/
|
|
3795
|
+
accountsList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2999
3796
|
/**
|
|
3000
3797
|
*
|
|
3001
3798
|
* @summary Addresses Create
|
|
@@ -3059,7 +3856,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3059
3856
|
/**
|
|
3060
3857
|
*
|
|
3061
3858
|
* @summary Contacts List
|
|
3062
|
-
* @param {string} [searchString]
|
|
3859
|
+
* @param {string | null} [searchString]
|
|
3063
3860
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3064
3861
|
* @param {number} [limit]
|
|
3065
3862
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3068,7 +3865,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3068
3865
|
* @param {*} [options] Override http request option.
|
|
3069
3866
|
* @throws {RequiredError}
|
|
3070
3867
|
*/
|
|
3071
|
-
contactsList: (searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3868
|
+
contactsList: (searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3072
3869
|
/**
|
|
3073
3870
|
* Removes an association between a contact and a listing.
|
|
3074
3871
|
* @summary Delete Contact Listing
|
|
@@ -3098,6 +3895,39 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3098
3895
|
* @throws {RequiredError}
|
|
3099
3896
|
*/
|
|
3100
3897
|
contactsUpdateListing: (contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3898
|
+
/**
|
|
3899
|
+
*
|
|
3900
|
+
* @summary Conversations Create
|
|
3901
|
+
* @param {ConversationCreate} conversationCreate
|
|
3902
|
+
* @param {*} [options] Override http request option.
|
|
3903
|
+
* @throws {RequiredError}
|
|
3904
|
+
*/
|
|
3905
|
+
conversationsCreate: (conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3906
|
+
/**
|
|
3907
|
+
*
|
|
3908
|
+
* @summary Conversations Get
|
|
3909
|
+
* @param {string} conversationId
|
|
3910
|
+
* @param {*} [options] Override http request option.
|
|
3911
|
+
* @throws {RequiredError}
|
|
3912
|
+
*/
|
|
3913
|
+
conversationsGet: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3914
|
+
/**
|
|
3915
|
+
* List all conversations, optionally filtered by contact_id
|
|
3916
|
+
* @summary Conversations List
|
|
3917
|
+
* @param {string} [contactId]
|
|
3918
|
+
* @param {*} [options] Override http request option.
|
|
3919
|
+
* @throws {RequiredError}
|
|
3920
|
+
*/
|
|
3921
|
+
conversationsList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3922
|
+
/**
|
|
3923
|
+
*
|
|
3924
|
+
* @summary Conversations Update
|
|
3925
|
+
* @param {string} conversationId
|
|
3926
|
+
* @param {ConversationUpdate} conversationUpdate
|
|
3927
|
+
* @param {*} [options] Override http request option.
|
|
3928
|
+
* @throws {RequiredError}
|
|
3929
|
+
*/
|
|
3930
|
+
conversationsUpdate: (conversationId: string, conversationUpdate: ConversationUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3101
3931
|
/**
|
|
3102
3932
|
*
|
|
3103
3933
|
* @summary Emails Create
|
|
@@ -3133,21 +3963,28 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3133
3963
|
listingsList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3134
3964
|
/**
|
|
3135
3965
|
*
|
|
3136
|
-
* @summary
|
|
3966
|
+
* @summary Managed_phone_numbers List
|
|
3967
|
+
* @param {*} [options] Override http request option.
|
|
3968
|
+
* @throws {RequiredError}
|
|
3969
|
+
*/
|
|
3970
|
+
managedPhoneNumbersList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3971
|
+
/**
|
|
3972
|
+
*
|
|
3973
|
+
* @summary Phone_numbers Create
|
|
3137
3974
|
* @param {string} contactId
|
|
3138
|
-
* @param {
|
|
3975
|
+
* @param {PhoneNumberCreate} phoneNumberCreate
|
|
3139
3976
|
* @param {*} [options] Override http request option.
|
|
3140
3977
|
* @throws {RequiredError}
|
|
3141
3978
|
*/
|
|
3142
|
-
|
|
3979
|
+
phoneNumbersCreate: (contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3143
3980
|
/**
|
|
3144
3981
|
*
|
|
3145
|
-
* @summary
|
|
3146
|
-
* @param {string}
|
|
3982
|
+
* @summary Phone_numbers Delete
|
|
3983
|
+
* @param {string} phoneNumberId
|
|
3147
3984
|
* @param {*} [options] Override http request option.
|
|
3148
3985
|
* @throws {RequiredError}
|
|
3149
3986
|
*/
|
|
3150
|
-
|
|
3987
|
+
phoneNumbersDelete: (phoneNumberId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3151
3988
|
/**
|
|
3152
3989
|
*
|
|
3153
3990
|
* @summary Reservations List
|
|
@@ -3170,6 +4007,13 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3170
4007
|
* @export
|
|
3171
4008
|
*/
|
|
3172
4009
|
declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
4010
|
+
/**
|
|
4011
|
+
*
|
|
4012
|
+
* @summary Accounts List
|
|
4013
|
+
* @param {*} [options] Override http request option.
|
|
4014
|
+
* @throws {RequiredError}
|
|
4015
|
+
*/
|
|
4016
|
+
accountsList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAccountsList>>;
|
|
3173
4017
|
/**
|
|
3174
4018
|
*
|
|
3175
4019
|
* @summary Addresses Create
|
|
@@ -3233,7 +4077,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
3233
4077
|
/**
|
|
3234
4078
|
*
|
|
3235
4079
|
* @summary Contacts List
|
|
3236
|
-
* @param {string} [searchString]
|
|
4080
|
+
* @param {string | null} [searchString]
|
|
3237
4081
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3238
4082
|
* @param {number} [limit]
|
|
3239
4083
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3242,7 +4086,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
3242
4086
|
* @param {*} [options] Override http request option.
|
|
3243
4087
|
* @throws {RequiredError}
|
|
3244
4088
|
*/
|
|
3245
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
4089
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
3246
4090
|
/**
|
|
3247
4091
|
* Removes an association between a contact and a listing.
|
|
3248
4092
|
* @summary Delete Contact Listing
|
|
@@ -3272,6 +4116,39 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
3272
4116
|
* @throws {RequiredError}
|
|
3273
4117
|
*/
|
|
3274
4118
|
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4119
|
+
/**
|
|
4120
|
+
*
|
|
4121
|
+
* @summary Conversations Create
|
|
4122
|
+
* @param {ConversationCreate} conversationCreate
|
|
4123
|
+
* @param {*} [options] Override http request option.
|
|
4124
|
+
* @throws {RequiredError}
|
|
4125
|
+
*/
|
|
4126
|
+
conversationsCreate(conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConversationsCreate>>;
|
|
4127
|
+
/**
|
|
4128
|
+
*
|
|
4129
|
+
* @summary Conversations Get
|
|
4130
|
+
* @param {string} conversationId
|
|
4131
|
+
* @param {*} [options] Override http request option.
|
|
4132
|
+
* @throws {RequiredError}
|
|
4133
|
+
*/
|
|
4134
|
+
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConversationsGet>>;
|
|
4135
|
+
/**
|
|
4136
|
+
* List all conversations, optionally filtered by contact_id
|
|
4137
|
+
* @summary Conversations List
|
|
4138
|
+
* @param {string} [contactId]
|
|
4139
|
+
* @param {*} [options] Override http request option.
|
|
4140
|
+
* @throws {RequiredError}
|
|
4141
|
+
*/
|
|
4142
|
+
conversationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseConversationsList>>;
|
|
4143
|
+
/**
|
|
4144
|
+
*
|
|
4145
|
+
* @summary Conversations Update
|
|
4146
|
+
* @param {string} conversationId
|
|
4147
|
+
* @param {ConversationUpdate} conversationUpdate
|
|
4148
|
+
* @param {*} [options] Override http request option.
|
|
4149
|
+
* @throws {RequiredError}
|
|
4150
|
+
*/
|
|
4151
|
+
conversationsUpdate(conversationId: string, conversationUpdate: ConversationUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConversationsUpdate>>;
|
|
3275
4152
|
/**
|
|
3276
4153
|
*
|
|
3277
4154
|
* @summary Emails Create
|
|
@@ -3307,21 +4184,28 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
3307
4184
|
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseListingsList>>;
|
|
3308
4185
|
/**
|
|
3309
4186
|
*
|
|
3310
|
-
* @summary
|
|
4187
|
+
* @summary Managed_phone_numbers List
|
|
4188
|
+
* @param {*} [options] Override http request option.
|
|
4189
|
+
* @throws {RequiredError}
|
|
4190
|
+
*/
|
|
4191
|
+
managedPhoneNumbersList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseManagedPhoneNumbersList>>;
|
|
4192
|
+
/**
|
|
4193
|
+
*
|
|
4194
|
+
* @summary Phone_numbers Create
|
|
3311
4195
|
* @param {string} contactId
|
|
3312
|
-
* @param {
|
|
4196
|
+
* @param {PhoneNumberCreate} phoneNumberCreate
|
|
3313
4197
|
* @param {*} [options] Override http request option.
|
|
3314
4198
|
* @throws {RequiredError}
|
|
3315
4199
|
*/
|
|
3316
|
-
|
|
4200
|
+
phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PhoneNumbersCreate>>;
|
|
3317
4201
|
/**
|
|
3318
4202
|
*
|
|
3319
|
-
* @summary
|
|
3320
|
-
* @param {string}
|
|
4203
|
+
* @summary Phone_numbers Delete
|
|
4204
|
+
* @param {string} phoneNumberId
|
|
3321
4205
|
* @param {*} [options] Override http request option.
|
|
3322
4206
|
* @throws {RequiredError}
|
|
3323
4207
|
*/
|
|
3324
|
-
|
|
4208
|
+
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3325
4209
|
/**
|
|
3326
4210
|
*
|
|
3327
4211
|
* @summary Reservations List
|
|
@@ -3344,6 +4228,13 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
3344
4228
|
* @export
|
|
3345
4229
|
*/
|
|
3346
4230
|
declare const UnboundApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4231
|
+
/**
|
|
4232
|
+
*
|
|
4233
|
+
* @summary Accounts List
|
|
4234
|
+
* @param {*} [options] Override http request option.
|
|
4235
|
+
* @throws {RequiredError}
|
|
4236
|
+
*/
|
|
4237
|
+
accountsList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAccountsList>;
|
|
3347
4238
|
/**
|
|
3348
4239
|
*
|
|
3349
4240
|
* @summary Addresses Create
|
|
@@ -3407,7 +4298,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3407
4298
|
/**
|
|
3408
4299
|
*
|
|
3409
4300
|
* @summary Contacts List
|
|
3410
|
-
* @param {string} [searchString]
|
|
4301
|
+
* @param {string | null} [searchString]
|
|
3411
4302
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3412
4303
|
* @param {number} [limit]
|
|
3413
4304
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3416,7 +4307,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3416
4307
|
* @param {*} [options] Override http request option.
|
|
3417
4308
|
* @throws {RequiredError}
|
|
3418
4309
|
*/
|
|
3419
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
4310
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
3420
4311
|
/**
|
|
3421
4312
|
* Removes an association between a contact and a listing.
|
|
3422
4313
|
* @summary Delete Contact Listing
|
|
@@ -3446,6 +4337,39 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3446
4337
|
* @throws {RequiredError}
|
|
3447
4338
|
*/
|
|
3448
4339
|
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
4340
|
+
/**
|
|
4341
|
+
*
|
|
4342
|
+
* @summary Conversations Create
|
|
4343
|
+
* @param {ConversationCreate} conversationCreate
|
|
4344
|
+
* @param {*} [options] Override http request option.
|
|
4345
|
+
* @throws {RequiredError}
|
|
4346
|
+
*/
|
|
4347
|
+
conversationsCreate(conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig): AxiosPromise<ConversationsCreate>;
|
|
4348
|
+
/**
|
|
4349
|
+
*
|
|
4350
|
+
* @summary Conversations Get
|
|
4351
|
+
* @param {string} conversationId
|
|
4352
|
+
* @param {*} [options] Override http request option.
|
|
4353
|
+
* @throws {RequiredError}
|
|
4354
|
+
*/
|
|
4355
|
+
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<ConversationsGet>;
|
|
4356
|
+
/**
|
|
4357
|
+
* List all conversations, optionally filtered by contact_id
|
|
4358
|
+
* @summary Conversations List
|
|
4359
|
+
* @param {string} [contactId]
|
|
4360
|
+
* @param {*} [options] Override http request option.
|
|
4361
|
+
* @throws {RequiredError}
|
|
4362
|
+
*/
|
|
4363
|
+
conversationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseConversationsList>;
|
|
4364
|
+
/**
|
|
4365
|
+
*
|
|
4366
|
+
* @summary Conversations Update
|
|
4367
|
+
* @param {string} conversationId
|
|
4368
|
+
* @param {ConversationUpdate} conversationUpdate
|
|
4369
|
+
* @param {*} [options] Override http request option.
|
|
4370
|
+
* @throws {RequiredError}
|
|
4371
|
+
*/
|
|
4372
|
+
conversationsUpdate(conversationId: string, conversationUpdate: ConversationUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ConversationsUpdate>;
|
|
3449
4373
|
/**
|
|
3450
4374
|
*
|
|
3451
4375
|
* @summary Emails Create
|
|
@@ -3481,21 +4405,28 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3481
4405
|
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseListingsList>;
|
|
3482
4406
|
/**
|
|
3483
4407
|
*
|
|
3484
|
-
* @summary
|
|
4408
|
+
* @summary Managed_phone_numbers List
|
|
4409
|
+
* @param {*} [options] Override http request option.
|
|
4410
|
+
* @throws {RequiredError}
|
|
4411
|
+
*/
|
|
4412
|
+
managedPhoneNumbersList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseManagedPhoneNumbersList>;
|
|
4413
|
+
/**
|
|
4414
|
+
*
|
|
4415
|
+
* @summary Phone_numbers Create
|
|
3485
4416
|
* @param {string} contactId
|
|
3486
|
-
* @param {
|
|
4417
|
+
* @param {PhoneNumberCreate} phoneNumberCreate
|
|
3487
4418
|
* @param {*} [options] Override http request option.
|
|
3488
4419
|
* @throws {RequiredError}
|
|
3489
4420
|
*/
|
|
3490
|
-
|
|
4421
|
+
phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): AxiosPromise<PhoneNumbersCreate>;
|
|
3491
4422
|
/**
|
|
3492
4423
|
*
|
|
3493
|
-
* @summary
|
|
3494
|
-
* @param {string}
|
|
4424
|
+
* @summary Phone_numbers Delete
|
|
4425
|
+
* @param {string} phoneNumberId
|
|
3495
4426
|
* @param {*} [options] Override http request option.
|
|
3496
4427
|
* @throws {RequiredError}
|
|
3497
4428
|
*/
|
|
3498
|
-
|
|
4429
|
+
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3499
4430
|
/**
|
|
3500
4431
|
*
|
|
3501
4432
|
* @summary Reservations List
|
|
@@ -3520,6 +4451,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3520
4451
|
* @extends {BaseAPI}
|
|
3521
4452
|
*/
|
|
3522
4453
|
declare class UnboundApi extends BaseAPI {
|
|
4454
|
+
/**
|
|
4455
|
+
*
|
|
4456
|
+
* @summary Accounts List
|
|
4457
|
+
* @param {*} [options] Override http request option.
|
|
4458
|
+
* @throws {RequiredError}
|
|
4459
|
+
* @memberof UnboundApi
|
|
4460
|
+
*/
|
|
4461
|
+
accountsList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAccountsList, any>>;
|
|
3523
4462
|
/**
|
|
3524
4463
|
*
|
|
3525
4464
|
* @summary Addresses Create
|
|
@@ -3590,7 +4529,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3590
4529
|
/**
|
|
3591
4530
|
*
|
|
3592
4531
|
* @summary Contacts List
|
|
3593
|
-
* @param {string} [searchString]
|
|
4532
|
+
* @param {string | null} [searchString]
|
|
3594
4533
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3595
4534
|
* @param {number} [limit]
|
|
3596
4535
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3600,7 +4539,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3600
4539
|
* @throws {RequiredError}
|
|
3601
4540
|
* @memberof UnboundApi
|
|
3602
4541
|
*/
|
|
3603
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
4542
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
3604
4543
|
/**
|
|
3605
4544
|
* Removes an association between a contact and a listing.
|
|
3606
4545
|
* @summary Delete Contact Listing
|
|
@@ -3633,6 +4572,43 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3633
4572
|
* @memberof UnboundApi
|
|
3634
4573
|
*/
|
|
3635
4574
|
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
4575
|
+
/**
|
|
4576
|
+
*
|
|
4577
|
+
* @summary Conversations Create
|
|
4578
|
+
* @param {ConversationCreate} conversationCreate
|
|
4579
|
+
* @param {*} [options] Override http request option.
|
|
4580
|
+
* @throws {RequiredError}
|
|
4581
|
+
* @memberof UnboundApi
|
|
4582
|
+
*/
|
|
4583
|
+
conversationsCreate(conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ConversationsCreate, any>>;
|
|
4584
|
+
/**
|
|
4585
|
+
*
|
|
4586
|
+
* @summary Conversations Get
|
|
4587
|
+
* @param {string} conversationId
|
|
4588
|
+
* @param {*} [options] Override http request option.
|
|
4589
|
+
* @throws {RequiredError}
|
|
4590
|
+
* @memberof UnboundApi
|
|
4591
|
+
*/
|
|
4592
|
+
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ConversationsGet, any>>;
|
|
4593
|
+
/**
|
|
4594
|
+
* List all conversations, optionally filtered by contact_id
|
|
4595
|
+
* @summary Conversations List
|
|
4596
|
+
* @param {string} [contactId]
|
|
4597
|
+
* @param {*} [options] Override http request option.
|
|
4598
|
+
* @throws {RequiredError}
|
|
4599
|
+
* @memberof UnboundApi
|
|
4600
|
+
*/
|
|
4601
|
+
conversationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseConversationsList, any>>;
|
|
4602
|
+
/**
|
|
4603
|
+
*
|
|
4604
|
+
* @summary Conversations Update
|
|
4605
|
+
* @param {string} conversationId
|
|
4606
|
+
* @param {ConversationUpdate} conversationUpdate
|
|
4607
|
+
* @param {*} [options] Override http request option.
|
|
4608
|
+
* @throws {RequiredError}
|
|
4609
|
+
* @memberof UnboundApi
|
|
4610
|
+
*/
|
|
4611
|
+
conversationsUpdate(conversationId: string, conversationUpdate: ConversationUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ConversationsUpdate, any>>;
|
|
3636
4612
|
/**
|
|
3637
4613
|
*
|
|
3638
4614
|
* @summary Emails Create
|
|
@@ -3672,23 +4648,31 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3672
4648
|
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseListingsList, any>>;
|
|
3673
4649
|
/**
|
|
3674
4650
|
*
|
|
3675
|
-
* @summary
|
|
4651
|
+
* @summary Managed_phone_numbers List
|
|
4652
|
+
* @param {*} [options] Override http request option.
|
|
4653
|
+
* @throws {RequiredError}
|
|
4654
|
+
* @memberof UnboundApi
|
|
4655
|
+
*/
|
|
4656
|
+
managedPhoneNumbersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseManagedPhoneNumbersList, any>>;
|
|
4657
|
+
/**
|
|
4658
|
+
*
|
|
4659
|
+
* @summary Phone_numbers Create
|
|
3676
4660
|
* @param {string} contactId
|
|
3677
|
-
* @param {
|
|
4661
|
+
* @param {PhoneNumberCreate} phoneNumberCreate
|
|
3678
4662
|
* @param {*} [options] Override http request option.
|
|
3679
4663
|
* @throws {RequiredError}
|
|
3680
4664
|
* @memberof UnboundApi
|
|
3681
4665
|
*/
|
|
3682
|
-
|
|
4666
|
+
phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhoneNumbersCreate, any>>;
|
|
3683
4667
|
/**
|
|
3684
4668
|
*
|
|
3685
|
-
* @summary
|
|
3686
|
-
* @param {string}
|
|
4669
|
+
* @summary Phone_numbers Delete
|
|
4670
|
+
* @param {string} phoneNumberId
|
|
3687
4671
|
* @param {*} [options] Override http request option.
|
|
3688
4672
|
* @throws {RequiredError}
|
|
3689
4673
|
* @memberof UnboundApi
|
|
3690
4674
|
*/
|
|
3691
|
-
|
|
4675
|
+
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3692
4676
|
/**
|
|
3693
4677
|
*
|
|
3694
4678
|
* @summary Reservations List
|
|
@@ -3709,4 +4693,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3709
4693
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
3710
4694
|
}
|
|
3711
4695
|
|
|
3712
|
-
export { type APIValidationError, type APIValidationErrorLocInner, type AddressApi, type AddressCreate, type AddressItemApi, type AddressUpdate, AddressesApi, AddressesApiAxiosParamCreator, AddressesApiFactory, AddressesApiFp, type AddressesCreate, type AddressesUpdate, Configuration, type ConfigurationParameters, type ContactCreate, ContactListingType, ContactSortBy, type ContactTypeDataApi, type ContactUpdate, type Contacts, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreate, type ContactsGet, type ContactsUpdate, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailCreate, EmailsApi, EmailsApiAxiosParamCreator, EmailsApiFactory, EmailsApiFp, type EmailsCreate, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseInquiriesList, type ListResponseListingsList, type ListResponseReservationsList, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ListingsList, type OwnerDataApi, type PaginatedResponseContacts, PaginationDirection, type PhoneApi, type
|
|
4696
|
+
export { type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AccountsList, type AddressApi, type AddressCreate, type AddressItemApi, type AddressUpdate, AddressesApi, AddressesApiAxiosParamCreator, AddressesApiFactory, AddressesApiFp, type AddressesCreate, type AddressesUpdate, Configuration, type ConfigurationParameters, type ContactCreate, ContactListingType, ContactSortBy, type ContactTypeDataApi, type ContactUpdate, type Contacts, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreate, type ContactsGet, type ContactsUpdate, type ConversationCreate, ConversationStatus, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type ConversationsCreate, type ConversationsGet, type ConversationsList, type ConversationsUpdate, type Conversationtypedata, type Conversationtypedata1, type Conversationtypedata2, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailCreate, EmailsApi, EmailsApiAxiosParamCreator, EmailsApiFactory, EmailsApiFp, type EmailsCreate, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseAccountsList, type ListResponseConversationsList, type ListResponseInquiriesList, type ListResponseListingsList, type ListResponseManagedPhoneNumbersList, type ListResponseReservationsList, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ListingsList, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type ManagedPhoneNumbersList, type OwnerDataApi, type PaginatedResponseContacts, PaginationDirection, type PhoneApi, type PhoneNumberCreate, PhoneNumbersApi, PhoneNumbersApiAxiosParamCreator, PhoneNumbersApiFactory, PhoneNumbersApiFp, type PhoneNumbersCreate, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type ReservationsList, SortOrder, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|