@ember-home/unbound-ts-client 0.0.74 → 0.0.76
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 +36 -23
- package/dist/index.d.ts +36 -23
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -108,6 +108,7 @@ var MessageDirection = {
|
|
|
108
108
|
Outbound: "OUTBOUND"
|
|
109
109
|
};
|
|
110
110
|
var MessageStatus = {
|
|
111
|
+
Pending: "PENDING",
|
|
111
112
|
Sent: "SENT",
|
|
112
113
|
Delivered: "DELIVERED",
|
|
113
114
|
Read: "READ",
|
|
@@ -1797,7 +1798,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1797
1798
|
*/
|
|
1798
1799
|
conversationsListSuggestions: async (conversationId, options = {}) => {
|
|
1799
1800
|
assertParamExists("conversationsListSuggestions", "conversationId", conversationId);
|
|
1800
|
-
const localVarPath = `/conversations/{conversationId}/
|
|
1801
|
+
const localVarPath = `/conversations/{conversationId}/suggestions`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
1801
1802
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1802
1803
|
let baseOptions;
|
|
1803
1804
|
if (configuration) {
|
|
@@ -3679,7 +3680,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3679
3680
|
*/
|
|
3680
3681
|
conversationsListSuggestions: async (conversationId, options = {}) => {
|
|
3681
3682
|
assertParamExists("conversationsListSuggestions", "conversationId", conversationId);
|
|
3682
|
-
const localVarPath = `/conversations/{conversationId}/
|
|
3683
|
+
const localVarPath = `/conversations/{conversationId}/suggestions`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
3683
3684
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3684
3685
|
let baseOptions;
|
|
3685
3686
|
if (configuration) {
|