@ember-home/unbound-ts-client 0.0.84 → 0.0.85
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 +246 -48
- package/dist/index.d.ts +246 -48
- package/dist/index.js +185 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +182 -27
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -231,6 +231,15 @@ var TwilioOutboundSenderTypeDataApiDirectionEnum = {
|
|
|
231
231
|
var TwilioProviderMessageApiMessageTypeEnum = {
|
|
232
232
|
Text: "TEXT"
|
|
233
233
|
};
|
|
234
|
+
var UserDeviceOs = {
|
|
235
|
+
Android: "ANDROID",
|
|
236
|
+
Ios: "IOS"
|
|
237
|
+
};
|
|
238
|
+
var UserDeviceType = {
|
|
239
|
+
Mobile: "MOBILE",
|
|
240
|
+
Tablet: "TABLET",
|
|
241
|
+
Desktop: "DESKTOP"
|
|
242
|
+
};
|
|
234
243
|
var AccountsApiAxiosParamCreator = function(configuration) {
|
|
235
244
|
return {
|
|
236
245
|
/**
|
|
@@ -2231,12 +2240,12 @@ var HostawayApiAxiosParamCreator = function(configuration) {
|
|
|
2231
2240
|
/**
|
|
2232
2241
|
*
|
|
2233
2242
|
* @summary Unifiedwebhook
|
|
2234
|
-
* @param {
|
|
2243
|
+
* @param {object} body
|
|
2235
2244
|
* @param {*} [options] Override http request option.
|
|
2236
2245
|
* @throws {RequiredError}
|
|
2237
2246
|
*/
|
|
2238
|
-
webhook: async (
|
|
2239
|
-
assertParamExists("webhook", "
|
|
2247
|
+
webhook: async (body, options = {}) => {
|
|
2248
|
+
assertParamExists("webhook", "body", body);
|
|
2240
2249
|
const localVarPath = `/hostaway-unified-webhooks`;
|
|
2241
2250
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2242
2251
|
let baseOptions;
|
|
@@ -2251,7 +2260,7 @@ var HostawayApiAxiosParamCreator = function(configuration) {
|
|
|
2251
2260
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2252
2261
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2253
2262
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2254
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
2263
|
+
localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration);
|
|
2255
2264
|
return {
|
|
2256
2265
|
url: toPathString(localVarUrlObj),
|
|
2257
2266
|
options: localVarRequestOptions
|
|
@@ -2265,12 +2274,12 @@ var HostawayApiFp = function(configuration) {
|
|
|
2265
2274
|
/**
|
|
2266
2275
|
*
|
|
2267
2276
|
* @summary Unifiedwebhook
|
|
2268
|
-
* @param {
|
|
2277
|
+
* @param {object} body
|
|
2269
2278
|
* @param {*} [options] Override http request option.
|
|
2270
2279
|
* @throws {RequiredError}
|
|
2271
2280
|
*/
|
|
2272
|
-
async webhook(
|
|
2273
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(
|
|
2281
|
+
async webhook(body, options) {
|
|
2282
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(body, options);
|
|
2274
2283
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _114 => _114.serverIndex]), () => ( 0));
|
|
2275
2284
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _115 => _115["HostawayApi.webhook"], 'optionalAccess', _116 => _116[localVarOperationServerIndex], 'optionalAccess', _117 => _117.url]);
|
|
2276
2285
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2283,12 +2292,12 @@ var HostawayApiFactory = function(configuration, basePath, axios) {
|
|
|
2283
2292
|
/**
|
|
2284
2293
|
*
|
|
2285
2294
|
* @summary Unifiedwebhook
|
|
2286
|
-
* @param {
|
|
2295
|
+
* @param {object} body
|
|
2287
2296
|
* @param {*} [options] Override http request option.
|
|
2288
2297
|
* @throws {RequiredError}
|
|
2289
2298
|
*/
|
|
2290
|
-
webhook(
|
|
2291
|
-
return localVarFp.webhook(
|
|
2299
|
+
webhook(body, options) {
|
|
2300
|
+
return localVarFp.webhook(body, options).then((request) => request(axios, basePath));
|
|
2292
2301
|
}
|
|
2293
2302
|
};
|
|
2294
2303
|
};
|
|
@@ -2296,13 +2305,13 @@ var HostawayApi = class extends BaseAPI {
|
|
|
2296
2305
|
/**
|
|
2297
2306
|
*
|
|
2298
2307
|
* @summary Unifiedwebhook
|
|
2299
|
-
* @param {
|
|
2308
|
+
* @param {object} body
|
|
2300
2309
|
* @param {*} [options] Override http request option.
|
|
2301
2310
|
* @throws {RequiredError}
|
|
2302
2311
|
* @memberof HostawayApi
|
|
2303
2312
|
*/
|
|
2304
|
-
webhook(
|
|
2305
|
-
return HostawayApiFp(this.configuration).webhook(
|
|
2313
|
+
webhook(body, options) {
|
|
2314
|
+
return HostawayApiFp(this.configuration).webhook(body, options).then((request) => request(this.axios, this.basePath));
|
|
2306
2315
|
}
|
|
2307
2316
|
};
|
|
2308
2317
|
var InboxesApiAxiosParamCreator = function(configuration) {
|
|
@@ -4361,15 +4370,43 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
4361
4370
|
options: localVarRequestOptions
|
|
4362
4371
|
};
|
|
4363
4372
|
},
|
|
4373
|
+
/**
|
|
4374
|
+
* UserDevices Create
|
|
4375
|
+
* @summary UserDevices Create
|
|
4376
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
4377
|
+
* @param {*} [options] Override http request option.
|
|
4378
|
+
* @throws {RequiredError}
|
|
4379
|
+
*/
|
|
4380
|
+
userDevicesCreate: async (aPIUserDeviceCreate, options = {}) => {
|
|
4381
|
+
assertParamExists("userDevicesCreate", "aPIUserDeviceCreate", aPIUserDeviceCreate);
|
|
4382
|
+
const localVarPath = `/userDevices`;
|
|
4383
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4384
|
+
let baseOptions;
|
|
4385
|
+
if (configuration) {
|
|
4386
|
+
baseOptions = configuration.baseOptions;
|
|
4387
|
+
}
|
|
4388
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
4389
|
+
const localVarHeaderParameter = {};
|
|
4390
|
+
const localVarQueryParameter = {};
|
|
4391
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4392
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4393
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4394
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
4395
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIUserDeviceCreate, localVarRequestOptions, configuration);
|
|
4396
|
+
return {
|
|
4397
|
+
url: toPathString(localVarUrlObj),
|
|
4398
|
+
options: localVarRequestOptions
|
|
4399
|
+
};
|
|
4400
|
+
},
|
|
4364
4401
|
/**
|
|
4365
4402
|
*
|
|
4366
4403
|
* @summary Unifiedwebhook
|
|
4367
|
-
* @param {
|
|
4404
|
+
* @param {object} body
|
|
4368
4405
|
* @param {*} [options] Override http request option.
|
|
4369
4406
|
* @throws {RequiredError}
|
|
4370
4407
|
*/
|
|
4371
|
-
webhook: async (
|
|
4372
|
-
assertParamExists("webhook", "
|
|
4408
|
+
webhook: async (body, options = {}) => {
|
|
4409
|
+
assertParamExists("webhook", "body", body);
|
|
4373
4410
|
const localVarPath = `/hostaway-unified-webhooks`;
|
|
4374
4411
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4375
4412
|
let baseOptions;
|
|
@@ -4384,7 +4421,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
4384
4421
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4385
4422
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4386
4423
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
4387
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
4424
|
+
localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration);
|
|
4388
4425
|
return {
|
|
4389
4426
|
url: toPathString(localVarUrlObj),
|
|
4390
4427
|
options: localVarRequestOptions
|
|
@@ -4947,17 +4984,30 @@ var UnboundApiFp = function(configuration) {
|
|
|
4947
4984
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _315 => _315["UnboundApi.reservationsList"], 'optionalAccess', _316 => _316[localVarOperationServerIndex], 'optionalAccess', _317 => _317.url]);
|
|
4948
4985
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4949
4986
|
},
|
|
4987
|
+
/**
|
|
4988
|
+
* UserDevices Create
|
|
4989
|
+
* @summary UserDevices Create
|
|
4990
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
4991
|
+
* @param {*} [options] Override http request option.
|
|
4992
|
+
* @throws {RequiredError}
|
|
4993
|
+
*/
|
|
4994
|
+
async userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
4995
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.userDevicesCreate(aPIUserDeviceCreate, options);
|
|
4996
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _318 => _318.serverIndex]), () => ( 0));
|
|
4997
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _319 => _319["UnboundApi.userDevicesCreate"], 'optionalAccess', _320 => _320[localVarOperationServerIndex], 'optionalAccess', _321 => _321.url]);
|
|
4998
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4999
|
+
},
|
|
4950
5000
|
/**
|
|
4951
5001
|
*
|
|
4952
5002
|
* @summary Unifiedwebhook
|
|
4953
|
-
* @param {
|
|
5003
|
+
* @param {object} body
|
|
4954
5004
|
* @param {*} [options] Override http request option.
|
|
4955
5005
|
* @throws {RequiredError}
|
|
4956
5006
|
*/
|
|
4957
|
-
async webhook(
|
|
4958
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(
|
|
4959
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4960
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5007
|
+
async webhook(body, options) {
|
|
5008
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(body, options);
|
|
5009
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _322 => _322.serverIndex]), () => ( 0));
|
|
5010
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _323 => _323["UnboundApi.webhook"], 'optionalAccess', _324 => _324[localVarOperationServerIndex], 'optionalAccess', _325 => _325.url]);
|
|
4961
5011
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4962
5012
|
}
|
|
4963
5013
|
};
|
|
@@ -5400,15 +5450,25 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
5400
5450
|
reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
5401
5451
|
return localVarFp.reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(axios, basePath));
|
|
5402
5452
|
},
|
|
5453
|
+
/**
|
|
5454
|
+
* UserDevices Create
|
|
5455
|
+
* @summary UserDevices Create
|
|
5456
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
5457
|
+
* @param {*} [options] Override http request option.
|
|
5458
|
+
* @throws {RequiredError}
|
|
5459
|
+
*/
|
|
5460
|
+
userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
5461
|
+
return localVarFp.userDevicesCreate(aPIUserDeviceCreate, options).then((request) => request(axios, basePath));
|
|
5462
|
+
},
|
|
5403
5463
|
/**
|
|
5404
5464
|
*
|
|
5405
5465
|
* @summary Unifiedwebhook
|
|
5406
|
-
* @param {
|
|
5466
|
+
* @param {object} body
|
|
5407
5467
|
* @param {*} [options] Override http request option.
|
|
5408
5468
|
* @throws {RequiredError}
|
|
5409
5469
|
*/
|
|
5410
|
-
webhook(
|
|
5411
|
-
return localVarFp.webhook(
|
|
5470
|
+
webhook(body, options) {
|
|
5471
|
+
return localVarFp.webhook(body, options).then((request) => request(axios, basePath));
|
|
5412
5472
|
}
|
|
5413
5473
|
};
|
|
5414
5474
|
};
|
|
@@ -5887,16 +5947,105 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5887
5947
|
reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
5888
5948
|
return UnboundApiFp(this.configuration).reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
5889
5949
|
}
|
|
5950
|
+
/**
|
|
5951
|
+
* UserDevices Create
|
|
5952
|
+
* @summary UserDevices Create
|
|
5953
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
5954
|
+
* @param {*} [options] Override http request option.
|
|
5955
|
+
* @throws {RequiredError}
|
|
5956
|
+
* @memberof UnboundApi
|
|
5957
|
+
*/
|
|
5958
|
+
userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
5959
|
+
return UnboundApiFp(this.configuration).userDevicesCreate(aPIUserDeviceCreate, options).then((request) => request(this.axios, this.basePath));
|
|
5960
|
+
}
|
|
5890
5961
|
/**
|
|
5891
5962
|
*
|
|
5892
5963
|
* @summary Unifiedwebhook
|
|
5893
|
-
* @param {
|
|
5964
|
+
* @param {object} body
|
|
5894
5965
|
* @param {*} [options] Override http request option.
|
|
5895
5966
|
* @throws {RequiredError}
|
|
5896
5967
|
* @memberof UnboundApi
|
|
5897
5968
|
*/
|
|
5898
|
-
webhook(
|
|
5899
|
-
return UnboundApiFp(this.configuration).webhook(
|
|
5969
|
+
webhook(body, options) {
|
|
5970
|
+
return UnboundApiFp(this.configuration).webhook(body, options).then((request) => request(this.axios, this.basePath));
|
|
5971
|
+
}
|
|
5972
|
+
};
|
|
5973
|
+
var UserDevicesApiAxiosParamCreator = function(configuration) {
|
|
5974
|
+
return {
|
|
5975
|
+
/**
|
|
5976
|
+
* UserDevices Create
|
|
5977
|
+
* @summary UserDevices Create
|
|
5978
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
5979
|
+
* @param {*} [options] Override http request option.
|
|
5980
|
+
* @throws {RequiredError}
|
|
5981
|
+
*/
|
|
5982
|
+
userDevicesCreate: async (aPIUserDeviceCreate, options = {}) => {
|
|
5983
|
+
assertParamExists("userDevicesCreate", "aPIUserDeviceCreate", aPIUserDeviceCreate);
|
|
5984
|
+
const localVarPath = `/userDevices`;
|
|
5985
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5986
|
+
let baseOptions;
|
|
5987
|
+
if (configuration) {
|
|
5988
|
+
baseOptions = configuration.baseOptions;
|
|
5989
|
+
}
|
|
5990
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
5991
|
+
const localVarHeaderParameter = {};
|
|
5992
|
+
const localVarQueryParameter = {};
|
|
5993
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
5994
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5995
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5996
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5997
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIUserDeviceCreate, localVarRequestOptions, configuration);
|
|
5998
|
+
return {
|
|
5999
|
+
url: toPathString(localVarUrlObj),
|
|
6000
|
+
options: localVarRequestOptions
|
|
6001
|
+
};
|
|
6002
|
+
}
|
|
6003
|
+
};
|
|
6004
|
+
};
|
|
6005
|
+
var UserDevicesApiFp = function(configuration) {
|
|
6006
|
+
const localVarAxiosParamCreator = UserDevicesApiAxiosParamCreator(configuration);
|
|
6007
|
+
return {
|
|
6008
|
+
/**
|
|
6009
|
+
* UserDevices Create
|
|
6010
|
+
* @summary UserDevices Create
|
|
6011
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6012
|
+
* @param {*} [options] Override http request option.
|
|
6013
|
+
* @throws {RequiredError}
|
|
6014
|
+
*/
|
|
6015
|
+
async userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
6016
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.userDevicesCreate(aPIUserDeviceCreate, options);
|
|
6017
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _326 => _326.serverIndex]), () => ( 0));
|
|
6018
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _327 => _327["UserDevicesApi.userDevicesCreate"], 'optionalAccess', _328 => _328[localVarOperationServerIndex], 'optionalAccess', _329 => _329.url]);
|
|
6019
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6020
|
+
}
|
|
6021
|
+
};
|
|
6022
|
+
};
|
|
6023
|
+
var UserDevicesApiFactory = function(configuration, basePath, axios) {
|
|
6024
|
+
const localVarFp = UserDevicesApiFp(configuration);
|
|
6025
|
+
return {
|
|
6026
|
+
/**
|
|
6027
|
+
* UserDevices Create
|
|
6028
|
+
* @summary UserDevices Create
|
|
6029
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6030
|
+
* @param {*} [options] Override http request option.
|
|
6031
|
+
* @throws {RequiredError}
|
|
6032
|
+
*/
|
|
6033
|
+
userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
6034
|
+
return localVarFp.userDevicesCreate(aPIUserDeviceCreate, options).then((request) => request(axios, basePath));
|
|
6035
|
+
}
|
|
6036
|
+
};
|
|
6037
|
+
};
|
|
6038
|
+
var UserDevicesApi = class extends BaseAPI {
|
|
6039
|
+
/**
|
|
6040
|
+
* UserDevices Create
|
|
6041
|
+
* @summary UserDevices Create
|
|
6042
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6043
|
+
* @param {*} [options] Override http request option.
|
|
6044
|
+
* @throws {RequiredError}
|
|
6045
|
+
* @memberof UserDevicesApi
|
|
6046
|
+
*/
|
|
6047
|
+
userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
6048
|
+
return UserDevicesApiFp(this.configuration).userDevicesCreate(aPIUserDeviceCreate, options).then((request) => request(this.axios, this.basePath));
|
|
5900
6049
|
}
|
|
5901
6050
|
};
|
|
5902
6051
|
|
|
@@ -5968,7 +6117,7 @@ var Configuration = class {
|
|
|
5968
6117
|
this.baseOptions = {
|
|
5969
6118
|
...param.baseOptions,
|
|
5970
6119
|
headers: {
|
|
5971
|
-
..._optionalChain([param, 'access',
|
|
6120
|
+
..._optionalChain([param, 'access', _330 => _330.baseOptions, 'optionalAccess', _331 => _331.headers])
|
|
5972
6121
|
}
|
|
5973
6122
|
};
|
|
5974
6123
|
this.formDataCtor = param.formDataCtor;
|
|
@@ -6074,5 +6223,11 @@ var Configuration = class {
|
|
|
6074
6223
|
|
|
6075
6224
|
|
|
6076
6225
|
|
|
6077
|
-
|
|
6226
|
+
|
|
6227
|
+
|
|
6228
|
+
|
|
6229
|
+
|
|
6230
|
+
|
|
6231
|
+
|
|
6232
|
+
exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.AuthApi = AuthApi; exports.AuthApiAxiosParamCreator = AuthApiAxiosParamCreator; exports.AuthApiFactory = AuthApiFactory; exports.AuthApiFp = AuthApiFp; exports.BotApiParticipantTypeEnum = BotApiParticipantTypeEnum; exports.Configuration = Configuration; exports.ContactListingType = ContactListingType; exports.ContactsApi = ContactsApi; exports.ContactsApiAxiosParamCreator = ContactsApiAxiosParamCreator; exports.ContactsApiFactory = ContactsApiFactory; exports.ContactsApiFp = ContactsApiFp; exports.ConversationStatus = ConversationStatus; exports.ConversationsApi = ConversationsApi; exports.ConversationsApiAxiosParamCreator = ConversationsApiAxiosParamCreator; exports.ConversationsApiFactory = ConversationsApiFactory; exports.ConversationsApiFp = ConversationsApiFp; exports.EmailConversationDataApiConversationTypeEnum = EmailConversationDataApiConversationTypeEnum; exports.EmailInboxApiInboxTypeEnum = EmailInboxApiInboxTypeEnum; exports.EmailProviderMessageApiMessageTypeEnum = EmailProviderMessageApiMessageTypeEnum; exports.ExternalStaffApiStaffTypeEnum = ExternalStaffApiStaffTypeEnum; exports.GuestApiParticipantTypeEnum = GuestApiParticipantTypeEnum; exports.HostawayApi = HostawayApi; exports.HostawayApiAxiosParamCreator = HostawayApiAxiosParamCreator; exports.HostawayApiFactory = HostawayApiFactory; exports.HostawayApiFp = HostawayApiFp; exports.InboxesApi = InboxesApi; exports.InboxesApiAxiosParamCreator = InboxesApiAxiosParamCreator; exports.InboxesApiFactory = InboxesApiFactory; exports.InboxesApiFp = InboxesApiFp; exports.InquiriesApi = InquiriesApi; exports.InquiriesApiAxiosParamCreator = InquiriesApiAxiosParamCreator; exports.InquiriesApiFactory = InquiriesApiFactory; exports.InquiriesApiFp = InquiriesApiFp; exports.InternalStaffApiStaffTypeEnum = InternalStaffApiStaffTypeEnum; exports.ListingsApi = ListingsApi; exports.ListingsApiAxiosParamCreator = ListingsApiAxiosParamCreator; exports.ListingsApiFactory = ListingsApiFactory; exports.ListingsApiFp = ListingsApiFp; exports.ManagedPhoneNumbersApi = ManagedPhoneNumbersApi; exports.ManagedPhoneNumbersApiAxiosParamCreator = ManagedPhoneNumbersApiAxiosParamCreator; exports.ManagedPhoneNumbersApiFactory = ManagedPhoneNumbersApiFactory; exports.ManagedPhoneNumbersApiFp = ManagedPhoneNumbersApiFp; exports.MessageDirection = MessageDirection; exports.MessageStatus = MessageStatus; exports.PaginationDirection = PaginationDirection; exports.PhoneInboxApiInboxTypeEnum = PhoneInboxApiInboxTypeEnum; exports.ProviderAccountInboxApiInboxTypeEnum = ProviderAccountInboxApiInboxTypeEnum; exports.ProviderCommunicationType = ProviderCommunicationType; exports.ProviderConversationDataApiConversationTypeEnum = ProviderConversationDataApiConversationTypeEnum; exports.ProviderStaffApiStaffTypeEnum = ProviderStaffApiStaffTypeEnum; exports.ProvidersApi = ProvidersApi; exports.ProvidersApiAxiosParamCreator = ProvidersApiAxiosParamCreator; exports.ProvidersApiFactory = ProvidersApiFactory; exports.ProvidersApiFp = ProvidersApiFp; exports.ReasonType = ReasonType; exports.RentalProviderMessageApiMessageTypeEnum = RentalProviderMessageApiMessageTypeEnum; exports.RentalProviderTypes = RentalProviderTypes; exports.ReservationChannelTypes = ReservationChannelTypes; exports.ReservationStatus = ReservationStatus; exports.ReservationsApi = ReservationsApi; exports.ReservationsApiAxiosParamCreator = ReservationsApiAxiosParamCreator; exports.ReservationsApiFactory = ReservationsApiFactory; exports.ReservationsApiFp = ReservationsApiFp; exports.SortOrder = SortOrder; exports.SrcResourceModelsContactsModelContactsModelContactSortBy = SrcResourceModelsContactsModelContactsModelContactSortBy; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum; exports.SrcResourceModelsListingsModelListingBaseSortBy = SrcResourceModelsListingsModelListingBaseSortBy; exports.SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy; exports.SrcResourceModelsReservationsModelReservationBaseModelSortBy = SrcResourceModelsReservationsModelReservationBaseModelSortBy; exports.StaffApiParticipantTypeEnum = StaffApiParticipantTypeEnum; exports.SuggestionStatus = SuggestionStatus; exports.TwilioConversationDataApiConversationTypeEnum = TwilioConversationDataApiConversationTypeEnum; exports.TwilioInboundSenderTypeDataApiDirectionEnum = TwilioInboundSenderTypeDataApiDirectionEnum; exports.TwilioOutboundSenderTypeDataApiDirectionEnum = TwilioOutboundSenderTypeDataApiDirectionEnum; exports.TwilioProviderMessageApiMessageTypeEnum = TwilioProviderMessageApiMessageTypeEnum; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp; exports.UserDeviceOs = UserDeviceOs; exports.UserDeviceType = UserDeviceType; exports.UserDevicesApi = UserDevicesApi; exports.UserDevicesApiAxiosParamCreator = UserDevicesApiAxiosParamCreator; exports.UserDevicesApiFactory = UserDevicesApiFactory; exports.UserDevicesApiFp = UserDevicesApiFp;
|
|
6078
6233
|
//# sourceMappingURL=index.js.map
|