@ember-home/unbound-ts-client 0.0.84 → 0.0.86
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 +236 -48
- package/dist/index.d.ts +236 -48
- package/dist/index.js +180 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +177 -27
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -231,6 +231,11 @@ var TwilioOutboundSenderTypeDataApiDirectionEnum = {
|
|
|
231
231
|
var TwilioProviderMessageApiMessageTypeEnum = {
|
|
232
232
|
Text: "TEXT"
|
|
233
233
|
};
|
|
234
|
+
var UserDeviceOs = {
|
|
235
|
+
Android: "ANDROID",
|
|
236
|
+
Ios: "IOS",
|
|
237
|
+
Macos: "MACOS"
|
|
238
|
+
};
|
|
234
239
|
var AccountsApiAxiosParamCreator = function(configuration) {
|
|
235
240
|
return {
|
|
236
241
|
/**
|
|
@@ -2231,12 +2236,12 @@ var HostawayApiAxiosParamCreator = function(configuration) {
|
|
|
2231
2236
|
/**
|
|
2232
2237
|
*
|
|
2233
2238
|
* @summary Unifiedwebhook
|
|
2234
|
-
* @param {
|
|
2239
|
+
* @param {object} body
|
|
2235
2240
|
* @param {*} [options] Override http request option.
|
|
2236
2241
|
* @throws {RequiredError}
|
|
2237
2242
|
*/
|
|
2238
|
-
webhook: async (
|
|
2239
|
-
assertParamExists("webhook", "
|
|
2243
|
+
webhook: async (body, options = {}) => {
|
|
2244
|
+
assertParamExists("webhook", "body", body);
|
|
2240
2245
|
const localVarPath = `/hostaway-unified-webhooks`;
|
|
2241
2246
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2242
2247
|
let baseOptions;
|
|
@@ -2251,7 +2256,7 @@ var HostawayApiAxiosParamCreator = function(configuration) {
|
|
|
2251
2256
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2252
2257
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2253
2258
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2254
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
2259
|
+
localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration);
|
|
2255
2260
|
return {
|
|
2256
2261
|
url: toPathString(localVarUrlObj),
|
|
2257
2262
|
options: localVarRequestOptions
|
|
@@ -2265,12 +2270,12 @@ var HostawayApiFp = function(configuration) {
|
|
|
2265
2270
|
/**
|
|
2266
2271
|
*
|
|
2267
2272
|
* @summary Unifiedwebhook
|
|
2268
|
-
* @param {
|
|
2273
|
+
* @param {object} body
|
|
2269
2274
|
* @param {*} [options] Override http request option.
|
|
2270
2275
|
* @throws {RequiredError}
|
|
2271
2276
|
*/
|
|
2272
|
-
async webhook(
|
|
2273
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(
|
|
2277
|
+
async webhook(body, options) {
|
|
2278
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(body, options);
|
|
2274
2279
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _114 => _114.serverIndex]), () => ( 0));
|
|
2275
2280
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _115 => _115["HostawayApi.webhook"], 'optionalAccess', _116 => _116[localVarOperationServerIndex], 'optionalAccess', _117 => _117.url]);
|
|
2276
2281
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2283,12 +2288,12 @@ var HostawayApiFactory = function(configuration, basePath, axios) {
|
|
|
2283
2288
|
/**
|
|
2284
2289
|
*
|
|
2285
2290
|
* @summary Unifiedwebhook
|
|
2286
|
-
* @param {
|
|
2291
|
+
* @param {object} body
|
|
2287
2292
|
* @param {*} [options] Override http request option.
|
|
2288
2293
|
* @throws {RequiredError}
|
|
2289
2294
|
*/
|
|
2290
|
-
webhook(
|
|
2291
|
-
return localVarFp.webhook(
|
|
2295
|
+
webhook(body, options) {
|
|
2296
|
+
return localVarFp.webhook(body, options).then((request) => request(axios, basePath));
|
|
2292
2297
|
}
|
|
2293
2298
|
};
|
|
2294
2299
|
};
|
|
@@ -2296,13 +2301,13 @@ var HostawayApi = class extends BaseAPI {
|
|
|
2296
2301
|
/**
|
|
2297
2302
|
*
|
|
2298
2303
|
* @summary Unifiedwebhook
|
|
2299
|
-
* @param {
|
|
2304
|
+
* @param {object} body
|
|
2300
2305
|
* @param {*} [options] Override http request option.
|
|
2301
2306
|
* @throws {RequiredError}
|
|
2302
2307
|
* @memberof HostawayApi
|
|
2303
2308
|
*/
|
|
2304
|
-
webhook(
|
|
2305
|
-
return HostawayApiFp(this.configuration).webhook(
|
|
2309
|
+
webhook(body, options) {
|
|
2310
|
+
return HostawayApiFp(this.configuration).webhook(body, options).then((request) => request(this.axios, this.basePath));
|
|
2306
2311
|
}
|
|
2307
2312
|
};
|
|
2308
2313
|
var InboxesApiAxiosParamCreator = function(configuration) {
|
|
@@ -4361,15 +4366,43 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
4361
4366
|
options: localVarRequestOptions
|
|
4362
4367
|
};
|
|
4363
4368
|
},
|
|
4369
|
+
/**
|
|
4370
|
+
* UserDevices Create
|
|
4371
|
+
* @summary UserDevices Create
|
|
4372
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
4373
|
+
* @param {*} [options] Override http request option.
|
|
4374
|
+
* @throws {RequiredError}
|
|
4375
|
+
*/
|
|
4376
|
+
userDevicesCreate: async (aPIUserDeviceCreate, options = {}) => {
|
|
4377
|
+
assertParamExists("userDevicesCreate", "aPIUserDeviceCreate", aPIUserDeviceCreate);
|
|
4378
|
+
const localVarPath = `/userDevices`;
|
|
4379
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4380
|
+
let baseOptions;
|
|
4381
|
+
if (configuration) {
|
|
4382
|
+
baseOptions = configuration.baseOptions;
|
|
4383
|
+
}
|
|
4384
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
4385
|
+
const localVarHeaderParameter = {};
|
|
4386
|
+
const localVarQueryParameter = {};
|
|
4387
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4388
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4389
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4390
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
4391
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIUserDeviceCreate, localVarRequestOptions, configuration);
|
|
4392
|
+
return {
|
|
4393
|
+
url: toPathString(localVarUrlObj),
|
|
4394
|
+
options: localVarRequestOptions
|
|
4395
|
+
};
|
|
4396
|
+
},
|
|
4364
4397
|
/**
|
|
4365
4398
|
*
|
|
4366
4399
|
* @summary Unifiedwebhook
|
|
4367
|
-
* @param {
|
|
4400
|
+
* @param {object} body
|
|
4368
4401
|
* @param {*} [options] Override http request option.
|
|
4369
4402
|
* @throws {RequiredError}
|
|
4370
4403
|
*/
|
|
4371
|
-
webhook: async (
|
|
4372
|
-
assertParamExists("webhook", "
|
|
4404
|
+
webhook: async (body, options = {}) => {
|
|
4405
|
+
assertParamExists("webhook", "body", body);
|
|
4373
4406
|
const localVarPath = `/hostaway-unified-webhooks`;
|
|
4374
4407
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4375
4408
|
let baseOptions;
|
|
@@ -4384,7 +4417,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
4384
4417
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4385
4418
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4386
4419
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
4387
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
4420
|
+
localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration);
|
|
4388
4421
|
return {
|
|
4389
4422
|
url: toPathString(localVarUrlObj),
|
|
4390
4423
|
options: localVarRequestOptions
|
|
@@ -4947,17 +4980,30 @@ var UnboundApiFp = function(configuration) {
|
|
|
4947
4980
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _315 => _315["UnboundApi.reservationsList"], 'optionalAccess', _316 => _316[localVarOperationServerIndex], 'optionalAccess', _317 => _317.url]);
|
|
4948
4981
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4949
4982
|
},
|
|
4983
|
+
/**
|
|
4984
|
+
* UserDevices Create
|
|
4985
|
+
* @summary UserDevices Create
|
|
4986
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
4987
|
+
* @param {*} [options] Override http request option.
|
|
4988
|
+
* @throws {RequiredError}
|
|
4989
|
+
*/
|
|
4990
|
+
async userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
4991
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.userDevicesCreate(aPIUserDeviceCreate, options);
|
|
4992
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _318 => _318.serverIndex]), () => ( 0));
|
|
4993
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _319 => _319["UnboundApi.userDevicesCreate"], 'optionalAccess', _320 => _320[localVarOperationServerIndex], 'optionalAccess', _321 => _321.url]);
|
|
4994
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4995
|
+
},
|
|
4950
4996
|
/**
|
|
4951
4997
|
*
|
|
4952
4998
|
* @summary Unifiedwebhook
|
|
4953
|
-
* @param {
|
|
4999
|
+
* @param {object} body
|
|
4954
5000
|
* @param {*} [options] Override http request option.
|
|
4955
5001
|
* @throws {RequiredError}
|
|
4956
5002
|
*/
|
|
4957
|
-
async webhook(
|
|
4958
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(
|
|
4959
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4960
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5003
|
+
async webhook(body, options) {
|
|
5004
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(body, options);
|
|
5005
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _322 => _322.serverIndex]), () => ( 0));
|
|
5006
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _323 => _323["UnboundApi.webhook"], 'optionalAccess', _324 => _324[localVarOperationServerIndex], 'optionalAccess', _325 => _325.url]);
|
|
4961
5007
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4962
5008
|
}
|
|
4963
5009
|
};
|
|
@@ -5400,15 +5446,25 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
5400
5446
|
reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
5401
5447
|
return localVarFp.reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(axios, basePath));
|
|
5402
5448
|
},
|
|
5449
|
+
/**
|
|
5450
|
+
* UserDevices Create
|
|
5451
|
+
* @summary UserDevices Create
|
|
5452
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
5453
|
+
* @param {*} [options] Override http request option.
|
|
5454
|
+
* @throws {RequiredError}
|
|
5455
|
+
*/
|
|
5456
|
+
userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
5457
|
+
return localVarFp.userDevicesCreate(aPIUserDeviceCreate, options).then((request) => request(axios, basePath));
|
|
5458
|
+
},
|
|
5403
5459
|
/**
|
|
5404
5460
|
*
|
|
5405
5461
|
* @summary Unifiedwebhook
|
|
5406
|
-
* @param {
|
|
5462
|
+
* @param {object} body
|
|
5407
5463
|
* @param {*} [options] Override http request option.
|
|
5408
5464
|
* @throws {RequiredError}
|
|
5409
5465
|
*/
|
|
5410
|
-
webhook(
|
|
5411
|
-
return localVarFp.webhook(
|
|
5466
|
+
webhook(body, options) {
|
|
5467
|
+
return localVarFp.webhook(body, options).then((request) => request(axios, basePath));
|
|
5412
5468
|
}
|
|
5413
5469
|
};
|
|
5414
5470
|
};
|
|
@@ -5887,16 +5943,105 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5887
5943
|
reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
5888
5944
|
return UnboundApiFp(this.configuration).reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
5889
5945
|
}
|
|
5946
|
+
/**
|
|
5947
|
+
* UserDevices Create
|
|
5948
|
+
* @summary UserDevices Create
|
|
5949
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
5950
|
+
* @param {*} [options] Override http request option.
|
|
5951
|
+
* @throws {RequiredError}
|
|
5952
|
+
* @memberof UnboundApi
|
|
5953
|
+
*/
|
|
5954
|
+
userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
5955
|
+
return UnboundApiFp(this.configuration).userDevicesCreate(aPIUserDeviceCreate, options).then((request) => request(this.axios, this.basePath));
|
|
5956
|
+
}
|
|
5890
5957
|
/**
|
|
5891
5958
|
*
|
|
5892
5959
|
* @summary Unifiedwebhook
|
|
5893
|
-
* @param {
|
|
5960
|
+
* @param {object} body
|
|
5894
5961
|
* @param {*} [options] Override http request option.
|
|
5895
5962
|
* @throws {RequiredError}
|
|
5896
5963
|
* @memberof UnboundApi
|
|
5897
5964
|
*/
|
|
5898
|
-
webhook(
|
|
5899
|
-
return UnboundApiFp(this.configuration).webhook(
|
|
5965
|
+
webhook(body, options) {
|
|
5966
|
+
return UnboundApiFp(this.configuration).webhook(body, options).then((request) => request(this.axios, this.basePath));
|
|
5967
|
+
}
|
|
5968
|
+
};
|
|
5969
|
+
var UserDevicesApiAxiosParamCreator = function(configuration) {
|
|
5970
|
+
return {
|
|
5971
|
+
/**
|
|
5972
|
+
* UserDevices Create
|
|
5973
|
+
* @summary UserDevices Create
|
|
5974
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
5975
|
+
* @param {*} [options] Override http request option.
|
|
5976
|
+
* @throws {RequiredError}
|
|
5977
|
+
*/
|
|
5978
|
+
userDevicesCreate: async (aPIUserDeviceCreate, options = {}) => {
|
|
5979
|
+
assertParamExists("userDevicesCreate", "aPIUserDeviceCreate", aPIUserDeviceCreate);
|
|
5980
|
+
const localVarPath = `/userDevices`;
|
|
5981
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5982
|
+
let baseOptions;
|
|
5983
|
+
if (configuration) {
|
|
5984
|
+
baseOptions = configuration.baseOptions;
|
|
5985
|
+
}
|
|
5986
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
5987
|
+
const localVarHeaderParameter = {};
|
|
5988
|
+
const localVarQueryParameter = {};
|
|
5989
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
5990
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5991
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5992
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5993
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIUserDeviceCreate, localVarRequestOptions, configuration);
|
|
5994
|
+
return {
|
|
5995
|
+
url: toPathString(localVarUrlObj),
|
|
5996
|
+
options: localVarRequestOptions
|
|
5997
|
+
};
|
|
5998
|
+
}
|
|
5999
|
+
};
|
|
6000
|
+
};
|
|
6001
|
+
var UserDevicesApiFp = function(configuration) {
|
|
6002
|
+
const localVarAxiosParamCreator = UserDevicesApiAxiosParamCreator(configuration);
|
|
6003
|
+
return {
|
|
6004
|
+
/**
|
|
6005
|
+
* UserDevices Create
|
|
6006
|
+
* @summary UserDevices Create
|
|
6007
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6008
|
+
* @param {*} [options] Override http request option.
|
|
6009
|
+
* @throws {RequiredError}
|
|
6010
|
+
*/
|
|
6011
|
+
async userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
6012
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.userDevicesCreate(aPIUserDeviceCreate, options);
|
|
6013
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _326 => _326.serverIndex]), () => ( 0));
|
|
6014
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _327 => _327["UserDevicesApi.userDevicesCreate"], 'optionalAccess', _328 => _328[localVarOperationServerIndex], 'optionalAccess', _329 => _329.url]);
|
|
6015
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6016
|
+
}
|
|
6017
|
+
};
|
|
6018
|
+
};
|
|
6019
|
+
var UserDevicesApiFactory = function(configuration, basePath, axios) {
|
|
6020
|
+
const localVarFp = UserDevicesApiFp(configuration);
|
|
6021
|
+
return {
|
|
6022
|
+
/**
|
|
6023
|
+
* UserDevices Create
|
|
6024
|
+
* @summary UserDevices Create
|
|
6025
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6026
|
+
* @param {*} [options] Override http request option.
|
|
6027
|
+
* @throws {RequiredError}
|
|
6028
|
+
*/
|
|
6029
|
+
userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
6030
|
+
return localVarFp.userDevicesCreate(aPIUserDeviceCreate, options).then((request) => request(axios, basePath));
|
|
6031
|
+
}
|
|
6032
|
+
};
|
|
6033
|
+
};
|
|
6034
|
+
var UserDevicesApi = class extends BaseAPI {
|
|
6035
|
+
/**
|
|
6036
|
+
* UserDevices Create
|
|
6037
|
+
* @summary UserDevices Create
|
|
6038
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6039
|
+
* @param {*} [options] Override http request option.
|
|
6040
|
+
* @throws {RequiredError}
|
|
6041
|
+
* @memberof UserDevicesApi
|
|
6042
|
+
*/
|
|
6043
|
+
userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
6044
|
+
return UserDevicesApiFp(this.configuration).userDevicesCreate(aPIUserDeviceCreate, options).then((request) => request(this.axios, this.basePath));
|
|
5900
6045
|
}
|
|
5901
6046
|
};
|
|
5902
6047
|
|
|
@@ -5968,7 +6113,7 @@ var Configuration = class {
|
|
|
5968
6113
|
this.baseOptions = {
|
|
5969
6114
|
...param.baseOptions,
|
|
5970
6115
|
headers: {
|
|
5971
|
-
..._optionalChain([param, 'access',
|
|
6116
|
+
..._optionalChain([param, 'access', _330 => _330.baseOptions, 'optionalAccess', _331 => _331.headers])
|
|
5972
6117
|
}
|
|
5973
6118
|
};
|
|
5974
6119
|
this.formDataCtor = param.formDataCtor;
|
|
@@ -6074,5 +6219,10 @@ var Configuration = class {
|
|
|
6074
6219
|
|
|
6075
6220
|
|
|
6076
6221
|
|
|
6077
|
-
|
|
6222
|
+
|
|
6223
|
+
|
|
6224
|
+
|
|
6225
|
+
|
|
6226
|
+
|
|
6227
|
+
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.UserDevicesApi = UserDevicesApi; exports.UserDevicesApiAxiosParamCreator = UserDevicesApiAxiosParamCreator; exports.UserDevicesApiFactory = UserDevicesApiFactory; exports.UserDevicesApiFp = UserDevicesApiFp;
|
|
6078
6228
|
//# sourceMappingURL=index.js.map
|