@ember-home/unbound-ts-client 0.0.43 → 0.0.44
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 +190 -2
- package/dist/index.d.ts +190 -2
- package/dist/index.js +348 -76
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +272 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -85,6 +85,9 @@ var ConversationStatus = {
|
|
|
85
85
|
Open: "OPEN",
|
|
86
86
|
Closed: "CLOSED"
|
|
87
87
|
};
|
|
88
|
+
var EmailConversationDataApiConversationTypeEnum = {
|
|
89
|
+
Email: "EMAIL"
|
|
90
|
+
};
|
|
88
91
|
var ExternalStaffApiStaffTypeEnum = {
|
|
89
92
|
ExternalStaff: "EXTERNAL_STAFF"
|
|
90
93
|
};
|
|
@@ -2869,6 +2872,146 @@ var ReservationsApi = class extends BaseAPI {
|
|
|
2869
2872
|
return ReservationsApiFp(this.configuration).reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
2870
2873
|
}
|
|
2871
2874
|
};
|
|
2875
|
+
var SuggestedRepliesApiAxiosParamCreator = function(configuration) {
|
|
2876
|
+
return {
|
|
2877
|
+
/**
|
|
2878
|
+
* SuggestedReplies Create
|
|
2879
|
+
* @summary SuggestedReplies Create
|
|
2880
|
+
* @param {object} body
|
|
2881
|
+
* @param {*} [options] Override http request option.
|
|
2882
|
+
* @throws {RequiredError}
|
|
2883
|
+
*/
|
|
2884
|
+
suggestedRepliesCreate: async (body, options = {}) => {
|
|
2885
|
+
assertParamExists("suggestedRepliesCreate", "body", body);
|
|
2886
|
+
const localVarPath = `/suggestedReplies`;
|
|
2887
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2888
|
+
let baseOptions;
|
|
2889
|
+
if (configuration) {
|
|
2890
|
+
baseOptions = configuration.baseOptions;
|
|
2891
|
+
}
|
|
2892
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
2893
|
+
const localVarHeaderParameter = {};
|
|
2894
|
+
const localVarQueryParameter = {};
|
|
2895
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2896
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2897
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2898
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2899
|
+
localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration);
|
|
2900
|
+
return {
|
|
2901
|
+
url: toPathString(localVarUrlObj),
|
|
2902
|
+
options: localVarRequestOptions
|
|
2903
|
+
};
|
|
2904
|
+
},
|
|
2905
|
+
/**
|
|
2906
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
2907
|
+
* @summary SuggestedReplies List
|
|
2908
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
2909
|
+
* @param {*} [options] Override http request option.
|
|
2910
|
+
* @throws {RequiredError}
|
|
2911
|
+
*/
|
|
2912
|
+
suggestedRepliesList: async (conversationId, options = {}) => {
|
|
2913
|
+
const localVarPath = `/suggestedReplies`;
|
|
2914
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2915
|
+
let baseOptions;
|
|
2916
|
+
if (configuration) {
|
|
2917
|
+
baseOptions = configuration.baseOptions;
|
|
2918
|
+
}
|
|
2919
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
2920
|
+
const localVarHeaderParameter = {};
|
|
2921
|
+
const localVarQueryParameter = {};
|
|
2922
|
+
if (conversationId !== void 0) {
|
|
2923
|
+
localVarQueryParameter["conversationId"] = conversationId;
|
|
2924
|
+
}
|
|
2925
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2926
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2927
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2928
|
+
return {
|
|
2929
|
+
url: toPathString(localVarUrlObj),
|
|
2930
|
+
options: localVarRequestOptions
|
|
2931
|
+
};
|
|
2932
|
+
}
|
|
2933
|
+
};
|
|
2934
|
+
};
|
|
2935
|
+
var SuggestedRepliesApiFp = function(configuration) {
|
|
2936
|
+
const localVarAxiosParamCreator = SuggestedRepliesApiAxiosParamCreator(configuration);
|
|
2937
|
+
return {
|
|
2938
|
+
/**
|
|
2939
|
+
* SuggestedReplies Create
|
|
2940
|
+
* @summary SuggestedReplies Create
|
|
2941
|
+
* @param {object} body
|
|
2942
|
+
* @param {*} [options] Override http request option.
|
|
2943
|
+
* @throws {RequiredError}
|
|
2944
|
+
*/
|
|
2945
|
+
async suggestedRepliesCreate(body, options) {
|
|
2946
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.suggestedRepliesCreate(body, options);
|
|
2947
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _150 => _150.serverIndex]), () => ( 0));
|
|
2948
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _151 => _151["SuggestedRepliesApi.suggestedRepliesCreate"], 'optionalAccess', _152 => _152[localVarOperationServerIndex], 'optionalAccess', _153 => _153.url]);
|
|
2949
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2950
|
+
},
|
|
2951
|
+
/**
|
|
2952
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
2953
|
+
* @summary SuggestedReplies List
|
|
2954
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
2955
|
+
* @param {*} [options] Override http request option.
|
|
2956
|
+
* @throws {RequiredError}
|
|
2957
|
+
*/
|
|
2958
|
+
async suggestedRepliesList(conversationId, options) {
|
|
2959
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.suggestedRepliesList(conversationId, options);
|
|
2960
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _154 => _154.serverIndex]), () => ( 0));
|
|
2961
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _155 => _155["SuggestedRepliesApi.suggestedRepliesList"], 'optionalAccess', _156 => _156[localVarOperationServerIndex], 'optionalAccess', _157 => _157.url]);
|
|
2962
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2963
|
+
}
|
|
2964
|
+
};
|
|
2965
|
+
};
|
|
2966
|
+
var SuggestedRepliesApiFactory = function(configuration, basePath, axios) {
|
|
2967
|
+
const localVarFp = SuggestedRepliesApiFp(configuration);
|
|
2968
|
+
return {
|
|
2969
|
+
/**
|
|
2970
|
+
* SuggestedReplies Create
|
|
2971
|
+
* @summary SuggestedReplies Create
|
|
2972
|
+
* @param {object} body
|
|
2973
|
+
* @param {*} [options] Override http request option.
|
|
2974
|
+
* @throws {RequiredError}
|
|
2975
|
+
*/
|
|
2976
|
+
suggestedRepliesCreate(body, options) {
|
|
2977
|
+
return localVarFp.suggestedRepliesCreate(body, options).then((request) => request(axios, basePath));
|
|
2978
|
+
},
|
|
2979
|
+
/**
|
|
2980
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
2981
|
+
* @summary SuggestedReplies List
|
|
2982
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
2983
|
+
* @param {*} [options] Override http request option.
|
|
2984
|
+
* @throws {RequiredError}
|
|
2985
|
+
*/
|
|
2986
|
+
suggestedRepliesList(conversationId, options) {
|
|
2987
|
+
return localVarFp.suggestedRepliesList(conversationId, options).then((request) => request(axios, basePath));
|
|
2988
|
+
}
|
|
2989
|
+
};
|
|
2990
|
+
};
|
|
2991
|
+
var SuggestedRepliesApi = class extends BaseAPI {
|
|
2992
|
+
/**
|
|
2993
|
+
* SuggestedReplies Create
|
|
2994
|
+
* @summary SuggestedReplies Create
|
|
2995
|
+
* @param {object} body
|
|
2996
|
+
* @param {*} [options] Override http request option.
|
|
2997
|
+
* @throws {RequiredError}
|
|
2998
|
+
* @memberof SuggestedRepliesApi
|
|
2999
|
+
*/
|
|
3000
|
+
suggestedRepliesCreate(body, options) {
|
|
3001
|
+
return SuggestedRepliesApiFp(this.configuration).suggestedRepliesCreate(body, options).then((request) => request(this.axios, this.basePath));
|
|
3002
|
+
}
|
|
3003
|
+
/**
|
|
3004
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
3005
|
+
* @summary SuggestedReplies List
|
|
3006
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
3007
|
+
* @param {*} [options] Override http request option.
|
|
3008
|
+
* @throws {RequiredError}
|
|
3009
|
+
* @memberof SuggestedRepliesApi
|
|
3010
|
+
*/
|
|
3011
|
+
suggestedRepliesList(conversationId, options) {
|
|
3012
|
+
return SuggestedRepliesApiFp(this.configuration).suggestedRepliesList(conversationId, options).then((request) => request(this.axios, this.basePath));
|
|
3013
|
+
}
|
|
3014
|
+
};
|
|
2872
3015
|
var UnboundApiAxiosParamCreator = function(configuration) {
|
|
2873
3016
|
return {
|
|
2874
3017
|
/**
|
|
@@ -3987,6 +4130,62 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3987
4130
|
options: localVarRequestOptions
|
|
3988
4131
|
};
|
|
3989
4132
|
},
|
|
4133
|
+
/**
|
|
4134
|
+
* SuggestedReplies Create
|
|
4135
|
+
* @summary SuggestedReplies Create
|
|
4136
|
+
* @param {object} body
|
|
4137
|
+
* @param {*} [options] Override http request option.
|
|
4138
|
+
* @throws {RequiredError}
|
|
4139
|
+
*/
|
|
4140
|
+
suggestedRepliesCreate: async (body, options = {}) => {
|
|
4141
|
+
assertParamExists("suggestedRepliesCreate", "body", body);
|
|
4142
|
+
const localVarPath = `/suggestedReplies`;
|
|
4143
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4144
|
+
let baseOptions;
|
|
4145
|
+
if (configuration) {
|
|
4146
|
+
baseOptions = configuration.baseOptions;
|
|
4147
|
+
}
|
|
4148
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
4149
|
+
const localVarHeaderParameter = {};
|
|
4150
|
+
const localVarQueryParameter = {};
|
|
4151
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4152
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4153
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4154
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
4155
|
+
localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration);
|
|
4156
|
+
return {
|
|
4157
|
+
url: toPathString(localVarUrlObj),
|
|
4158
|
+
options: localVarRequestOptions
|
|
4159
|
+
};
|
|
4160
|
+
},
|
|
4161
|
+
/**
|
|
4162
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
4163
|
+
* @summary SuggestedReplies List
|
|
4164
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
4165
|
+
* @param {*} [options] Override http request option.
|
|
4166
|
+
* @throws {RequiredError}
|
|
4167
|
+
*/
|
|
4168
|
+
suggestedRepliesList: async (conversationId, options = {}) => {
|
|
4169
|
+
const localVarPath = `/suggestedReplies`;
|
|
4170
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4171
|
+
let baseOptions;
|
|
4172
|
+
if (configuration) {
|
|
4173
|
+
baseOptions = configuration.baseOptions;
|
|
4174
|
+
}
|
|
4175
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
4176
|
+
const localVarHeaderParameter = {};
|
|
4177
|
+
const localVarQueryParameter = {};
|
|
4178
|
+
if (conversationId !== void 0) {
|
|
4179
|
+
localVarQueryParameter["conversationId"] = conversationId;
|
|
4180
|
+
}
|
|
4181
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4182
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4183
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
4184
|
+
return {
|
|
4185
|
+
url: toPathString(localVarUrlObj),
|
|
4186
|
+
options: localVarRequestOptions
|
|
4187
|
+
};
|
|
4188
|
+
},
|
|
3990
4189
|
/**
|
|
3991
4190
|
*
|
|
3992
4191
|
* @summary Unifiedwebhook
|
|
@@ -4029,8 +4228,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4029
4228
|
*/
|
|
4030
4229
|
async accountsList(options) {
|
|
4031
4230
|
const localVarAxiosArgs = await localVarAxiosParamCreator.accountsList(options);
|
|
4032
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4033
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4231
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _158 => _158.serverIndex]), () => ( 0));
|
|
4232
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _159 => _159["UnboundApi.accountsList"], 'optionalAccess', _160 => _160[localVarOperationServerIndex], 'optionalAccess', _161 => _161.url]);
|
|
4034
4233
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4035
4234
|
},
|
|
4036
4235
|
/**
|
|
@@ -4043,8 +4242,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4043
4242
|
*/
|
|
4044
4243
|
async addressesCreate(contactId, aPIAddressCreate, options) {
|
|
4045
4244
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesCreate(contactId, aPIAddressCreate, options);
|
|
4046
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4047
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4245
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _162 => _162.serverIndex]), () => ( 0));
|
|
4246
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _163 => _163["UnboundApi.addressesCreate"], 'optionalAccess', _164 => _164[localVarOperationServerIndex], 'optionalAccess', _165 => _165.url]);
|
|
4048
4247
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4049
4248
|
},
|
|
4050
4249
|
/**
|
|
@@ -4056,8 +4255,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4056
4255
|
*/
|
|
4057
4256
|
async addressesDelete(addressId, options) {
|
|
4058
4257
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesDelete(addressId, options);
|
|
4059
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4060
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4258
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _166 => _166.serverIndex]), () => ( 0));
|
|
4259
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _167 => _167["UnboundApi.addressesDelete"], 'optionalAccess', _168 => _168[localVarOperationServerIndex], 'optionalAccess', _169 => _169.url]);
|
|
4061
4260
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4062
4261
|
},
|
|
4063
4262
|
/**
|
|
@@ -4069,8 +4268,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4069
4268
|
*/
|
|
4070
4269
|
async addressesGet(addressId, options) {
|
|
4071
4270
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesGet(addressId, options);
|
|
4072
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4073
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4271
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _170 => _170.serverIndex]), () => ( 0));
|
|
4272
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _171 => _171["UnboundApi.addressesGet"], 'optionalAccess', _172 => _172[localVarOperationServerIndex], 'optionalAccess', _173 => _173.url]);
|
|
4074
4273
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4075
4274
|
},
|
|
4076
4275
|
/**
|
|
@@ -4083,8 +4282,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4083
4282
|
*/
|
|
4084
4283
|
async addressesUpdate(addressId, aPIAddressUpdate, options) {
|
|
4085
4284
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesUpdate(addressId, aPIAddressUpdate, options);
|
|
4086
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4087
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4285
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _174 => _174.serverIndex]), () => ( 0));
|
|
4286
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _175 => _175["UnboundApi.addressesUpdate"], 'optionalAccess', _176 => _176[localVarOperationServerIndex], 'optionalAccess', _177 => _177.url]);
|
|
4088
4287
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4089
4288
|
},
|
|
4090
4289
|
/**
|
|
@@ -4098,8 +4297,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4098
4297
|
*/
|
|
4099
4298
|
async contactsAddListing(contactId, listingId, createContactListing, options) {
|
|
4100
4299
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsAddListing(contactId, listingId, createContactListing, options);
|
|
4101
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4102
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4300
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _178 => _178.serverIndex]), () => ( 0));
|
|
4301
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _179 => _179["UnboundApi.contactsAddListing"], 'optionalAccess', _180 => _180[localVarOperationServerIndex], 'optionalAccess', _181 => _181.url]);
|
|
4103
4302
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4104
4303
|
},
|
|
4105
4304
|
/**
|
|
@@ -4111,8 +4310,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4111
4310
|
*/
|
|
4112
4311
|
async contactsCreate(contactcreate, options) {
|
|
4113
4312
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsCreate(contactcreate, options);
|
|
4114
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4115
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4313
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _182 => _182.serverIndex]), () => ( 0));
|
|
4314
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _183 => _183["UnboundApi.contactsCreate"], 'optionalAccess', _184 => _184[localVarOperationServerIndex], 'optionalAccess', _185 => _185.url]);
|
|
4116
4315
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4117
4316
|
},
|
|
4118
4317
|
/**
|
|
@@ -4124,8 +4323,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4124
4323
|
*/
|
|
4125
4324
|
async contactsDelete(contactId, options) {
|
|
4126
4325
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsDelete(contactId, options);
|
|
4127
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4128
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4326
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _186 => _186.serverIndex]), () => ( 0));
|
|
4327
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _187 => _187["UnboundApi.contactsDelete"], 'optionalAccess', _188 => _188[localVarOperationServerIndex], 'optionalAccess', _189 => _189.url]);
|
|
4129
4328
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4130
4329
|
},
|
|
4131
4330
|
/**
|
|
@@ -4137,8 +4336,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4137
4336
|
*/
|
|
4138
4337
|
async contactsGet(contactId, options) {
|
|
4139
4338
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsGet(contactId, options);
|
|
4140
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4141
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4339
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _190 => _190.serverIndex]), () => ( 0));
|
|
4340
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _191 => _191["UnboundApi.contactsGet"], 'optionalAccess', _192 => _192[localVarOperationServerIndex], 'optionalAccess', _193 => _193.url]);
|
|
4142
4341
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4143
4342
|
},
|
|
4144
4343
|
/**
|
|
@@ -4155,8 +4354,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4155
4354
|
*/
|
|
4156
4355
|
async contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
4157
4356
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
4158
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4159
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4357
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _194 => _194.serverIndex]), () => ( 0));
|
|
4358
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _195 => _195["UnboundApi.contactsList"], 'optionalAccess', _196 => _196[localVarOperationServerIndex], 'optionalAccess', _197 => _197.url]);
|
|
4160
4359
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4161
4360
|
},
|
|
4162
4361
|
/**
|
|
@@ -4170,8 +4369,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4170
4369
|
*/
|
|
4171
4370
|
async contactsRemoveListing(contactId, listingId, deleteContactListing, options) {
|
|
4172
4371
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsRemoveListing(contactId, listingId, deleteContactListing, options);
|
|
4173
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4174
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4372
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _198 => _198.serverIndex]), () => ( 0));
|
|
4373
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _199 => _199["UnboundApi.contactsRemoveListing"], 'optionalAccess', _200 => _200[localVarOperationServerIndex], 'optionalAccess', _201 => _201.url]);
|
|
4175
4374
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4176
4375
|
},
|
|
4177
4376
|
/**
|
|
@@ -4184,8 +4383,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4184
4383
|
*/
|
|
4185
4384
|
async contactsUpdate(contactId, aPIContactUpdate, options) {
|
|
4186
4385
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId, aPIContactUpdate, options);
|
|
4187
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4188
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4386
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _202 => _202.serverIndex]), () => ( 0));
|
|
4387
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _203 => _203["UnboundApi.contactsUpdate"], 'optionalAccess', _204 => _204[localVarOperationServerIndex], 'optionalAccess', _205 => _205.url]);
|
|
4189
4388
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4190
4389
|
},
|
|
4191
4390
|
/**
|
|
@@ -4199,8 +4398,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4199
4398
|
*/
|
|
4200
4399
|
async contactsUpdateListing(contactId, listingId, updateContactListing, options) {
|
|
4201
4400
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdateListing(contactId, listingId, updateContactListing, options);
|
|
4202
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4203
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4401
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _206 => _206.serverIndex]), () => ( 0));
|
|
4402
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _207 => _207["UnboundApi.contactsUpdateListing"], 'optionalAccess', _208 => _208[localVarOperationServerIndex], 'optionalAccess', _209 => _209.url]);
|
|
4204
4403
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4205
4404
|
},
|
|
4206
4405
|
/**
|
|
@@ -4212,8 +4411,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4212
4411
|
*/
|
|
4213
4412
|
async conversationsGet(conversationId, options) {
|
|
4214
4413
|
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsGet(conversationId, options);
|
|
4215
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4216
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4414
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _210 => _210.serverIndex]), () => ( 0));
|
|
4415
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _211 => _211["UnboundApi.conversationsGet"], 'optionalAccess', _212 => _212[localVarOperationServerIndex], 'optionalAccess', _213 => _213.url]);
|
|
4217
4416
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4218
4417
|
},
|
|
4219
4418
|
/**
|
|
@@ -4231,8 +4430,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4231
4430
|
*/
|
|
4232
4431
|
async conversationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
4233
4432
|
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
4234
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4235
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4433
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _214 => _214.serverIndex]), () => ( 0));
|
|
4434
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _215 => _215["UnboundApi.conversationsList"], 'optionalAccess', _216 => _216[localVarOperationServerIndex], 'optionalAccess', _217 => _217.url]);
|
|
4236
4435
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4237
4436
|
},
|
|
4238
4437
|
/**
|
|
@@ -4245,8 +4444,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4245
4444
|
*/
|
|
4246
4445
|
async emailsCreate(contactId, aPIEmailCreate, options) {
|
|
4247
4446
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsCreate(contactId, aPIEmailCreate, options);
|
|
4248
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4249
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4447
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _218 => _218.serverIndex]), () => ( 0));
|
|
4448
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _219 => _219["UnboundApi.emailsCreate"], 'optionalAccess', _220 => _220[localVarOperationServerIndex], 'optionalAccess', _221 => _221.url]);
|
|
4250
4449
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4251
4450
|
},
|
|
4252
4451
|
/**
|
|
@@ -4258,8 +4457,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4258
4457
|
*/
|
|
4259
4458
|
async emailsDelete(emailId, options) {
|
|
4260
4459
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsDelete(emailId, options);
|
|
4261
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4262
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4460
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _222 => _222.serverIndex]), () => ( 0));
|
|
4461
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _223 => _223["UnboundApi.emailsDelete"], 'optionalAccess', _224 => _224[localVarOperationServerIndex], 'optionalAccess', _225 => _225.url]);
|
|
4263
4462
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4264
4463
|
},
|
|
4265
4464
|
/**
|
|
@@ -4271,8 +4470,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4271
4470
|
*/
|
|
4272
4471
|
async emailsGet(emailId, options) {
|
|
4273
4472
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsGet(emailId, options);
|
|
4274
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4275
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4473
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _226 => _226.serverIndex]), () => ( 0));
|
|
4474
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _227 => _227["UnboundApi.emailsGet"], 'optionalAccess', _228 => _228[localVarOperationServerIndex], 'optionalAccess', _229 => _229.url]);
|
|
4276
4475
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4277
4476
|
},
|
|
4278
4477
|
/**
|
|
@@ -4285,8 +4484,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4285
4484
|
*/
|
|
4286
4485
|
async emailsUpdate(emailId, aPIEmailUpdate, options) {
|
|
4287
4486
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsUpdate(emailId, aPIEmailUpdate, options);
|
|
4288
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4289
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4487
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _230 => _230.serverIndex]), () => ( 0));
|
|
4488
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _231 => _231["UnboundApi.emailsUpdate"], 'optionalAccess', _232 => _232[localVarOperationServerIndex], 'optionalAccess', _233 => _233.url]);
|
|
4290
4489
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4291
4490
|
},
|
|
4292
4491
|
/**
|
|
@@ -4298,8 +4497,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4298
4497
|
*/
|
|
4299
4498
|
async inquiriesList(contactId, options) {
|
|
4300
4499
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inquiriesList(contactId, options);
|
|
4301
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4302
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4500
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _234 => _234.serverIndex]), () => ( 0));
|
|
4501
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _235 => _235["UnboundApi.inquiriesList"], 'optionalAccess', _236 => _236[localVarOperationServerIndex], 'optionalAccess', _237 => _237.url]);
|
|
4303
4502
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4304
4503
|
},
|
|
4305
4504
|
/**
|
|
@@ -4311,8 +4510,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4311
4510
|
*/
|
|
4312
4511
|
async listingsGet(listingId, options) {
|
|
4313
4512
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listingsGet(listingId, options);
|
|
4314
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4315
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4513
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _238 => _238.serverIndex]), () => ( 0));
|
|
4514
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _239 => _239["UnboundApi.listingsGet"], 'optionalAccess', _240 => _240[localVarOperationServerIndex], 'optionalAccess', _241 => _241.url]);
|
|
4316
4515
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4317
4516
|
},
|
|
4318
4517
|
/**
|
|
@@ -4330,8 +4529,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4330
4529
|
*/
|
|
4331
4530
|
async listingsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
4332
4531
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listingsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
4333
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4334
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4532
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _242 => _242.serverIndex]), () => ( 0));
|
|
4533
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _243 => _243["UnboundApi.listingsList"], 'optionalAccess', _244 => _244[localVarOperationServerIndex], 'optionalAccess', _245 => _245.url]);
|
|
4335
4534
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4336
4535
|
},
|
|
4337
4536
|
/**
|
|
@@ -4342,8 +4541,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4342
4541
|
*/
|
|
4343
4542
|
async managedPhoneNumbersList(options) {
|
|
4344
4543
|
const localVarAxiosArgs = await localVarAxiosParamCreator.managedPhoneNumbersList(options);
|
|
4345
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4346
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4544
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _246 => _246.serverIndex]), () => ( 0));
|
|
4545
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _247 => _247["UnboundApi.managedPhoneNumbersList"], 'optionalAccess', _248 => _248[localVarOperationServerIndex], 'optionalAccess', _249 => _249.url]);
|
|
4347
4546
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4348
4547
|
},
|
|
4349
4548
|
/**
|
|
@@ -4356,8 +4555,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4356
4555
|
*/
|
|
4357
4556
|
async messagesCreate(conversationId, aPIMessageCreate, options) {
|
|
4358
4557
|
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesCreate(conversationId, aPIMessageCreate, options);
|
|
4359
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4360
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4558
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _250 => _250.serverIndex]), () => ( 0));
|
|
4559
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _251 => _251["UnboundApi.messagesCreate"], 'optionalAccess', _252 => _252[localVarOperationServerIndex], 'optionalAccess', _253 => _253.url]);
|
|
4361
4560
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4362
4561
|
},
|
|
4363
4562
|
/**
|
|
@@ -4369,8 +4568,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4369
4568
|
*/
|
|
4370
4569
|
async messagesGet(messageId, options) {
|
|
4371
4570
|
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesGet(messageId, options);
|
|
4372
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4373
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4571
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _254 => _254.serverIndex]), () => ( 0));
|
|
4572
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _255 => _255["UnboundApi.messagesGet"], 'optionalAccess', _256 => _256[localVarOperationServerIndex], 'optionalAccess', _257 => _257.url]);
|
|
4374
4573
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4375
4574
|
},
|
|
4376
4575
|
/**
|
|
@@ -4388,8 +4587,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4388
4587
|
*/
|
|
4389
4588
|
async messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
4390
4589
|
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
4391
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4392
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4590
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _258 => _258.serverIndex]), () => ( 0));
|
|
4591
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _259 => _259["UnboundApi.messagesList"], 'optionalAccess', _260 => _260[localVarOperationServerIndex], 'optionalAccess', _261 => _261.url]);
|
|
4393
4592
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4394
4593
|
},
|
|
4395
4594
|
/**
|
|
@@ -4402,8 +4601,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4402
4601
|
*/
|
|
4403
4602
|
async phonesCreate(contactId, aPIPhoneCreate, options) {
|
|
4404
4603
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesCreate(contactId, aPIPhoneCreate, options);
|
|
4405
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4406
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4604
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _262 => _262.serverIndex]), () => ( 0));
|
|
4605
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _263 => _263["UnboundApi.phonesCreate"], 'optionalAccess', _264 => _264[localVarOperationServerIndex], 'optionalAccess', _265 => _265.url]);
|
|
4407
4606
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4408
4607
|
},
|
|
4409
4608
|
/**
|
|
@@ -4415,8 +4614,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4415
4614
|
*/
|
|
4416
4615
|
async phonesDelete(phoneId, options) {
|
|
4417
4616
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesDelete(phoneId, options);
|
|
4418
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4419
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4617
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _266 => _266.serverIndex]), () => ( 0));
|
|
4618
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _267 => _267["UnboundApi.phonesDelete"], 'optionalAccess', _268 => _268[localVarOperationServerIndex], 'optionalAccess', _269 => _269.url]);
|
|
4420
4619
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4421
4620
|
},
|
|
4422
4621
|
/**
|
|
@@ -4428,8 +4627,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4428
4627
|
*/
|
|
4429
4628
|
async phonesGet(phoneId, options) {
|
|
4430
4629
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesGet(phoneId, options);
|
|
4431
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4432
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4630
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _270 => _270.serverIndex]), () => ( 0));
|
|
4631
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _271 => _271["UnboundApi.phonesGet"], 'optionalAccess', _272 => _272[localVarOperationServerIndex], 'optionalAccess', _273 => _273.url]);
|
|
4433
4632
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4434
4633
|
},
|
|
4435
4634
|
/**
|
|
@@ -4442,8 +4641,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4442
4641
|
*/
|
|
4443
4642
|
async phonesUpdate(phoneId, aPIPhoneUpdate, options) {
|
|
4444
4643
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesUpdate(phoneId, aPIPhoneUpdate, options);
|
|
4445
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4446
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4644
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _274 => _274.serverIndex]), () => ( 0));
|
|
4645
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _275 => _275["UnboundApi.phonesUpdate"], 'optionalAccess', _276 => _276[localVarOperationServerIndex], 'optionalAccess', _277 => _277.url]);
|
|
4447
4646
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4448
4647
|
},
|
|
4449
4648
|
/**
|
|
@@ -4455,8 +4654,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4455
4654
|
*/
|
|
4456
4655
|
async providersCreate(aPIProviderCreate, options) {
|
|
4457
4656
|
const localVarAxiosArgs = await localVarAxiosParamCreator.providersCreate(aPIProviderCreate, options);
|
|
4458
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4459
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4657
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _278 => _278.serverIndex]), () => ( 0));
|
|
4658
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _279 => _279["UnboundApi.providersCreate"], 'optionalAccess', _280 => _280[localVarOperationServerIndex], 'optionalAccess', _281 => _281.url]);
|
|
4460
4659
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4461
4660
|
},
|
|
4462
4661
|
/**
|
|
@@ -4468,8 +4667,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4468
4667
|
*/
|
|
4469
4668
|
async providersGet(providerId, options) {
|
|
4470
4669
|
const localVarAxiosArgs = await localVarAxiosParamCreator.providersGet(providerId, options);
|
|
4471
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4472
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4670
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _282 => _282.serverIndex]), () => ( 0));
|
|
4671
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _283 => _283["UnboundApi.providersGet"], 'optionalAccess', _284 => _284[localVarOperationServerIndex], 'optionalAccess', _285 => _285.url]);
|
|
4473
4672
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4474
4673
|
},
|
|
4475
4674
|
/**
|
|
@@ -4480,8 +4679,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4480
4679
|
*/
|
|
4481
4680
|
async providersList(options) {
|
|
4482
4681
|
const localVarAxiosArgs = await localVarAxiosParamCreator.providersList(options);
|
|
4483
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4484
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4682
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _286 => _286.serverIndex]), () => ( 0));
|
|
4683
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _287 => _287["UnboundApi.providersList"], 'optionalAccess', _288 => _288[localVarOperationServerIndex], 'optionalAccess', _289 => _289.url]);
|
|
4485
4684
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4486
4685
|
},
|
|
4487
4686
|
/**
|
|
@@ -4494,8 +4693,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4494
4693
|
*/
|
|
4495
4694
|
async providersUpdate(providerId, aPIProviderUpdate, options) {
|
|
4496
4695
|
const localVarAxiosArgs = await localVarAxiosParamCreator.providersUpdate(providerId, aPIProviderUpdate, options);
|
|
4497
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4498
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4696
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _290 => _290.serverIndex]), () => ( 0));
|
|
4697
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _291 => _291["UnboundApi.providersUpdate"], 'optionalAccess', _292 => _292[localVarOperationServerIndex], 'optionalAccess', _293 => _293.url]);
|
|
4499
4698
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4500
4699
|
},
|
|
4501
4700
|
/**
|
|
@@ -4507,8 +4706,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4507
4706
|
*/
|
|
4508
4707
|
async reservationsGet(reservationId, options) {
|
|
4509
4708
|
const localVarAxiosArgs = await localVarAxiosParamCreator.reservationsGet(reservationId, options);
|
|
4510
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4511
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4709
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _294 => _294.serverIndex]), () => ( 0));
|
|
4710
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _295 => _295["UnboundApi.reservationsGet"], 'optionalAccess', _296 => _296[localVarOperationServerIndex], 'optionalAccess', _297 => _297.url]);
|
|
4512
4711
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4513
4712
|
},
|
|
4514
4713
|
/**
|
|
@@ -4526,8 +4725,34 @@ var UnboundApiFp = function(configuration) {
|
|
|
4526
4725
|
*/
|
|
4527
4726
|
async reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
4528
4727
|
const localVarAxiosArgs = await localVarAxiosParamCreator.reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
4529
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4530
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4728
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _298 => _298.serverIndex]), () => ( 0));
|
|
4729
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _299 => _299["UnboundApi.reservationsList"], 'optionalAccess', _300 => _300[localVarOperationServerIndex], 'optionalAccess', _301 => _301.url]);
|
|
4730
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4731
|
+
},
|
|
4732
|
+
/**
|
|
4733
|
+
* SuggestedReplies Create
|
|
4734
|
+
* @summary SuggestedReplies Create
|
|
4735
|
+
* @param {object} body
|
|
4736
|
+
* @param {*} [options] Override http request option.
|
|
4737
|
+
* @throws {RequiredError}
|
|
4738
|
+
*/
|
|
4739
|
+
async suggestedRepliesCreate(body, options) {
|
|
4740
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.suggestedRepliesCreate(body, options);
|
|
4741
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _302 => _302.serverIndex]), () => ( 0));
|
|
4742
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _303 => _303["UnboundApi.suggestedRepliesCreate"], 'optionalAccess', _304 => _304[localVarOperationServerIndex], 'optionalAccess', _305 => _305.url]);
|
|
4743
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4744
|
+
},
|
|
4745
|
+
/**
|
|
4746
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
4747
|
+
* @summary SuggestedReplies List
|
|
4748
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
4749
|
+
* @param {*} [options] Override http request option.
|
|
4750
|
+
* @throws {RequiredError}
|
|
4751
|
+
*/
|
|
4752
|
+
async suggestedRepliesList(conversationId, options) {
|
|
4753
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.suggestedRepliesList(conversationId, options);
|
|
4754
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _306 => _306.serverIndex]), () => ( 0));
|
|
4755
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _307 => _307["UnboundApi.suggestedRepliesList"], 'optionalAccess', _308 => _308[localVarOperationServerIndex], 'optionalAccess', _309 => _309.url]);
|
|
4531
4756
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4532
4757
|
},
|
|
4533
4758
|
/**
|
|
@@ -4539,8 +4764,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4539
4764
|
*/
|
|
4540
4765
|
async webhook(hostawayWebhook, options) {
|
|
4541
4766
|
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(hostawayWebhook, options);
|
|
4542
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4543
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4767
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _310 => _310.serverIndex]), () => ( 0));
|
|
4768
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _311 => _311["UnboundApi.webhook"], 'optionalAccess', _312 => _312[localVarOperationServerIndex], 'optionalAccess', _313 => _313.url]);
|
|
4544
4769
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4545
4770
|
}
|
|
4546
4771
|
};
|
|
@@ -4949,6 +5174,26 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4949
5174
|
reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
4950
5175
|
return localVarFp.reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(axios, basePath));
|
|
4951
5176
|
},
|
|
5177
|
+
/**
|
|
5178
|
+
* SuggestedReplies Create
|
|
5179
|
+
* @summary SuggestedReplies Create
|
|
5180
|
+
* @param {object} body
|
|
5181
|
+
* @param {*} [options] Override http request option.
|
|
5182
|
+
* @throws {RequiredError}
|
|
5183
|
+
*/
|
|
5184
|
+
suggestedRepliesCreate(body, options) {
|
|
5185
|
+
return localVarFp.suggestedRepliesCreate(body, options).then((request) => request(axios, basePath));
|
|
5186
|
+
},
|
|
5187
|
+
/**
|
|
5188
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
5189
|
+
* @summary SuggestedReplies List
|
|
5190
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
5191
|
+
* @param {*} [options] Override http request option.
|
|
5192
|
+
* @throws {RequiredError}
|
|
5193
|
+
*/
|
|
5194
|
+
suggestedRepliesList(conversationId, options) {
|
|
5195
|
+
return localVarFp.suggestedRepliesList(conversationId, options).then((request) => request(axios, basePath));
|
|
5196
|
+
},
|
|
4952
5197
|
/**
|
|
4953
5198
|
*
|
|
4954
5199
|
* @summary Unifiedwebhook
|
|
@@ -5399,6 +5644,28 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5399
5644
|
reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
5400
5645
|
return UnboundApiFp(this.configuration).reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
5401
5646
|
}
|
|
5647
|
+
/**
|
|
5648
|
+
* SuggestedReplies Create
|
|
5649
|
+
* @summary SuggestedReplies Create
|
|
5650
|
+
* @param {object} body
|
|
5651
|
+
* @param {*} [options] Override http request option.
|
|
5652
|
+
* @throws {RequiredError}
|
|
5653
|
+
* @memberof UnboundApi
|
|
5654
|
+
*/
|
|
5655
|
+
suggestedRepliesCreate(body, options) {
|
|
5656
|
+
return UnboundApiFp(this.configuration).suggestedRepliesCreate(body, options).then((request) => request(this.axios, this.basePath));
|
|
5657
|
+
}
|
|
5658
|
+
/**
|
|
5659
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
5660
|
+
* @summary SuggestedReplies List
|
|
5661
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
5662
|
+
* @param {*} [options] Override http request option.
|
|
5663
|
+
* @throws {RequiredError}
|
|
5664
|
+
* @memberof UnboundApi
|
|
5665
|
+
*/
|
|
5666
|
+
suggestedRepliesList(conversationId, options) {
|
|
5667
|
+
return UnboundApiFp(this.configuration).suggestedRepliesList(conversationId, options).then((request) => request(this.axios, this.basePath));
|
|
5668
|
+
}
|
|
5402
5669
|
/**
|
|
5403
5670
|
*
|
|
5404
5671
|
* @summary Unifiedwebhook
|
|
@@ -5480,7 +5747,7 @@ var Configuration = class {
|
|
|
5480
5747
|
this.baseOptions = {
|
|
5481
5748
|
...param.baseOptions,
|
|
5482
5749
|
headers: {
|
|
5483
|
-
..._optionalChain([param, 'access',
|
|
5750
|
+
..._optionalChain([param, 'access', _314 => _314.baseOptions, 'optionalAccess', _315 => _315.headers])
|
|
5484
5751
|
}
|
|
5485
5752
|
};
|
|
5486
5753
|
this.formDataCtor = param.formDataCtor;
|
|
@@ -5571,5 +5838,10 @@ var Configuration = class {
|
|
|
5571
5838
|
|
|
5572
5839
|
|
|
5573
5840
|
|
|
5574
|
-
|
|
5841
|
+
|
|
5842
|
+
|
|
5843
|
+
|
|
5844
|
+
|
|
5845
|
+
|
|
5846
|
+
exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; 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.ExternalStaffApiStaffTypeEnum = ExternalStaffApiStaffTypeEnum; exports.GuestApiParticipantTypeEnum = GuestApiParticipantTypeEnum; 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.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.ProviderCommunicationType = ProviderCommunicationType; exports.ProviderConversationDataApiConversationTypeEnum = ProviderConversationDataApiConversationTypeEnum; exports.ProviderStaffApiStaffTypeEnum = ProviderStaffApiStaffTypeEnum; exports.ProvidersApi = ProvidersApi; exports.ProvidersApiAxiosParamCreator = ProvidersApiAxiosParamCreator; exports.ProvidersApiFactory = ProvidersApiFactory; exports.ProvidersApiFp = ProvidersApiFp; exports.RentalProviderMessageApiMessageTypeEnum = RentalProviderMessageApiMessageTypeEnum; 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.SrcResourceModelsConversationsModelConversationsModelConversationSortBy = SrcResourceModelsConversationsModelConversationsModelConversationSortBy; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum; exports.SrcResourceModelsListingsModelListingBaseSortBy = SrcResourceModelsListingsModelListingBaseSortBy; exports.SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy; exports.SrcResourceModelsReservationsModelReservationBaseModelSortBy = SrcResourceModelsReservationsModelReservationBaseModelSortBy; exports.StaffApiParticipantTypeEnum = StaffApiParticipantTypeEnum; exports.SuggestedRepliesApi = SuggestedRepliesApi; exports.SuggestedRepliesApiAxiosParamCreator = SuggestedRepliesApiAxiosParamCreator; exports.SuggestedRepliesApiFactory = SuggestedRepliesApiFactory; exports.SuggestedRepliesApiFp = SuggestedRepliesApiFp; exports.TwilioConversationDataApiConversationTypeEnum = TwilioConversationDataApiConversationTypeEnum; exports.TwilioInboundSenderTypeDataApiDirectionEnum = TwilioInboundSenderTypeDataApiDirectionEnum; exports.TwilioOutboundSenderTypeDataApiDirectionEnum = TwilioOutboundSenderTypeDataApiDirectionEnum; exports.TwilioProviderMessageApiMessageTypeEnum = TwilioProviderMessageApiMessageTypeEnum; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp;
|
|
5575
5847
|
//# sourceMappingURL=index.js.map
|