@ember-home/unbound-ts-client 0.0.42 → 0.0.43
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 +72 -402
- package/dist/index.d.ts +72 -402
- package/dist/index.js +148 -436
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +42 -330
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -166,32 +166,20 @@ var SrcResourceModelsContactsModelContactsModelContactSortBy = {
|
|
|
166
166
|
var SrcResourceModelsConversationsModelConversationsModelConversationSortBy = {
|
|
167
167
|
UpdatedAt: "updated_at"
|
|
168
168
|
};
|
|
169
|
-
var
|
|
170
|
-
Twilio: "TWILIO"
|
|
171
|
-
};
|
|
172
|
-
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum = {
|
|
173
|
-
Email: "EMAIL"
|
|
174
|
-
};
|
|
175
|
-
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = {
|
|
169
|
+
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = {
|
|
176
170
|
RentalProvider: "RENTAL_PROVIDER"
|
|
177
171
|
};
|
|
178
|
-
var
|
|
172
|
+
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = {
|
|
179
173
|
Twilio: "TWILIO"
|
|
180
174
|
};
|
|
181
|
-
var
|
|
182
|
-
Email: "EMAIL"
|
|
183
|
-
};
|
|
184
|
-
var SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum = {
|
|
185
|
-
Twilio: "TWILIO"
|
|
186
|
-
};
|
|
187
|
-
var SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum = {
|
|
175
|
+
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = {
|
|
188
176
|
Email: "EMAIL"
|
|
189
177
|
};
|
|
190
178
|
var SrcResourceModelsListingsModelListingBaseSortBy = {
|
|
191
179
|
Title: "title"
|
|
192
180
|
};
|
|
193
181
|
var SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = {
|
|
194
|
-
|
|
182
|
+
SentAt: "sent_at"
|
|
195
183
|
};
|
|
196
184
|
var SrcResourceModelsReservationsModelReservationBaseModelSortBy = {
|
|
197
185
|
ArrivalAtPropertyTz: "arrival_at_property_tz"
|
|
@@ -1624,34 +1612,6 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1624
1612
|
};
|
|
1625
1613
|
var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
1626
1614
|
return {
|
|
1627
|
-
/**
|
|
1628
|
-
* Conversations Create
|
|
1629
|
-
* @summary Conversations Create
|
|
1630
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
1631
|
-
* @param {*} [options] Override http request option.
|
|
1632
|
-
* @throws {RequiredError}
|
|
1633
|
-
*/
|
|
1634
|
-
conversationsCreate: async (aPIConversationCreate, options = {}) => {
|
|
1635
|
-
assertParamExists("conversationsCreate", "aPIConversationCreate", aPIConversationCreate);
|
|
1636
|
-
const localVarPath = `/conversations`;
|
|
1637
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1638
|
-
let baseOptions;
|
|
1639
|
-
if (configuration) {
|
|
1640
|
-
baseOptions = configuration.baseOptions;
|
|
1641
|
-
}
|
|
1642
|
-
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1643
|
-
const localVarHeaderParameter = {};
|
|
1644
|
-
const localVarQueryParameter = {};
|
|
1645
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1646
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1647
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1648
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1649
|
-
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationCreate, localVarRequestOptions, configuration);
|
|
1650
|
-
return {
|
|
1651
|
-
url: toPathString(localVarUrlObj),
|
|
1652
|
-
options: localVarRequestOptions
|
|
1653
|
-
};
|
|
1654
|
-
},
|
|
1655
1615
|
/**
|
|
1656
1616
|
* Conversations Get
|
|
1657
1617
|
* @summary Conversations Get
|
|
@@ -1679,7 +1639,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1679
1639
|
};
|
|
1680
1640
|
},
|
|
1681
1641
|
/**
|
|
1682
|
-
* List all conversations,
|
|
1642
|
+
* List all conversations, must filter by contact_id
|
|
1683
1643
|
* @summary Conversations List
|
|
1684
1644
|
* @param {string | null} [searchString]
|
|
1685
1645
|
* @param {string | null} [contactId]
|
|
@@ -1730,36 +1690,6 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1730
1690
|
options: localVarRequestOptions
|
|
1731
1691
|
};
|
|
1732
1692
|
},
|
|
1733
|
-
/**
|
|
1734
|
-
* Conversations Update
|
|
1735
|
-
* @summary Conversations Update
|
|
1736
|
-
* @param {string} conversationId
|
|
1737
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
1738
|
-
* @param {*} [options] Override http request option.
|
|
1739
|
-
* @throws {RequiredError}
|
|
1740
|
-
*/
|
|
1741
|
-
conversationsUpdate: async (conversationId, aPIConversationUpdate, options = {}) => {
|
|
1742
|
-
assertParamExists("conversationsUpdate", "conversationId", conversationId);
|
|
1743
|
-
assertParamExists("conversationsUpdate", "aPIConversationUpdate", aPIConversationUpdate);
|
|
1744
|
-
const localVarPath = `/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: "PATCH", ...baseOptions, ...options };
|
|
1751
|
-
const localVarHeaderParameter = {};
|
|
1752
|
-
const localVarQueryParameter = {};
|
|
1753
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1754
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1755
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1756
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1757
|
-
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationUpdate, localVarRequestOptions, configuration);
|
|
1758
|
-
return {
|
|
1759
|
-
url: toPathString(localVarUrlObj),
|
|
1760
|
-
options: localVarRequestOptions
|
|
1761
|
-
};
|
|
1762
|
-
},
|
|
1763
1693
|
/**
|
|
1764
1694
|
* Messages Create
|
|
1765
1695
|
* @summary Messages Create
|
|
@@ -1819,9 +1749,8 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1819
1749
|
/**
|
|
1820
1750
|
* Messages List
|
|
1821
1751
|
* @summary Messages List
|
|
1752
|
+
* @param {string} [conversationId]
|
|
1822
1753
|
* @param {string | null} [searchString]
|
|
1823
|
-
* @param {string | null} [contactId]
|
|
1824
|
-
* @param {string | null} [conversationId]
|
|
1825
1754
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1826
1755
|
* @param {number} [limit]
|
|
1827
1756
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -1830,7 +1759,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1830
1759
|
* @param {*} [options] Override http request option.
|
|
1831
1760
|
* @throws {RequiredError}
|
|
1832
1761
|
*/
|
|
1833
|
-
messagesList: async (
|
|
1762
|
+
messagesList: async (conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options = {}) => {
|
|
1834
1763
|
const localVarPath = `/messages`;
|
|
1835
1764
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1836
1765
|
let baseOptions;
|
|
@@ -1840,15 +1769,12 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1840
1769
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1841
1770
|
const localVarHeaderParameter = {};
|
|
1842
1771
|
const localVarQueryParameter = {};
|
|
1843
|
-
if (searchString !== void 0) {
|
|
1844
|
-
localVarQueryParameter["searchString"] = searchString;
|
|
1845
|
-
}
|
|
1846
|
-
if (contactId !== void 0) {
|
|
1847
|
-
localVarQueryParameter["contactId"] = contactId;
|
|
1848
|
-
}
|
|
1849
1772
|
if (conversationId !== void 0) {
|
|
1850
1773
|
localVarQueryParameter["conversationId"] = conversationId;
|
|
1851
1774
|
}
|
|
1775
|
+
if (searchString !== void 0) {
|
|
1776
|
+
localVarQueryParameter["searchString"] = searchString;
|
|
1777
|
+
}
|
|
1852
1778
|
if (cursor !== void 0) {
|
|
1853
1779
|
localVarQueryParameter["cursor"] = cursor;
|
|
1854
1780
|
}
|
|
@@ -1877,19 +1803,6 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1877
1803
|
var ConversationsApiFp = function(configuration) {
|
|
1878
1804
|
const localVarAxiosParamCreator = ConversationsApiAxiosParamCreator(configuration);
|
|
1879
1805
|
return {
|
|
1880
|
-
/**
|
|
1881
|
-
* Conversations Create
|
|
1882
|
-
* @summary Conversations Create
|
|
1883
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
1884
|
-
* @param {*} [options] Override http request option.
|
|
1885
|
-
* @throws {RequiredError}
|
|
1886
|
-
*/
|
|
1887
|
-
async conversationsCreate(aPIConversationCreate, options) {
|
|
1888
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsCreate(aPIConversationCreate, options);
|
|
1889
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1890
|
-
const localVarOperationServerBasePath = operationServerMap["ConversationsApi.conversationsCreate"]?.[localVarOperationServerIndex]?.url;
|
|
1891
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1892
|
-
},
|
|
1893
1806
|
/**
|
|
1894
1807
|
* Conversations Get
|
|
1895
1808
|
* @summary Conversations Get
|
|
@@ -1904,7 +1817,7 @@ var ConversationsApiFp = function(configuration) {
|
|
|
1904
1817
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1905
1818
|
},
|
|
1906
1819
|
/**
|
|
1907
|
-
* List all conversations,
|
|
1820
|
+
* List all conversations, must filter by contact_id
|
|
1908
1821
|
* @summary Conversations List
|
|
1909
1822
|
* @param {string | null} [searchString]
|
|
1910
1823
|
* @param {string | null} [contactId]
|
|
@@ -1922,20 +1835,6 @@ var ConversationsApiFp = function(configuration) {
|
|
|
1922
1835
|
const localVarOperationServerBasePath = operationServerMap["ConversationsApi.conversationsList"]?.[localVarOperationServerIndex]?.url;
|
|
1923
1836
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1924
1837
|
},
|
|
1925
|
-
/**
|
|
1926
|
-
* Conversations Update
|
|
1927
|
-
* @summary Conversations Update
|
|
1928
|
-
* @param {string} conversationId
|
|
1929
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
1930
|
-
* @param {*} [options] Override http request option.
|
|
1931
|
-
* @throws {RequiredError}
|
|
1932
|
-
*/
|
|
1933
|
-
async conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
1934
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsUpdate(conversationId, aPIConversationUpdate, options);
|
|
1935
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1936
|
-
const localVarOperationServerBasePath = operationServerMap["ConversationsApi.conversationsUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
1937
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1938
|
-
},
|
|
1939
1838
|
/**
|
|
1940
1839
|
* Messages Create
|
|
1941
1840
|
* @summary Messages Create
|
|
@@ -1966,9 +1865,8 @@ var ConversationsApiFp = function(configuration) {
|
|
|
1966
1865
|
/**
|
|
1967
1866
|
* Messages List
|
|
1968
1867
|
* @summary Messages List
|
|
1868
|
+
* @param {string} [conversationId]
|
|
1969
1869
|
* @param {string | null} [searchString]
|
|
1970
|
-
* @param {string | null} [contactId]
|
|
1971
|
-
* @param {string | null} [conversationId]
|
|
1972
1870
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1973
1871
|
* @param {number} [limit]
|
|
1974
1872
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -1977,8 +1875,8 @@ var ConversationsApiFp = function(configuration) {
|
|
|
1977
1875
|
* @param {*} [options] Override http request option.
|
|
1978
1876
|
* @throws {RequiredError}
|
|
1979
1877
|
*/
|
|
1980
|
-
async messagesList(
|
|
1981
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesList(
|
|
1878
|
+
async messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
1879
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
1982
1880
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1983
1881
|
const localVarOperationServerBasePath = operationServerMap["ConversationsApi.messagesList"]?.[localVarOperationServerIndex]?.url;
|
|
1984
1882
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1988,16 +1886,6 @@ var ConversationsApiFp = function(configuration) {
|
|
|
1988
1886
|
var ConversationsApiFactory = function(configuration, basePath, axios) {
|
|
1989
1887
|
const localVarFp = ConversationsApiFp(configuration);
|
|
1990
1888
|
return {
|
|
1991
|
-
/**
|
|
1992
|
-
* Conversations Create
|
|
1993
|
-
* @summary Conversations Create
|
|
1994
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
1995
|
-
* @param {*} [options] Override http request option.
|
|
1996
|
-
* @throws {RequiredError}
|
|
1997
|
-
*/
|
|
1998
|
-
conversationsCreate(aPIConversationCreate, options) {
|
|
1999
|
-
return localVarFp.conversationsCreate(aPIConversationCreate, options).then((request) => request(axios, basePath));
|
|
2000
|
-
},
|
|
2001
1889
|
/**
|
|
2002
1890
|
* Conversations Get
|
|
2003
1891
|
* @summary Conversations Get
|
|
@@ -2009,7 +1897,7 @@ var ConversationsApiFactory = function(configuration, basePath, axios) {
|
|
|
2009
1897
|
return localVarFp.conversationsGet(conversationId, options).then((request) => request(axios, basePath));
|
|
2010
1898
|
},
|
|
2011
1899
|
/**
|
|
2012
|
-
* List all conversations,
|
|
1900
|
+
* List all conversations, must filter by contact_id
|
|
2013
1901
|
* @summary Conversations List
|
|
2014
1902
|
* @param {string | null} [searchString]
|
|
2015
1903
|
* @param {string | null} [contactId]
|
|
@@ -2024,17 +1912,6 @@ var ConversationsApiFactory = function(configuration, basePath, axios) {
|
|
|
2024
1912
|
conversationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
2025
1913
|
return localVarFp.conversationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(axios, basePath));
|
|
2026
1914
|
},
|
|
2027
|
-
/**
|
|
2028
|
-
* Conversations Update
|
|
2029
|
-
* @summary Conversations Update
|
|
2030
|
-
* @param {string} conversationId
|
|
2031
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
2032
|
-
* @param {*} [options] Override http request option.
|
|
2033
|
-
* @throws {RequiredError}
|
|
2034
|
-
*/
|
|
2035
|
-
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
2036
|
-
return localVarFp.conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(axios, basePath));
|
|
2037
|
-
},
|
|
2038
1915
|
/**
|
|
2039
1916
|
* Messages Create
|
|
2040
1917
|
* @summary Messages Create
|
|
@@ -2059,9 +1936,8 @@ var ConversationsApiFactory = function(configuration, basePath, axios) {
|
|
|
2059
1936
|
/**
|
|
2060
1937
|
* Messages List
|
|
2061
1938
|
* @summary Messages List
|
|
1939
|
+
* @param {string} [conversationId]
|
|
2062
1940
|
* @param {string | null} [searchString]
|
|
2063
|
-
* @param {string | null} [contactId]
|
|
2064
|
-
* @param {string | null} [conversationId]
|
|
2065
1941
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2066
1942
|
* @param {number} [limit]
|
|
2067
1943
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2070,23 +1946,12 @@ var ConversationsApiFactory = function(configuration, basePath, axios) {
|
|
|
2070
1946
|
* @param {*} [options] Override http request option.
|
|
2071
1947
|
* @throws {RequiredError}
|
|
2072
1948
|
*/
|
|
2073
|
-
messagesList(
|
|
2074
|
-
return localVarFp.messagesList(
|
|
1949
|
+
messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
1950
|
+
return localVarFp.messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(axios, basePath));
|
|
2075
1951
|
}
|
|
2076
1952
|
};
|
|
2077
1953
|
};
|
|
2078
1954
|
var ConversationsApi = class extends BaseAPI {
|
|
2079
|
-
/**
|
|
2080
|
-
* Conversations Create
|
|
2081
|
-
* @summary Conversations Create
|
|
2082
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
2083
|
-
* @param {*} [options] Override http request option.
|
|
2084
|
-
* @throws {RequiredError}
|
|
2085
|
-
* @memberof ConversationsApi
|
|
2086
|
-
*/
|
|
2087
|
-
conversationsCreate(aPIConversationCreate, options) {
|
|
2088
|
-
return ConversationsApiFp(this.configuration).conversationsCreate(aPIConversationCreate, options).then((request) => request(this.axios, this.basePath));
|
|
2089
|
-
}
|
|
2090
1955
|
/**
|
|
2091
1956
|
* Conversations Get
|
|
2092
1957
|
* @summary Conversations Get
|
|
@@ -2099,7 +1964,7 @@ var ConversationsApi = class extends BaseAPI {
|
|
|
2099
1964
|
return ConversationsApiFp(this.configuration).conversationsGet(conversationId, options).then((request) => request(this.axios, this.basePath));
|
|
2100
1965
|
}
|
|
2101
1966
|
/**
|
|
2102
|
-
* List all conversations,
|
|
1967
|
+
* List all conversations, must filter by contact_id
|
|
2103
1968
|
* @summary Conversations List
|
|
2104
1969
|
* @param {string | null} [searchString]
|
|
2105
1970
|
* @param {string | null} [contactId]
|
|
@@ -2115,18 +1980,6 @@ var ConversationsApi = class extends BaseAPI {
|
|
|
2115
1980
|
conversationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
2116
1981
|
return ConversationsApiFp(this.configuration).conversationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
2117
1982
|
}
|
|
2118
|
-
/**
|
|
2119
|
-
* Conversations Update
|
|
2120
|
-
* @summary Conversations Update
|
|
2121
|
-
* @param {string} conversationId
|
|
2122
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
2123
|
-
* @param {*} [options] Override http request option.
|
|
2124
|
-
* @throws {RequiredError}
|
|
2125
|
-
* @memberof ConversationsApi
|
|
2126
|
-
*/
|
|
2127
|
-
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
2128
|
-
return ConversationsApiFp(this.configuration).conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
2129
|
-
}
|
|
2130
1983
|
/**
|
|
2131
1984
|
* Messages Create
|
|
2132
1985
|
* @summary Messages Create
|
|
@@ -2153,9 +2006,8 @@ var ConversationsApi = class extends BaseAPI {
|
|
|
2153
2006
|
/**
|
|
2154
2007
|
* Messages List
|
|
2155
2008
|
* @summary Messages List
|
|
2009
|
+
* @param {string} [conversationId]
|
|
2156
2010
|
* @param {string | null} [searchString]
|
|
2157
|
-
* @param {string | null} [contactId]
|
|
2158
|
-
* @param {string | null} [conversationId]
|
|
2159
2011
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2160
2012
|
* @param {number} [limit]
|
|
2161
2013
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2165,8 +2017,8 @@ var ConversationsApi = class extends BaseAPI {
|
|
|
2165
2017
|
* @throws {RequiredError}
|
|
2166
2018
|
* @memberof ConversationsApi
|
|
2167
2019
|
*/
|
|
2168
|
-
messagesList(
|
|
2169
|
-
return ConversationsApiFp(this.configuration).messagesList(
|
|
2020
|
+
messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
2021
|
+
return ConversationsApiFp(this.configuration).messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
2170
2022
|
}
|
|
2171
2023
|
};
|
|
2172
2024
|
var HostawayApiAxiosParamCreator = function(configuration) {
|
|
@@ -3409,34 +3261,6 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3409
3261
|
options: localVarRequestOptions
|
|
3410
3262
|
};
|
|
3411
3263
|
},
|
|
3412
|
-
/**
|
|
3413
|
-
* Conversations Create
|
|
3414
|
-
* @summary Conversations Create
|
|
3415
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
3416
|
-
* @param {*} [options] Override http request option.
|
|
3417
|
-
* @throws {RequiredError}
|
|
3418
|
-
*/
|
|
3419
|
-
conversationsCreate: async (aPIConversationCreate, options = {}) => {
|
|
3420
|
-
assertParamExists("conversationsCreate", "aPIConversationCreate", aPIConversationCreate);
|
|
3421
|
-
const localVarPath = `/conversations`;
|
|
3422
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3423
|
-
let baseOptions;
|
|
3424
|
-
if (configuration) {
|
|
3425
|
-
baseOptions = configuration.baseOptions;
|
|
3426
|
-
}
|
|
3427
|
-
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
3428
|
-
const localVarHeaderParameter = {};
|
|
3429
|
-
const localVarQueryParameter = {};
|
|
3430
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3431
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3432
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3433
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3434
|
-
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationCreate, localVarRequestOptions, configuration);
|
|
3435
|
-
return {
|
|
3436
|
-
url: toPathString(localVarUrlObj),
|
|
3437
|
-
options: localVarRequestOptions
|
|
3438
|
-
};
|
|
3439
|
-
},
|
|
3440
3264
|
/**
|
|
3441
3265
|
* Conversations Get
|
|
3442
3266
|
* @summary Conversations Get
|
|
@@ -3464,7 +3288,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3464
3288
|
};
|
|
3465
3289
|
},
|
|
3466
3290
|
/**
|
|
3467
|
-
* List all conversations,
|
|
3291
|
+
* List all conversations, must filter by contact_id
|
|
3468
3292
|
* @summary Conversations List
|
|
3469
3293
|
* @param {string | null} [searchString]
|
|
3470
3294
|
* @param {string | null} [contactId]
|
|
@@ -3515,36 +3339,6 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3515
3339
|
options: localVarRequestOptions
|
|
3516
3340
|
};
|
|
3517
3341
|
},
|
|
3518
|
-
/**
|
|
3519
|
-
* Conversations Update
|
|
3520
|
-
* @summary Conversations Update
|
|
3521
|
-
* @param {string} conversationId
|
|
3522
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
3523
|
-
* @param {*} [options] Override http request option.
|
|
3524
|
-
* @throws {RequiredError}
|
|
3525
|
-
*/
|
|
3526
|
-
conversationsUpdate: async (conversationId, aPIConversationUpdate, options = {}) => {
|
|
3527
|
-
assertParamExists("conversationsUpdate", "conversationId", conversationId);
|
|
3528
|
-
assertParamExists("conversationsUpdate", "aPIConversationUpdate", aPIConversationUpdate);
|
|
3529
|
-
const localVarPath = `/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
3530
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3531
|
-
let baseOptions;
|
|
3532
|
-
if (configuration) {
|
|
3533
|
-
baseOptions = configuration.baseOptions;
|
|
3534
|
-
}
|
|
3535
|
-
const localVarRequestOptions = { method: "PATCH", ...baseOptions, ...options };
|
|
3536
|
-
const localVarHeaderParameter = {};
|
|
3537
|
-
const localVarQueryParameter = {};
|
|
3538
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3539
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3540
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3541
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3542
|
-
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationUpdate, localVarRequestOptions, configuration);
|
|
3543
|
-
return {
|
|
3544
|
-
url: toPathString(localVarUrlObj),
|
|
3545
|
-
options: localVarRequestOptions
|
|
3546
|
-
};
|
|
3547
|
-
},
|
|
3548
3342
|
/**
|
|
3549
3343
|
* Emails Create
|
|
3550
3344
|
* @summary Emails Create
|
|
@@ -3846,9 +3640,8 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3846
3640
|
/**
|
|
3847
3641
|
* Messages List
|
|
3848
3642
|
* @summary Messages List
|
|
3643
|
+
* @param {string} [conversationId]
|
|
3849
3644
|
* @param {string | null} [searchString]
|
|
3850
|
-
* @param {string | null} [contactId]
|
|
3851
|
-
* @param {string | null} [conversationId]
|
|
3852
3645
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3853
3646
|
* @param {number} [limit]
|
|
3854
3647
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3857,7 +3650,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3857
3650
|
* @param {*} [options] Override http request option.
|
|
3858
3651
|
* @throws {RequiredError}
|
|
3859
3652
|
*/
|
|
3860
|
-
messagesList: async (
|
|
3653
|
+
messagesList: async (conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options = {}) => {
|
|
3861
3654
|
const localVarPath = `/messages`;
|
|
3862
3655
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3863
3656
|
let baseOptions;
|
|
@@ -3867,15 +3660,12 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3867
3660
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3868
3661
|
const localVarHeaderParameter = {};
|
|
3869
3662
|
const localVarQueryParameter = {};
|
|
3870
|
-
if (searchString !== void 0) {
|
|
3871
|
-
localVarQueryParameter["searchString"] = searchString;
|
|
3872
|
-
}
|
|
3873
|
-
if (contactId !== void 0) {
|
|
3874
|
-
localVarQueryParameter["contactId"] = contactId;
|
|
3875
|
-
}
|
|
3876
3663
|
if (conversationId !== void 0) {
|
|
3877
3664
|
localVarQueryParameter["conversationId"] = conversationId;
|
|
3878
3665
|
}
|
|
3666
|
+
if (searchString !== void 0) {
|
|
3667
|
+
localVarQueryParameter["searchString"] = searchString;
|
|
3668
|
+
}
|
|
3879
3669
|
if (cursor !== void 0) {
|
|
3880
3670
|
localVarQueryParameter["cursor"] = cursor;
|
|
3881
3671
|
}
|
|
@@ -4413,19 +4203,6 @@ var UnboundApiFp = function(configuration) {
|
|
|
4413
4203
|
const localVarOperationServerBasePath = operationServerMap["UnboundApi.contactsUpdateListing"]?.[localVarOperationServerIndex]?.url;
|
|
4414
4204
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4415
4205
|
},
|
|
4416
|
-
/**
|
|
4417
|
-
* Conversations Create
|
|
4418
|
-
* @summary Conversations Create
|
|
4419
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
4420
|
-
* @param {*} [options] Override http request option.
|
|
4421
|
-
* @throws {RequiredError}
|
|
4422
|
-
*/
|
|
4423
|
-
async conversationsCreate(aPIConversationCreate, options) {
|
|
4424
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsCreate(aPIConversationCreate, options);
|
|
4425
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4426
|
-
const localVarOperationServerBasePath = operationServerMap["UnboundApi.conversationsCreate"]?.[localVarOperationServerIndex]?.url;
|
|
4427
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4428
|
-
},
|
|
4429
4206
|
/**
|
|
4430
4207
|
* Conversations Get
|
|
4431
4208
|
* @summary Conversations Get
|
|
@@ -4440,7 +4217,7 @@ var UnboundApiFp = function(configuration) {
|
|
|
4440
4217
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4441
4218
|
},
|
|
4442
4219
|
/**
|
|
4443
|
-
* List all conversations,
|
|
4220
|
+
* List all conversations, must filter by contact_id
|
|
4444
4221
|
* @summary Conversations List
|
|
4445
4222
|
* @param {string | null} [searchString]
|
|
4446
4223
|
* @param {string | null} [contactId]
|
|
@@ -4458,20 +4235,6 @@ var UnboundApiFp = function(configuration) {
|
|
|
4458
4235
|
const localVarOperationServerBasePath = operationServerMap["UnboundApi.conversationsList"]?.[localVarOperationServerIndex]?.url;
|
|
4459
4236
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4460
4237
|
},
|
|
4461
|
-
/**
|
|
4462
|
-
* Conversations Update
|
|
4463
|
-
* @summary Conversations Update
|
|
4464
|
-
* @param {string} conversationId
|
|
4465
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
4466
|
-
* @param {*} [options] Override http request option.
|
|
4467
|
-
* @throws {RequiredError}
|
|
4468
|
-
*/
|
|
4469
|
-
async conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
4470
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsUpdate(conversationId, aPIConversationUpdate, options);
|
|
4471
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4472
|
-
const localVarOperationServerBasePath = operationServerMap["UnboundApi.conversationsUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
4473
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4474
|
-
},
|
|
4475
4238
|
/**
|
|
4476
4239
|
* Emails Create
|
|
4477
4240
|
* @summary Emails Create
|
|
@@ -4613,9 +4376,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4613
4376
|
/**
|
|
4614
4377
|
* Messages List
|
|
4615
4378
|
* @summary Messages List
|
|
4379
|
+
* @param {string} [conversationId]
|
|
4616
4380
|
* @param {string | null} [searchString]
|
|
4617
|
-
* @param {string | null} [contactId]
|
|
4618
|
-
* @param {string | null} [conversationId]
|
|
4619
4381
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4620
4382
|
* @param {number} [limit]
|
|
4621
4383
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4624,8 +4386,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
4624
4386
|
* @param {*} [options] Override http request option.
|
|
4625
4387
|
* @throws {RequiredError}
|
|
4626
4388
|
*/
|
|
4627
|
-
async messagesList(
|
|
4628
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesList(
|
|
4389
|
+
async messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
4390
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options);
|
|
4629
4391
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4630
4392
|
const localVarOperationServerBasePath = operationServerMap["UnboundApi.messagesList"]?.[localVarOperationServerIndex]?.url;
|
|
4631
4393
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -4929,16 +4691,6 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4929
4691
|
contactsUpdateListing(contactId, listingId, updateContactListing, options) {
|
|
4930
4692
|
return localVarFp.contactsUpdateListing(contactId, listingId, updateContactListing, options).then((request) => request(axios, basePath));
|
|
4931
4693
|
},
|
|
4932
|
-
/**
|
|
4933
|
-
* Conversations Create
|
|
4934
|
-
* @summary Conversations Create
|
|
4935
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
4936
|
-
* @param {*} [options] Override http request option.
|
|
4937
|
-
* @throws {RequiredError}
|
|
4938
|
-
*/
|
|
4939
|
-
conversationsCreate(aPIConversationCreate, options) {
|
|
4940
|
-
return localVarFp.conversationsCreate(aPIConversationCreate, options).then((request) => request(axios, basePath));
|
|
4941
|
-
},
|
|
4942
4694
|
/**
|
|
4943
4695
|
* Conversations Get
|
|
4944
4696
|
* @summary Conversations Get
|
|
@@ -4950,7 +4702,7 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4950
4702
|
return localVarFp.conversationsGet(conversationId, options).then((request) => request(axios, basePath));
|
|
4951
4703
|
},
|
|
4952
4704
|
/**
|
|
4953
|
-
* List all conversations,
|
|
4705
|
+
* List all conversations, must filter by contact_id
|
|
4954
4706
|
* @summary Conversations List
|
|
4955
4707
|
* @param {string | null} [searchString]
|
|
4956
4708
|
* @param {string | null} [contactId]
|
|
@@ -4965,17 +4717,6 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4965
4717
|
conversationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
4966
4718
|
return localVarFp.conversationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(axios, basePath));
|
|
4967
4719
|
},
|
|
4968
|
-
/**
|
|
4969
|
-
* Conversations Update
|
|
4970
|
-
* @summary Conversations Update
|
|
4971
|
-
* @param {string} conversationId
|
|
4972
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
4973
|
-
* @param {*} [options] Override http request option.
|
|
4974
|
-
* @throws {RequiredError}
|
|
4975
|
-
*/
|
|
4976
|
-
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
4977
|
-
return localVarFp.conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(axios, basePath));
|
|
4978
|
-
},
|
|
4979
4720
|
/**
|
|
4980
4721
|
* Emails Create
|
|
4981
4722
|
* @summary Emails Create
|
|
@@ -5087,9 +4828,8 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
5087
4828
|
/**
|
|
5088
4829
|
* Messages List
|
|
5089
4830
|
* @summary Messages List
|
|
4831
|
+
* @param {string} [conversationId]
|
|
5090
4832
|
* @param {string | null} [searchString]
|
|
5091
|
-
* @param {string | null} [contactId]
|
|
5092
|
-
* @param {string | null} [conversationId]
|
|
5093
4833
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5094
4834
|
* @param {number} [limit]
|
|
5095
4835
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -5098,8 +4838,8 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
5098
4838
|
* @param {*} [options] Override http request option.
|
|
5099
4839
|
* @throws {RequiredError}
|
|
5100
4840
|
*/
|
|
5101
|
-
messagesList(
|
|
5102
|
-
return localVarFp.messagesList(
|
|
4841
|
+
messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
4842
|
+
return localVarFp.messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(axios, basePath));
|
|
5103
4843
|
},
|
|
5104
4844
|
/**
|
|
5105
4845
|
* Phones Create
|
|
@@ -5378,17 +5118,6 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5378
5118
|
contactsUpdateListing(contactId, listingId, updateContactListing, options) {
|
|
5379
5119
|
return UnboundApiFp(this.configuration).contactsUpdateListing(contactId, listingId, updateContactListing, options).then((request) => request(this.axios, this.basePath));
|
|
5380
5120
|
}
|
|
5381
|
-
/**
|
|
5382
|
-
* Conversations Create
|
|
5383
|
-
* @summary Conversations Create
|
|
5384
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
5385
|
-
* @param {*} [options] Override http request option.
|
|
5386
|
-
* @throws {RequiredError}
|
|
5387
|
-
* @memberof UnboundApi
|
|
5388
|
-
*/
|
|
5389
|
-
conversationsCreate(aPIConversationCreate, options) {
|
|
5390
|
-
return UnboundApiFp(this.configuration).conversationsCreate(aPIConversationCreate, options).then((request) => request(this.axios, this.basePath));
|
|
5391
|
-
}
|
|
5392
5121
|
/**
|
|
5393
5122
|
* Conversations Get
|
|
5394
5123
|
* @summary Conversations Get
|
|
@@ -5401,7 +5130,7 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5401
5130
|
return UnboundApiFp(this.configuration).conversationsGet(conversationId, options).then((request) => request(this.axios, this.basePath));
|
|
5402
5131
|
}
|
|
5403
5132
|
/**
|
|
5404
|
-
* List all conversations,
|
|
5133
|
+
* List all conversations, must filter by contact_id
|
|
5405
5134
|
* @summary Conversations List
|
|
5406
5135
|
* @param {string | null} [searchString]
|
|
5407
5136
|
* @param {string | null} [contactId]
|
|
@@ -5417,18 +5146,6 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5417
5146
|
conversationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
5418
5147
|
return UnboundApiFp(this.configuration).conversationsList(searchString, contactId, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
5419
5148
|
}
|
|
5420
|
-
/**
|
|
5421
|
-
* Conversations Update
|
|
5422
|
-
* @summary Conversations Update
|
|
5423
|
-
* @param {string} conversationId
|
|
5424
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
5425
|
-
* @param {*} [options] Override http request option.
|
|
5426
|
-
* @throws {RequiredError}
|
|
5427
|
-
* @memberof UnboundApi
|
|
5428
|
-
*/
|
|
5429
|
-
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
5430
|
-
return UnboundApiFp(this.configuration).conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
5431
|
-
}
|
|
5432
5149
|
/**
|
|
5433
5150
|
* Emails Create
|
|
5434
5151
|
* @summary Emails Create
|
|
@@ -5550,9 +5267,8 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5550
5267
|
/**
|
|
5551
5268
|
* Messages List
|
|
5552
5269
|
* @summary Messages List
|
|
5270
|
+
* @param {string} [conversationId]
|
|
5553
5271
|
* @param {string | null} [searchString]
|
|
5554
|
-
* @param {string | null} [contactId]
|
|
5555
|
-
* @param {string | null} [conversationId]
|
|
5556
5272
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5557
5273
|
* @param {number} [limit]
|
|
5558
5274
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -5562,8 +5278,8 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5562
5278
|
* @throws {RequiredError}
|
|
5563
5279
|
* @memberof UnboundApi
|
|
5564
5280
|
*/
|
|
5565
|
-
messagesList(
|
|
5566
|
-
return UnboundApiFp(this.configuration).messagesList(
|
|
5281
|
+
messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options) {
|
|
5282
|
+
return UnboundApiFp(this.configuration).messagesList(conversationId, searchString, cursor, limit, pageDir, sortBy, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
5567
5283
|
}
|
|
5568
5284
|
/**
|
|
5569
5285
|
* Phones Create
|
|
@@ -5840,13 +5556,9 @@ export {
|
|
|
5840
5556
|
SortOrder,
|
|
5841
5557
|
SrcResourceModelsContactsModelContactsModelContactSortBy,
|
|
5842
5558
|
SrcResourceModelsConversationsModelConversationsModelConversationSortBy,
|
|
5843
|
-
|
|
5844
|
-
|
|
5559
|
+
SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum,
|
|
5560
|
+
SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum,
|
|
5845
5561
|
SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum,
|
|
5846
|
-
SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum,
|
|
5847
|
-
SrcResourceModelsHelperModelsCustomBaseModelCreateApi5MessageTypeEnum,
|
|
5848
|
-
SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum,
|
|
5849
|
-
SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum,
|
|
5850
5562
|
SrcResourceModelsListingsModelListingBaseSortBy,
|
|
5851
5563
|
SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy,
|
|
5852
5564
|
SrcResourceModelsReservationsModelReservationBaseModelSortBy,
|