@ember-home/unbound-ts-client 0.0.23 → 0.0.25
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 +354 -17
- package/dist/index.d.ts +354 -17
- package/dist/index.js +462 -66
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +404 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -101,6 +101,12 @@ var SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum =
|
|
|
101
101
|
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum = {
|
|
102
102
|
Email: "EMAIL"
|
|
103
103
|
};
|
|
104
|
+
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum = {
|
|
105
|
+
Twilio: "TWILIO"
|
|
106
|
+
};
|
|
107
|
+
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum = {
|
|
108
|
+
Email: "EMAIL"
|
|
109
|
+
};
|
|
104
110
|
var SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum = {
|
|
105
111
|
Twilio: "TWILIO"
|
|
106
112
|
};
|
|
@@ -591,7 +597,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
591
597
|
/**
|
|
592
598
|
*
|
|
593
599
|
* @summary Contacts List
|
|
594
|
-
* @param {string} [searchString]
|
|
600
|
+
* @param {string | null} [searchString]
|
|
595
601
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
596
602
|
* @param {number} [limit]
|
|
597
603
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -945,7 +951,7 @@ var ContactsApiFp = function(configuration) {
|
|
|
945
951
|
/**
|
|
946
952
|
*
|
|
947
953
|
* @summary Contacts List
|
|
948
|
-
* @param {string} [searchString]
|
|
954
|
+
* @param {string | null} [searchString]
|
|
949
955
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
950
956
|
* @param {number} [limit]
|
|
951
957
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -1140,7 +1146,7 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
1140
1146
|
/**
|
|
1141
1147
|
*
|
|
1142
1148
|
* @summary Contacts List
|
|
1143
|
-
* @param {string} [searchString]
|
|
1149
|
+
* @param {string | null} [searchString]
|
|
1144
1150
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1145
1151
|
* @param {number} [limit]
|
|
1146
1152
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -1316,7 +1322,7 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1316
1322
|
/**
|
|
1317
1323
|
*
|
|
1318
1324
|
* @summary Contacts List
|
|
1319
|
-
* @param {string} [searchString]
|
|
1325
|
+
* @param {string | null} [searchString]
|
|
1320
1326
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1321
1327
|
* @param {number} [limit]
|
|
1322
1328
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2130,6 +2136,206 @@ var ManagedPhoneNumbersApi = class extends BaseAPI {
|
|
|
2130
2136
|
return ManagedPhoneNumbersApiFp(this.configuration).managedPhoneNumbersList(options).then((request) => request(this.axios, this.basePath));
|
|
2131
2137
|
}
|
|
2132
2138
|
};
|
|
2139
|
+
var MessagesApiAxiosParamCreator = function(configuration) {
|
|
2140
|
+
return {
|
|
2141
|
+
/**
|
|
2142
|
+
*
|
|
2143
|
+
* @summary Messages Create
|
|
2144
|
+
* @param {MessageCreate} messageCreate
|
|
2145
|
+
* @param {*} [options] Override http request option.
|
|
2146
|
+
* @throws {RequiredError}
|
|
2147
|
+
*/
|
|
2148
|
+
messagesCreate: async (messageCreate, options = {}) => {
|
|
2149
|
+
assertParamExists("messagesCreate", "messageCreate", messageCreate);
|
|
2150
|
+
const localVarPath = `/messages`;
|
|
2151
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2152
|
+
let baseOptions;
|
|
2153
|
+
if (configuration) {
|
|
2154
|
+
baseOptions = configuration.baseOptions;
|
|
2155
|
+
}
|
|
2156
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
2157
|
+
const localVarHeaderParameter = {};
|
|
2158
|
+
const localVarQueryParameter = {};
|
|
2159
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2160
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2161
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2162
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2163
|
+
localVarRequestOptions.data = serializeDataIfNeeded(messageCreate, localVarRequestOptions, configuration);
|
|
2164
|
+
return {
|
|
2165
|
+
url: toPathString(localVarUrlObj),
|
|
2166
|
+
options: localVarRequestOptions
|
|
2167
|
+
};
|
|
2168
|
+
},
|
|
2169
|
+
/**
|
|
2170
|
+
*
|
|
2171
|
+
* @summary Messages Get
|
|
2172
|
+
* @param {string} messageId
|
|
2173
|
+
* @param {*} [options] Override http request option.
|
|
2174
|
+
* @throws {RequiredError}
|
|
2175
|
+
*/
|
|
2176
|
+
messagesGet: async (messageId, options = {}) => {
|
|
2177
|
+
assertParamExists("messagesGet", "messageId", messageId);
|
|
2178
|
+
const localVarPath = `/messages/{messageId}`.replace(`{${"messageId"}}`, encodeURIComponent(String(messageId)));
|
|
2179
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2180
|
+
let baseOptions;
|
|
2181
|
+
if (configuration) {
|
|
2182
|
+
baseOptions = configuration.baseOptions;
|
|
2183
|
+
}
|
|
2184
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
2185
|
+
const localVarHeaderParameter = {};
|
|
2186
|
+
const localVarQueryParameter = {};
|
|
2187
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2188
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2189
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2190
|
+
return {
|
|
2191
|
+
url: toPathString(localVarUrlObj),
|
|
2192
|
+
options: localVarRequestOptions
|
|
2193
|
+
};
|
|
2194
|
+
},
|
|
2195
|
+
/**
|
|
2196
|
+
*
|
|
2197
|
+
* @summary Messages List
|
|
2198
|
+
* @param {string} [conversationId]
|
|
2199
|
+
* @param {*} [options] Override http request option.
|
|
2200
|
+
* @throws {RequiredError}
|
|
2201
|
+
*/
|
|
2202
|
+
messagesList: async (conversationId, options = {}) => {
|
|
2203
|
+
const localVarPath = `/messages`;
|
|
2204
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2205
|
+
let baseOptions;
|
|
2206
|
+
if (configuration) {
|
|
2207
|
+
baseOptions = configuration.baseOptions;
|
|
2208
|
+
}
|
|
2209
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
2210
|
+
const localVarHeaderParameter = {};
|
|
2211
|
+
const localVarQueryParameter = {};
|
|
2212
|
+
if (conversationId !== void 0) {
|
|
2213
|
+
localVarQueryParameter["conversationId"] = conversationId;
|
|
2214
|
+
}
|
|
2215
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2216
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2217
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2218
|
+
return {
|
|
2219
|
+
url: toPathString(localVarUrlObj),
|
|
2220
|
+
options: localVarRequestOptions
|
|
2221
|
+
};
|
|
2222
|
+
}
|
|
2223
|
+
};
|
|
2224
|
+
};
|
|
2225
|
+
var MessagesApiFp = function(configuration) {
|
|
2226
|
+
const localVarAxiosParamCreator = MessagesApiAxiosParamCreator(configuration);
|
|
2227
|
+
return {
|
|
2228
|
+
/**
|
|
2229
|
+
*
|
|
2230
|
+
* @summary Messages Create
|
|
2231
|
+
* @param {MessageCreate} messageCreate
|
|
2232
|
+
* @param {*} [options] Override http request option.
|
|
2233
|
+
* @throws {RequiredError}
|
|
2234
|
+
*/
|
|
2235
|
+
async messagesCreate(messageCreate, options) {
|
|
2236
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesCreate(messageCreate, options);
|
|
2237
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _118 => _118.serverIndex]), () => ( 0));
|
|
2238
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _119 => _119["MessagesApi.messagesCreate"], 'optionalAccess', _120 => _120[localVarOperationServerIndex], 'optionalAccess', _121 => _121.url]);
|
|
2239
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2240
|
+
},
|
|
2241
|
+
/**
|
|
2242
|
+
*
|
|
2243
|
+
* @summary Messages Get
|
|
2244
|
+
* @param {string} messageId
|
|
2245
|
+
* @param {*} [options] Override http request option.
|
|
2246
|
+
* @throws {RequiredError}
|
|
2247
|
+
*/
|
|
2248
|
+
async messagesGet(messageId, options) {
|
|
2249
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesGet(messageId, options);
|
|
2250
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _122 => _122.serverIndex]), () => ( 0));
|
|
2251
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _123 => _123["MessagesApi.messagesGet"], 'optionalAccess', _124 => _124[localVarOperationServerIndex], 'optionalAccess', _125 => _125.url]);
|
|
2252
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2253
|
+
},
|
|
2254
|
+
/**
|
|
2255
|
+
*
|
|
2256
|
+
* @summary Messages List
|
|
2257
|
+
* @param {string} [conversationId]
|
|
2258
|
+
* @param {*} [options] Override http request option.
|
|
2259
|
+
* @throws {RequiredError}
|
|
2260
|
+
*/
|
|
2261
|
+
async messagesList(conversationId, options) {
|
|
2262
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesList(conversationId, options);
|
|
2263
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _126 => _126.serverIndex]), () => ( 0));
|
|
2264
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _127 => _127["MessagesApi.messagesList"], 'optionalAccess', _128 => _128[localVarOperationServerIndex], 'optionalAccess', _129 => _129.url]);
|
|
2265
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2266
|
+
}
|
|
2267
|
+
};
|
|
2268
|
+
};
|
|
2269
|
+
var MessagesApiFactory = function(configuration, basePath, axios) {
|
|
2270
|
+
const localVarFp = MessagesApiFp(configuration);
|
|
2271
|
+
return {
|
|
2272
|
+
/**
|
|
2273
|
+
*
|
|
2274
|
+
* @summary Messages Create
|
|
2275
|
+
* @param {MessageCreate} messageCreate
|
|
2276
|
+
* @param {*} [options] Override http request option.
|
|
2277
|
+
* @throws {RequiredError}
|
|
2278
|
+
*/
|
|
2279
|
+
messagesCreate(messageCreate, options) {
|
|
2280
|
+
return localVarFp.messagesCreate(messageCreate, options).then((request) => request(axios, basePath));
|
|
2281
|
+
},
|
|
2282
|
+
/**
|
|
2283
|
+
*
|
|
2284
|
+
* @summary Messages Get
|
|
2285
|
+
* @param {string} messageId
|
|
2286
|
+
* @param {*} [options] Override http request option.
|
|
2287
|
+
* @throws {RequiredError}
|
|
2288
|
+
*/
|
|
2289
|
+
messagesGet(messageId, options) {
|
|
2290
|
+
return localVarFp.messagesGet(messageId, options).then((request) => request(axios, basePath));
|
|
2291
|
+
},
|
|
2292
|
+
/**
|
|
2293
|
+
*
|
|
2294
|
+
* @summary Messages List
|
|
2295
|
+
* @param {string} [conversationId]
|
|
2296
|
+
* @param {*} [options] Override http request option.
|
|
2297
|
+
* @throws {RequiredError}
|
|
2298
|
+
*/
|
|
2299
|
+
messagesList(conversationId, options) {
|
|
2300
|
+
return localVarFp.messagesList(conversationId, options).then((request) => request(axios, basePath));
|
|
2301
|
+
}
|
|
2302
|
+
};
|
|
2303
|
+
};
|
|
2304
|
+
var MessagesApi = class extends BaseAPI {
|
|
2305
|
+
/**
|
|
2306
|
+
*
|
|
2307
|
+
* @summary Messages Create
|
|
2308
|
+
* @param {MessageCreate} messageCreate
|
|
2309
|
+
* @param {*} [options] Override http request option.
|
|
2310
|
+
* @throws {RequiredError}
|
|
2311
|
+
* @memberof MessagesApi
|
|
2312
|
+
*/
|
|
2313
|
+
messagesCreate(messageCreate, options) {
|
|
2314
|
+
return MessagesApiFp(this.configuration).messagesCreate(messageCreate, options).then((request) => request(this.axios, this.basePath));
|
|
2315
|
+
}
|
|
2316
|
+
/**
|
|
2317
|
+
*
|
|
2318
|
+
* @summary Messages Get
|
|
2319
|
+
* @param {string} messageId
|
|
2320
|
+
* @param {*} [options] Override http request option.
|
|
2321
|
+
* @throws {RequiredError}
|
|
2322
|
+
* @memberof MessagesApi
|
|
2323
|
+
*/
|
|
2324
|
+
messagesGet(messageId, options) {
|
|
2325
|
+
return MessagesApiFp(this.configuration).messagesGet(messageId, options).then((request) => request(this.axios, this.basePath));
|
|
2326
|
+
}
|
|
2327
|
+
/**
|
|
2328
|
+
*
|
|
2329
|
+
* @summary Messages List
|
|
2330
|
+
* @param {string} [conversationId]
|
|
2331
|
+
* @param {*} [options] Override http request option.
|
|
2332
|
+
* @throws {RequiredError}
|
|
2333
|
+
* @memberof MessagesApi
|
|
2334
|
+
*/
|
|
2335
|
+
messagesList(conversationId, options) {
|
|
2336
|
+
return MessagesApiFp(this.configuration).messagesList(conversationId, options).then((request) => request(this.axios, this.basePath));
|
|
2337
|
+
}
|
|
2338
|
+
};
|
|
2133
2339
|
var PhoneNumbersApiAxiosParamCreator = function(configuration) {
|
|
2134
2340
|
return {
|
|
2135
2341
|
/**
|
|
@@ -2203,8 +2409,8 @@ var PhoneNumbersApiFp = function(configuration) {
|
|
|
2203
2409
|
*/
|
|
2204
2410
|
async phoneNumbersCreate(contactId, phoneNumberCreate, options) {
|
|
2205
2411
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phoneNumbersCreate(contactId, phoneNumberCreate, options);
|
|
2206
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2207
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2412
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _130 => _130.serverIndex]), () => ( 0));
|
|
2413
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _131 => _131["PhoneNumbersApi.phoneNumbersCreate"], 'optionalAccess', _132 => _132[localVarOperationServerIndex], 'optionalAccess', _133 => _133.url]);
|
|
2208
2414
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2209
2415
|
},
|
|
2210
2416
|
/**
|
|
@@ -2216,8 +2422,8 @@ var PhoneNumbersApiFp = function(configuration) {
|
|
|
2216
2422
|
*/
|
|
2217
2423
|
async phoneNumbersDelete(phoneNumberId, options) {
|
|
2218
2424
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phoneNumbersDelete(phoneNumberId, options);
|
|
2219
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2220
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2425
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _134 => _134.serverIndex]), () => ( 0));
|
|
2426
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _135 => _135["PhoneNumbersApi.phoneNumbersDelete"], 'optionalAccess', _136 => _136[localVarOperationServerIndex], 'optionalAccess', _137 => _137.url]);
|
|
2221
2427
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2222
2428
|
}
|
|
2223
2429
|
};
|
|
@@ -2317,8 +2523,8 @@ var ReservationsApiFp = function(configuration) {
|
|
|
2317
2523
|
*/
|
|
2318
2524
|
async reservationsList(contactId, options) {
|
|
2319
2525
|
const localVarAxiosArgs = await localVarAxiosParamCreator.reservationsList(contactId, options);
|
|
2320
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2321
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2526
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _138 => _138.serverIndex]), () => ( 0));
|
|
2527
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _139 => _139["ReservationsApi.reservationsList"], 'optionalAccess', _140 => _140[localVarOperationServerIndex], 'optionalAccess', _141 => _141.url]);
|
|
2322
2528
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2323
2529
|
}
|
|
2324
2530
|
};
|
|
@@ -2578,7 +2784,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
2578
2784
|
/**
|
|
2579
2785
|
*
|
|
2580
2786
|
* @summary Contacts List
|
|
2581
|
-
* @param {string} [searchString]
|
|
2787
|
+
* @param {string | null} [searchString]
|
|
2582
2788
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2583
2789
|
* @param {number} [limit]
|
|
2584
2790
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2965,6 +3171,88 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
2965
3171
|
options: localVarRequestOptions
|
|
2966
3172
|
};
|
|
2967
3173
|
},
|
|
3174
|
+
/**
|
|
3175
|
+
*
|
|
3176
|
+
* @summary Messages Create
|
|
3177
|
+
* @param {MessageCreate} messageCreate
|
|
3178
|
+
* @param {*} [options] Override http request option.
|
|
3179
|
+
* @throws {RequiredError}
|
|
3180
|
+
*/
|
|
3181
|
+
messagesCreate: async (messageCreate, options = {}) => {
|
|
3182
|
+
assertParamExists("messagesCreate", "messageCreate", messageCreate);
|
|
3183
|
+
const localVarPath = `/messages`;
|
|
3184
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3185
|
+
let baseOptions;
|
|
3186
|
+
if (configuration) {
|
|
3187
|
+
baseOptions = configuration.baseOptions;
|
|
3188
|
+
}
|
|
3189
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
3190
|
+
const localVarHeaderParameter = {};
|
|
3191
|
+
const localVarQueryParameter = {};
|
|
3192
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3193
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3194
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3195
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3196
|
+
localVarRequestOptions.data = serializeDataIfNeeded(messageCreate, localVarRequestOptions, configuration);
|
|
3197
|
+
return {
|
|
3198
|
+
url: toPathString(localVarUrlObj),
|
|
3199
|
+
options: localVarRequestOptions
|
|
3200
|
+
};
|
|
3201
|
+
},
|
|
3202
|
+
/**
|
|
3203
|
+
*
|
|
3204
|
+
* @summary Messages Get
|
|
3205
|
+
* @param {string} messageId
|
|
3206
|
+
* @param {*} [options] Override http request option.
|
|
3207
|
+
* @throws {RequiredError}
|
|
3208
|
+
*/
|
|
3209
|
+
messagesGet: async (messageId, options = {}) => {
|
|
3210
|
+
assertParamExists("messagesGet", "messageId", messageId);
|
|
3211
|
+
const localVarPath = `/messages/{messageId}`.replace(`{${"messageId"}}`, encodeURIComponent(String(messageId)));
|
|
3212
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3213
|
+
let baseOptions;
|
|
3214
|
+
if (configuration) {
|
|
3215
|
+
baseOptions = configuration.baseOptions;
|
|
3216
|
+
}
|
|
3217
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3218
|
+
const localVarHeaderParameter = {};
|
|
3219
|
+
const localVarQueryParameter = {};
|
|
3220
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3221
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3222
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3223
|
+
return {
|
|
3224
|
+
url: toPathString(localVarUrlObj),
|
|
3225
|
+
options: localVarRequestOptions
|
|
3226
|
+
};
|
|
3227
|
+
},
|
|
3228
|
+
/**
|
|
3229
|
+
*
|
|
3230
|
+
* @summary Messages List
|
|
3231
|
+
* @param {string} [conversationId]
|
|
3232
|
+
* @param {*} [options] Override http request option.
|
|
3233
|
+
* @throws {RequiredError}
|
|
3234
|
+
*/
|
|
3235
|
+
messagesList: async (conversationId, options = {}) => {
|
|
3236
|
+
const localVarPath = `/messages`;
|
|
3237
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3238
|
+
let baseOptions;
|
|
3239
|
+
if (configuration) {
|
|
3240
|
+
baseOptions = configuration.baseOptions;
|
|
3241
|
+
}
|
|
3242
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3243
|
+
const localVarHeaderParameter = {};
|
|
3244
|
+
const localVarQueryParameter = {};
|
|
3245
|
+
if (conversationId !== void 0) {
|
|
3246
|
+
localVarQueryParameter["conversationId"] = conversationId;
|
|
3247
|
+
}
|
|
3248
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3249
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3250
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3251
|
+
return {
|
|
3252
|
+
url: toPathString(localVarUrlObj),
|
|
3253
|
+
options: localVarRequestOptions
|
|
3254
|
+
};
|
|
3255
|
+
},
|
|
2968
3256
|
/**
|
|
2969
3257
|
*
|
|
2970
3258
|
* @summary Phone_numbers Create
|
|
@@ -3091,8 +3379,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3091
3379
|
*/
|
|
3092
3380
|
async accountsList(options) {
|
|
3093
3381
|
const localVarAxiosArgs = await localVarAxiosParamCreator.accountsList(options);
|
|
3094
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3095
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3382
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _142 => _142.serverIndex]), () => ( 0));
|
|
3383
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _143 => _143["UnboundApi.accountsList"], 'optionalAccess', _144 => _144[localVarOperationServerIndex], 'optionalAccess', _145 => _145.url]);
|
|
3096
3384
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3097
3385
|
},
|
|
3098
3386
|
/**
|
|
@@ -3105,8 +3393,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3105
3393
|
*/
|
|
3106
3394
|
async addressesCreate(contactId, addressCreate, options) {
|
|
3107
3395
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesCreate(contactId, addressCreate, options);
|
|
3108
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3109
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3396
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _146 => _146.serverIndex]), () => ( 0));
|
|
3397
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _147 => _147["UnboundApi.addressesCreate"], 'optionalAccess', _148 => _148[localVarOperationServerIndex], 'optionalAccess', _149 => _149.url]);
|
|
3110
3398
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3111
3399
|
},
|
|
3112
3400
|
/**
|
|
@@ -3118,8 +3406,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3118
3406
|
*/
|
|
3119
3407
|
async addressesDelete(addressId, options) {
|
|
3120
3408
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesDelete(addressId, options);
|
|
3121
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3122
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3409
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _150 => _150.serverIndex]), () => ( 0));
|
|
3410
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _151 => _151["UnboundApi.addressesDelete"], 'optionalAccess', _152 => _152[localVarOperationServerIndex], 'optionalAccess', _153 => _153.url]);
|
|
3123
3411
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3124
3412
|
},
|
|
3125
3413
|
/**
|
|
@@ -3132,8 +3420,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3132
3420
|
*/
|
|
3133
3421
|
async addressesUpdate(addressId, addressUpdate, options) {
|
|
3134
3422
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesUpdate(addressId, addressUpdate, options);
|
|
3135
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3136
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3423
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _154 => _154.serverIndex]), () => ( 0));
|
|
3424
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _155 => _155["UnboundApi.addressesUpdate"], 'optionalAccess', _156 => _156[localVarOperationServerIndex], 'optionalAccess', _157 => _157.url]);
|
|
3137
3425
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3138
3426
|
},
|
|
3139
3427
|
/**
|
|
@@ -3147,8 +3435,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3147
3435
|
*/
|
|
3148
3436
|
async contactsAddListing(contactId, listingId, createContactListing, options) {
|
|
3149
3437
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsAddListing(contactId, listingId, createContactListing, options);
|
|
3150
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3151
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3438
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _158 => _158.serverIndex]), () => ( 0));
|
|
3439
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _159 => _159["UnboundApi.contactsAddListing"], 'optionalAccess', _160 => _160[localVarOperationServerIndex], 'optionalAccess', _161 => _161.url]);
|
|
3152
3440
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3153
3441
|
},
|
|
3154
3442
|
/**
|
|
@@ -3160,8 +3448,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3160
3448
|
*/
|
|
3161
3449
|
async contactsCreate(contactCreate, options) {
|
|
3162
3450
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsCreate(contactCreate, options);
|
|
3163
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3164
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3451
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _162 => _162.serverIndex]), () => ( 0));
|
|
3452
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _163 => _163["UnboundApi.contactsCreate"], 'optionalAccess', _164 => _164[localVarOperationServerIndex], 'optionalAccess', _165 => _165.url]);
|
|
3165
3453
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3166
3454
|
},
|
|
3167
3455
|
/**
|
|
@@ -3173,8 +3461,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3173
3461
|
*/
|
|
3174
3462
|
async contactsDelete(contactId, options) {
|
|
3175
3463
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsDelete(contactId, options);
|
|
3176
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3177
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3464
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _166 => _166.serverIndex]), () => ( 0));
|
|
3465
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _167 => _167["UnboundApi.contactsDelete"], 'optionalAccess', _168 => _168[localVarOperationServerIndex], 'optionalAccess', _169 => _169.url]);
|
|
3178
3466
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3179
3467
|
},
|
|
3180
3468
|
/**
|
|
@@ -3186,14 +3474,14 @@ var UnboundApiFp = function(configuration) {
|
|
|
3186
3474
|
*/
|
|
3187
3475
|
async contactsGet(contactId, options) {
|
|
3188
3476
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsGet(contactId, options);
|
|
3189
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3190
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3477
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _170 => _170.serverIndex]), () => ( 0));
|
|
3478
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _171 => _171["UnboundApi.contactsGet"], 'optionalAccess', _172 => _172[localVarOperationServerIndex], 'optionalAccess', _173 => _173.url]);
|
|
3191
3479
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3192
3480
|
},
|
|
3193
3481
|
/**
|
|
3194
3482
|
*
|
|
3195
3483
|
* @summary Contacts List
|
|
3196
|
-
* @param {string} [searchString]
|
|
3484
|
+
* @param {string | null} [searchString]
|
|
3197
3485
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3198
3486
|
* @param {number} [limit]
|
|
3199
3487
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3204,8 +3492,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3204
3492
|
*/
|
|
3205
3493
|
async contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
3206
3494
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
3207
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3208
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3495
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _174 => _174.serverIndex]), () => ( 0));
|
|
3496
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _175 => _175["UnboundApi.contactsList"], 'optionalAccess', _176 => _176[localVarOperationServerIndex], 'optionalAccess', _177 => _177.url]);
|
|
3209
3497
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3210
3498
|
},
|
|
3211
3499
|
/**
|
|
@@ -3219,8 +3507,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3219
3507
|
*/
|
|
3220
3508
|
async contactsRemoveListing(contactId, listingId, deleteContactListing, options) {
|
|
3221
3509
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsRemoveListing(contactId, listingId, deleteContactListing, options);
|
|
3222
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3223
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3510
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _178 => _178.serverIndex]), () => ( 0));
|
|
3511
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _179 => _179["UnboundApi.contactsRemoveListing"], 'optionalAccess', _180 => _180[localVarOperationServerIndex], 'optionalAccess', _181 => _181.url]);
|
|
3224
3512
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3225
3513
|
},
|
|
3226
3514
|
/**
|
|
@@ -3233,8 +3521,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3233
3521
|
*/
|
|
3234
3522
|
async contactsUpdate(contactId, contactUpdate, options) {
|
|
3235
3523
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId, contactUpdate, options);
|
|
3236
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3237
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3524
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _182 => _182.serverIndex]), () => ( 0));
|
|
3525
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _183 => _183["UnboundApi.contactsUpdate"], 'optionalAccess', _184 => _184[localVarOperationServerIndex], 'optionalAccess', _185 => _185.url]);
|
|
3238
3526
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3239
3527
|
},
|
|
3240
3528
|
/**
|
|
@@ -3248,8 +3536,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3248
3536
|
*/
|
|
3249
3537
|
async contactsUpdateListing(contactId, listingId, updateContactListing, options) {
|
|
3250
3538
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdateListing(contactId, listingId, updateContactListing, options);
|
|
3251
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3252
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3539
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _186 => _186.serverIndex]), () => ( 0));
|
|
3540
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _187 => _187["UnboundApi.contactsUpdateListing"], 'optionalAccess', _188 => _188[localVarOperationServerIndex], 'optionalAccess', _189 => _189.url]);
|
|
3253
3541
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3254
3542
|
},
|
|
3255
3543
|
/**
|
|
@@ -3261,8 +3549,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3261
3549
|
*/
|
|
3262
3550
|
async conversationsCreate(conversationCreate, options) {
|
|
3263
3551
|
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsCreate(conversationCreate, options);
|
|
3264
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3265
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3552
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _190 => _190.serverIndex]), () => ( 0));
|
|
3553
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _191 => _191["UnboundApi.conversationsCreate"], 'optionalAccess', _192 => _192[localVarOperationServerIndex], 'optionalAccess', _193 => _193.url]);
|
|
3266
3554
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3267
3555
|
},
|
|
3268
3556
|
/**
|
|
@@ -3274,8 +3562,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3274
3562
|
*/
|
|
3275
3563
|
async conversationsGet(conversationId, options) {
|
|
3276
3564
|
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsGet(conversationId, options);
|
|
3277
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3278
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3565
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _194 => _194.serverIndex]), () => ( 0));
|
|
3566
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _195 => _195["UnboundApi.conversationsGet"], 'optionalAccess', _196 => _196[localVarOperationServerIndex], 'optionalAccess', _197 => _197.url]);
|
|
3279
3567
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3280
3568
|
},
|
|
3281
3569
|
/**
|
|
@@ -3287,8 +3575,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3287
3575
|
*/
|
|
3288
3576
|
async conversationsList(contactId, options) {
|
|
3289
3577
|
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsList(contactId, options);
|
|
3290
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3291
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3578
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _198 => _198.serverIndex]), () => ( 0));
|
|
3579
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _199 => _199["UnboundApi.conversationsList"], 'optionalAccess', _200 => _200[localVarOperationServerIndex], 'optionalAccess', _201 => _201.url]);
|
|
3292
3580
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3293
3581
|
},
|
|
3294
3582
|
/**
|
|
@@ -3301,8 +3589,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3301
3589
|
*/
|
|
3302
3590
|
async conversationsUpdate(conversationId, conversationUpdate, options) {
|
|
3303
3591
|
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsUpdate(conversationId, conversationUpdate, options);
|
|
3304
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3305
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3592
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _202 => _202.serverIndex]), () => ( 0));
|
|
3593
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _203 => _203["UnboundApi.conversationsUpdate"], 'optionalAccess', _204 => _204[localVarOperationServerIndex], 'optionalAccess', _205 => _205.url]);
|
|
3306
3594
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3307
3595
|
},
|
|
3308
3596
|
/**
|
|
@@ -3315,8 +3603,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3315
3603
|
*/
|
|
3316
3604
|
async emailsCreate(contactId, emailCreate, options) {
|
|
3317
3605
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsCreate(contactId, emailCreate, options);
|
|
3318
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3319
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3606
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _206 => _206.serverIndex]), () => ( 0));
|
|
3607
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _207 => _207["UnboundApi.emailsCreate"], 'optionalAccess', _208 => _208[localVarOperationServerIndex], 'optionalAccess', _209 => _209.url]);
|
|
3320
3608
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3321
3609
|
},
|
|
3322
3610
|
/**
|
|
@@ -3328,8 +3616,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3328
3616
|
*/
|
|
3329
3617
|
async emailsDelete(emailId, options) {
|
|
3330
3618
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsDelete(emailId, options);
|
|
3331
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3332
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3619
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _210 => _210.serverIndex]), () => ( 0));
|
|
3620
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _211 => _211["UnboundApi.emailsDelete"], 'optionalAccess', _212 => _212[localVarOperationServerIndex], 'optionalAccess', _213 => _213.url]);
|
|
3333
3621
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3334
3622
|
},
|
|
3335
3623
|
/**
|
|
@@ -3341,8 +3629,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3341
3629
|
*/
|
|
3342
3630
|
async inquiriesList(contactId, options) {
|
|
3343
3631
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inquiriesList(contactId, options);
|
|
3344
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3345
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3632
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _214 => _214.serverIndex]), () => ( 0));
|
|
3633
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _215 => _215["UnboundApi.inquiriesList"], 'optionalAccess', _216 => _216[localVarOperationServerIndex], 'optionalAccess', _217 => _217.url]);
|
|
3346
3634
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3347
3635
|
},
|
|
3348
3636
|
/**
|
|
@@ -3354,8 +3642,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3354
3642
|
*/
|
|
3355
3643
|
async listingsList(contactId, options) {
|
|
3356
3644
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listingsList(contactId, options);
|
|
3357
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3358
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3645
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _218 => _218.serverIndex]), () => ( 0));
|
|
3646
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _219 => _219["UnboundApi.listingsList"], 'optionalAccess', _220 => _220[localVarOperationServerIndex], 'optionalAccess', _221 => _221.url]);
|
|
3359
3647
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3360
3648
|
},
|
|
3361
3649
|
/**
|
|
@@ -3366,8 +3654,47 @@ var UnboundApiFp = function(configuration) {
|
|
|
3366
3654
|
*/
|
|
3367
3655
|
async managedPhoneNumbersList(options) {
|
|
3368
3656
|
const localVarAxiosArgs = await localVarAxiosParamCreator.managedPhoneNumbersList(options);
|
|
3369
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3370
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3657
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _222 => _222.serverIndex]), () => ( 0));
|
|
3658
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _223 => _223["UnboundApi.managedPhoneNumbersList"], 'optionalAccess', _224 => _224[localVarOperationServerIndex], 'optionalAccess', _225 => _225.url]);
|
|
3659
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3660
|
+
},
|
|
3661
|
+
/**
|
|
3662
|
+
*
|
|
3663
|
+
* @summary Messages Create
|
|
3664
|
+
* @param {MessageCreate} messageCreate
|
|
3665
|
+
* @param {*} [options] Override http request option.
|
|
3666
|
+
* @throws {RequiredError}
|
|
3667
|
+
*/
|
|
3668
|
+
async messagesCreate(messageCreate, options) {
|
|
3669
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesCreate(messageCreate, options);
|
|
3670
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _226 => _226.serverIndex]), () => ( 0));
|
|
3671
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _227 => _227["UnboundApi.messagesCreate"], 'optionalAccess', _228 => _228[localVarOperationServerIndex], 'optionalAccess', _229 => _229.url]);
|
|
3672
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3673
|
+
},
|
|
3674
|
+
/**
|
|
3675
|
+
*
|
|
3676
|
+
* @summary Messages Get
|
|
3677
|
+
* @param {string} messageId
|
|
3678
|
+
* @param {*} [options] Override http request option.
|
|
3679
|
+
* @throws {RequiredError}
|
|
3680
|
+
*/
|
|
3681
|
+
async messagesGet(messageId, options) {
|
|
3682
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesGet(messageId, options);
|
|
3683
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _230 => _230.serverIndex]), () => ( 0));
|
|
3684
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _231 => _231["UnboundApi.messagesGet"], 'optionalAccess', _232 => _232[localVarOperationServerIndex], 'optionalAccess', _233 => _233.url]);
|
|
3685
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3686
|
+
},
|
|
3687
|
+
/**
|
|
3688
|
+
*
|
|
3689
|
+
* @summary Messages List
|
|
3690
|
+
* @param {string} [conversationId]
|
|
3691
|
+
* @param {*} [options] Override http request option.
|
|
3692
|
+
* @throws {RequiredError}
|
|
3693
|
+
*/
|
|
3694
|
+
async messagesList(conversationId, options) {
|
|
3695
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesList(conversationId, options);
|
|
3696
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _234 => _234.serverIndex]), () => ( 0));
|
|
3697
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _235 => _235["UnboundApi.messagesList"], 'optionalAccess', _236 => _236[localVarOperationServerIndex], 'optionalAccess', _237 => _237.url]);
|
|
3371
3698
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3372
3699
|
},
|
|
3373
3700
|
/**
|
|
@@ -3380,8 +3707,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3380
3707
|
*/
|
|
3381
3708
|
async phoneNumbersCreate(contactId, phoneNumberCreate, options) {
|
|
3382
3709
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phoneNumbersCreate(contactId, phoneNumberCreate, options);
|
|
3383
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3384
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3710
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _238 => _238.serverIndex]), () => ( 0));
|
|
3711
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _239 => _239["UnboundApi.phoneNumbersCreate"], 'optionalAccess', _240 => _240[localVarOperationServerIndex], 'optionalAccess', _241 => _241.url]);
|
|
3385
3712
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3386
3713
|
},
|
|
3387
3714
|
/**
|
|
@@ -3393,8 +3720,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3393
3720
|
*/
|
|
3394
3721
|
async phoneNumbersDelete(phoneNumberId, options) {
|
|
3395
3722
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phoneNumbersDelete(phoneNumberId, options);
|
|
3396
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3397
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3723
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _242 => _242.serverIndex]), () => ( 0));
|
|
3724
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _243 => _243["UnboundApi.phoneNumbersDelete"], 'optionalAccess', _244 => _244[localVarOperationServerIndex], 'optionalAccess', _245 => _245.url]);
|
|
3398
3725
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3399
3726
|
},
|
|
3400
3727
|
/**
|
|
@@ -3406,8 +3733,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3406
3733
|
*/
|
|
3407
3734
|
async reservationsList(contactId, options) {
|
|
3408
3735
|
const localVarAxiosArgs = await localVarAxiosParamCreator.reservationsList(contactId, options);
|
|
3409
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3410
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3736
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _246 => _246.serverIndex]), () => ( 0));
|
|
3737
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _247 => _247["UnboundApi.reservationsList"], 'optionalAccess', _248 => _248[localVarOperationServerIndex], 'optionalAccess', _249 => _249.url]);
|
|
3411
3738
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3412
3739
|
},
|
|
3413
3740
|
/**
|
|
@@ -3419,8 +3746,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
3419
3746
|
*/
|
|
3420
3747
|
async webhook(hostawayWebhook, options) {
|
|
3421
3748
|
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(hostawayWebhook, options);
|
|
3422
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3423
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3749
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _250 => _250.serverIndex]), () => ( 0));
|
|
3750
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _251 => _251["UnboundApi.webhook"], 'optionalAccess', _252 => _252[localVarOperationServerIndex], 'optionalAccess', _253 => _253.url]);
|
|
3424
3751
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3425
3752
|
}
|
|
3426
3753
|
};
|
|
@@ -3514,7 +3841,7 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
3514
3841
|
/**
|
|
3515
3842
|
*
|
|
3516
3843
|
* @summary Contacts List
|
|
3517
|
-
* @param {string} [searchString]
|
|
3844
|
+
* @param {string | null} [searchString]
|
|
3518
3845
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3519
3846
|
* @param {number} [limit]
|
|
3520
3847
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3652,6 +3979,36 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
3652
3979
|
managedPhoneNumbersList(options) {
|
|
3653
3980
|
return localVarFp.managedPhoneNumbersList(options).then((request) => request(axios, basePath));
|
|
3654
3981
|
},
|
|
3982
|
+
/**
|
|
3983
|
+
*
|
|
3984
|
+
* @summary Messages Create
|
|
3985
|
+
* @param {MessageCreate} messageCreate
|
|
3986
|
+
* @param {*} [options] Override http request option.
|
|
3987
|
+
* @throws {RequiredError}
|
|
3988
|
+
*/
|
|
3989
|
+
messagesCreate(messageCreate, options) {
|
|
3990
|
+
return localVarFp.messagesCreate(messageCreate, options).then((request) => request(axios, basePath));
|
|
3991
|
+
},
|
|
3992
|
+
/**
|
|
3993
|
+
*
|
|
3994
|
+
* @summary Messages Get
|
|
3995
|
+
* @param {string} messageId
|
|
3996
|
+
* @param {*} [options] Override http request option.
|
|
3997
|
+
* @throws {RequiredError}
|
|
3998
|
+
*/
|
|
3999
|
+
messagesGet(messageId, options) {
|
|
4000
|
+
return localVarFp.messagesGet(messageId, options).then((request) => request(axios, basePath));
|
|
4001
|
+
},
|
|
4002
|
+
/**
|
|
4003
|
+
*
|
|
4004
|
+
* @summary Messages List
|
|
4005
|
+
* @param {string} [conversationId]
|
|
4006
|
+
* @param {*} [options] Override http request option.
|
|
4007
|
+
* @throws {RequiredError}
|
|
4008
|
+
*/
|
|
4009
|
+
messagesList(conversationId, options) {
|
|
4010
|
+
return localVarFp.messagesList(conversationId, options).then((request) => request(axios, basePath));
|
|
4011
|
+
},
|
|
3655
4012
|
/**
|
|
3656
4013
|
*
|
|
3657
4014
|
* @summary Phone_numbers Create
|
|
@@ -3790,7 +4147,7 @@ var UnboundApi = class extends BaseAPI {
|
|
|
3790
4147
|
/**
|
|
3791
4148
|
*
|
|
3792
4149
|
* @summary Contacts List
|
|
3793
|
-
* @param {string} [searchString]
|
|
4150
|
+
* @param {string | null} [searchString]
|
|
3794
4151
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3795
4152
|
* @param {number} [limit]
|
|
3796
4153
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3941,6 +4298,39 @@ var UnboundApi = class extends BaseAPI {
|
|
|
3941
4298
|
managedPhoneNumbersList(options) {
|
|
3942
4299
|
return UnboundApiFp(this.configuration).managedPhoneNumbersList(options).then((request) => request(this.axios, this.basePath));
|
|
3943
4300
|
}
|
|
4301
|
+
/**
|
|
4302
|
+
*
|
|
4303
|
+
* @summary Messages Create
|
|
4304
|
+
* @param {MessageCreate} messageCreate
|
|
4305
|
+
* @param {*} [options] Override http request option.
|
|
4306
|
+
* @throws {RequiredError}
|
|
4307
|
+
* @memberof UnboundApi
|
|
4308
|
+
*/
|
|
4309
|
+
messagesCreate(messageCreate, options) {
|
|
4310
|
+
return UnboundApiFp(this.configuration).messagesCreate(messageCreate, options).then((request) => request(this.axios, this.basePath));
|
|
4311
|
+
}
|
|
4312
|
+
/**
|
|
4313
|
+
*
|
|
4314
|
+
* @summary Messages Get
|
|
4315
|
+
* @param {string} messageId
|
|
4316
|
+
* @param {*} [options] Override http request option.
|
|
4317
|
+
* @throws {RequiredError}
|
|
4318
|
+
* @memberof UnboundApi
|
|
4319
|
+
*/
|
|
4320
|
+
messagesGet(messageId, options) {
|
|
4321
|
+
return UnboundApiFp(this.configuration).messagesGet(messageId, options).then((request) => request(this.axios, this.basePath));
|
|
4322
|
+
}
|
|
4323
|
+
/**
|
|
4324
|
+
*
|
|
4325
|
+
* @summary Messages List
|
|
4326
|
+
* @param {string} [conversationId]
|
|
4327
|
+
* @param {*} [options] Override http request option.
|
|
4328
|
+
* @throws {RequiredError}
|
|
4329
|
+
* @memberof UnboundApi
|
|
4330
|
+
*/
|
|
4331
|
+
messagesList(conversationId, options) {
|
|
4332
|
+
return UnboundApiFp(this.configuration).messagesList(conversationId, options).then((request) => request(this.axios, this.basePath));
|
|
4333
|
+
}
|
|
3944
4334
|
/**
|
|
3945
4335
|
*
|
|
3946
4336
|
* @summary Phone_numbers Create
|
|
@@ -4056,7 +4446,7 @@ var Configuration = class {
|
|
|
4056
4446
|
this.baseOptions = {
|
|
4057
4447
|
...param.baseOptions,
|
|
4058
4448
|
headers: {
|
|
4059
|
-
..._optionalChain([param, 'access',
|
|
4449
|
+
..._optionalChain([param, 'access', _254 => _254.baseOptions, 'optionalAccess', _255 => _255.headers])
|
|
4060
4450
|
}
|
|
4061
4451
|
};
|
|
4062
4452
|
this.formDataCtor = param.formDataCtor;
|
|
@@ -4135,5 +4525,11 @@ var Configuration = class {
|
|
|
4135
4525
|
|
|
4136
4526
|
|
|
4137
4527
|
|
|
4138
|
-
|
|
4528
|
+
|
|
4529
|
+
|
|
4530
|
+
|
|
4531
|
+
|
|
4532
|
+
|
|
4533
|
+
|
|
4534
|
+
exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.AddressesApi = AddressesApi; exports.AddressesApiAxiosParamCreator = AddressesApiAxiosParamCreator; exports.AddressesApiFactory = AddressesApiFactory; exports.AddressesApiFp = AddressesApiFp; exports.Configuration = Configuration; exports.ContactListingType = ContactListingType; exports.ContactSortBy = ContactSortBy; 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.EmailsApi = EmailsApi; exports.EmailsApiAxiosParamCreator = EmailsApiAxiosParamCreator; exports.EmailsApiFactory = EmailsApiFactory; exports.EmailsApiFp = EmailsApiFp; 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.ListingsApi = ListingsApi; exports.ListingsApiAxiosParamCreator = ListingsApiAxiosParamCreator; exports.ListingsApiFactory = ListingsApiFactory; exports.ListingsApiFp = ListingsApiFp; exports.ManagedPhoneNumbersApi = ManagedPhoneNumbersApi; exports.ManagedPhoneNumbersApiAxiosParamCreator = ManagedPhoneNumbersApiAxiosParamCreator; exports.ManagedPhoneNumbersApiFactory = ManagedPhoneNumbersApiFactory; exports.ManagedPhoneNumbersApiFp = ManagedPhoneNumbersApiFp; exports.MessagesApi = MessagesApi; exports.MessagesApiAxiosParamCreator = MessagesApiAxiosParamCreator; exports.MessagesApiFactory = MessagesApiFactory; exports.MessagesApiFp = MessagesApiFp; exports.PaginationDirection = PaginationDirection; exports.PhoneNumbersApi = PhoneNumbersApi; exports.PhoneNumbersApiAxiosParamCreator = PhoneNumbersApiAxiosParamCreator; exports.PhoneNumbersApiFactory = PhoneNumbersApiFactory; exports.PhoneNumbersApiFp = PhoneNumbersApiFp; exports.ReservationsApi = ReservationsApi; exports.ReservationsApiAxiosParamCreator = ReservationsApiAxiosParamCreator; exports.ReservationsApiFactory = ReservationsApiFactory; exports.ReservationsApiFp = ReservationsApiFp; exports.SortOrder = SortOrder; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp;
|
|
4139
4535
|
//# sourceMappingURL=index.js.map
|