@ember-home/unbound-ts-client 0.0.73 → 0.0.75
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 +52 -10
- package/dist/index.d.ts +52 -10
- package/dist/index.js +10 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -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",
|
|
@@ -120,6 +121,11 @@ var PaginationDirection = {
|
|
|
120
121
|
Forward: "forward",
|
|
121
122
|
Backward: "backward"
|
|
122
123
|
};
|
|
124
|
+
var ParticipantType = {
|
|
125
|
+
Guest: "GUEST",
|
|
126
|
+
Staff: "STAFF",
|
|
127
|
+
Bot: "BOT"
|
|
128
|
+
};
|
|
123
129
|
var PhoneInboxApiInboxTypeEnum = {
|
|
124
130
|
Text: "TEXT"
|
|
125
131
|
};
|
|
@@ -1797,7 +1803,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1797
1803
|
*/
|
|
1798
1804
|
conversationsListSuggestions: async (conversationId, options = {}) => {
|
|
1799
1805
|
assertParamExists("conversationsListSuggestions", "conversationId", conversationId);
|
|
1800
|
-
const localVarPath = `/conversations/{conversationId}/
|
|
1806
|
+
const localVarPath = `/conversations/{conversationId}/suggestions`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
1801
1807
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1802
1808
|
let baseOptions;
|
|
1803
1809
|
if (configuration) {
|
|
@@ -3679,7 +3685,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3679
3685
|
*/
|
|
3680
3686
|
conversationsListSuggestions: async (conversationId, options = {}) => {
|
|
3681
3687
|
assertParamExists("conversationsListSuggestions", "conversationId", conversationId);
|
|
3682
|
-
const localVarPath = `/conversations/{conversationId}/
|
|
3688
|
+
const localVarPath = `/conversations/{conversationId}/suggestions`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
3683
3689
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3684
3690
|
let baseOptions;
|
|
3685
3691
|
if (configuration) {
|
|
@@ -6149,6 +6155,7 @@ export {
|
|
|
6149
6155
|
MessageDirection,
|
|
6150
6156
|
MessageStatus,
|
|
6151
6157
|
PaginationDirection,
|
|
6158
|
+
ParticipantType,
|
|
6152
6159
|
PhoneInboxApiInboxTypeEnum,
|
|
6153
6160
|
ProviderAccountInboxApiInboxTypeEnum,
|
|
6154
6161
|
ProviderCommunicationType,
|