@ember-home/unbound-ts-client 0.0.8 → 0.0.10
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 +140 -64
- package/dist/index.d.ts +140 -64
- package/dist/index.js +55 -59
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +54 -58
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -75,6 +75,15 @@ var createRequestFunction = function(axiosArgs, globalAxios3, BASE_PATH2, config
|
|
|
75
75
|
};
|
|
76
76
|
|
|
77
77
|
// src/api.ts
|
|
78
|
+
var BasicDataContactTypeEnum = {
|
|
79
|
+
Basic: "BASIC"
|
|
80
|
+
};
|
|
81
|
+
var BasicDataCreateContactTypeEnum = {
|
|
82
|
+
Basic: "BASIC"
|
|
83
|
+
};
|
|
84
|
+
var BasicDataUpdateContactTypeEnum = {
|
|
85
|
+
Basic: "BASIC"
|
|
86
|
+
};
|
|
78
87
|
var ContactType = {
|
|
79
88
|
Guest: "GUEST",
|
|
80
89
|
Owner: "OWNER",
|
|
@@ -414,13 +423,11 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
414
423
|
/**
|
|
415
424
|
*
|
|
416
425
|
* @summary Contacts Create
|
|
417
|
-
* @param {string} customerId
|
|
418
426
|
* @param {ContactCreate} contactCreate
|
|
419
427
|
* @param {*} [options] Override http request option.
|
|
420
428
|
* @throws {RequiredError}
|
|
421
429
|
*/
|
|
422
|
-
contactsCreate: async (
|
|
423
|
-
assertParamExists("contactsCreate", "customerId", customerId);
|
|
430
|
+
contactsCreate: async (contactCreate, options = {}) => {
|
|
424
431
|
assertParamExists("contactsCreate", "contactCreate", contactCreate);
|
|
425
432
|
const localVarPath = `/contacts`;
|
|
426
433
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -431,9 +438,6 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
431
438
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
432
439
|
const localVarHeaderParameter = {};
|
|
433
440
|
const localVarQueryParameter = {};
|
|
434
|
-
if (customerId !== void 0) {
|
|
435
|
-
localVarQueryParameter["customerId"] = customerId;
|
|
436
|
-
}
|
|
437
441
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
438
442
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
439
443
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -719,13 +723,12 @@ var ContactsApiFp = function(configuration) {
|
|
|
719
723
|
/**
|
|
720
724
|
*
|
|
721
725
|
* @summary Contacts Create
|
|
722
|
-
* @param {string} customerId
|
|
723
726
|
* @param {ContactCreate} contactCreate
|
|
724
727
|
* @param {*} [options] Override http request option.
|
|
725
728
|
* @throws {RequiredError}
|
|
726
729
|
*/
|
|
727
|
-
async contactsCreate(
|
|
728
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsCreate(
|
|
730
|
+
async contactsCreate(contactCreate, options) {
|
|
731
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsCreate(contactCreate, options);
|
|
729
732
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _26 => _26.serverIndex]), () => ( 0));
|
|
730
733
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _27 => _27["ContactsApi.contactsCreate"], 'optionalAccess', _28 => _28[localVarOperationServerIndex], 'optionalAccess', _29 => _29.url]);
|
|
731
734
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -878,13 +881,12 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
878
881
|
/**
|
|
879
882
|
*
|
|
880
883
|
* @summary Contacts Create
|
|
881
|
-
* @param {string} customerId
|
|
882
884
|
* @param {ContactCreate} contactCreate
|
|
883
885
|
* @param {*} [options] Override http request option.
|
|
884
886
|
* @throws {RequiredError}
|
|
885
887
|
*/
|
|
886
|
-
contactsCreate(
|
|
887
|
-
return localVarFp.contactsCreate(
|
|
888
|
+
contactsCreate(contactCreate, options) {
|
|
889
|
+
return localVarFp.contactsCreate(contactCreate, options).then((request) => request(axios, basePath));
|
|
888
890
|
},
|
|
889
891
|
/**
|
|
890
892
|
*
|
|
@@ -1011,14 +1013,13 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1011
1013
|
/**
|
|
1012
1014
|
*
|
|
1013
1015
|
* @summary Contacts Create
|
|
1014
|
-
* @param {string} customerId
|
|
1015
1016
|
* @param {ContactCreate} contactCreate
|
|
1016
1017
|
* @param {*} [options] Override http request option.
|
|
1017
1018
|
* @throws {RequiredError}
|
|
1018
1019
|
* @memberof ContactsApi
|
|
1019
1020
|
*/
|
|
1020
|
-
contactsCreate(
|
|
1021
|
-
return ContactsApiFp(this.configuration).contactsCreate(
|
|
1021
|
+
contactsCreate(contactCreate, options) {
|
|
1022
|
+
return ContactsApiFp(this.configuration).contactsCreate(contactCreate, options).then((request) => request(this.axios, this.basePath));
|
|
1022
1023
|
}
|
|
1023
1024
|
/**
|
|
1024
1025
|
*
|
|
@@ -1261,13 +1262,13 @@ var HostawayApiAxiosParamCreator = function(configuration) {
|
|
|
1261
1262
|
/**
|
|
1262
1263
|
*
|
|
1263
1264
|
* @summary Unifiedwebhook
|
|
1264
|
-
* @param {
|
|
1265
|
+
* @param {HostawayWebhook} hostawayWebhook
|
|
1265
1266
|
* @param {*} [options] Override http request option.
|
|
1266
1267
|
* @throws {RequiredError}
|
|
1267
1268
|
*/
|
|
1268
|
-
webhook: async (
|
|
1269
|
-
assertParamExists("webhook", "
|
|
1270
|
-
const localVarPath = `/
|
|
1269
|
+
webhook: async (hostawayWebhook, options = {}) => {
|
|
1270
|
+
assertParamExists("webhook", "hostawayWebhook", hostawayWebhook);
|
|
1271
|
+
const localVarPath = `/hostaway-unified-webhooks`;
|
|
1271
1272
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1272
1273
|
let baseOptions;
|
|
1273
1274
|
if (configuration) {
|
|
@@ -1281,7 +1282,7 @@ var HostawayApiAxiosParamCreator = function(configuration) {
|
|
|
1281
1282
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1282
1283
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1283
1284
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1284
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
1285
|
+
localVarRequestOptions.data = serializeDataIfNeeded(hostawayWebhook, localVarRequestOptions, configuration);
|
|
1285
1286
|
return {
|
|
1286
1287
|
url: toPathString(localVarUrlObj),
|
|
1287
1288
|
options: localVarRequestOptions
|
|
@@ -1295,12 +1296,12 @@ var HostawayApiFp = function(configuration) {
|
|
|
1295
1296
|
/**
|
|
1296
1297
|
*
|
|
1297
1298
|
* @summary Unifiedwebhook
|
|
1298
|
-
* @param {
|
|
1299
|
+
* @param {HostawayWebhook} hostawayWebhook
|
|
1299
1300
|
* @param {*} [options] Override http request option.
|
|
1300
1301
|
* @throws {RequiredError}
|
|
1301
1302
|
*/
|
|
1302
|
-
async webhook(
|
|
1303
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(
|
|
1303
|
+
async webhook(hostawayWebhook, options) {
|
|
1304
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(hostawayWebhook, options);
|
|
1304
1305
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _70 => _70.serverIndex]), () => ( 0));
|
|
1305
1306
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _71 => _71["HostawayApi.webhook"], 'optionalAccess', _72 => _72[localVarOperationServerIndex], 'optionalAccess', _73 => _73.url]);
|
|
1306
1307
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1313,12 +1314,12 @@ var HostawayApiFactory = function(configuration, basePath, axios) {
|
|
|
1313
1314
|
/**
|
|
1314
1315
|
*
|
|
1315
1316
|
* @summary Unifiedwebhook
|
|
1316
|
-
* @param {
|
|
1317
|
+
* @param {HostawayWebhook} hostawayWebhook
|
|
1317
1318
|
* @param {*} [options] Override http request option.
|
|
1318
1319
|
* @throws {RequiredError}
|
|
1319
1320
|
*/
|
|
1320
|
-
webhook(
|
|
1321
|
-
return localVarFp.webhook(
|
|
1321
|
+
webhook(hostawayWebhook, options) {
|
|
1322
|
+
return localVarFp.webhook(hostawayWebhook, options).then((request) => request(axios, basePath));
|
|
1322
1323
|
}
|
|
1323
1324
|
};
|
|
1324
1325
|
};
|
|
@@ -1326,13 +1327,13 @@ var HostawayApi = class extends BaseAPI {
|
|
|
1326
1327
|
/**
|
|
1327
1328
|
*
|
|
1328
1329
|
* @summary Unifiedwebhook
|
|
1329
|
-
* @param {
|
|
1330
|
+
* @param {HostawayWebhook} hostawayWebhook
|
|
1330
1331
|
* @param {*} [options] Override http request option.
|
|
1331
1332
|
* @throws {RequiredError}
|
|
1332
1333
|
* @memberof HostawayApi
|
|
1333
1334
|
*/
|
|
1334
|
-
webhook(
|
|
1335
|
-
return HostawayApiFp(this.configuration).webhook(
|
|
1335
|
+
webhook(hostawayWebhook, options) {
|
|
1336
|
+
return HostawayApiFp(this.configuration).webhook(hostawayWebhook, options).then((request) => request(this.axios, this.basePath));
|
|
1336
1337
|
}
|
|
1337
1338
|
};
|
|
1338
1339
|
var PhonesApiAxiosParamCreator = function(configuration) {
|
|
@@ -1647,13 +1648,11 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1647
1648
|
/**
|
|
1648
1649
|
*
|
|
1649
1650
|
* @summary Contacts Create
|
|
1650
|
-
* @param {string} customerId
|
|
1651
1651
|
* @param {ContactCreate} contactCreate
|
|
1652
1652
|
* @param {*} [options] Override http request option.
|
|
1653
1653
|
* @throws {RequiredError}
|
|
1654
1654
|
*/
|
|
1655
|
-
contactsCreate: async (
|
|
1656
|
-
assertParamExists("contactsCreate", "customerId", customerId);
|
|
1655
|
+
contactsCreate: async (contactCreate, options = {}) => {
|
|
1657
1656
|
assertParamExists("contactsCreate", "contactCreate", contactCreate);
|
|
1658
1657
|
const localVarPath = `/contacts`;
|
|
1659
1658
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1664,9 +1663,6 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1664
1663
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1665
1664
|
const localVarHeaderParameter = {};
|
|
1666
1665
|
const localVarQueryParameter = {};
|
|
1667
|
-
if (customerId !== void 0) {
|
|
1668
|
-
localVarQueryParameter["customerId"] = customerId;
|
|
1669
|
-
}
|
|
1670
1666
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1671
1667
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1672
1668
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1934,13 +1930,13 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1934
1930
|
/**
|
|
1935
1931
|
*
|
|
1936
1932
|
* @summary Unifiedwebhook
|
|
1937
|
-
* @param {
|
|
1933
|
+
* @param {HostawayWebhook} hostawayWebhook
|
|
1938
1934
|
* @param {*} [options] Override http request option.
|
|
1939
1935
|
* @throws {RequiredError}
|
|
1940
1936
|
*/
|
|
1941
|
-
webhook: async (
|
|
1942
|
-
assertParamExists("webhook", "
|
|
1943
|
-
const localVarPath = `/
|
|
1937
|
+
webhook: async (hostawayWebhook, options = {}) => {
|
|
1938
|
+
assertParamExists("webhook", "hostawayWebhook", hostawayWebhook);
|
|
1939
|
+
const localVarPath = `/hostaway-unified-webhooks`;
|
|
1944
1940
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1945
1941
|
let baseOptions;
|
|
1946
1942
|
if (configuration) {
|
|
@@ -1954,7 +1950,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1954
1950
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1955
1951
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1956
1952
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1957
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
1953
|
+
localVarRequestOptions.data = serializeDataIfNeeded(hostawayWebhook, localVarRequestOptions, configuration);
|
|
1958
1954
|
return {
|
|
1959
1955
|
url: toPathString(localVarUrlObj),
|
|
1960
1956
|
options: localVarRequestOptions
|
|
@@ -2009,13 +2005,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
2009
2005
|
/**
|
|
2010
2006
|
*
|
|
2011
2007
|
* @summary Contacts Create
|
|
2012
|
-
* @param {string} customerId
|
|
2013
2008
|
* @param {ContactCreate} contactCreate
|
|
2014
2009
|
* @param {*} [options] Override http request option.
|
|
2015
2010
|
* @throws {RequiredError}
|
|
2016
2011
|
*/
|
|
2017
|
-
async contactsCreate(
|
|
2018
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsCreate(
|
|
2012
|
+
async contactsCreate(contactCreate, options) {
|
|
2013
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsCreate(contactCreate, options);
|
|
2019
2014
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _98 => _98.serverIndex]), () => ( 0));
|
|
2020
2015
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _99 => _99["UnboundApi.contactsCreate"], 'optionalAccess', _100 => _100[localVarOperationServerIndex], 'optionalAccess', _101 => _101.url]);
|
|
2021
2016
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2144,12 +2139,12 @@ var UnboundApiFp = function(configuration) {
|
|
|
2144
2139
|
/**
|
|
2145
2140
|
*
|
|
2146
2141
|
* @summary Unifiedwebhook
|
|
2147
|
-
* @param {
|
|
2142
|
+
* @param {HostawayWebhook} hostawayWebhook
|
|
2148
2143
|
* @param {*} [options] Override http request option.
|
|
2149
2144
|
* @throws {RequiredError}
|
|
2150
2145
|
*/
|
|
2151
|
-
async webhook(
|
|
2152
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(
|
|
2146
|
+
async webhook(hostawayWebhook, options) {
|
|
2147
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(hostawayWebhook, options);
|
|
2153
2148
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _138 => _138.serverIndex]), () => ( 0));
|
|
2154
2149
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _139 => _139["UnboundApi.webhook"], 'optionalAccess', _140 => _140[localVarOperationServerIndex], 'optionalAccess', _141 => _141.url]);
|
|
2155
2150
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2194,13 +2189,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
2194
2189
|
/**
|
|
2195
2190
|
*
|
|
2196
2191
|
* @summary Contacts Create
|
|
2197
|
-
* @param {string} customerId
|
|
2198
2192
|
* @param {ContactCreate} contactCreate
|
|
2199
2193
|
* @param {*} [options] Override http request option.
|
|
2200
2194
|
* @throws {RequiredError}
|
|
2201
2195
|
*/
|
|
2202
|
-
contactsCreate(
|
|
2203
|
-
return localVarFp.contactsCreate(
|
|
2196
|
+
contactsCreate(contactCreate, options) {
|
|
2197
|
+
return localVarFp.contactsCreate(contactCreate, options).then((request) => request(axios, basePath));
|
|
2204
2198
|
},
|
|
2205
2199
|
/**
|
|
2206
2200
|
*
|
|
@@ -2299,12 +2293,12 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
2299
2293
|
/**
|
|
2300
2294
|
*
|
|
2301
2295
|
* @summary Unifiedwebhook
|
|
2302
|
-
* @param {
|
|
2296
|
+
* @param {HostawayWebhook} hostawayWebhook
|
|
2303
2297
|
* @param {*} [options] Override http request option.
|
|
2304
2298
|
* @throws {RequiredError}
|
|
2305
2299
|
*/
|
|
2306
|
-
webhook(
|
|
2307
|
-
return localVarFp.webhook(
|
|
2300
|
+
webhook(hostawayWebhook, options) {
|
|
2301
|
+
return localVarFp.webhook(hostawayWebhook, options).then((request) => request(axios, basePath));
|
|
2308
2302
|
}
|
|
2309
2303
|
};
|
|
2310
2304
|
};
|
|
@@ -2347,14 +2341,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
2347
2341
|
/**
|
|
2348
2342
|
*
|
|
2349
2343
|
* @summary Contacts Create
|
|
2350
|
-
* @param {string} customerId
|
|
2351
2344
|
* @param {ContactCreate} contactCreate
|
|
2352
2345
|
* @param {*} [options] Override http request option.
|
|
2353
2346
|
* @throws {RequiredError}
|
|
2354
2347
|
* @memberof UnboundApi
|
|
2355
2348
|
*/
|
|
2356
|
-
contactsCreate(
|
|
2357
|
-
return UnboundApiFp(this.configuration).contactsCreate(
|
|
2349
|
+
contactsCreate(contactCreate, options) {
|
|
2350
|
+
return UnboundApiFp(this.configuration).contactsCreate(contactCreate, options).then((request) => request(this.axios, this.basePath));
|
|
2358
2351
|
}
|
|
2359
2352
|
/**
|
|
2360
2353
|
*
|
|
@@ -2462,13 +2455,13 @@ var UnboundApi = class extends BaseAPI {
|
|
|
2462
2455
|
/**
|
|
2463
2456
|
*
|
|
2464
2457
|
* @summary Unifiedwebhook
|
|
2465
|
-
* @param {
|
|
2458
|
+
* @param {HostawayWebhook} hostawayWebhook
|
|
2466
2459
|
* @param {*} [options] Override http request option.
|
|
2467
2460
|
* @throws {RequiredError}
|
|
2468
2461
|
* @memberof UnboundApi
|
|
2469
2462
|
*/
|
|
2470
|
-
webhook(
|
|
2471
|
-
return UnboundApiFp(this.configuration).webhook(
|
|
2463
|
+
webhook(hostawayWebhook, options) {
|
|
2464
|
+
return UnboundApiFp(this.configuration).webhook(hostawayWebhook, options).then((request) => request(this.axios, this.basePath));
|
|
2472
2465
|
}
|
|
2473
2466
|
};
|
|
2474
2467
|
|
|
@@ -2601,5 +2594,8 @@ var Configuration = class {
|
|
|
2601
2594
|
|
|
2602
2595
|
|
|
2603
2596
|
|
|
2604
|
-
|
|
2597
|
+
|
|
2598
|
+
|
|
2599
|
+
|
|
2600
|
+
exports.AddressesApi = AddressesApi; exports.AddressesApiAxiosParamCreator = AddressesApiAxiosParamCreator; exports.AddressesApiFactory = AddressesApiFactory; exports.AddressesApiFp = AddressesApiFp; exports.BasicDataContactTypeEnum = BasicDataContactTypeEnum; exports.BasicDataCreateContactTypeEnum = BasicDataCreateContactTypeEnum; exports.BasicDataUpdateContactTypeEnum = BasicDataUpdateContactTypeEnum; exports.Configuration = Configuration; exports.ContactType = ContactType; 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.GuestDataContactTypeEnum = GuestDataContactTypeEnum; exports.GuestDataCreateContactTypeEnum = GuestDataCreateContactTypeEnum; exports.GuestDataUpdateContactTypeEnum = GuestDataUpdateContactTypeEnum; exports.HostawayApi = HostawayApi; exports.HostawayApiAxiosParamCreator = HostawayApiAxiosParamCreator; exports.HostawayApiFactory = HostawayApiFactory; exports.HostawayApiFp = HostawayApiFp; exports.LeadDataContactTypeEnum = LeadDataContactTypeEnum; exports.LeadDataCreateContactTypeEnum = LeadDataCreateContactTypeEnum; exports.LeadDataUpdateContactTypeEnum = LeadDataUpdateContactTypeEnum; exports.OwnerDataContactTypeEnum = OwnerDataContactTypeEnum; exports.OwnerDataCreateContactTypeEnum = OwnerDataCreateContactTypeEnum; exports.OwnerDataUpdateContactTypeEnum = OwnerDataUpdateContactTypeEnum; 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;
|
|
2605
2601
|
//# sourceMappingURL=index.js.map
|