@ember-home/unbound-ts-client 0.0.9 → 0.0.11
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 +83 -40
- package/dist/index.d.ts +83 -40
- package/dist/index.js +53 -57
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +52 -56
- 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 : {};
|
|
@@ -499,12 +503,12 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
499
503
|
/**
|
|
500
504
|
*
|
|
501
505
|
* @summary Contacts List
|
|
502
|
-
* @param {ContactType} [
|
|
506
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
503
507
|
* @param {string} [searchString]
|
|
504
508
|
* @param {*} [options] Override http request option.
|
|
505
509
|
* @throws {RequiredError}
|
|
506
510
|
*/
|
|
507
|
-
contactsList: async (
|
|
511
|
+
contactsList: async (contactTypes, searchString, options = {}) => {
|
|
508
512
|
const localVarPath = `/contacts`;
|
|
509
513
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
510
514
|
let baseOptions;
|
|
@@ -514,8 +518,8 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
514
518
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
515
519
|
const localVarHeaderParameter = {};
|
|
516
520
|
const localVarQueryParameter = {};
|
|
517
|
-
if (
|
|
518
|
-
localVarQueryParameter["
|
|
521
|
+
if (contactTypes) {
|
|
522
|
+
localVarQueryParameter["contactTypes"] = contactTypes;
|
|
519
523
|
}
|
|
520
524
|
if (searchString !== void 0) {
|
|
521
525
|
localVarQueryParameter["searchString"] = searchString;
|
|
@@ -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);
|
|
@@ -759,13 +762,13 @@ var ContactsApiFp = function(configuration) {
|
|
|
759
762
|
/**
|
|
760
763
|
*
|
|
761
764
|
* @summary Contacts List
|
|
762
|
-
* @param {ContactType} [
|
|
765
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
763
766
|
* @param {string} [searchString]
|
|
764
767
|
* @param {*} [options] Override http request option.
|
|
765
768
|
* @throws {RequiredError}
|
|
766
769
|
*/
|
|
767
|
-
async contactsList(
|
|
768
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(
|
|
770
|
+
async contactsList(contactTypes, searchString, options) {
|
|
771
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(contactTypes, searchString, options);
|
|
769
772
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _38 => _38.serverIndex]), () => ( 0));
|
|
770
773
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _39 => _39["ContactsApi.contactsList"], 'optionalAccess', _40 => _40[localVarOperationServerIndex], 'optionalAccess', _41 => _41.url]);
|
|
771
774
|
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
|
*
|
|
@@ -909,13 +911,13 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
909
911
|
/**
|
|
910
912
|
*
|
|
911
913
|
* @summary Contacts List
|
|
912
|
-
* @param {ContactType} [
|
|
914
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
913
915
|
* @param {string} [searchString]
|
|
914
916
|
* @param {*} [options] Override http request option.
|
|
915
917
|
* @throws {RequiredError}
|
|
916
918
|
*/
|
|
917
|
-
contactsList(
|
|
918
|
-
return localVarFp.contactsList(
|
|
919
|
+
contactsList(contactTypes, searchString, options) {
|
|
920
|
+
return localVarFp.contactsList(contactTypes, searchString, options).then((request) => request(axios, basePath));
|
|
919
921
|
},
|
|
920
922
|
/**
|
|
921
923
|
*
|
|
@@ -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
|
*
|
|
@@ -1045,14 +1046,14 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1045
1046
|
/**
|
|
1046
1047
|
*
|
|
1047
1048
|
* @summary Contacts List
|
|
1048
|
-
* @param {ContactType} [
|
|
1049
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
1049
1050
|
* @param {string} [searchString]
|
|
1050
1051
|
* @param {*} [options] Override http request option.
|
|
1051
1052
|
* @throws {RequiredError}
|
|
1052
1053
|
* @memberof ContactsApi
|
|
1053
1054
|
*/
|
|
1054
|
-
contactsList(
|
|
1055
|
-
return ContactsApiFp(this.configuration).contactsList(
|
|
1055
|
+
contactsList(contactTypes, searchString, options) {
|
|
1056
|
+
return ContactsApiFp(this.configuration).contactsList(contactTypes, searchString, options).then((request) => request(this.axios, this.basePath));
|
|
1056
1057
|
}
|
|
1057
1058
|
/**
|
|
1058
1059
|
*
|
|
@@ -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 : {};
|
|
@@ -1732,12 +1728,12 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1732
1728
|
/**
|
|
1733
1729
|
*
|
|
1734
1730
|
* @summary Contacts List
|
|
1735
|
-
* @param {ContactType} [
|
|
1731
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
1736
1732
|
* @param {string} [searchString]
|
|
1737
1733
|
* @param {*} [options] Override http request option.
|
|
1738
1734
|
* @throws {RequiredError}
|
|
1739
1735
|
*/
|
|
1740
|
-
contactsList: async (
|
|
1736
|
+
contactsList: async (contactTypes, searchString, options = {}) => {
|
|
1741
1737
|
const localVarPath = `/contacts`;
|
|
1742
1738
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1743
1739
|
let baseOptions;
|
|
@@ -1747,8 +1743,8 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1747
1743
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1748
1744
|
const localVarHeaderParameter = {};
|
|
1749
1745
|
const localVarQueryParameter = {};
|
|
1750
|
-
if (
|
|
1751
|
-
localVarQueryParameter["
|
|
1746
|
+
if (contactTypes) {
|
|
1747
|
+
localVarQueryParameter["contactTypes"] = contactTypes;
|
|
1752
1748
|
}
|
|
1753
1749
|
if (searchString !== void 0) {
|
|
1754
1750
|
localVarQueryParameter["searchString"] = searchString;
|
|
@@ -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);
|
|
@@ -2049,13 +2044,13 @@ var UnboundApiFp = function(configuration) {
|
|
|
2049
2044
|
/**
|
|
2050
2045
|
*
|
|
2051
2046
|
* @summary Contacts List
|
|
2052
|
-
* @param {ContactType} [
|
|
2047
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2053
2048
|
* @param {string} [searchString]
|
|
2054
2049
|
* @param {*} [options] Override http request option.
|
|
2055
2050
|
* @throws {RequiredError}
|
|
2056
2051
|
*/
|
|
2057
|
-
async contactsList(
|
|
2058
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(
|
|
2052
|
+
async contactsList(contactTypes, searchString, options) {
|
|
2053
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(contactTypes, searchString, options);
|
|
2059
2054
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _110 => _110.serverIndex]), () => ( 0));
|
|
2060
2055
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _111 => _111["UnboundApi.contactsList"], 'optionalAccess', _112 => _112[localVarOperationServerIndex], 'optionalAccess', _113 => _113.url]);
|
|
2061
2056
|
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
|
*
|
|
@@ -2225,13 +2219,13 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
2225
2219
|
/**
|
|
2226
2220
|
*
|
|
2227
2221
|
* @summary Contacts List
|
|
2228
|
-
* @param {ContactType} [
|
|
2222
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2229
2223
|
* @param {string} [searchString]
|
|
2230
2224
|
* @param {*} [options] Override http request option.
|
|
2231
2225
|
* @throws {RequiredError}
|
|
2232
2226
|
*/
|
|
2233
|
-
contactsList(
|
|
2234
|
-
return localVarFp.contactsList(
|
|
2227
|
+
contactsList(contactTypes, searchString, options) {
|
|
2228
|
+
return localVarFp.contactsList(contactTypes, searchString, options).then((request) => request(axios, basePath));
|
|
2235
2229
|
},
|
|
2236
2230
|
/**
|
|
2237
2231
|
*
|
|
@@ -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
|
*
|
|
@@ -2381,14 +2374,14 @@ var UnboundApi = class extends BaseAPI {
|
|
|
2381
2374
|
/**
|
|
2382
2375
|
*
|
|
2383
2376
|
* @summary Contacts List
|
|
2384
|
-
* @param {ContactType} [
|
|
2377
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2385
2378
|
* @param {string} [searchString]
|
|
2386
2379
|
* @param {*} [options] Override http request option.
|
|
2387
2380
|
* @throws {RequiredError}
|
|
2388
2381
|
* @memberof UnboundApi
|
|
2389
2382
|
*/
|
|
2390
|
-
contactsList(
|
|
2391
|
-
return UnboundApiFp(this.configuration).contactsList(
|
|
2383
|
+
contactsList(contactTypes, searchString, options) {
|
|
2384
|
+
return UnboundApiFp(this.configuration).contactsList(contactTypes, searchString, options).then((request) => request(this.axios, this.basePath));
|
|
2392
2385
|
}
|
|
2393
2386
|
/**
|
|
2394
2387
|
*
|
|
@@ -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
|