@ember-home/unbound-ts-client 0.0.93 → 0.0.95
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 +383 -225
- package/dist/index.d.ts +383 -225
- package/dist/index.js +593 -374
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +475 -256
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -140,12 +140,6 @@ var ProviderConversationDataApiConversationTypeEnum = {
|
|
|
140
140
|
var ProviderStaffApiStaffTypeEnum = {
|
|
141
141
|
ProviderStaff: "PROVIDER_STAFF"
|
|
142
142
|
};
|
|
143
|
-
var ReasonType = {
|
|
144
|
-
Irrelevant: "IRRELEVANT",
|
|
145
|
-
Inaccurate: "INACCURATE",
|
|
146
|
-
InappropriateTone: "INAPPROPRIATE_TONE",
|
|
147
|
-
TooVerboseOrTerse: "TOO_VERBOSE_OR_TERSE"
|
|
148
|
-
};
|
|
149
143
|
var RentalProviderMessageApiMessageTypeEnum = {
|
|
150
144
|
RentalProvider: "RENTAL_PROVIDER"
|
|
151
145
|
};
|
|
@@ -208,13 +202,16 @@ var SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunic
|
|
|
208
202
|
Channel: "CHANNEL",
|
|
209
203
|
Whatsapp: "WHATSAPP"
|
|
210
204
|
};
|
|
211
|
-
var
|
|
212
|
-
|
|
205
|
+
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum = {
|
|
206
|
+
Text: "TEXT"
|
|
213
207
|
};
|
|
214
208
|
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = {
|
|
215
|
-
|
|
209
|
+
RentalProvider: "RENTAL_PROVIDER"
|
|
216
210
|
};
|
|
217
211
|
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = {
|
|
212
|
+
Text: "TEXT"
|
|
213
|
+
};
|
|
214
|
+
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum = {
|
|
218
215
|
Email: "EMAIL"
|
|
219
216
|
};
|
|
220
217
|
var SrcResourceModelsListingsModelListingBaseSortBy = {
|
|
@@ -236,17 +233,22 @@ var SrcResourceModelsReservationsModelReservationBaseModelSortBy = {
|
|
|
236
233
|
var StaffApiParticipantTypeEnum = {
|
|
237
234
|
Staff: "STAFF"
|
|
238
235
|
};
|
|
236
|
+
var SuggestionRejectionReasonType = {
|
|
237
|
+
Irrelevant: "IRRELEVANT",
|
|
238
|
+
Inaccurate: "INACCURATE",
|
|
239
|
+
InappropriateTone: "INAPPROPRIATE_TONE",
|
|
240
|
+
TooVerboseOrTerse: "TOO_VERBOSE_OR_TERSE"
|
|
241
|
+
};
|
|
239
242
|
var SuggestionStatus = {
|
|
240
243
|
Generating: "GENERATING",
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
AnsweredByStaff: "ANSWERED_BY_STAFF",
|
|
244
|
-
ReplyGenerated: "REPLY_GENERATED"
|
|
244
|
+
ReplyGenerated: "REPLY_GENERATED",
|
|
245
|
+
NoAvailableReply: "NO_AVAILABLE_REPLY"
|
|
245
246
|
};
|
|
246
247
|
var UserDeviceOs = {
|
|
247
248
|
Android: "ANDROID",
|
|
248
249
|
Ios: "IOS",
|
|
249
|
-
Macos: "MACOS"
|
|
250
|
+
Macos: "MACOS",
|
|
251
|
+
Web: "WEB"
|
|
250
252
|
};
|
|
251
253
|
var AccountsApiAxiosParamCreator = function(configuration) {
|
|
252
254
|
return {
|
|
@@ -1732,118 +1734,6 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1732
1734
|
};
|
|
1733
1735
|
var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
1734
1736
|
return {
|
|
1735
|
-
/**
|
|
1736
|
-
* Conversations Get
|
|
1737
|
-
* @summary Conversations Get
|
|
1738
|
-
* @param {string} conversationId
|
|
1739
|
-
* @param {*} [options] Override http request option.
|
|
1740
|
-
* @throws {RequiredError}
|
|
1741
|
-
*/
|
|
1742
|
-
conversationsGet: async (conversationId, options = {}) => {
|
|
1743
|
-
assertParamExists("conversationsGet", "conversationId", conversationId);
|
|
1744
|
-
const localVarPath = `/v1/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
1745
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1746
|
-
let baseOptions;
|
|
1747
|
-
if (configuration) {
|
|
1748
|
-
baseOptions = configuration.baseOptions;
|
|
1749
|
-
}
|
|
1750
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1751
|
-
const localVarHeaderParameter = {};
|
|
1752
|
-
const localVarQueryParameter = {};
|
|
1753
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1754
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1755
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1756
|
-
return {
|
|
1757
|
-
url: toPathString(localVarUrlObj),
|
|
1758
|
-
options: localVarRequestOptions
|
|
1759
|
-
};
|
|
1760
|
-
},
|
|
1761
|
-
/**
|
|
1762
|
-
* List all conversations, must filter by contact_id
|
|
1763
|
-
* @summary Conversations List
|
|
1764
|
-
* @param {string | null} [searchString]
|
|
1765
|
-
* @param {string | null} [contactId]
|
|
1766
|
-
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
1767
|
-
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1768
|
-
* @param {number} [limit]
|
|
1769
|
-
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
1770
|
-
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
1771
|
-
* @param {string | null} [inboxId]
|
|
1772
|
-
* @param {*} [options] Override http request option.
|
|
1773
|
-
* @throws {RequiredError}
|
|
1774
|
-
*/
|
|
1775
|
-
conversationsList: async (searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options = {}) => {
|
|
1776
|
-
const localVarPath = `/v1/conversations`;
|
|
1777
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1778
|
-
let baseOptions;
|
|
1779
|
-
if (configuration) {
|
|
1780
|
-
baseOptions = configuration.baseOptions;
|
|
1781
|
-
}
|
|
1782
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1783
|
-
const localVarHeaderParameter = {};
|
|
1784
|
-
const localVarQueryParameter = {};
|
|
1785
|
-
if (searchString !== void 0) {
|
|
1786
|
-
localVarQueryParameter["searchString"] = searchString;
|
|
1787
|
-
}
|
|
1788
|
-
if (contactId !== void 0) {
|
|
1789
|
-
localVarQueryParameter["contactId"] = contactId;
|
|
1790
|
-
}
|
|
1791
|
-
if (status) {
|
|
1792
|
-
localVarQueryParameter["status"] = status;
|
|
1793
|
-
}
|
|
1794
|
-
if (cursor !== void 0) {
|
|
1795
|
-
localVarQueryParameter["cursor"] = cursor;
|
|
1796
|
-
}
|
|
1797
|
-
if (limit !== void 0) {
|
|
1798
|
-
localVarQueryParameter["limit"] = limit;
|
|
1799
|
-
}
|
|
1800
|
-
if (pageDir !== void 0) {
|
|
1801
|
-
localVarQueryParameter["pageDir"] = pageDir;
|
|
1802
|
-
}
|
|
1803
|
-
if (sortOrder !== void 0) {
|
|
1804
|
-
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
1805
|
-
}
|
|
1806
|
-
if (inboxId !== void 0) {
|
|
1807
|
-
localVarQueryParameter["inboxId"] = inboxId;
|
|
1808
|
-
}
|
|
1809
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1810
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1811
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1812
|
-
return {
|
|
1813
|
-
url: toPathString(localVarUrlObj),
|
|
1814
|
-
options: localVarRequestOptions
|
|
1815
|
-
};
|
|
1816
|
-
},
|
|
1817
|
-
/**
|
|
1818
|
-
* Conversations Update
|
|
1819
|
-
* @summary Conversations Update
|
|
1820
|
-
* @param {string} conversationId
|
|
1821
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
1822
|
-
* @param {*} [options] Override http request option.
|
|
1823
|
-
* @throws {RequiredError}
|
|
1824
|
-
*/
|
|
1825
|
-
conversationsUpdate: async (conversationId, aPIConversationUpdate, options = {}) => {
|
|
1826
|
-
assertParamExists("conversationsUpdate", "conversationId", conversationId);
|
|
1827
|
-
assertParamExists("conversationsUpdate", "aPIConversationUpdate", aPIConversationUpdate);
|
|
1828
|
-
const localVarPath = `/v1/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
1829
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1830
|
-
let baseOptions;
|
|
1831
|
-
if (configuration) {
|
|
1832
|
-
baseOptions = configuration.baseOptions;
|
|
1833
|
-
}
|
|
1834
|
-
const localVarRequestOptions = { method: "PATCH", ...baseOptions, ...options };
|
|
1835
|
-
const localVarHeaderParameter = {};
|
|
1836
|
-
const localVarQueryParameter = {};
|
|
1837
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1838
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1839
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1840
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1841
|
-
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationUpdate, localVarRequestOptions, configuration);
|
|
1842
|
-
return {
|
|
1843
|
-
url: toPathString(localVarUrlObj),
|
|
1844
|
-
options: localVarRequestOptions
|
|
1845
|
-
};
|
|
1846
|
-
},
|
|
1847
1737
|
/**
|
|
1848
1738
|
* Messages Create
|
|
1849
1739
|
* @summary Messages Create
|
|
@@ -1973,53 +1863,6 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1973
1863
|
var ConversationsApiFp = function(configuration) {
|
|
1974
1864
|
const localVarAxiosParamCreator = ConversationsApiAxiosParamCreator(configuration);
|
|
1975
1865
|
return {
|
|
1976
|
-
/**
|
|
1977
|
-
* Conversations Get
|
|
1978
|
-
* @summary Conversations Get
|
|
1979
|
-
* @param {string} conversationId
|
|
1980
|
-
* @param {*} [options] Override http request option.
|
|
1981
|
-
* @throws {RequiredError}
|
|
1982
|
-
*/
|
|
1983
|
-
async conversationsGet(conversationId, options) {
|
|
1984
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsGet(conversationId, options);
|
|
1985
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _90 => _90.serverIndex]), () => ( 0));
|
|
1986
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _91 => _91["ConversationsApi.conversationsGet"], 'optionalAccess', _92 => _92[localVarOperationServerIndex], 'optionalAccess', _93 => _93.url]);
|
|
1987
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1988
|
-
},
|
|
1989
|
-
/**
|
|
1990
|
-
* List all conversations, must filter by contact_id
|
|
1991
|
-
* @summary Conversations List
|
|
1992
|
-
* @param {string | null} [searchString]
|
|
1993
|
-
* @param {string | null} [contactId]
|
|
1994
|
-
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
1995
|
-
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1996
|
-
* @param {number} [limit]
|
|
1997
|
-
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
1998
|
-
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
1999
|
-
* @param {string | null} [inboxId]
|
|
2000
|
-
* @param {*} [options] Override http request option.
|
|
2001
|
-
* @throws {RequiredError}
|
|
2002
|
-
*/
|
|
2003
|
-
async conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options) {
|
|
2004
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options);
|
|
2005
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _94 => _94.serverIndex]), () => ( 0));
|
|
2006
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _95 => _95["ConversationsApi.conversationsList"], 'optionalAccess', _96 => _96[localVarOperationServerIndex], 'optionalAccess', _97 => _97.url]);
|
|
2007
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2008
|
-
},
|
|
2009
|
-
/**
|
|
2010
|
-
* Conversations Update
|
|
2011
|
-
* @summary Conversations Update
|
|
2012
|
-
* @param {string} conversationId
|
|
2013
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
2014
|
-
* @param {*} [options] Override http request option.
|
|
2015
|
-
* @throws {RequiredError}
|
|
2016
|
-
*/
|
|
2017
|
-
async conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
2018
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsUpdate(conversationId, aPIConversationUpdate, options);
|
|
2019
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _98 => _98.serverIndex]), () => ( 0));
|
|
2020
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _99 => _99["ConversationsApi.conversationsUpdate"], 'optionalAccess', _100 => _100[localVarOperationServerIndex], 'optionalAccess', _101 => _101.url]);
|
|
2021
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2022
|
-
},
|
|
2023
1866
|
/**
|
|
2024
1867
|
* Messages Create
|
|
2025
1868
|
* @summary Messages Create
|
|
@@ -2030,8 +1873,8 @@ var ConversationsApiFp = function(configuration) {
|
|
|
2030
1873
|
*/
|
|
2031
1874
|
async messagesCreate(conversationId, messagecreate, options) {
|
|
2032
1875
|
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesCreate(conversationId, messagecreate, options);
|
|
2033
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2034
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1876
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _90 => _90.serverIndex]), () => ( 0));
|
|
1877
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _91 => _91["ConversationsApi.messagesCreate"], 'optionalAccess', _92 => _92[localVarOperationServerIndex], 'optionalAccess', _93 => _93.url]);
|
|
2035
1878
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2036
1879
|
},
|
|
2037
1880
|
/**
|
|
@@ -2043,8 +1886,8 @@ var ConversationsApiFp = function(configuration) {
|
|
|
2043
1886
|
*/
|
|
2044
1887
|
async messagesGet(messageId, options) {
|
|
2045
1888
|
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesGet(messageId, options);
|
|
2046
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2047
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1889
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _94 => _94.serverIndex]), () => ( 0));
|
|
1890
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _95 => _95["ConversationsApi.messagesGet"], 'optionalAccess', _96 => _96[localVarOperationServerIndex], 'optionalAccess', _97 => _97.url]);
|
|
2048
1891
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2049
1892
|
},
|
|
2050
1893
|
/**
|
|
@@ -2066,8 +1909,8 @@ var ConversationsApiFp = function(configuration) {
|
|
|
2066
1909
|
*/
|
|
2067
1910
|
async messagesList(conversationId, searchString, sentAtAfter, sentAtBefore, scheduledAtAfter, scheduledAtBefore, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
2068
1911
|
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesList(conversationId, searchString, sentAtAfter, sentAtBefore, scheduledAtAfter, scheduledAtBefore, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
2069
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2070
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
1912
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _98 => _98.serverIndex]), () => ( 0));
|
|
1913
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _99 => _99["ConversationsApi.messagesList"], 'optionalAccess', _100 => _100[localVarOperationServerIndex], 'optionalAccess', _101 => _101.url]);
|
|
2071
1914
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2072
1915
|
}
|
|
2073
1916
|
};
|
|
@@ -2075,44 +1918,6 @@ var ConversationsApiFp = function(configuration) {
|
|
|
2075
1918
|
var ConversationsApiFactory = function(configuration, basePath, axios) {
|
|
2076
1919
|
const localVarFp = ConversationsApiFp(configuration);
|
|
2077
1920
|
return {
|
|
2078
|
-
/**
|
|
2079
|
-
* Conversations Get
|
|
2080
|
-
* @summary Conversations Get
|
|
2081
|
-
* @param {string} conversationId
|
|
2082
|
-
* @param {*} [options] Override http request option.
|
|
2083
|
-
* @throws {RequiredError}
|
|
2084
|
-
*/
|
|
2085
|
-
conversationsGet(conversationId, options) {
|
|
2086
|
-
return localVarFp.conversationsGet(conversationId, options).then((request) => request(axios, basePath));
|
|
2087
|
-
},
|
|
2088
|
-
/**
|
|
2089
|
-
* List all conversations, must filter by contact_id
|
|
2090
|
-
* @summary Conversations List
|
|
2091
|
-
* @param {string | null} [searchString]
|
|
2092
|
-
* @param {string | null} [contactId]
|
|
2093
|
-
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
2094
|
-
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2095
|
-
* @param {number} [limit]
|
|
2096
|
-
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
2097
|
-
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
2098
|
-
* @param {string | null} [inboxId]
|
|
2099
|
-
* @param {*} [options] Override http request option.
|
|
2100
|
-
* @throws {RequiredError}
|
|
2101
|
-
*/
|
|
2102
|
-
conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options) {
|
|
2103
|
-
return localVarFp.conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options).then((request) => request(axios, basePath));
|
|
2104
|
-
},
|
|
2105
|
-
/**
|
|
2106
|
-
* Conversations Update
|
|
2107
|
-
* @summary Conversations Update
|
|
2108
|
-
* @param {string} conversationId
|
|
2109
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
2110
|
-
* @param {*} [options] Override http request option.
|
|
2111
|
-
* @throws {RequiredError}
|
|
2112
|
-
*/
|
|
2113
|
-
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
2114
|
-
return localVarFp.conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(axios, basePath));
|
|
2115
|
-
},
|
|
2116
1921
|
/**
|
|
2117
1922
|
* Messages Create
|
|
2118
1923
|
* @summary Messages Create
|
|
@@ -2157,47 +1962,6 @@ var ConversationsApiFactory = function(configuration, basePath, axios) {
|
|
|
2157
1962
|
};
|
|
2158
1963
|
};
|
|
2159
1964
|
var ConversationsApi = class extends BaseAPI {
|
|
2160
|
-
/**
|
|
2161
|
-
* Conversations Get
|
|
2162
|
-
* @summary Conversations Get
|
|
2163
|
-
* @param {string} conversationId
|
|
2164
|
-
* @param {*} [options] Override http request option.
|
|
2165
|
-
* @throws {RequiredError}
|
|
2166
|
-
* @memberof ConversationsApi
|
|
2167
|
-
*/
|
|
2168
|
-
conversationsGet(conversationId, options) {
|
|
2169
|
-
return ConversationsApiFp(this.configuration).conversationsGet(conversationId, options).then((request) => request(this.axios, this.basePath));
|
|
2170
|
-
}
|
|
2171
|
-
/**
|
|
2172
|
-
* List all conversations, must filter by contact_id
|
|
2173
|
-
* @summary Conversations List
|
|
2174
|
-
* @param {string | null} [searchString]
|
|
2175
|
-
* @param {string | null} [contactId]
|
|
2176
|
-
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
2177
|
-
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2178
|
-
* @param {number} [limit]
|
|
2179
|
-
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
2180
|
-
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
2181
|
-
* @param {string | null} [inboxId]
|
|
2182
|
-
* @param {*} [options] Override http request option.
|
|
2183
|
-
* @throws {RequiredError}
|
|
2184
|
-
* @memberof ConversationsApi
|
|
2185
|
-
*/
|
|
2186
|
-
conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options) {
|
|
2187
|
-
return ConversationsApiFp(this.configuration).conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options).then((request) => request(this.axios, this.basePath));
|
|
2188
|
-
}
|
|
2189
|
-
/**
|
|
2190
|
-
* Conversations Update
|
|
2191
|
-
* @summary Conversations Update
|
|
2192
|
-
* @param {string} conversationId
|
|
2193
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
2194
|
-
* @param {*} [options] Override http request option.
|
|
2195
|
-
* @throws {RequiredError}
|
|
2196
|
-
* @memberof ConversationsApi
|
|
2197
|
-
*/
|
|
2198
|
-
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
2199
|
-
return ConversationsApiFp(this.configuration).conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
2200
|
-
}
|
|
2201
1965
|
/**
|
|
2202
1966
|
* Messages Create
|
|
2203
1967
|
* @summary Messages Create
|
|
@@ -2254,7 +2018,7 @@ var HostawayApiAxiosParamCreator = function(configuration) {
|
|
|
2254
2018
|
*/
|
|
2255
2019
|
webhook: async (body, options = {}) => {
|
|
2256
2020
|
assertParamExists("webhook", "body", body);
|
|
2257
|
-
const localVarPath = `/
|
|
2021
|
+
const localVarPath = `/hostaway-unified-webhooks`;
|
|
2258
2022
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2259
2023
|
let baseOptions;
|
|
2260
2024
|
if (configuration) {
|
|
@@ -2288,8 +2052,8 @@ var HostawayApiFp = function(configuration) {
|
|
|
2288
2052
|
*/
|
|
2289
2053
|
async webhook(body, options) {
|
|
2290
2054
|
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(body, options);
|
|
2291
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2292
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2055
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _102 => _102.serverIndex]), () => ( 0));
|
|
2056
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _103 => _103["HostawayApi.webhook"], 'optionalAccess', _104 => _104[localVarOperationServerIndex], 'optionalAccess', _105 => _105.url]);
|
|
2293
2057
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2294
2058
|
}
|
|
2295
2059
|
};
|
|
@@ -2324,6 +2088,148 @@ var HostawayApi = class extends BaseAPI {
|
|
|
2324
2088
|
};
|
|
2325
2089
|
var InboxesApiAxiosParamCreator = function(configuration) {
|
|
2326
2090
|
return {
|
|
2091
|
+
/**
|
|
2092
|
+
* Conversations Create
|
|
2093
|
+
* @summary Conversations Create
|
|
2094
|
+
* @param {string} inboxId
|
|
2095
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
2096
|
+
* @param {*} [options] Override http request option.
|
|
2097
|
+
* @throws {RequiredError}
|
|
2098
|
+
*/
|
|
2099
|
+
conversationsCreate: async (inboxId, aPIConversationCreate, options = {}) => {
|
|
2100
|
+
assertParamExists("conversationsCreate", "inboxId", inboxId);
|
|
2101
|
+
assertParamExists("conversationsCreate", "aPIConversationCreate", aPIConversationCreate);
|
|
2102
|
+
const localVarPath = `/v1/inboxes/{inboxId}/conversations`.replace(`{${"inboxId"}}`, encodeURIComponent(String(inboxId)));
|
|
2103
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2104
|
+
let baseOptions;
|
|
2105
|
+
if (configuration) {
|
|
2106
|
+
baseOptions = configuration.baseOptions;
|
|
2107
|
+
}
|
|
2108
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
2109
|
+
const localVarHeaderParameter = {};
|
|
2110
|
+
const localVarQueryParameter = {};
|
|
2111
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2112
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2113
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2114
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2115
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationCreate, localVarRequestOptions, configuration);
|
|
2116
|
+
return {
|
|
2117
|
+
url: toPathString(localVarUrlObj),
|
|
2118
|
+
options: localVarRequestOptions
|
|
2119
|
+
};
|
|
2120
|
+
},
|
|
2121
|
+
/**
|
|
2122
|
+
* Conversations Get
|
|
2123
|
+
* @summary Conversations Get
|
|
2124
|
+
* @param {string} conversationId
|
|
2125
|
+
* @param {*} [options] Override http request option.
|
|
2126
|
+
* @throws {RequiredError}
|
|
2127
|
+
*/
|
|
2128
|
+
conversationsGet: async (conversationId, options = {}) => {
|
|
2129
|
+
assertParamExists("conversationsGet", "conversationId", conversationId);
|
|
2130
|
+
const localVarPath = `/v1/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
2131
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2132
|
+
let baseOptions;
|
|
2133
|
+
if (configuration) {
|
|
2134
|
+
baseOptions = configuration.baseOptions;
|
|
2135
|
+
}
|
|
2136
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
2137
|
+
const localVarHeaderParameter = {};
|
|
2138
|
+
const localVarQueryParameter = {};
|
|
2139
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2140
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2141
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2142
|
+
return {
|
|
2143
|
+
url: toPathString(localVarUrlObj),
|
|
2144
|
+
options: localVarRequestOptions
|
|
2145
|
+
};
|
|
2146
|
+
},
|
|
2147
|
+
/**
|
|
2148
|
+
* List all conversations, must filter by contact_id
|
|
2149
|
+
* @summary Conversations List
|
|
2150
|
+
* @param {string | null} [searchString]
|
|
2151
|
+
* @param {string | null} [contactId]
|
|
2152
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
2153
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2154
|
+
* @param {number} [limit]
|
|
2155
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
2156
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
2157
|
+
* @param {string | null} [inboxId]
|
|
2158
|
+
* @param {*} [options] Override http request option.
|
|
2159
|
+
* @throws {RequiredError}
|
|
2160
|
+
*/
|
|
2161
|
+
conversationsList: async (searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options = {}) => {
|
|
2162
|
+
const localVarPath = `/v1/conversations`;
|
|
2163
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2164
|
+
let baseOptions;
|
|
2165
|
+
if (configuration) {
|
|
2166
|
+
baseOptions = configuration.baseOptions;
|
|
2167
|
+
}
|
|
2168
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
2169
|
+
const localVarHeaderParameter = {};
|
|
2170
|
+
const localVarQueryParameter = {};
|
|
2171
|
+
if (searchString !== void 0) {
|
|
2172
|
+
localVarQueryParameter["searchString"] = searchString;
|
|
2173
|
+
}
|
|
2174
|
+
if (contactId !== void 0) {
|
|
2175
|
+
localVarQueryParameter["contactId"] = contactId;
|
|
2176
|
+
}
|
|
2177
|
+
if (status) {
|
|
2178
|
+
localVarQueryParameter["status"] = status;
|
|
2179
|
+
}
|
|
2180
|
+
if (cursor !== void 0) {
|
|
2181
|
+
localVarQueryParameter["cursor"] = cursor;
|
|
2182
|
+
}
|
|
2183
|
+
if (limit !== void 0) {
|
|
2184
|
+
localVarQueryParameter["limit"] = limit;
|
|
2185
|
+
}
|
|
2186
|
+
if (pageDir !== void 0) {
|
|
2187
|
+
localVarQueryParameter["pageDir"] = pageDir;
|
|
2188
|
+
}
|
|
2189
|
+
if (sortOrder !== void 0) {
|
|
2190
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
2191
|
+
}
|
|
2192
|
+
if (inboxId !== void 0) {
|
|
2193
|
+
localVarQueryParameter["inboxId"] = inboxId;
|
|
2194
|
+
}
|
|
2195
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2196
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2197
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2198
|
+
return {
|
|
2199
|
+
url: toPathString(localVarUrlObj),
|
|
2200
|
+
options: localVarRequestOptions
|
|
2201
|
+
};
|
|
2202
|
+
},
|
|
2203
|
+
/**
|
|
2204
|
+
* Conversations Update
|
|
2205
|
+
* @summary Conversations Update
|
|
2206
|
+
* @param {string} conversationId
|
|
2207
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
2208
|
+
* @param {*} [options] Override http request option.
|
|
2209
|
+
* @throws {RequiredError}
|
|
2210
|
+
*/
|
|
2211
|
+
conversationsUpdate: async (conversationId, aPIConversationUpdate, options = {}) => {
|
|
2212
|
+
assertParamExists("conversationsUpdate", "conversationId", conversationId);
|
|
2213
|
+
assertParamExists("conversationsUpdate", "aPIConversationUpdate", aPIConversationUpdate);
|
|
2214
|
+
const localVarPath = `/v1/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
2215
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2216
|
+
let baseOptions;
|
|
2217
|
+
if (configuration) {
|
|
2218
|
+
baseOptions = configuration.baseOptions;
|
|
2219
|
+
}
|
|
2220
|
+
const localVarRequestOptions = { method: "PATCH", ...baseOptions, ...options };
|
|
2221
|
+
const localVarHeaderParameter = {};
|
|
2222
|
+
const localVarQueryParameter = {};
|
|
2223
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2224
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2225
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2226
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2227
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationUpdate, localVarRequestOptions, configuration);
|
|
2228
|
+
return {
|
|
2229
|
+
url: toPathString(localVarUrlObj),
|
|
2230
|
+
options: localVarRequestOptions
|
|
2231
|
+
};
|
|
2232
|
+
},
|
|
2327
2233
|
/**
|
|
2328
2234
|
* Inboxes List
|
|
2329
2235
|
* @summary Inboxes List
|
|
@@ -2353,6 +2259,67 @@ var InboxesApiAxiosParamCreator = function(configuration) {
|
|
|
2353
2259
|
var InboxesApiFp = function(configuration) {
|
|
2354
2260
|
const localVarAxiosParamCreator = InboxesApiAxiosParamCreator(configuration);
|
|
2355
2261
|
return {
|
|
2262
|
+
/**
|
|
2263
|
+
* Conversations Create
|
|
2264
|
+
* @summary Conversations Create
|
|
2265
|
+
* @param {string} inboxId
|
|
2266
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
2267
|
+
* @param {*} [options] Override http request option.
|
|
2268
|
+
* @throws {RequiredError}
|
|
2269
|
+
*/
|
|
2270
|
+
async conversationsCreate(inboxId, aPIConversationCreate, options) {
|
|
2271
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsCreate(inboxId, aPIConversationCreate, options);
|
|
2272
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _106 => _106.serverIndex]), () => ( 0));
|
|
2273
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _107 => _107["InboxesApi.conversationsCreate"], 'optionalAccess', _108 => _108[localVarOperationServerIndex], 'optionalAccess', _109 => _109.url]);
|
|
2274
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2275
|
+
},
|
|
2276
|
+
/**
|
|
2277
|
+
* Conversations Get
|
|
2278
|
+
* @summary Conversations Get
|
|
2279
|
+
* @param {string} conversationId
|
|
2280
|
+
* @param {*} [options] Override http request option.
|
|
2281
|
+
* @throws {RequiredError}
|
|
2282
|
+
*/
|
|
2283
|
+
async conversationsGet(conversationId, options) {
|
|
2284
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsGet(conversationId, options);
|
|
2285
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _110 => _110.serverIndex]), () => ( 0));
|
|
2286
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _111 => _111["InboxesApi.conversationsGet"], 'optionalAccess', _112 => _112[localVarOperationServerIndex], 'optionalAccess', _113 => _113.url]);
|
|
2287
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2288
|
+
},
|
|
2289
|
+
/**
|
|
2290
|
+
* List all conversations, must filter by contact_id
|
|
2291
|
+
* @summary Conversations List
|
|
2292
|
+
* @param {string | null} [searchString]
|
|
2293
|
+
* @param {string | null} [contactId]
|
|
2294
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
2295
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2296
|
+
* @param {number} [limit]
|
|
2297
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
2298
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
2299
|
+
* @param {string | null} [inboxId]
|
|
2300
|
+
* @param {*} [options] Override http request option.
|
|
2301
|
+
* @throws {RequiredError}
|
|
2302
|
+
*/
|
|
2303
|
+
async conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options) {
|
|
2304
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options);
|
|
2305
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _114 => _114.serverIndex]), () => ( 0));
|
|
2306
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _115 => _115["InboxesApi.conversationsList"], 'optionalAccess', _116 => _116[localVarOperationServerIndex], 'optionalAccess', _117 => _117.url]);
|
|
2307
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2308
|
+
},
|
|
2309
|
+
/**
|
|
2310
|
+
* Conversations Update
|
|
2311
|
+
* @summary Conversations Update
|
|
2312
|
+
* @param {string} conversationId
|
|
2313
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
2314
|
+
* @param {*} [options] Override http request option.
|
|
2315
|
+
* @throws {RequiredError}
|
|
2316
|
+
*/
|
|
2317
|
+
async conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
2318
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsUpdate(conversationId, aPIConversationUpdate, options);
|
|
2319
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _118 => _118.serverIndex]), () => ( 0));
|
|
2320
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _119 => _119["InboxesApi.conversationsUpdate"], 'optionalAccess', _120 => _120[localVarOperationServerIndex], 'optionalAccess', _121 => _121.url]);
|
|
2321
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2322
|
+
},
|
|
2356
2323
|
/**
|
|
2357
2324
|
* Inboxes List
|
|
2358
2325
|
* @summary Inboxes List
|
|
@@ -2361,8 +2328,8 @@ var InboxesApiFp = function(configuration) {
|
|
|
2361
2328
|
*/
|
|
2362
2329
|
async inboxesList(options) {
|
|
2363
2330
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inboxesList(options);
|
|
2364
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2365
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2331
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _122 => _122.serverIndex]), () => ( 0));
|
|
2332
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _123 => _123["InboxesApi.inboxesList"], 'optionalAccess', _124 => _124[localVarOperationServerIndex], 'optionalAccess', _125 => _125.url]);
|
|
2366
2333
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2367
2334
|
}
|
|
2368
2335
|
};
|
|
@@ -2370,6 +2337,55 @@ var InboxesApiFp = function(configuration) {
|
|
|
2370
2337
|
var InboxesApiFactory = function(configuration, basePath, axios) {
|
|
2371
2338
|
const localVarFp = InboxesApiFp(configuration);
|
|
2372
2339
|
return {
|
|
2340
|
+
/**
|
|
2341
|
+
* Conversations Create
|
|
2342
|
+
* @summary Conversations Create
|
|
2343
|
+
* @param {string} inboxId
|
|
2344
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
2345
|
+
* @param {*} [options] Override http request option.
|
|
2346
|
+
* @throws {RequiredError}
|
|
2347
|
+
*/
|
|
2348
|
+
conversationsCreate(inboxId, aPIConversationCreate, options) {
|
|
2349
|
+
return localVarFp.conversationsCreate(inboxId, aPIConversationCreate, options).then((request) => request(axios, basePath));
|
|
2350
|
+
},
|
|
2351
|
+
/**
|
|
2352
|
+
* Conversations Get
|
|
2353
|
+
* @summary Conversations Get
|
|
2354
|
+
* @param {string} conversationId
|
|
2355
|
+
* @param {*} [options] Override http request option.
|
|
2356
|
+
* @throws {RequiredError}
|
|
2357
|
+
*/
|
|
2358
|
+
conversationsGet(conversationId, options) {
|
|
2359
|
+
return localVarFp.conversationsGet(conversationId, options).then((request) => request(axios, basePath));
|
|
2360
|
+
},
|
|
2361
|
+
/**
|
|
2362
|
+
* List all conversations, must filter by contact_id
|
|
2363
|
+
* @summary Conversations List
|
|
2364
|
+
* @param {string | null} [searchString]
|
|
2365
|
+
* @param {string | null} [contactId]
|
|
2366
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
2367
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2368
|
+
* @param {number} [limit]
|
|
2369
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
2370
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
2371
|
+
* @param {string | null} [inboxId]
|
|
2372
|
+
* @param {*} [options] Override http request option.
|
|
2373
|
+
* @throws {RequiredError}
|
|
2374
|
+
*/
|
|
2375
|
+
conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options) {
|
|
2376
|
+
return localVarFp.conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options).then((request) => request(axios, basePath));
|
|
2377
|
+
},
|
|
2378
|
+
/**
|
|
2379
|
+
* Conversations Update
|
|
2380
|
+
* @summary Conversations Update
|
|
2381
|
+
* @param {string} conversationId
|
|
2382
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
2383
|
+
* @param {*} [options] Override http request option.
|
|
2384
|
+
* @throws {RequiredError}
|
|
2385
|
+
*/
|
|
2386
|
+
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
2387
|
+
return localVarFp.conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(axios, basePath));
|
|
2388
|
+
},
|
|
2373
2389
|
/**
|
|
2374
2390
|
* Inboxes List
|
|
2375
2391
|
* @summary Inboxes List
|
|
@@ -2382,6 +2398,59 @@ var InboxesApiFactory = function(configuration, basePath, axios) {
|
|
|
2382
2398
|
};
|
|
2383
2399
|
};
|
|
2384
2400
|
var InboxesApi = class extends BaseAPI {
|
|
2401
|
+
/**
|
|
2402
|
+
* Conversations Create
|
|
2403
|
+
* @summary Conversations Create
|
|
2404
|
+
* @param {string} inboxId
|
|
2405
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
2406
|
+
* @param {*} [options] Override http request option.
|
|
2407
|
+
* @throws {RequiredError}
|
|
2408
|
+
* @memberof InboxesApi
|
|
2409
|
+
*/
|
|
2410
|
+
conversationsCreate(inboxId, aPIConversationCreate, options) {
|
|
2411
|
+
return InboxesApiFp(this.configuration).conversationsCreate(inboxId, aPIConversationCreate, options).then((request) => request(this.axios, this.basePath));
|
|
2412
|
+
}
|
|
2413
|
+
/**
|
|
2414
|
+
* Conversations Get
|
|
2415
|
+
* @summary Conversations Get
|
|
2416
|
+
* @param {string} conversationId
|
|
2417
|
+
* @param {*} [options] Override http request option.
|
|
2418
|
+
* @throws {RequiredError}
|
|
2419
|
+
* @memberof InboxesApi
|
|
2420
|
+
*/
|
|
2421
|
+
conversationsGet(conversationId, options) {
|
|
2422
|
+
return InboxesApiFp(this.configuration).conversationsGet(conversationId, options).then((request) => request(this.axios, this.basePath));
|
|
2423
|
+
}
|
|
2424
|
+
/**
|
|
2425
|
+
* List all conversations, must filter by contact_id
|
|
2426
|
+
* @summary Conversations List
|
|
2427
|
+
* @param {string | null} [searchString]
|
|
2428
|
+
* @param {string | null} [contactId]
|
|
2429
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
2430
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2431
|
+
* @param {number} [limit]
|
|
2432
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
2433
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
2434
|
+
* @param {string | null} [inboxId]
|
|
2435
|
+
* @param {*} [options] Override http request option.
|
|
2436
|
+
* @throws {RequiredError}
|
|
2437
|
+
* @memberof InboxesApi
|
|
2438
|
+
*/
|
|
2439
|
+
conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options) {
|
|
2440
|
+
return InboxesApiFp(this.configuration).conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options).then((request) => request(this.axios, this.basePath));
|
|
2441
|
+
}
|
|
2442
|
+
/**
|
|
2443
|
+
* Conversations Update
|
|
2444
|
+
* @summary Conversations Update
|
|
2445
|
+
* @param {string} conversationId
|
|
2446
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
2447
|
+
* @param {*} [options] Override http request option.
|
|
2448
|
+
* @throws {RequiredError}
|
|
2449
|
+
* @memberof InboxesApi
|
|
2450
|
+
*/
|
|
2451
|
+
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
2452
|
+
return InboxesApiFp(this.configuration).conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
2453
|
+
}
|
|
2385
2454
|
/**
|
|
2386
2455
|
* Inboxes List
|
|
2387
2456
|
* @summary Inboxes List
|
|
@@ -2437,8 +2506,8 @@ var InquiriesApiFp = function(configuration) {
|
|
|
2437
2506
|
*/
|
|
2438
2507
|
async inquiriesList(contactId, options) {
|
|
2439
2508
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inquiriesList(contactId, options);
|
|
2440
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2441
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2509
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _126 => _126.serverIndex]), () => ( 0));
|
|
2510
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _127 => _127["InquiriesApi.inquiriesList"], 'optionalAccess', _128 => _128[localVarOperationServerIndex], 'optionalAccess', _129 => _129.url]);
|
|
2442
2511
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2443
2512
|
}
|
|
2444
2513
|
};
|
|
@@ -2565,8 +2634,8 @@ var ListingsApiFp = function(configuration) {
|
|
|
2565
2634
|
*/
|
|
2566
2635
|
async listingsGet(listingId, options) {
|
|
2567
2636
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listingsGet(listingId, options);
|
|
2568
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2569
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2637
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _130 => _130.serverIndex]), () => ( 0));
|
|
2638
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _131 => _131["ListingsApi.listingsGet"], 'optionalAccess', _132 => _132[localVarOperationServerIndex], 'optionalAccess', _133 => _133.url]);
|
|
2570
2639
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2571
2640
|
},
|
|
2572
2641
|
/**
|
|
@@ -2584,8 +2653,8 @@ var ListingsApiFp = function(configuration) {
|
|
|
2584
2653
|
*/
|
|
2585
2654
|
async listingsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
2586
2655
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listingsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
2587
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2588
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2656
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _134 => _134.serverIndex]), () => ( 0));
|
|
2657
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _135 => _135["ListingsApi.listingsList"], 'optionalAccess', _136 => _136[localVarOperationServerIndex], 'optionalAccess', _137 => _137.url]);
|
|
2589
2658
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2590
2659
|
}
|
|
2591
2660
|
};
|
|
@@ -2690,8 +2759,8 @@ var ManagedPhoneNumbersApiFp = function(configuration) {
|
|
|
2690
2759
|
*/
|
|
2691
2760
|
async managedPhoneNumbersList(options) {
|
|
2692
2761
|
const localVarAxiosArgs = await localVarAxiosParamCreator.managedPhoneNumbersList(options);
|
|
2693
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2694
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2762
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _138 => _138.serverIndex]), () => ( 0));
|
|
2763
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _139 => _139["ManagedPhoneNumbersApi.managedPhoneNumbersList"], 'optionalAccess', _140 => _140[localVarOperationServerIndex], 'optionalAccess', _141 => _141.url]);
|
|
2695
2764
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2696
2765
|
}
|
|
2697
2766
|
};
|
|
@@ -2846,8 +2915,8 @@ var ProvidersApiFp = function(configuration) {
|
|
|
2846
2915
|
*/
|
|
2847
2916
|
async providersCreate(aPIProviderCreate, options) {
|
|
2848
2917
|
const localVarAxiosArgs = await localVarAxiosParamCreator.providersCreate(aPIProviderCreate, options);
|
|
2849
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2850
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2918
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _142 => _142.serverIndex]), () => ( 0));
|
|
2919
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _143 => _143["ProvidersApi.providersCreate"], 'optionalAccess', _144 => _144[localVarOperationServerIndex], 'optionalAccess', _145 => _145.url]);
|
|
2851
2920
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2852
2921
|
},
|
|
2853
2922
|
/**
|
|
@@ -2859,8 +2928,8 @@ var ProvidersApiFp = function(configuration) {
|
|
|
2859
2928
|
*/
|
|
2860
2929
|
async providersGet(providerId, options) {
|
|
2861
2930
|
const localVarAxiosArgs = await localVarAxiosParamCreator.providersGet(providerId, options);
|
|
2862
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2863
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2931
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _146 => _146.serverIndex]), () => ( 0));
|
|
2932
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _147 => _147["ProvidersApi.providersGet"], 'optionalAccess', _148 => _148[localVarOperationServerIndex], 'optionalAccess', _149 => _149.url]);
|
|
2864
2933
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2865
2934
|
},
|
|
2866
2935
|
/**
|
|
@@ -2871,8 +2940,8 @@ var ProvidersApiFp = function(configuration) {
|
|
|
2871
2940
|
*/
|
|
2872
2941
|
async providersList(options) {
|
|
2873
2942
|
const localVarAxiosArgs = await localVarAxiosParamCreator.providersList(options);
|
|
2874
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2875
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2943
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _150 => _150.serverIndex]), () => ( 0));
|
|
2944
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _151 => _151["ProvidersApi.providersList"], 'optionalAccess', _152 => _152[localVarOperationServerIndex], 'optionalAccess', _153 => _153.url]);
|
|
2876
2945
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2877
2946
|
},
|
|
2878
2947
|
/**
|
|
@@ -2885,8 +2954,8 @@ var ProvidersApiFp = function(configuration) {
|
|
|
2885
2954
|
*/
|
|
2886
2955
|
async providersUpdate(providerId, aPIProviderUpdate, options) {
|
|
2887
2956
|
const localVarAxiosArgs = await localVarAxiosParamCreator.providersUpdate(providerId, aPIProviderUpdate, options);
|
|
2888
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
2889
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
2957
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _154 => _154.serverIndex]), () => ( 0));
|
|
2958
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _155 => _155["ProvidersApi.providersUpdate"], 'optionalAccess', _156 => _156[localVarOperationServerIndex], 'optionalAccess', _157 => _157.url]);
|
|
2890
2959
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2891
2960
|
}
|
|
2892
2961
|
};
|
|
@@ -3076,8 +3145,8 @@ var ReservationsApiFp = function(configuration) {
|
|
|
3076
3145
|
*/
|
|
3077
3146
|
async reservationsGet(reservationId, options) {
|
|
3078
3147
|
const localVarAxiosArgs = await localVarAxiosParamCreator.reservationsGet(reservationId, options);
|
|
3079
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3080
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3148
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _158 => _158.serverIndex]), () => ( 0));
|
|
3149
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _159 => _159["ReservationsApi.reservationsGet"], 'optionalAccess', _160 => _160[localVarOperationServerIndex], 'optionalAccess', _161 => _161.url]);
|
|
3081
3150
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3082
3151
|
},
|
|
3083
3152
|
/**
|
|
@@ -3095,8 +3164,8 @@ var ReservationsApiFp = function(configuration) {
|
|
|
3095
3164
|
*/
|
|
3096
3165
|
async reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
3097
3166
|
const localVarAxiosArgs = await localVarAxiosParamCreator.reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
3098
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
3099
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
3167
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _162 => _162.serverIndex]), () => ( 0));
|
|
3168
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _163 => _163["ReservationsApi.reservationsList"], 'optionalAccess', _164 => _164[localVarOperationServerIndex], 'optionalAccess', _165 => _165.url]);
|
|
3100
3169
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3101
3170
|
}
|
|
3102
3171
|
};
|
|
@@ -3162,6 +3231,84 @@ var ReservationsApi = class extends BaseAPI {
|
|
|
3162
3231
|
return ReservationsApiFp(this.configuration).reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
3163
3232
|
}
|
|
3164
3233
|
};
|
|
3234
|
+
var TelnyxApiAxiosParamCreator = function(configuration) {
|
|
3235
|
+
return {
|
|
3236
|
+
/**
|
|
3237
|
+
*
|
|
3238
|
+
* @summary Telnyx Webhook
|
|
3239
|
+
* @param {{ [key: string]: any; }} requestBody
|
|
3240
|
+
* @param {*} [options] Override http request option.
|
|
3241
|
+
* @throws {RequiredError}
|
|
3242
|
+
*/
|
|
3243
|
+
telnyxWebhookTelnyxWebhooksPost: async (requestBody, options = {}) => {
|
|
3244
|
+
assertParamExists("telnyxWebhookTelnyxWebhooksPost", "requestBody", requestBody);
|
|
3245
|
+
const localVarPath = `/telnyx-webhooks`;
|
|
3246
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3247
|
+
let baseOptions;
|
|
3248
|
+
if (configuration) {
|
|
3249
|
+
baseOptions = configuration.baseOptions;
|
|
3250
|
+
}
|
|
3251
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
3252
|
+
const localVarHeaderParameter = {};
|
|
3253
|
+
const localVarQueryParameter = {};
|
|
3254
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3255
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3256
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3257
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3258
|
+
localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration);
|
|
3259
|
+
return {
|
|
3260
|
+
url: toPathString(localVarUrlObj),
|
|
3261
|
+
options: localVarRequestOptions
|
|
3262
|
+
};
|
|
3263
|
+
}
|
|
3264
|
+
};
|
|
3265
|
+
};
|
|
3266
|
+
var TelnyxApiFp = function(configuration) {
|
|
3267
|
+
const localVarAxiosParamCreator = TelnyxApiAxiosParamCreator(configuration);
|
|
3268
|
+
return {
|
|
3269
|
+
/**
|
|
3270
|
+
*
|
|
3271
|
+
* @summary Telnyx Webhook
|
|
3272
|
+
* @param {{ [key: string]: any; }} requestBody
|
|
3273
|
+
* @param {*} [options] Override http request option.
|
|
3274
|
+
* @throws {RequiredError}
|
|
3275
|
+
*/
|
|
3276
|
+
async telnyxWebhookTelnyxWebhooksPost(requestBody, options) {
|
|
3277
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.telnyxWebhookTelnyxWebhooksPost(requestBody, options);
|
|
3278
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _166 => _166.serverIndex]), () => ( 0));
|
|
3279
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _167 => _167["TelnyxApi.telnyxWebhookTelnyxWebhooksPost"], 'optionalAccess', _168 => _168[localVarOperationServerIndex], 'optionalAccess', _169 => _169.url]);
|
|
3280
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3281
|
+
}
|
|
3282
|
+
};
|
|
3283
|
+
};
|
|
3284
|
+
var TelnyxApiFactory = function(configuration, basePath, axios) {
|
|
3285
|
+
const localVarFp = TelnyxApiFp(configuration);
|
|
3286
|
+
return {
|
|
3287
|
+
/**
|
|
3288
|
+
*
|
|
3289
|
+
* @summary Telnyx Webhook
|
|
3290
|
+
* @param {{ [key: string]: any; }} requestBody
|
|
3291
|
+
* @param {*} [options] Override http request option.
|
|
3292
|
+
* @throws {RequiredError}
|
|
3293
|
+
*/
|
|
3294
|
+
telnyxWebhookTelnyxWebhooksPost(requestBody, options) {
|
|
3295
|
+
return localVarFp.telnyxWebhookTelnyxWebhooksPost(requestBody, options).then((request) => request(axios, basePath));
|
|
3296
|
+
}
|
|
3297
|
+
};
|
|
3298
|
+
};
|
|
3299
|
+
var TelnyxApi = class extends BaseAPI {
|
|
3300
|
+
/**
|
|
3301
|
+
*
|
|
3302
|
+
* @summary Telnyx Webhook
|
|
3303
|
+
* @param {{ [key: string]: any; }} requestBody
|
|
3304
|
+
* @param {*} [options] Override http request option.
|
|
3305
|
+
* @throws {RequiredError}
|
|
3306
|
+
* @memberof TelnyxApi
|
|
3307
|
+
*/
|
|
3308
|
+
telnyxWebhookTelnyxWebhooksPost(requestBody, options) {
|
|
3309
|
+
return TelnyxApiFp(this.configuration).telnyxWebhookTelnyxWebhooksPost(requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
3310
|
+
}
|
|
3311
|
+
};
|
|
3165
3312
|
var UnboundApiAxiosParamCreator = function(configuration) {
|
|
3166
3313
|
return {
|
|
3167
3314
|
/**
|
|
@@ -3554,6 +3701,36 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3554
3701
|
options: localVarRequestOptions
|
|
3555
3702
|
};
|
|
3556
3703
|
},
|
|
3704
|
+
/**
|
|
3705
|
+
* Conversations Create
|
|
3706
|
+
* @summary Conversations Create
|
|
3707
|
+
* @param {string} inboxId
|
|
3708
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
3709
|
+
* @param {*} [options] Override http request option.
|
|
3710
|
+
* @throws {RequiredError}
|
|
3711
|
+
*/
|
|
3712
|
+
conversationsCreate: async (inboxId, aPIConversationCreate, options = {}) => {
|
|
3713
|
+
assertParamExists("conversationsCreate", "inboxId", inboxId);
|
|
3714
|
+
assertParamExists("conversationsCreate", "aPIConversationCreate", aPIConversationCreate);
|
|
3715
|
+
const localVarPath = `/v1/inboxes/{inboxId}/conversations`.replace(`{${"inboxId"}}`, encodeURIComponent(String(inboxId)));
|
|
3716
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3717
|
+
let baseOptions;
|
|
3718
|
+
if (configuration) {
|
|
3719
|
+
baseOptions = configuration.baseOptions;
|
|
3720
|
+
}
|
|
3721
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
3722
|
+
const localVarHeaderParameter = {};
|
|
3723
|
+
const localVarQueryParameter = {};
|
|
3724
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3725
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3726
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3727
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3728
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationCreate, localVarRequestOptions, configuration);
|
|
3729
|
+
return {
|
|
3730
|
+
url: toPathString(localVarUrlObj),
|
|
3731
|
+
options: localVarRequestOptions
|
|
3732
|
+
};
|
|
3733
|
+
},
|
|
3557
3734
|
/**
|
|
3558
3735
|
* Conversations Get
|
|
3559
3736
|
* @summary Conversations Get
|
|
@@ -4441,7 +4618,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
4441
4618
|
*/
|
|
4442
4619
|
webhook: async (body, options = {}) => {
|
|
4443
4620
|
assertParamExists("webhook", "body", body);
|
|
4444
|
-
const localVarPath = `/
|
|
4621
|
+
const localVarPath = `/hostaway-unified-webhooks`;
|
|
4445
4622
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4446
4623
|
let baseOptions;
|
|
4447
4624
|
if (configuration) {
|
|
@@ -4474,8 +4651,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4474
4651
|
*/
|
|
4475
4652
|
async accountsList(options) {
|
|
4476
4653
|
const localVarAxiosArgs = await localVarAxiosParamCreator.accountsList(options);
|
|
4477
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4478
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4654
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _170 => _170.serverIndex]), () => ( 0));
|
|
4655
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _171 => _171["UnboundApi.accountsList"], 'optionalAccess', _172 => _172[localVarOperationServerIndex], 'optionalAccess', _173 => _173.url]);
|
|
4479
4656
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4480
4657
|
},
|
|
4481
4658
|
/**
|
|
@@ -4488,8 +4665,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4488
4665
|
*/
|
|
4489
4666
|
async addressesCreate(contactId, aPIAddressCreate, options) {
|
|
4490
4667
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesCreate(contactId, aPIAddressCreate, options);
|
|
4491
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4492
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4668
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _174 => _174.serverIndex]), () => ( 0));
|
|
4669
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _175 => _175["UnboundApi.addressesCreate"], 'optionalAccess', _176 => _176[localVarOperationServerIndex], 'optionalAccess', _177 => _177.url]);
|
|
4493
4670
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4494
4671
|
},
|
|
4495
4672
|
/**
|
|
@@ -4501,8 +4678,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4501
4678
|
*/
|
|
4502
4679
|
async addressesDelete(addressId, options) {
|
|
4503
4680
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesDelete(addressId, options);
|
|
4504
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4505
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4681
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _178 => _178.serverIndex]), () => ( 0));
|
|
4682
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _179 => _179["UnboundApi.addressesDelete"], 'optionalAccess', _180 => _180[localVarOperationServerIndex], 'optionalAccess', _181 => _181.url]);
|
|
4506
4683
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4507
4684
|
},
|
|
4508
4685
|
/**
|
|
@@ -4514,8 +4691,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4514
4691
|
*/
|
|
4515
4692
|
async addressesGet(addressId, options) {
|
|
4516
4693
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesGet(addressId, options);
|
|
4517
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4518
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4694
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _182 => _182.serverIndex]), () => ( 0));
|
|
4695
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _183 => _183["UnboundApi.addressesGet"], 'optionalAccess', _184 => _184[localVarOperationServerIndex], 'optionalAccess', _185 => _185.url]);
|
|
4519
4696
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4520
4697
|
},
|
|
4521
4698
|
/**
|
|
@@ -4528,8 +4705,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4528
4705
|
*/
|
|
4529
4706
|
async addressesUpdate(addressId, aPIAddressUpdate, options) {
|
|
4530
4707
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addressesUpdate(addressId, aPIAddressUpdate, options);
|
|
4531
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4532
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4708
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _186 => _186.serverIndex]), () => ( 0));
|
|
4709
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _187 => _187["UnboundApi.addressesUpdate"], 'optionalAccess', _188 => _188[localVarOperationServerIndex], 'optionalAccess', _189 => _189.url]);
|
|
4533
4710
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4534
4711
|
},
|
|
4535
4712
|
/**
|
|
@@ -4543,8 +4720,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4543
4720
|
*/
|
|
4544
4721
|
async contactsAddListing(contactId, listingId, createContactListing, options) {
|
|
4545
4722
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsAddListing(contactId, listingId, createContactListing, options);
|
|
4546
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4547
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4723
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _190 => _190.serverIndex]), () => ( 0));
|
|
4724
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _191 => _191["UnboundApi.contactsAddListing"], 'optionalAccess', _192 => _192[localVarOperationServerIndex], 'optionalAccess', _193 => _193.url]);
|
|
4548
4725
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4549
4726
|
},
|
|
4550
4727
|
/**
|
|
@@ -4556,8 +4733,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4556
4733
|
*/
|
|
4557
4734
|
async contactsCreate(contactcreate, options) {
|
|
4558
4735
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsCreate(contactcreate, options);
|
|
4559
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4560
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4736
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _194 => _194.serverIndex]), () => ( 0));
|
|
4737
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _195 => _195["UnboundApi.contactsCreate"], 'optionalAccess', _196 => _196[localVarOperationServerIndex], 'optionalAccess', _197 => _197.url]);
|
|
4561
4738
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4562
4739
|
},
|
|
4563
4740
|
/**
|
|
@@ -4569,8 +4746,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4569
4746
|
*/
|
|
4570
4747
|
async contactsDelete(contactId, options) {
|
|
4571
4748
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsDelete(contactId, options);
|
|
4572
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4573
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4749
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _198 => _198.serverIndex]), () => ( 0));
|
|
4750
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _199 => _199["UnboundApi.contactsDelete"], 'optionalAccess', _200 => _200[localVarOperationServerIndex], 'optionalAccess', _201 => _201.url]);
|
|
4574
4751
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4575
4752
|
},
|
|
4576
4753
|
/**
|
|
@@ -4582,8 +4759,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4582
4759
|
*/
|
|
4583
4760
|
async contactsGet(contactId, options) {
|
|
4584
4761
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsGet(contactId, options);
|
|
4585
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4586
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4762
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _202 => _202.serverIndex]), () => ( 0));
|
|
4763
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _203 => _203["UnboundApi.contactsGet"], 'optionalAccess', _204 => _204[localVarOperationServerIndex], 'optionalAccess', _205 => _205.url]);
|
|
4587
4764
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4588
4765
|
},
|
|
4589
4766
|
/**
|
|
@@ -4600,8 +4777,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4600
4777
|
*/
|
|
4601
4778
|
async contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
4602
4779
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(searchString, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
4603
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4604
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4780
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _206 => _206.serverIndex]), () => ( 0));
|
|
4781
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _207 => _207["UnboundApi.contactsList"], 'optionalAccess', _208 => _208[localVarOperationServerIndex], 'optionalAccess', _209 => _209.url]);
|
|
4605
4782
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4606
4783
|
},
|
|
4607
4784
|
/**
|
|
@@ -4615,8 +4792,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4615
4792
|
*/
|
|
4616
4793
|
async contactsRemoveListing(contactId, listingId, deleteContactListing, options) {
|
|
4617
4794
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsRemoveListing(contactId, listingId, deleteContactListing, options);
|
|
4618
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4619
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4795
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _210 => _210.serverIndex]), () => ( 0));
|
|
4796
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _211 => _211["UnboundApi.contactsRemoveListing"], 'optionalAccess', _212 => _212[localVarOperationServerIndex], 'optionalAccess', _213 => _213.url]);
|
|
4620
4797
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4621
4798
|
},
|
|
4622
4799
|
/**
|
|
@@ -4629,8 +4806,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4629
4806
|
*/
|
|
4630
4807
|
async contactsUpdate(contactId, aPIContactUpdate, options) {
|
|
4631
4808
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdate(contactId, aPIContactUpdate, options);
|
|
4632
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4633
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4809
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _214 => _214.serverIndex]), () => ( 0));
|
|
4810
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _215 => _215["UnboundApi.contactsUpdate"], 'optionalAccess', _216 => _216[localVarOperationServerIndex], 'optionalAccess', _217 => _217.url]);
|
|
4634
4811
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4635
4812
|
},
|
|
4636
4813
|
/**
|
|
@@ -4644,8 +4821,22 @@ var UnboundApiFp = function(configuration) {
|
|
|
4644
4821
|
*/
|
|
4645
4822
|
async contactsUpdateListing(contactId, listingId, updateContactListing, options) {
|
|
4646
4823
|
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsUpdateListing(contactId, listingId, updateContactListing, options);
|
|
4647
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4648
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4824
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _218 => _218.serverIndex]), () => ( 0));
|
|
4825
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _219 => _219["UnboundApi.contactsUpdateListing"], 'optionalAccess', _220 => _220[localVarOperationServerIndex], 'optionalAccess', _221 => _221.url]);
|
|
4826
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4827
|
+
},
|
|
4828
|
+
/**
|
|
4829
|
+
* Conversations Create
|
|
4830
|
+
* @summary Conversations Create
|
|
4831
|
+
* @param {string} inboxId
|
|
4832
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
4833
|
+
* @param {*} [options] Override http request option.
|
|
4834
|
+
* @throws {RequiredError}
|
|
4835
|
+
*/
|
|
4836
|
+
async conversationsCreate(inboxId, aPIConversationCreate, options) {
|
|
4837
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsCreate(inboxId, aPIConversationCreate, options);
|
|
4838
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _222 => _222.serverIndex]), () => ( 0));
|
|
4839
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _223 => _223["UnboundApi.conversationsCreate"], 'optionalAccess', _224 => _224[localVarOperationServerIndex], 'optionalAccess', _225 => _225.url]);
|
|
4649
4840
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4650
4841
|
},
|
|
4651
4842
|
/**
|
|
@@ -4657,8 +4848,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4657
4848
|
*/
|
|
4658
4849
|
async conversationsGet(conversationId, options) {
|
|
4659
4850
|
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsGet(conversationId, options);
|
|
4660
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4661
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4851
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _226 => _226.serverIndex]), () => ( 0));
|
|
4852
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _227 => _227["UnboundApi.conversationsGet"], 'optionalAccess', _228 => _228[localVarOperationServerIndex], 'optionalAccess', _229 => _229.url]);
|
|
4662
4853
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4663
4854
|
},
|
|
4664
4855
|
/**
|
|
@@ -4677,8 +4868,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4677
4868
|
*/
|
|
4678
4869
|
async conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options) {
|
|
4679
4870
|
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, inboxId, options);
|
|
4680
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4681
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4871
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _230 => _230.serverIndex]), () => ( 0));
|
|
4872
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _231 => _231["UnboundApi.conversationsList"], 'optionalAccess', _232 => _232[localVarOperationServerIndex], 'optionalAccess', _233 => _233.url]);
|
|
4682
4873
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4683
4874
|
},
|
|
4684
4875
|
/**
|
|
@@ -4691,8 +4882,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4691
4882
|
*/
|
|
4692
4883
|
async conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
4693
4884
|
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsUpdate(conversationId, aPIConversationUpdate, options);
|
|
4694
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4695
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4885
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _234 => _234.serverIndex]), () => ( 0));
|
|
4886
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _235 => _235["UnboundApi.conversationsUpdate"], 'optionalAccess', _236 => _236[localVarOperationServerIndex], 'optionalAccess', _237 => _237.url]);
|
|
4696
4887
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4697
4888
|
},
|
|
4698
4889
|
/**
|
|
@@ -4705,8 +4896,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4705
4896
|
*/
|
|
4706
4897
|
async emailsCreate(contactId, aPIEmailCreate, options) {
|
|
4707
4898
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsCreate(contactId, aPIEmailCreate, options);
|
|
4708
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4709
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4899
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _238 => _238.serverIndex]), () => ( 0));
|
|
4900
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _239 => _239["UnboundApi.emailsCreate"], 'optionalAccess', _240 => _240[localVarOperationServerIndex], 'optionalAccess', _241 => _241.url]);
|
|
4710
4901
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4711
4902
|
},
|
|
4712
4903
|
/**
|
|
@@ -4718,8 +4909,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4718
4909
|
*/
|
|
4719
4910
|
async emailsDelete(emailId, options) {
|
|
4720
4911
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsDelete(emailId, options);
|
|
4721
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4722
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4912
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _242 => _242.serverIndex]), () => ( 0));
|
|
4913
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _243 => _243["UnboundApi.emailsDelete"], 'optionalAccess', _244 => _244[localVarOperationServerIndex], 'optionalAccess', _245 => _245.url]);
|
|
4723
4914
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4724
4915
|
},
|
|
4725
4916
|
/**
|
|
@@ -4731,8 +4922,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4731
4922
|
*/
|
|
4732
4923
|
async emailsGet(emailId, options) {
|
|
4733
4924
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsGet(emailId, options);
|
|
4734
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4735
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4925
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _246 => _246.serverIndex]), () => ( 0));
|
|
4926
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _247 => _247["UnboundApi.emailsGet"], 'optionalAccess', _248 => _248[localVarOperationServerIndex], 'optionalAccess', _249 => _249.url]);
|
|
4736
4927
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4737
4928
|
},
|
|
4738
4929
|
/**
|
|
@@ -4745,8 +4936,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4745
4936
|
*/
|
|
4746
4937
|
async emailsUpdate(emailId, aPIEmailUpdate, options) {
|
|
4747
4938
|
const localVarAxiosArgs = await localVarAxiosParamCreator.emailsUpdate(emailId, aPIEmailUpdate, options);
|
|
4748
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4749
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4939
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _250 => _250.serverIndex]), () => ( 0));
|
|
4940
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _251 => _251["UnboundApi.emailsUpdate"], 'optionalAccess', _252 => _252[localVarOperationServerIndex], 'optionalAccess', _253 => _253.url]);
|
|
4750
4941
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4751
4942
|
},
|
|
4752
4943
|
/**
|
|
@@ -4757,8 +4948,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4757
4948
|
*/
|
|
4758
4949
|
async getMe(options) {
|
|
4759
4950
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMe(options);
|
|
4760
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4761
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4951
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _254 => _254.serverIndex]), () => ( 0));
|
|
4952
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _255 => _255["UnboundApi.getMe"], 'optionalAccess', _256 => _256[localVarOperationServerIndex], 'optionalAccess', _257 => _257.url]);
|
|
4762
4953
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4763
4954
|
},
|
|
4764
4955
|
/**
|
|
@@ -4769,8 +4960,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4769
4960
|
*/
|
|
4770
4961
|
async inboxesList(options) {
|
|
4771
4962
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inboxesList(options);
|
|
4772
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4773
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4963
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _258 => _258.serverIndex]), () => ( 0));
|
|
4964
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _259 => _259["UnboundApi.inboxesList"], 'optionalAccess', _260 => _260[localVarOperationServerIndex], 'optionalAccess', _261 => _261.url]);
|
|
4774
4965
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4775
4966
|
},
|
|
4776
4967
|
/**
|
|
@@ -4782,8 +4973,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4782
4973
|
*/
|
|
4783
4974
|
async inquiriesList(contactId, options) {
|
|
4784
4975
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inquiriesList(contactId, options);
|
|
4785
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4786
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4976
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _262 => _262.serverIndex]), () => ( 0));
|
|
4977
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _263 => _263["UnboundApi.inquiriesList"], 'optionalAccess', _264 => _264[localVarOperationServerIndex], 'optionalAccess', _265 => _265.url]);
|
|
4787
4978
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4788
4979
|
},
|
|
4789
4980
|
/**
|
|
@@ -4795,8 +4986,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4795
4986
|
*/
|
|
4796
4987
|
async listingsGet(listingId, options) {
|
|
4797
4988
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listingsGet(listingId, options);
|
|
4798
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4799
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
4989
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _266 => _266.serverIndex]), () => ( 0));
|
|
4990
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _267 => _267["UnboundApi.listingsGet"], 'optionalAccess', _268 => _268[localVarOperationServerIndex], 'optionalAccess', _269 => _269.url]);
|
|
4800
4991
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4801
4992
|
},
|
|
4802
4993
|
/**
|
|
@@ -4814,8 +5005,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4814
5005
|
*/
|
|
4815
5006
|
async listingsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
4816
5007
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listingsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
4817
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4818
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5008
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _270 => _270.serverIndex]), () => ( 0));
|
|
5009
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _271 => _271["UnboundApi.listingsList"], 'optionalAccess', _272 => _272[localVarOperationServerIndex], 'optionalAccess', _273 => _273.url]);
|
|
4819
5010
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4820
5011
|
},
|
|
4821
5012
|
/**
|
|
@@ -4826,8 +5017,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4826
5017
|
*/
|
|
4827
5018
|
async managedPhoneNumbersList(options) {
|
|
4828
5019
|
const localVarAxiosArgs = await localVarAxiosParamCreator.managedPhoneNumbersList(options);
|
|
4829
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4830
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5020
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _274 => _274.serverIndex]), () => ( 0));
|
|
5021
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _275 => _275["UnboundApi.managedPhoneNumbersList"], 'optionalAccess', _276 => _276[localVarOperationServerIndex], 'optionalAccess', _277 => _277.url]);
|
|
4831
5022
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4832
5023
|
},
|
|
4833
5024
|
/**
|
|
@@ -4840,8 +5031,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4840
5031
|
*/
|
|
4841
5032
|
async messagesCreate(conversationId, messagecreate, options) {
|
|
4842
5033
|
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesCreate(conversationId, messagecreate, options);
|
|
4843
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4844
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5034
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _278 => _278.serverIndex]), () => ( 0));
|
|
5035
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _279 => _279["UnboundApi.messagesCreate"], 'optionalAccess', _280 => _280[localVarOperationServerIndex], 'optionalAccess', _281 => _281.url]);
|
|
4845
5036
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4846
5037
|
},
|
|
4847
5038
|
/**
|
|
@@ -4853,8 +5044,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4853
5044
|
*/
|
|
4854
5045
|
async messagesGet(messageId, options) {
|
|
4855
5046
|
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesGet(messageId, options);
|
|
4856
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4857
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5047
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _282 => _282.serverIndex]), () => ( 0));
|
|
5048
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _283 => _283["UnboundApi.messagesGet"], 'optionalAccess', _284 => _284[localVarOperationServerIndex], 'optionalAccess', _285 => _285.url]);
|
|
4858
5049
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4859
5050
|
},
|
|
4860
5051
|
/**
|
|
@@ -4876,8 +5067,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4876
5067
|
*/
|
|
4877
5068
|
async messagesList(conversationId, searchString, sentAtAfter, sentAtBefore, scheduledAtAfter, scheduledAtBefore, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
4878
5069
|
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesList(conversationId, searchString, sentAtAfter, sentAtBefore, scheduledAtAfter, scheduledAtBefore, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
4879
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4880
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5070
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _286 => _286.serverIndex]), () => ( 0));
|
|
5071
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _287 => _287["UnboundApi.messagesList"], 'optionalAccess', _288 => _288[localVarOperationServerIndex], 'optionalAccess', _289 => _289.url]);
|
|
4881
5072
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4882
5073
|
},
|
|
4883
5074
|
/**
|
|
@@ -4890,8 +5081,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4890
5081
|
*/
|
|
4891
5082
|
async phonesCreate(contactId, aPIPhoneCreate, options) {
|
|
4892
5083
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesCreate(contactId, aPIPhoneCreate, options);
|
|
4893
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4894
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5084
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _290 => _290.serverIndex]), () => ( 0));
|
|
5085
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _291 => _291["UnboundApi.phonesCreate"], 'optionalAccess', _292 => _292[localVarOperationServerIndex], 'optionalAccess', _293 => _293.url]);
|
|
4895
5086
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4896
5087
|
},
|
|
4897
5088
|
/**
|
|
@@ -4903,8 +5094,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4903
5094
|
*/
|
|
4904
5095
|
async phonesDelete(phoneId, options) {
|
|
4905
5096
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesDelete(phoneId, options);
|
|
4906
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4907
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5097
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _294 => _294.serverIndex]), () => ( 0));
|
|
5098
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _295 => _295["UnboundApi.phonesDelete"], 'optionalAccess', _296 => _296[localVarOperationServerIndex], 'optionalAccess', _297 => _297.url]);
|
|
4908
5099
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4909
5100
|
},
|
|
4910
5101
|
/**
|
|
@@ -4916,8 +5107,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4916
5107
|
*/
|
|
4917
5108
|
async phonesGet(phoneId, options) {
|
|
4918
5109
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesGet(phoneId, options);
|
|
4919
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4920
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5110
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _298 => _298.serverIndex]), () => ( 0));
|
|
5111
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _299 => _299["UnboundApi.phonesGet"], 'optionalAccess', _300 => _300[localVarOperationServerIndex], 'optionalAccess', _301 => _301.url]);
|
|
4921
5112
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4922
5113
|
},
|
|
4923
5114
|
/**
|
|
@@ -4930,8 +5121,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4930
5121
|
*/
|
|
4931
5122
|
async phonesUpdate(phoneId, aPIPhoneUpdate, options) {
|
|
4932
5123
|
const localVarAxiosArgs = await localVarAxiosParamCreator.phonesUpdate(phoneId, aPIPhoneUpdate, options);
|
|
4933
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4934
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5124
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _302 => _302.serverIndex]), () => ( 0));
|
|
5125
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _303 => _303["UnboundApi.phonesUpdate"], 'optionalAccess', _304 => _304[localVarOperationServerIndex], 'optionalAccess', _305 => _305.url]);
|
|
4935
5126
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4936
5127
|
},
|
|
4937
5128
|
/**
|
|
@@ -4943,8 +5134,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4943
5134
|
*/
|
|
4944
5135
|
async providersCreate(aPIProviderCreate, options) {
|
|
4945
5136
|
const localVarAxiosArgs = await localVarAxiosParamCreator.providersCreate(aPIProviderCreate, options);
|
|
4946
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4947
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5137
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _306 => _306.serverIndex]), () => ( 0));
|
|
5138
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _307 => _307["UnboundApi.providersCreate"], 'optionalAccess', _308 => _308[localVarOperationServerIndex], 'optionalAccess', _309 => _309.url]);
|
|
4948
5139
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4949
5140
|
},
|
|
4950
5141
|
/**
|
|
@@ -4956,8 +5147,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4956
5147
|
*/
|
|
4957
5148
|
async providersGet(providerId, options) {
|
|
4958
5149
|
const localVarAxiosArgs = await localVarAxiosParamCreator.providersGet(providerId, options);
|
|
4959
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4960
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5150
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _310 => _310.serverIndex]), () => ( 0));
|
|
5151
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _311 => _311["UnboundApi.providersGet"], 'optionalAccess', _312 => _312[localVarOperationServerIndex], 'optionalAccess', _313 => _313.url]);
|
|
4961
5152
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4962
5153
|
},
|
|
4963
5154
|
/**
|
|
@@ -4968,8 +5159,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4968
5159
|
*/
|
|
4969
5160
|
async providersList(options) {
|
|
4970
5161
|
const localVarAxiosArgs = await localVarAxiosParamCreator.providersList(options);
|
|
4971
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4972
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5162
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _314 => _314.serverIndex]), () => ( 0));
|
|
5163
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _315 => _315["UnboundApi.providersList"], 'optionalAccess', _316 => _316[localVarOperationServerIndex], 'optionalAccess', _317 => _317.url]);
|
|
4973
5164
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4974
5165
|
},
|
|
4975
5166
|
/**
|
|
@@ -4982,8 +5173,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4982
5173
|
*/
|
|
4983
5174
|
async providersUpdate(providerId, aPIProviderUpdate, options) {
|
|
4984
5175
|
const localVarAxiosArgs = await localVarAxiosParamCreator.providersUpdate(providerId, aPIProviderUpdate, options);
|
|
4985
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4986
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5176
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _318 => _318.serverIndex]), () => ( 0));
|
|
5177
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _319 => _319["UnboundApi.providersUpdate"], 'optionalAccess', _320 => _320[localVarOperationServerIndex], 'optionalAccess', _321 => _321.url]);
|
|
4987
5178
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4988
5179
|
},
|
|
4989
5180
|
/**
|
|
@@ -4995,8 +5186,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4995
5186
|
*/
|
|
4996
5187
|
async reservationsGet(reservationId, options) {
|
|
4997
5188
|
const localVarAxiosArgs = await localVarAxiosParamCreator.reservationsGet(reservationId, options);
|
|
4998
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
4999
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5189
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _322 => _322.serverIndex]), () => ( 0));
|
|
5190
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _323 => _323["UnboundApi.reservationsGet"], 'optionalAccess', _324 => _324[localVarOperationServerIndex], 'optionalAccess', _325 => _325.url]);
|
|
5000
5191
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5001
5192
|
},
|
|
5002
5193
|
/**
|
|
@@ -5014,8 +5205,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
5014
5205
|
*/
|
|
5015
5206
|
async reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
5016
5207
|
const localVarAxiosArgs = await localVarAxiosParamCreator.reservationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
5017
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
5018
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5208
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _326 => _326.serverIndex]), () => ( 0));
|
|
5209
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _327 => _327["UnboundApi.reservationsList"], 'optionalAccess', _328 => _328[localVarOperationServerIndex], 'optionalAccess', _329 => _329.url]);
|
|
5019
5210
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5020
5211
|
},
|
|
5021
5212
|
/**
|
|
@@ -5027,8 +5218,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
5027
5218
|
*/
|
|
5028
5219
|
async userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
5029
5220
|
const localVarAxiosArgs = await localVarAxiosParamCreator.userDevicesCreate(aPIUserDeviceCreate, options);
|
|
5030
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
5031
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5221
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _330 => _330.serverIndex]), () => ( 0));
|
|
5222
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _331 => _331["UnboundApi.userDevicesCreate"], 'optionalAccess', _332 => _332[localVarOperationServerIndex], 'optionalAccess', _333 => _333.url]);
|
|
5032
5223
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5033
5224
|
},
|
|
5034
5225
|
/**
|
|
@@ -5040,8 +5231,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
5040
5231
|
*/
|
|
5041
5232
|
async userDevicesDelete(userDeviceId, options) {
|
|
5042
5233
|
const localVarAxiosArgs = await localVarAxiosParamCreator.userDevicesDelete(userDeviceId, options);
|
|
5043
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
5044
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5234
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _334 => _334.serverIndex]), () => ( 0));
|
|
5235
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _335 => _335["UnboundApi.userDevicesDelete"], 'optionalAccess', _336 => _336[localVarOperationServerIndex], 'optionalAccess', _337 => _337.url]);
|
|
5045
5236
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5046
5237
|
},
|
|
5047
5238
|
/**
|
|
@@ -5053,8 +5244,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
5053
5244
|
*/
|
|
5054
5245
|
async webhook(body, options) {
|
|
5055
5246
|
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(body, options);
|
|
5056
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
5057
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5247
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _338 => _338.serverIndex]), () => ( 0));
|
|
5248
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _339 => _339["UnboundApi.webhook"], 'optionalAccess', _340 => _340[localVarOperationServerIndex], 'optionalAccess', _341 => _341.url]);
|
|
5058
5249
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5059
5250
|
}
|
|
5060
5251
|
};
|
|
@@ -5205,6 +5396,17 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
5205
5396
|
contactsUpdateListing(contactId, listingId, updateContactListing, options) {
|
|
5206
5397
|
return localVarFp.contactsUpdateListing(contactId, listingId, updateContactListing, options).then((request) => request(axios, basePath));
|
|
5207
5398
|
},
|
|
5399
|
+
/**
|
|
5400
|
+
* Conversations Create
|
|
5401
|
+
* @summary Conversations Create
|
|
5402
|
+
* @param {string} inboxId
|
|
5403
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
5404
|
+
* @param {*} [options] Override http request option.
|
|
5405
|
+
* @throws {RequiredError}
|
|
5406
|
+
*/
|
|
5407
|
+
conversationsCreate(inboxId, aPIConversationCreate, options) {
|
|
5408
|
+
return localVarFp.conversationsCreate(inboxId, aPIConversationCreate, options).then((request) => request(axios, basePath));
|
|
5409
|
+
},
|
|
5208
5410
|
/**
|
|
5209
5411
|
* Conversations Get
|
|
5210
5412
|
* @summary Conversations Get
|
|
@@ -5686,6 +5888,18 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5686
5888
|
contactsUpdateListing(contactId, listingId, updateContactListing, options) {
|
|
5687
5889
|
return UnboundApiFp(this.configuration).contactsUpdateListing(contactId, listingId, updateContactListing, options).then((request) => request(this.axios, this.basePath));
|
|
5688
5890
|
}
|
|
5891
|
+
/**
|
|
5892
|
+
* Conversations Create
|
|
5893
|
+
* @summary Conversations Create
|
|
5894
|
+
* @param {string} inboxId
|
|
5895
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
5896
|
+
* @param {*} [options] Override http request option.
|
|
5897
|
+
* @throws {RequiredError}
|
|
5898
|
+
* @memberof UnboundApi
|
|
5899
|
+
*/
|
|
5900
|
+
conversationsCreate(inboxId, aPIConversationCreate, options) {
|
|
5901
|
+
return UnboundApiFp(this.configuration).conversationsCreate(inboxId, aPIConversationCreate, options).then((request) => request(this.axios, this.basePath));
|
|
5902
|
+
}
|
|
5689
5903
|
/**
|
|
5690
5904
|
* Conversations Get
|
|
5691
5905
|
* @summary Conversations Get
|
|
@@ -6108,8 +6322,8 @@ var UserDevicesApiFp = function(configuration) {
|
|
|
6108
6322
|
*/
|
|
6109
6323
|
async userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
6110
6324
|
const localVarAxiosArgs = await localVarAxiosParamCreator.userDevicesCreate(aPIUserDeviceCreate, options);
|
|
6111
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
6112
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
6325
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _342 => _342.serverIndex]), () => ( 0));
|
|
6326
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _343 => _343["UserDevicesApi.userDevicesCreate"], 'optionalAccess', _344 => _344[localVarOperationServerIndex], 'optionalAccess', _345 => _345.url]);
|
|
6113
6327
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6114
6328
|
},
|
|
6115
6329
|
/**
|
|
@@ -6121,8 +6335,8 @@ var UserDevicesApiFp = function(configuration) {
|
|
|
6121
6335
|
*/
|
|
6122
6336
|
async userDevicesDelete(userDeviceId, options) {
|
|
6123
6337
|
const localVarAxiosArgs = await localVarAxiosParamCreator.userDevicesDelete(userDeviceId, options);
|
|
6124
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
6125
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
6338
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _346 => _346.serverIndex]), () => ( 0));
|
|
6339
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _347 => _347["UserDevicesApi.userDevicesDelete"], 'optionalAccess', _348 => _348[localVarOperationServerIndex], 'optionalAccess', _349 => _349.url]);
|
|
6126
6340
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6127
6341
|
}
|
|
6128
6342
|
};
|
|
@@ -6245,7 +6459,7 @@ var Configuration = class {
|
|
|
6245
6459
|
this.baseOptions = {
|
|
6246
6460
|
...param.baseOptions,
|
|
6247
6461
|
headers: {
|
|
6248
|
-
..._optionalChain([param, 'access',
|
|
6462
|
+
..._optionalChain([param, 'access', _350 => _350.baseOptions, 'optionalAccess', _351 => _351.headers])
|
|
6249
6463
|
}
|
|
6250
6464
|
};
|
|
6251
6465
|
this.formDataCtor = param.formDataCtor;
|
|
@@ -6358,5 +6572,10 @@ var Configuration = class {
|
|
|
6358
6572
|
|
|
6359
6573
|
|
|
6360
6574
|
|
|
6361
|
-
|
|
6575
|
+
|
|
6576
|
+
|
|
6577
|
+
|
|
6578
|
+
|
|
6579
|
+
|
|
6580
|
+
exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.AuthApi = AuthApi; exports.AuthApiAxiosParamCreator = AuthApiAxiosParamCreator; exports.AuthApiFactory = AuthApiFactory; exports.AuthApiFp = AuthApiFp; exports.BotApiParticipantTypeEnum = BotApiParticipantTypeEnum; exports.Configuration = Configuration; exports.ContactListingType = ContactListingType; exports.ContactsApi = ContactsApi; exports.ContactsApiAxiosParamCreator = ContactsApiAxiosParamCreator; exports.ContactsApiFactory = ContactsApiFactory; exports.ContactsApiFp = ContactsApiFp; exports.ConversationStatus = ConversationStatus; exports.ConversationsApi = ConversationsApi; exports.ConversationsApiAxiosParamCreator = ConversationsApiAxiosParamCreator; exports.ConversationsApiFactory = ConversationsApiFactory; exports.ConversationsApiFp = ConversationsApiFp; exports.EmailConversationDataApiConversationTypeEnum = EmailConversationDataApiConversationTypeEnum; exports.EmailInboxApiInboxTypeEnum = EmailInboxApiInboxTypeEnum; exports.EmailProviderMessageApiMessageTypeEnum = EmailProviderMessageApiMessageTypeEnum; exports.ExternalStaffApiStaffTypeEnum = ExternalStaffApiStaffTypeEnum; exports.GuestApiParticipantTypeEnum = GuestApiParticipantTypeEnum; exports.HostawayApi = HostawayApi; exports.HostawayApiAxiosParamCreator = HostawayApiAxiosParamCreator; exports.HostawayApiFactory = HostawayApiFactory; exports.HostawayApiFp = HostawayApiFp; exports.InboxesApi = InboxesApi; exports.InboxesApiAxiosParamCreator = InboxesApiAxiosParamCreator; exports.InboxesApiFactory = InboxesApiFactory; exports.InboxesApiFp = InboxesApiFp; exports.InquiriesApi = InquiriesApi; exports.InquiriesApiAxiosParamCreator = InquiriesApiAxiosParamCreator; exports.InquiriesApiFactory = InquiriesApiFactory; exports.InquiriesApiFp = InquiriesApiFp; exports.InternalStaffApiStaffTypeEnum = InternalStaffApiStaffTypeEnum; exports.ListingsApi = ListingsApi; exports.ListingsApiAxiosParamCreator = ListingsApiAxiosParamCreator; exports.ListingsApiFactory = ListingsApiFactory; exports.ListingsApiFp = ListingsApiFp; exports.ManagedPhoneNumbersApi = ManagedPhoneNumbersApi; exports.ManagedPhoneNumbersApiAxiosParamCreator = ManagedPhoneNumbersApiAxiosParamCreator; exports.ManagedPhoneNumbersApiFactory = ManagedPhoneNumbersApiFactory; exports.ManagedPhoneNumbersApiFp = ManagedPhoneNumbersApiFp; exports.MessageDirection = MessageDirection; exports.MessageStatus = MessageStatus; exports.PaginationDirection = PaginationDirection; exports.PhoneInboxApiInboxTypeEnum = PhoneInboxApiInboxTypeEnum; exports.ProviderAccountInboxApiInboxTypeEnum = ProviderAccountInboxApiInboxTypeEnum; exports.ProviderCommunicationTypeInput = ProviderCommunicationTypeInput; exports.ProviderConversationDataApiConversationTypeEnum = ProviderConversationDataApiConversationTypeEnum; exports.ProviderStaffApiStaffTypeEnum = ProviderStaffApiStaffTypeEnum; exports.ProvidersApi = ProvidersApi; exports.ProvidersApiAxiosParamCreator = ProvidersApiAxiosParamCreator; exports.ProvidersApiFactory = ProvidersApiFactory; exports.ProvidersApiFp = ProvidersApiFp; exports.RentalProviderMessageApiMessageTypeEnum = RentalProviderMessageApiMessageTypeEnum; exports.RentalProviderTypes = RentalProviderTypes; exports.ReservationChannelTypes = ReservationChannelTypes; exports.ReservationStatus = ReservationStatus; exports.ReservationsApi = ReservationsApi; exports.ReservationsApiAxiosParamCreator = ReservationsApiAxiosParamCreator; exports.ReservationsApiFactory = ReservationsApiFactory; exports.ReservationsApiFp = ReservationsApiFp; exports.SMSConversationDataApiConversationTypeEnum = SMSConversationDataApiConversationTypeEnum; exports.SMSInboundSenderTypeDataApiDirectionEnum = SMSInboundSenderTypeDataApiDirectionEnum; exports.SMSMessageApiMessageTypeEnum = SMSMessageApiMessageTypeEnum; exports.SMSOutboundSenderTypeDataApiDirectionEnum = SMSOutboundSenderTypeDataApiDirectionEnum; exports.SortOrder = SortOrder; exports.SrcResourceModelsContactsModelContactsModelContactSortBy = SrcResourceModelsContactsModelContactsModelContactSortBy; exports.SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType = SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum; exports.SrcResourceModelsListingsModelListingBaseSortBy = SrcResourceModelsListingsModelListingBaseSortBy; exports.SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType = SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType; exports.SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy; exports.SrcResourceModelsReservationsModelReservationBaseModelSortBy = SrcResourceModelsReservationsModelReservationBaseModelSortBy; exports.StaffApiParticipantTypeEnum = StaffApiParticipantTypeEnum; exports.SuggestionRejectionReasonType = SuggestionRejectionReasonType; exports.SuggestionStatus = SuggestionStatus; exports.TelnyxApi = TelnyxApi; exports.TelnyxApiAxiosParamCreator = TelnyxApiAxiosParamCreator; exports.TelnyxApiFactory = TelnyxApiFactory; exports.TelnyxApiFp = TelnyxApiFp; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp; exports.UserDeviceOs = UserDeviceOs; exports.UserDevicesApi = UserDevicesApi; exports.UserDevicesApiAxiosParamCreator = UserDevicesApiAxiosParamCreator; exports.UserDevicesApiFactory = UserDevicesApiFactory; exports.UserDevicesApiFp = UserDevicesApiFp;
|
|
6362
6581
|
//# sourceMappingURL=index.js.map
|