@ember-home/unbound-ts-client 0.0.56 → 0.0.57
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 +116 -9
- package/dist/index.d.ts +116 -9
- package/dist/index.js +273 -125
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +162 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1646,6 +1646,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1646
1646
|
* @summary Conversations List
|
|
1647
1647
|
* @param {string | null} [searchString]
|
|
1648
1648
|
* @param {string | null} [contactId]
|
|
1649
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
1649
1650
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1650
1651
|
* @param {number} [limit]
|
|
1651
1652
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -1653,7 +1654,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1653
1654
|
* @param {*} [options] Override http request option.
|
|
1654
1655
|
* @throws {RequiredError}
|
|
1655
1656
|
*/
|
|
1656
|
-
conversationsList: async (searchString, contactId, cursor, limit, pageDir, sortOrder, options = {}) => {
|
|
1657
|
+
conversationsList: async (searchString, contactId, status, cursor, limit, pageDir, sortOrder, options = {}) => {
|
|
1657
1658
|
const localVarPath = `/conversations`;
|
|
1658
1659
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1659
1660
|
let baseOptions;
|
|
@@ -1669,6 +1670,9 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1669
1670
|
if (contactId !== void 0) {
|
|
1670
1671
|
localVarQueryParameter["contactId"] = contactId;
|
|
1671
1672
|
}
|
|
1673
|
+
if (status) {
|
|
1674
|
+
localVarQueryParameter["status"] = status;
|
|
1675
|
+
}
|
|
1672
1676
|
if (cursor !== void 0) {
|
|
1673
1677
|
localVarQueryParameter["cursor"] = cursor;
|
|
1674
1678
|
}
|
|
@@ -1689,6 +1693,36 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1689
1693
|
options: localVarRequestOptions
|
|
1690
1694
|
};
|
|
1691
1695
|
},
|
|
1696
|
+
/**
|
|
1697
|
+
* Conversations Update
|
|
1698
|
+
* @summary Conversations Update
|
|
1699
|
+
* @param {string} conversationId
|
|
1700
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
1701
|
+
* @param {*} [options] Override http request option.
|
|
1702
|
+
* @throws {RequiredError}
|
|
1703
|
+
*/
|
|
1704
|
+
conversationsUpdate: async (conversationId, aPIConversationUpdate, options = {}) => {
|
|
1705
|
+
assertParamExists("conversationsUpdate", "conversationId", conversationId);
|
|
1706
|
+
assertParamExists("conversationsUpdate", "aPIConversationUpdate", aPIConversationUpdate);
|
|
1707
|
+
const localVarPath = `/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
1708
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1709
|
+
let baseOptions;
|
|
1710
|
+
if (configuration) {
|
|
1711
|
+
baseOptions = configuration.baseOptions;
|
|
1712
|
+
}
|
|
1713
|
+
const localVarRequestOptions = { method: "PATCH", ...baseOptions, ...options };
|
|
1714
|
+
const localVarHeaderParameter = {};
|
|
1715
|
+
const localVarQueryParameter = {};
|
|
1716
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1717
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1718
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1719
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1720
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationUpdate, localVarRequestOptions, configuration);
|
|
1721
|
+
return {
|
|
1722
|
+
url: toPathString(localVarUrlObj),
|
|
1723
|
+
options: localVarRequestOptions
|
|
1724
|
+
};
|
|
1725
|
+
},
|
|
1692
1726
|
/**
|
|
1693
1727
|
* Messages Create
|
|
1694
1728
|
* @summary Messages Create
|
|
@@ -1836,6 +1870,7 @@ var ConversationsApiFp = function(configuration) {
|
|
|
1836
1870
|
* @summary Conversations List
|
|
1837
1871
|
* @param {string | null} [searchString]
|
|
1838
1872
|
* @param {string | null} [contactId]
|
|
1873
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
1839
1874
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1840
1875
|
* @param {number} [limit]
|
|
1841
1876
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -1843,12 +1878,26 @@ var ConversationsApiFp = function(configuration) {
|
|
|
1843
1878
|
* @param {*} [options] Override http request option.
|
|
1844
1879
|
* @throws {RequiredError}
|
|
1845
1880
|
*/
|
|
1846
|
-
async conversationsList(searchString, contactId, cursor, limit, pageDir, sortOrder, options) {
|
|
1847
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsList(searchString, contactId, cursor, limit, pageDir, sortOrder, options);
|
|
1881
|
+
async conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, options) {
|
|
1882
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, options);
|
|
1848
1883
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1849
1884
|
const localVarOperationServerBasePath = operationServerMap["ConversationsApi.conversationsList"]?.[localVarOperationServerIndex]?.url;
|
|
1850
1885
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1851
1886
|
},
|
|
1887
|
+
/**
|
|
1888
|
+
* Conversations Update
|
|
1889
|
+
* @summary Conversations Update
|
|
1890
|
+
* @param {string} conversationId
|
|
1891
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
1892
|
+
* @param {*} [options] Override http request option.
|
|
1893
|
+
* @throws {RequiredError}
|
|
1894
|
+
*/
|
|
1895
|
+
async conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
1896
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsUpdate(conversationId, aPIConversationUpdate, options);
|
|
1897
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1898
|
+
const localVarOperationServerBasePath = operationServerMap["ConversationsApi.conversationsUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
1899
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1900
|
+
},
|
|
1852
1901
|
/**
|
|
1853
1902
|
* Messages Create
|
|
1854
1903
|
* @summary Messages Create
|
|
@@ -1919,6 +1968,7 @@ var ConversationsApiFactory = function(configuration, basePath, axios) {
|
|
|
1919
1968
|
* @summary Conversations List
|
|
1920
1969
|
* @param {string | null} [searchString]
|
|
1921
1970
|
* @param {string | null} [contactId]
|
|
1971
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
1922
1972
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1923
1973
|
* @param {number} [limit]
|
|
1924
1974
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -1926,8 +1976,19 @@ var ConversationsApiFactory = function(configuration, basePath, axios) {
|
|
|
1926
1976
|
* @param {*} [options] Override http request option.
|
|
1927
1977
|
* @throws {RequiredError}
|
|
1928
1978
|
*/
|
|
1929
|
-
conversationsList(searchString, contactId, cursor, limit, pageDir, sortOrder, options) {
|
|
1930
|
-
return localVarFp.conversationsList(searchString, contactId, cursor, limit, pageDir, sortOrder, options).then((request) => request(axios, basePath));
|
|
1979
|
+
conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, options) {
|
|
1980
|
+
return localVarFp.conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, options).then((request) => request(axios, basePath));
|
|
1981
|
+
},
|
|
1982
|
+
/**
|
|
1983
|
+
* Conversations Update
|
|
1984
|
+
* @summary Conversations Update
|
|
1985
|
+
* @param {string} conversationId
|
|
1986
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
1987
|
+
* @param {*} [options] Override http request option.
|
|
1988
|
+
* @throws {RequiredError}
|
|
1989
|
+
*/
|
|
1990
|
+
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
1991
|
+
return localVarFp.conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(axios, basePath));
|
|
1931
1992
|
},
|
|
1932
1993
|
/**
|
|
1933
1994
|
* Messages Create
|
|
@@ -1989,6 +2050,7 @@ var ConversationsApi = class extends BaseAPI {
|
|
|
1989
2050
|
* @summary Conversations List
|
|
1990
2051
|
* @param {string | null} [searchString]
|
|
1991
2052
|
* @param {string | null} [contactId]
|
|
2053
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
1992
2054
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1993
2055
|
* @param {number} [limit]
|
|
1994
2056
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -1997,8 +2059,20 @@ var ConversationsApi = class extends BaseAPI {
|
|
|
1997
2059
|
* @throws {RequiredError}
|
|
1998
2060
|
* @memberof ConversationsApi
|
|
1999
2061
|
*/
|
|
2000
|
-
conversationsList(searchString, contactId, cursor, limit, pageDir, sortOrder, options) {
|
|
2001
|
-
return ConversationsApiFp(this.configuration).conversationsList(searchString, contactId, cursor, limit, pageDir, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
2062
|
+
conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, options) {
|
|
2063
|
+
return ConversationsApiFp(this.configuration).conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
2064
|
+
}
|
|
2065
|
+
/**
|
|
2066
|
+
* Conversations Update
|
|
2067
|
+
* @summary Conversations Update
|
|
2068
|
+
* @param {string} conversationId
|
|
2069
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
2070
|
+
* @param {*} [options] Override http request option.
|
|
2071
|
+
* @throws {RequiredError}
|
|
2072
|
+
* @memberof ConversationsApi
|
|
2073
|
+
*/
|
|
2074
|
+
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
2075
|
+
return ConversationsApiFp(this.configuration).conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
2002
2076
|
}
|
|
2003
2077
|
/**
|
|
2004
2078
|
* Messages Create
|
|
@@ -3456,6 +3530,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3456
3530
|
* @summary Conversations List
|
|
3457
3531
|
* @param {string | null} [searchString]
|
|
3458
3532
|
* @param {string | null} [contactId]
|
|
3533
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
3459
3534
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3460
3535
|
* @param {number} [limit]
|
|
3461
3536
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3463,7 +3538,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3463
3538
|
* @param {*} [options] Override http request option.
|
|
3464
3539
|
* @throws {RequiredError}
|
|
3465
3540
|
*/
|
|
3466
|
-
conversationsList: async (searchString, contactId, cursor, limit, pageDir, sortOrder, options = {}) => {
|
|
3541
|
+
conversationsList: async (searchString, contactId, status, cursor, limit, pageDir, sortOrder, options = {}) => {
|
|
3467
3542
|
const localVarPath = `/conversations`;
|
|
3468
3543
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3469
3544
|
let baseOptions;
|
|
@@ -3479,6 +3554,9 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3479
3554
|
if (contactId !== void 0) {
|
|
3480
3555
|
localVarQueryParameter["contactId"] = contactId;
|
|
3481
3556
|
}
|
|
3557
|
+
if (status) {
|
|
3558
|
+
localVarQueryParameter["status"] = status;
|
|
3559
|
+
}
|
|
3482
3560
|
if (cursor !== void 0) {
|
|
3483
3561
|
localVarQueryParameter["cursor"] = cursor;
|
|
3484
3562
|
}
|
|
@@ -3499,6 +3577,36 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3499
3577
|
options: localVarRequestOptions
|
|
3500
3578
|
};
|
|
3501
3579
|
},
|
|
3580
|
+
/**
|
|
3581
|
+
* Conversations Update
|
|
3582
|
+
* @summary Conversations Update
|
|
3583
|
+
* @param {string} conversationId
|
|
3584
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
3585
|
+
* @param {*} [options] Override http request option.
|
|
3586
|
+
* @throws {RequiredError}
|
|
3587
|
+
*/
|
|
3588
|
+
conversationsUpdate: async (conversationId, aPIConversationUpdate, options = {}) => {
|
|
3589
|
+
assertParamExists("conversationsUpdate", "conversationId", conversationId);
|
|
3590
|
+
assertParamExists("conversationsUpdate", "aPIConversationUpdate", aPIConversationUpdate);
|
|
3591
|
+
const localVarPath = `/conversations/{conversationId}`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
3592
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3593
|
+
let baseOptions;
|
|
3594
|
+
if (configuration) {
|
|
3595
|
+
baseOptions = configuration.baseOptions;
|
|
3596
|
+
}
|
|
3597
|
+
const localVarRequestOptions = { method: "PATCH", ...baseOptions, ...options };
|
|
3598
|
+
const localVarHeaderParameter = {};
|
|
3599
|
+
const localVarQueryParameter = {};
|
|
3600
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3601
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3602
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3603
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3604
|
+
localVarRequestOptions.data = serializeDataIfNeeded(aPIConversationUpdate, localVarRequestOptions, configuration);
|
|
3605
|
+
return {
|
|
3606
|
+
url: toPathString(localVarUrlObj),
|
|
3607
|
+
options: localVarRequestOptions
|
|
3608
|
+
};
|
|
3609
|
+
},
|
|
3502
3610
|
/**
|
|
3503
3611
|
* Emails Create
|
|
3504
3612
|
* @summary Emails Create
|
|
@@ -4453,6 +4561,7 @@ var UnboundApiFp = function(configuration) {
|
|
|
4453
4561
|
* @summary Conversations List
|
|
4454
4562
|
* @param {string | null} [searchString]
|
|
4455
4563
|
* @param {string | null} [contactId]
|
|
4564
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
4456
4565
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4457
4566
|
* @param {number} [limit]
|
|
4458
4567
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4460,12 +4569,26 @@ var UnboundApiFp = function(configuration) {
|
|
|
4460
4569
|
* @param {*} [options] Override http request option.
|
|
4461
4570
|
* @throws {RequiredError}
|
|
4462
4571
|
*/
|
|
4463
|
-
async conversationsList(searchString, contactId, cursor, limit, pageDir, sortOrder, options) {
|
|
4464
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsList(searchString, contactId, cursor, limit, pageDir, sortOrder, options);
|
|
4572
|
+
async conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, options) {
|
|
4573
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, options);
|
|
4465
4574
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4466
4575
|
const localVarOperationServerBasePath = operationServerMap["UnboundApi.conversationsList"]?.[localVarOperationServerIndex]?.url;
|
|
4467
4576
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4468
4577
|
},
|
|
4578
|
+
/**
|
|
4579
|
+
* Conversations Update
|
|
4580
|
+
* @summary Conversations Update
|
|
4581
|
+
* @param {string} conversationId
|
|
4582
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
4583
|
+
* @param {*} [options] Override http request option.
|
|
4584
|
+
* @throws {RequiredError}
|
|
4585
|
+
*/
|
|
4586
|
+
async conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
4587
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.conversationsUpdate(conversationId, aPIConversationUpdate, options);
|
|
4588
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4589
|
+
const localVarOperationServerBasePath = operationServerMap["UnboundApi.conversationsUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
4590
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4591
|
+
},
|
|
4469
4592
|
/**
|
|
4470
4593
|
* Emails Create
|
|
4471
4594
|
* @summary Emails Create
|
|
@@ -4967,6 +5090,7 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4967
5090
|
* @summary Conversations List
|
|
4968
5091
|
* @param {string | null} [searchString]
|
|
4969
5092
|
* @param {string | null} [contactId]
|
|
5093
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
4970
5094
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4971
5095
|
* @param {number} [limit]
|
|
4972
5096
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4974,8 +5098,19 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4974
5098
|
* @param {*} [options] Override http request option.
|
|
4975
5099
|
* @throws {RequiredError}
|
|
4976
5100
|
*/
|
|
4977
|
-
conversationsList(searchString, contactId, cursor, limit, pageDir, sortOrder, options) {
|
|
4978
|
-
return localVarFp.conversationsList(searchString, contactId, cursor, limit, pageDir, sortOrder, options).then((request) => request(axios, basePath));
|
|
5101
|
+
conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, options) {
|
|
5102
|
+
return localVarFp.conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, options).then((request) => request(axios, basePath));
|
|
5103
|
+
},
|
|
5104
|
+
/**
|
|
5105
|
+
* Conversations Update
|
|
5106
|
+
* @summary Conversations Update
|
|
5107
|
+
* @param {string} conversationId
|
|
5108
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
5109
|
+
* @param {*} [options] Override http request option.
|
|
5110
|
+
* @throws {RequiredError}
|
|
5111
|
+
*/
|
|
5112
|
+
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
5113
|
+
return localVarFp.conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(axios, basePath));
|
|
4979
5114
|
},
|
|
4980
5115
|
/**
|
|
4981
5116
|
* Emails Create
|
|
@@ -5418,6 +5553,7 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5418
5553
|
* @summary Conversations List
|
|
5419
5554
|
* @param {string | null} [searchString]
|
|
5420
5555
|
* @param {string | null} [contactId]
|
|
5556
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
5421
5557
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5422
5558
|
* @param {number} [limit]
|
|
5423
5559
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -5426,8 +5562,20 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5426
5562
|
* @throws {RequiredError}
|
|
5427
5563
|
* @memberof UnboundApi
|
|
5428
5564
|
*/
|
|
5429
|
-
conversationsList(searchString, contactId, cursor, limit, pageDir, sortOrder, options) {
|
|
5430
|
-
return UnboundApiFp(this.configuration).conversationsList(searchString, contactId, cursor, limit, pageDir, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
5565
|
+
conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, options) {
|
|
5566
|
+
return UnboundApiFp(this.configuration).conversationsList(searchString, contactId, status, cursor, limit, pageDir, sortOrder, options).then((request) => request(this.axios, this.basePath));
|
|
5567
|
+
}
|
|
5568
|
+
/**
|
|
5569
|
+
* Conversations Update
|
|
5570
|
+
* @summary Conversations Update
|
|
5571
|
+
* @param {string} conversationId
|
|
5572
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
5573
|
+
* @param {*} [options] Override http request option.
|
|
5574
|
+
* @throws {RequiredError}
|
|
5575
|
+
* @memberof UnboundApi
|
|
5576
|
+
*/
|
|
5577
|
+
conversationsUpdate(conversationId, aPIConversationUpdate, options) {
|
|
5578
|
+
return UnboundApiFp(this.configuration).conversationsUpdate(conversationId, aPIConversationUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
5431
5579
|
}
|
|
5432
5580
|
/**
|
|
5433
5581
|
* Emails Create
|