@ember-home/unbound-ts-client 0.0.16 → 0.0.17
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 +491 -364
- package/dist/index.d.ts +491 -364
- package/dist/index.js +226 -54
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +186 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -469,10 +469,12 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
469
469
|
* @summary Contacts List
|
|
470
470
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
471
471
|
* @param {string} [searchString]
|
|
472
|
+
* @param {number} [limit]
|
|
473
|
+
* @param {number} [offset]
|
|
472
474
|
* @param {*} [options] Override http request option.
|
|
473
475
|
* @throws {RequiredError}
|
|
474
476
|
*/
|
|
475
|
-
contactsList: async (contactTypes, searchString, options = {}) => {
|
|
477
|
+
contactsList: async (contactTypes, searchString, limit, offset, options = {}) => {
|
|
476
478
|
const localVarPath = `/contacts`;
|
|
477
479
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
478
480
|
let baseOptions;
|
|
@@ -488,6 +490,12 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
488
490
|
if (searchString !== void 0) {
|
|
489
491
|
localVarQueryParameter["searchString"] = searchString;
|
|
490
492
|
}
|
|
493
|
+
if (limit !== void 0) {
|
|
494
|
+
localVarQueryParameter["limit"] = limit;
|
|
495
|
+
}
|
|
496
|
+
if (offset !== void 0) {
|
|
497
|
+
localVarQueryParameter["offset"] = offset;
|
|
498
|
+
}
|
|
491
499
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
492
500
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
493
501
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -728,11 +736,13 @@ var ContactsApiFp = function(configuration) {
|
|
|
728
736
|
* @summary Contacts List
|
|
729
737
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
730
738
|
* @param {string} [searchString]
|
|
739
|
+
* @param {number} [limit]
|
|
740
|
+
* @param {number} [offset]
|
|
731
741
|
* @param {*} [options] Override http request option.
|
|
732
742
|
* @throws {RequiredError}
|
|
733
743
|
*/
|
|
734
|
-
async contactsList(contactTypes, searchString, options) {
|
|
735
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(contactTypes, searchString, options);
|
|
744
|
+
async contactsList(contactTypes, searchString, limit, offset, options) {
|
|
745
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(contactTypes, searchString, limit, offset, options);
|
|
736
746
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _38 => _38.serverIndex]), () => ( 0));
|
|
737
747
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _39 => _39["ContactsApi.contactsList"], 'optionalAccess', _40 => _40[localVarOperationServerIndex], 'optionalAccess', _41 => _41.url]);
|
|
738
748
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -877,11 +887,13 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
877
887
|
* @summary Contacts List
|
|
878
888
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
879
889
|
* @param {string} [searchString]
|
|
890
|
+
* @param {number} [limit]
|
|
891
|
+
* @param {number} [offset]
|
|
880
892
|
* @param {*} [options] Override http request option.
|
|
881
893
|
* @throws {RequiredError}
|
|
882
894
|
*/
|
|
883
|
-
contactsList(contactTypes, searchString, options) {
|
|
884
|
-
return localVarFp.contactsList(contactTypes, searchString, options).then((request) => request(axios, basePath));
|
|
895
|
+
contactsList(contactTypes, searchString, limit, offset, options) {
|
|
896
|
+
return localVarFp.contactsList(contactTypes, searchString, limit, offset, options).then((request) => request(axios, basePath));
|
|
885
897
|
},
|
|
886
898
|
/**
|
|
887
899
|
*
|
|
@@ -1012,12 +1024,14 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1012
1024
|
* @summary Contacts List
|
|
1013
1025
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
1014
1026
|
* @param {string} [searchString]
|
|
1027
|
+
* @param {number} [limit]
|
|
1028
|
+
* @param {number} [offset]
|
|
1015
1029
|
* @param {*} [options] Override http request option.
|
|
1016
1030
|
* @throws {RequiredError}
|
|
1017
1031
|
* @memberof ContactsApi
|
|
1018
1032
|
*/
|
|
1019
|
-
contactsList(contactTypes, searchString, options) {
|
|
1020
|
-
return ContactsApiFp(this.configuration).contactsList(contactTypes, searchString, options).then((request) => request(this.axios, this.basePath));
|
|
1033
|
+
contactsList(contactTypes, searchString, limit, offset, options) {
|
|
1034
|
+
return ContactsApiFp(this.configuration).contactsList(contactTypes, searchString, limit, offset, options).then((request) => request(this.axios, this.basePath));
|
|
1021
1035
|
}
|
|
1022
1036
|
/**
|
|
1023
1037
|
*
|
|
@@ -1300,6 +1314,84 @@ var HostawayApi = class extends BaseAPI {
|
|
|
1300
1314
|
return HostawayApiFp(this.configuration).webhook(hostawayWebhook, options).then((request) => request(this.axios, this.basePath));
|
|
1301
1315
|
}
|
|
1302
1316
|
};
|
|
1317
|
+
var InquiriesApiAxiosParamCreator = function(configuration) {
|
|
1318
|
+
return {
|
|
1319
|
+
/**
|
|
1320
|
+
* List all listings
|
|
1321
|
+
* @summary Inquiries List
|
|
1322
|
+
* @param {string} [contactId]
|
|
1323
|
+
* @param {*} [options] Override http request option.
|
|
1324
|
+
* @throws {RequiredError}
|
|
1325
|
+
*/
|
|
1326
|
+
inquiriesList: async (contactId, options = {}) => {
|
|
1327
|
+
const localVarPath = `/inquiries`;
|
|
1328
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1329
|
+
let baseOptions;
|
|
1330
|
+
if (configuration) {
|
|
1331
|
+
baseOptions = configuration.baseOptions;
|
|
1332
|
+
}
|
|
1333
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1334
|
+
const localVarHeaderParameter = {};
|
|
1335
|
+
const localVarQueryParameter = {};
|
|
1336
|
+
if (contactId !== void 0) {
|
|
1337
|
+
localVarQueryParameter["contactId"] = contactId;
|
|
1338
|
+
}
|
|
1339
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1340
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1341
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1342
|
+
return {
|
|
1343
|
+
url: toPathString(localVarUrlObj),
|
|
1344
|
+
options: localVarRequestOptions
|
|
1345
|
+
};
|
|
1346
|
+
}
|
|
1347
|
+
};
|
|
1348
|
+
};
|
|
1349
|
+
var InquiriesApiFp = function(configuration) {
|
|
1350
|
+
const localVarAxiosParamCreator = InquiriesApiAxiosParamCreator(configuration);
|
|
1351
|
+
return {
|
|
1352
|
+
/**
|
|
1353
|
+
* List all listings
|
|
1354
|
+
* @summary Inquiries List
|
|
1355
|
+
* @param {string} [contactId]
|
|
1356
|
+
* @param {*} [options] Override http request option.
|
|
1357
|
+
* @throws {RequiredError}
|
|
1358
|
+
*/
|
|
1359
|
+
async inquiriesList(contactId, options) {
|
|
1360
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.inquiriesList(contactId, options);
|
|
1361
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _74 => _74.serverIndex]), () => ( 0));
|
|
1362
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _75 => _75["InquiriesApi.inquiriesList"], 'optionalAccess', _76 => _76[localVarOperationServerIndex], 'optionalAccess', _77 => _77.url]);
|
|
1363
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1364
|
+
}
|
|
1365
|
+
};
|
|
1366
|
+
};
|
|
1367
|
+
var InquiriesApiFactory = function(configuration, basePath, axios) {
|
|
1368
|
+
const localVarFp = InquiriesApiFp(configuration);
|
|
1369
|
+
return {
|
|
1370
|
+
/**
|
|
1371
|
+
* List all listings
|
|
1372
|
+
* @summary Inquiries List
|
|
1373
|
+
* @param {string} [contactId]
|
|
1374
|
+
* @param {*} [options] Override http request option.
|
|
1375
|
+
* @throws {RequiredError}
|
|
1376
|
+
*/
|
|
1377
|
+
inquiriesList(contactId, options) {
|
|
1378
|
+
return localVarFp.inquiriesList(contactId, options).then((request) => request(axios, basePath));
|
|
1379
|
+
}
|
|
1380
|
+
};
|
|
1381
|
+
};
|
|
1382
|
+
var InquiriesApi = class extends BaseAPI {
|
|
1383
|
+
/**
|
|
1384
|
+
* List all listings
|
|
1385
|
+
* @summary Inquiries List
|
|
1386
|
+
* @param {string} [contactId]
|
|
1387
|
+
* @param {*} [options] Override http request option.
|
|
1388
|
+
* @throws {RequiredError}
|
|
1389
|
+
* @memberof InquiriesApi
|
|
1390
|
+
*/
|
|
1391
|
+
inquiriesList(contactId, options) {
|
|
1392
|
+
return InquiriesApiFp(this.configuration).inquiriesList(contactId, options).then((request) => request(this.axios, this.basePath));
|
|
1393
|
+
}
|
|
1394
|
+
};
|
|
1303
1395
|
var ListingsApiAxiosParamCreator = function(configuration) {
|
|
1304
1396
|
return {
|
|
1305
1397
|
/**
|
|
@@ -1344,8 +1436,8 @@ var ListingsApiFp = function(configuration) {
|
|
|
1344
1436
|
*/
|
|
1345
1437
|
async listingsList(contactId, options) {
|
|
1346
1438
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listingsList(contactId, options);
|
|
1347
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
1348
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1439
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _78 => _78.serverIndex]), () => ( 0));
|
|
1440
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _79 => _79["ListingsApi.listingsList"], 'optionalAccess', _80 => _80[localVarOperationServerIndex], 'optionalAccess', _81 => _81.url]);
|
|
1349
1441
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1350
1442
|
}
|
|
1351
1443
|
};
|
|
@@ -1451,8 +1543,8 @@ var PhonesApiFp = function(configuration) {
|
|
|
1451
1543
|
*/
|
|
1452
1544
|
async phonesCreate(contactId, phoneCreate, options) {
|
|
1453
1545
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesCreate(contactId, phoneCreate, options);
|
|
1454
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
1455
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1546
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _82 => _82.serverIndex]), () => ( 0));
|
|
1547
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _83 => _83["PhonesApi.phonesCreate"], 'optionalAccess', _84 => _84[localVarOperationServerIndex], 'optionalAccess', _85 => _85.url]);
|
|
1456
1548
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1457
1549
|
},
|
|
1458
1550
|
/**
|
|
@@ -1464,8 +1556,8 @@ var PhonesApiFp = function(configuration) {
|
|
|
1464
1556
|
*/
|
|
1465
1557
|
async phonesDelete(phoneId, options) {
|
|
1466
1558
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesDelete(phoneId, options);
|
|
1467
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
1468
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1559
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _86 => _86.serverIndex]), () => ( 0));
|
|
1560
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _87 => _87["PhonesApi.phonesDelete"], 'optionalAccess', _88 => _88[localVarOperationServerIndex], 'optionalAccess', _89 => _89.url]);
|
|
1469
1561
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1470
1562
|
}
|
|
1471
1563
|
};
|
|
@@ -1565,8 +1657,8 @@ var ReservationsApiFp = function(configuration) {
|
|
|
1565
1657
|
*/
|
|
1566
1658
|
async reservationsList(contactId, options) {
|
|
1567
1659
|
const localVarAxiosArgs = await localVarAxiosParamCreator.reservationsList(contactId, options);
|
|
1568
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
1569
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1660
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _90 => _90.serverIndex]), () => ( 0));
|
|
1661
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _91 => _91["ReservationsApi.reservationsList"], 'optionalAccess', _92 => _92[localVarOperationServerIndex], 'optionalAccess', _93 => _93.url]);
|
|
1570
1662
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1571
1663
|
}
|
|
1572
1664
|
};
|
|
@@ -1772,10 +1864,12 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1772
1864
|
* @summary Contacts List
|
|
1773
1865
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
1774
1866
|
* @param {string} [searchString]
|
|
1867
|
+
* @param {number} [limit]
|
|
1868
|
+
* @param {number} [offset]
|
|
1775
1869
|
* @param {*} [options] Override http request option.
|
|
1776
1870
|
* @throws {RequiredError}
|
|
1777
1871
|
*/
|
|
1778
|
-
contactsList: async (contactTypes, searchString, options = {}) => {
|
|
1872
|
+
contactsList: async (contactTypes, searchString, limit, offset, options = {}) => {
|
|
1779
1873
|
const localVarPath = `/contacts`;
|
|
1780
1874
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1781
1875
|
let baseOptions;
|
|
@@ -1791,6 +1885,12 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1791
1885
|
if (searchString !== void 0) {
|
|
1792
1886
|
localVarQueryParameter["searchString"] = searchString;
|
|
1793
1887
|
}
|
|
1888
|
+
if (limit !== void 0) {
|
|
1889
|
+
localVarQueryParameter["limit"] = limit;
|
|
1890
|
+
}
|
|
1891
|
+
if (offset !== void 0) {
|
|
1892
|
+
localVarQueryParameter["offset"] = offset;
|
|
1893
|
+
}
|
|
1794
1894
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1795
1895
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1796
1896
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1885,6 +1985,34 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1885
1985
|
options: localVarRequestOptions
|
|
1886
1986
|
};
|
|
1887
1987
|
},
|
|
1988
|
+
/**
|
|
1989
|
+
* List all listings
|
|
1990
|
+
* @summary Inquiries List
|
|
1991
|
+
* @param {string} [contactId]
|
|
1992
|
+
* @param {*} [options] Override http request option.
|
|
1993
|
+
* @throws {RequiredError}
|
|
1994
|
+
*/
|
|
1995
|
+
inquiriesList: async (contactId, options = {}) => {
|
|
1996
|
+
const localVarPath = `/inquiries`;
|
|
1997
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1998
|
+
let baseOptions;
|
|
1999
|
+
if (configuration) {
|
|
2000
|
+
baseOptions = configuration.baseOptions;
|
|
2001
|
+
}
|
|
2002
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
2003
|
+
const localVarHeaderParameter = {};
|
|
2004
|
+
const localVarQueryParameter = {};
|
|
2005
|
+
if (contactId !== void 0) {
|
|
2006
|
+
localVarQueryParameter["contactId"] = contactId;
|
|
2007
|
+
}
|
|
2008
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2009
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2010
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2011
|
+
return {
|
|
2012
|
+
url: toPathString(localVarUrlObj),
|
|
2013
|
+
options: localVarRequestOptions
|
|
2014
|
+
};
|
|
2015
|
+
},
|
|
1888
2016
|
/**
|
|
1889
2017
|
* List all listings
|
|
1890
2018
|
* @summary Listings List
|
|
@@ -2041,8 +2169,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2041
2169
|
*/
|
|
2042
2170
|
async addressesCreate(contactId, addressCreate, options) {
|
|
2043
2171
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesCreate(contactId, addressCreate, options);
|
|
2044
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2045
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2172
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _94 => _94.serverIndex]), () => ( 0));
|
|
2173
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _95 => _95["UnboundApi.addressesCreate"], 'optionalAccess', _96 => _96[localVarOperationServerIndex], 'optionalAccess', _97 => _97.url]);
|
|
2046
2174
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2047
2175
|
},
|
|
2048
2176
|
/**
|
|
@@ -2054,8 +2182,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2054
2182
|
*/
|
|
2055
2183
|
async addressesDelete(addressId, options) {
|
|
2056
2184
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesDelete(addressId, options);
|
|
2057
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2058
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2185
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _98 => _98.serverIndex]), () => ( 0));
|
|
2186
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _99 => _99["UnboundApi.addressesDelete"], 'optionalAccess', _100 => _100[localVarOperationServerIndex], 'optionalAccess', _101 => _101.url]);
|
|
2059
2187
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2060
2188
|
},
|
|
2061
2189
|
/**
|
|
@@ -2068,8 +2196,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2068
2196
|
*/
|
|
2069
2197
|
async addressesUpdate(addressId, addressUpdate, options) {
|
|
2070
2198
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesUpdate(addressId, addressUpdate, options);
|
|
2071
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2072
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2199
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _102 => _102.serverIndex]), () => ( 0));
|
|
2200
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _103 => _103["UnboundApi.addressesUpdate"], 'optionalAccess', _104 => _104[localVarOperationServerIndex], 'optionalAccess', _105 => _105.url]);
|
|
2073
2201
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2074
2202
|
},
|
|
2075
2203
|
/**
|
|
@@ -2081,8 +2209,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2081
2209
|
*/
|
|
2082
2210
|
async contactsCreate(contactCreate, options) {
|
|
2083
2211
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsCreate(contactCreate, options);
|
|
2084
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2085
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2212
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _106 => _106.serverIndex]), () => ( 0));
|
|
2213
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _107 => _107["UnboundApi.contactsCreate"], 'optionalAccess', _108 => _108[localVarOperationServerIndex], 'optionalAccess', _109 => _109.url]);
|
|
2086
2214
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2087
2215
|
},
|
|
2088
2216
|
/**
|
|
@@ -2094,8 +2222,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2094
2222
|
*/
|
|
2095
2223
|
async contactsDelete(contactId, options) {
|
|
2096
2224
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsDelete(contactId, options);
|
|
2097
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2098
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2225
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _110 => _110.serverIndex]), () => ( 0));
|
|
2226
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _111 => _111["UnboundApi.contactsDelete"], 'optionalAccess', _112 => _112[localVarOperationServerIndex], 'optionalAccess', _113 => _113.url]);
|
|
2099
2227
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2100
2228
|
},
|
|
2101
2229
|
/**
|
|
@@ -2107,8 +2235,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2107
2235
|
*/
|
|
2108
2236
|
async contactsGet(contactId, options) {
|
|
2109
2237
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsGet(contactId, options);
|
|
2110
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2111
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2238
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _114 => _114.serverIndex]), () => ( 0));
|
|
2239
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _115 => _115["UnboundApi.contactsGet"], 'optionalAccess', _116 => _116[localVarOperationServerIndex], 'optionalAccess', _117 => _117.url]);
|
|
2112
2240
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2113
2241
|
},
|
|
2114
2242
|
/**
|
|
@@ -2116,13 +2244,15 @@ var UnboundApiFp = function(configuration) {
|
|
|
2116
2244
|
* @summary Contacts List
|
|
2117
2245
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2118
2246
|
* @param {string} [searchString]
|
|
2247
|
+
* @param {number} [limit]
|
|
2248
|
+
* @param {number} [offset]
|
|
2119
2249
|
* @param {*} [options] Override http request option.
|
|
2120
2250
|
* @throws {RequiredError}
|
|
2121
2251
|
*/
|
|
2122
|
-
async contactsList(contactTypes, searchString, options) {
|
|
2123
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(contactTypes, searchString, options);
|
|
2124
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2125
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2252
|
+
async contactsList(contactTypes, searchString, limit, offset, options) {
|
|
2253
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(contactTypes, searchString, limit, offset, options);
|
|
2254
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _118 => _118.serverIndex]), () => ( 0));
|
|
2255
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _119 => _119["UnboundApi.contactsList"], 'optionalAccess', _120 => _120[localVarOperationServerIndex], 'optionalAccess', _121 => _121.url]);
|
|
2126
2256
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2127
2257
|
},
|
|
2128
2258
|
/**
|
|
@@ -2135,8 +2265,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2135
2265
|
*/
|
|
2136
2266
|
async contactsUpdate(contactId, contactUpdate, options) {
|
|
2137
2267
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId, contactUpdate, options);
|
|
2138
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2139
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2268
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _122 => _122.serverIndex]), () => ( 0));
|
|
2269
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _123 => _123["UnboundApi.contactsUpdate"], 'optionalAccess', _124 => _124[localVarOperationServerIndex], 'optionalAccess', _125 => _125.url]);
|
|
2140
2270
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2141
2271
|
},
|
|
2142
2272
|
/**
|
|
@@ -2149,8 +2279,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2149
2279
|
*/
|
|
2150
2280
|
async emailsCreate(contactId, emailCreate, options) {
|
|
2151
2281
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsCreate(contactId, emailCreate, options);
|
|
2152
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2153
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2282
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _126 => _126.serverIndex]), () => ( 0));
|
|
2283
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _127 => _127["UnboundApi.emailsCreate"], 'optionalAccess', _128 => _128[localVarOperationServerIndex], 'optionalAccess', _129 => _129.url]);
|
|
2154
2284
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2155
2285
|
},
|
|
2156
2286
|
/**
|
|
@@ -2162,8 +2292,21 @@ var UnboundApiFp = function(configuration) {
|
|
|
2162
2292
|
*/
|
|
2163
2293
|
async emailsDelete(emailId, options) {
|
|
2164
2294
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsDelete(emailId, options);
|
|
2165
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2166
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2295
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _130 => _130.serverIndex]), () => ( 0));
|
|
2296
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _131 => _131["UnboundApi.emailsDelete"], 'optionalAccess', _132 => _132[localVarOperationServerIndex], 'optionalAccess', _133 => _133.url]);
|
|
2297
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2298
|
+
},
|
|
2299
|
+
/**
|
|
2300
|
+
* List all listings
|
|
2301
|
+
* @summary Inquiries List
|
|
2302
|
+
* @param {string} [contactId]
|
|
2303
|
+
* @param {*} [options] Override http request option.
|
|
2304
|
+
* @throws {RequiredError}
|
|
2305
|
+
*/
|
|
2306
|
+
async inquiriesList(contactId, options) {
|
|
2307
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.inquiriesList(contactId, options);
|
|
2308
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _134 => _134.serverIndex]), () => ( 0));
|
|
2309
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _135 => _135["UnboundApi.inquiriesList"], 'optionalAccess', _136 => _136[localVarOperationServerIndex], 'optionalAccess', _137 => _137.url]);
|
|
2167
2310
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2168
2311
|
},
|
|
2169
2312
|
/**
|
|
@@ -2175,8 +2318,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2175
2318
|
*/
|
|
2176
2319
|
async listingsList(contactId, options) {
|
|
2177
2320
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listingsList(contactId, options);
|
|
2178
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2179
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2321
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _138 => _138.serverIndex]), () => ( 0));
|
|
2322
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _139 => _139["UnboundApi.listingsList"], 'optionalAccess', _140 => _140[localVarOperationServerIndex], 'optionalAccess', _141 => _141.url]);
|
|
2180
2323
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2181
2324
|
},
|
|
2182
2325
|
/**
|
|
@@ -2189,8 +2332,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2189
2332
|
*/
|
|
2190
2333
|
async phonesCreate(contactId, phoneCreate, options) {
|
|
2191
2334
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesCreate(contactId, phoneCreate, options);
|
|
2192
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2193
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2335
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _142 => _142.serverIndex]), () => ( 0));
|
|
2336
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _143 => _143["UnboundApi.phonesCreate"], 'optionalAccess', _144 => _144[localVarOperationServerIndex], 'optionalAccess', _145 => _145.url]);
|
|
2194
2337
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2195
2338
|
},
|
|
2196
2339
|
/**
|
|
@@ -2202,8 +2345,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2202
2345
|
*/
|
|
2203
2346
|
async phonesDelete(phoneId, options) {
|
|
2204
2347
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesDelete(phoneId, options);
|
|
2205
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2206
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2348
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _146 => _146.serverIndex]), () => ( 0));
|
|
2349
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _147 => _147["UnboundApi.phonesDelete"], 'optionalAccess', _148 => _148[localVarOperationServerIndex], 'optionalAccess', _149 => _149.url]);
|
|
2207
2350
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2208
2351
|
},
|
|
2209
2352
|
/**
|
|
@@ -2215,8 +2358,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2215
2358
|
*/
|
|
2216
2359
|
async reservationsList(contactId, options) {
|
|
2217
2360
|
const localVarAxiosArgs = await localVarAxiosParamCreator.reservationsList(contactId, options);
|
|
2218
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2219
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2361
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _150 => _150.serverIndex]), () => ( 0));
|
|
2362
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _151 => _151["UnboundApi.reservationsList"], 'optionalAccess', _152 => _152[localVarOperationServerIndex], 'optionalAccess', _153 => _153.url]);
|
|
2220
2363
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2221
2364
|
},
|
|
2222
2365
|
/**
|
|
@@ -2228,8 +2371,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
2228
2371
|
*/
|
|
2229
2372
|
async webhook(hostawayWebhook, options) {
|
|
2230
2373
|
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(hostawayWebhook, options);
|
|
2231
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2232
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2374
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _154 => _154.serverIndex]), () => ( 0));
|
|
2375
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _155 => _155["UnboundApi.webhook"], 'optionalAccess', _156 => _156[localVarOperationServerIndex], 'optionalAccess', _157 => _157.url]);
|
|
2233
2376
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2234
2377
|
}
|
|
2235
2378
|
};
|
|
@@ -2304,11 +2447,13 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
2304
2447
|
* @summary Contacts List
|
|
2305
2448
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2306
2449
|
* @param {string} [searchString]
|
|
2450
|
+
* @param {number} [limit]
|
|
2451
|
+
* @param {number} [offset]
|
|
2307
2452
|
* @param {*} [options] Override http request option.
|
|
2308
2453
|
* @throws {RequiredError}
|
|
2309
2454
|
*/
|
|
2310
|
-
contactsList(contactTypes, searchString, options) {
|
|
2311
|
-
return localVarFp.contactsList(contactTypes, searchString, options).then((request) => request(axios, basePath));
|
|
2455
|
+
contactsList(contactTypes, searchString, limit, offset, options) {
|
|
2456
|
+
return localVarFp.contactsList(contactTypes, searchString, limit, offset, options).then((request) => request(axios, basePath));
|
|
2312
2457
|
},
|
|
2313
2458
|
/**
|
|
2314
2459
|
*
|
|
@@ -2342,6 +2487,16 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
2342
2487
|
emailsDelete(emailId, options) {
|
|
2343
2488
|
return localVarFp.emailsDelete(emailId, options).then((request) => request(axios, basePath));
|
|
2344
2489
|
},
|
|
2490
|
+
/**
|
|
2491
|
+
* List all listings
|
|
2492
|
+
* @summary Inquiries List
|
|
2493
|
+
* @param {string} [contactId]
|
|
2494
|
+
* @param {*} [options] Override http request option.
|
|
2495
|
+
* @throws {RequiredError}
|
|
2496
|
+
*/
|
|
2497
|
+
inquiriesList(contactId, options) {
|
|
2498
|
+
return localVarFp.inquiriesList(contactId, options).then((request) => request(axios, basePath));
|
|
2499
|
+
},
|
|
2345
2500
|
/**
|
|
2346
2501
|
* List all listings
|
|
2347
2502
|
* @summary Listings List
|
|
@@ -2469,12 +2624,14 @@ var UnboundApi = class extends BaseAPI {
|
|
|
2469
2624
|
* @summary Contacts List
|
|
2470
2625
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2471
2626
|
* @param {string} [searchString]
|
|
2627
|
+
* @param {number} [limit]
|
|
2628
|
+
* @param {number} [offset]
|
|
2472
2629
|
* @param {*} [options] Override http request option.
|
|
2473
2630
|
* @throws {RequiredError}
|
|
2474
2631
|
* @memberof UnboundApi
|
|
2475
2632
|
*/
|
|
2476
|
-
contactsList(contactTypes, searchString, options) {
|
|
2477
|
-
return UnboundApiFp(this.configuration).contactsList(contactTypes, searchString, options).then((request) => request(this.axios, this.basePath));
|
|
2633
|
+
contactsList(contactTypes, searchString, limit, offset, options) {
|
|
2634
|
+
return UnboundApiFp(this.configuration).contactsList(contactTypes, searchString, limit, offset, options).then((request) => request(this.axios, this.basePath));
|
|
2478
2635
|
}
|
|
2479
2636
|
/**
|
|
2480
2637
|
*
|
|
@@ -2511,6 +2668,17 @@ var UnboundApi = class extends BaseAPI {
|
|
|
2511
2668
|
emailsDelete(emailId, options) {
|
|
2512
2669
|
return UnboundApiFp(this.configuration).emailsDelete(emailId, options).then((request) => request(this.axios, this.basePath));
|
|
2513
2670
|
}
|
|
2671
|
+
/**
|
|
2672
|
+
* List all listings
|
|
2673
|
+
* @summary Inquiries List
|
|
2674
|
+
* @param {string} [contactId]
|
|
2675
|
+
* @param {*} [options] Override http request option.
|
|
2676
|
+
* @throws {RequiredError}
|
|
2677
|
+
* @memberof UnboundApi
|
|
2678
|
+
*/
|
|
2679
|
+
inquiriesList(contactId, options) {
|
|
2680
|
+
return UnboundApiFp(this.configuration).inquiriesList(contactId, options).then((request) => request(this.axios, this.basePath));
|
|
2681
|
+
}
|
|
2514
2682
|
/**
|
|
2515
2683
|
* List all listings
|
|
2516
2684
|
* @summary Listings List
|
|
@@ -2637,7 +2805,7 @@ var Configuration = class {
|
|
|
2637
2805
|
this.baseOptions = {
|
|
2638
2806
|
...param.baseOptions,
|
|
2639
2807
|
headers: {
|
|
2640
|
-
..._optionalChain([param, 'access',
|
|
2808
|
+
..._optionalChain([param, 'access', _158 => _158.baseOptions, 'optionalAccess', _159 => _159.headers])
|
|
2641
2809
|
}
|
|
2642
2810
|
};
|
|
2643
2811
|
this.formDataCtor = param.formDataCtor;
|
|
@@ -2693,5 +2861,9 @@ var Configuration = class {
|
|
|
2693
2861
|
|
|
2694
2862
|
|
|
2695
2863
|
|
|
2696
|
-
|
|
2864
|
+
|
|
2865
|
+
|
|
2866
|
+
|
|
2867
|
+
|
|
2868
|
+
exports.AddressesApi = AddressesApi; exports.AddressesApiAxiosParamCreator = AddressesApiAxiosParamCreator; exports.AddressesApiFactory = AddressesApiFactory; exports.AddressesApiFp = AddressesApiFp; exports.Configuration = Configuration; exports.ContactTypeFilter = ContactTypeFilter; exports.ContactsApi = ContactsApi; exports.ContactsApiAxiosParamCreator = ContactsApiAxiosParamCreator; exports.ContactsApiFactory = ContactsApiFactory; exports.ContactsApiFp = ContactsApiFp; exports.DataSource = DataSource; exports.EmailsApi = EmailsApi; exports.EmailsApiAxiosParamCreator = EmailsApiAxiosParamCreator; exports.EmailsApiFactory = EmailsApiFactory; exports.EmailsApiFp = EmailsApiFp; exports.HostawayApi = HostawayApi; exports.HostawayApiAxiosParamCreator = HostawayApiAxiosParamCreator; exports.HostawayApiFactory = HostawayApiFactory; exports.HostawayApiFp = HostawayApiFp; exports.InquiriesApi = InquiriesApi; exports.InquiriesApiAxiosParamCreator = InquiriesApiAxiosParamCreator; exports.InquiriesApiFactory = InquiriesApiFactory; exports.InquiriesApiFp = InquiriesApiFp; exports.ListingsApi = ListingsApi; exports.ListingsApiAxiosParamCreator = ListingsApiAxiosParamCreator; exports.ListingsApiFactory = ListingsApiFactory; exports.ListingsApiFp = ListingsApiFp; exports.PhonesApi = PhonesApi; exports.PhonesApiAxiosParamCreator = PhonesApiAxiosParamCreator; exports.PhonesApiFactory = PhonesApiFactory; exports.PhonesApiFp = PhonesApiFp; exports.ReservationsApi = ReservationsApi; exports.ReservationsApiAxiosParamCreator = ReservationsApiAxiosParamCreator; exports.ReservationsApiFactory = ReservationsApiFactory; exports.ReservationsApiFp = ReservationsApiFp; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp;
|
|
2697
2869
|
//# sourceMappingURL=index.js.map
|