@wildix/wim-voicebots-client 1.0.8 → 1.0.10

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.
@@ -50,7 +50,7 @@ declare const UpdateVoiceBotCommand_base: {
50
50
  * prompt: "STRING_VALUE", // required
51
51
  * embeddedTools: [ // VoiceBotEmbeddedToolsList
52
52
  * { // VoiceBotEmbeddedTool
53
- * type: "HANGUP" || "TRANSFER", // required
53
+ * type: "HANGUP" || "TRANSFER" || "DELEGATE", // required
54
54
  * name: "STRING_VALUE", // required
55
55
  * parameters: "DOCUMENT_VALUE",
56
56
  * },
@@ -66,8 +66,21 @@ declare const UpdateVoiceBotCommand_base: {
66
66
  * webhook: { // VoiceBotFunctionIntegrationWebhook
67
67
  * url: "STRING_VALUE", // required
68
68
  * async: true || false,
69
- * timeout: Number("int"),
70
- * authorization: "DOCUMENT_VALUE",
69
+ * authorization: { // VoiceBotFunctionIntegrationWebhookAuthorization Union: only one key present
70
+ * bearer: { // VoiceBotFunctionIntegrationWebhookAuthorizationBearer
71
+ * token: "STRING_VALUE", // required
72
+ * },
73
+ * basic: { // VoiceBotFunctionIntegrationWebhookAuthorizationBasic
74
+ * username: "STRING_VALUE", // required
75
+ * password: "STRING_VALUE", // required
76
+ * },
77
+ * oauth: { // VoiceBotFunctionIntegrationWebhookAuthorizationOAuth
78
+ * clientId: "STRING_VALUE", // required
79
+ * clientSecret: "STRING_VALUE", // required
80
+ * endpointUrl: "STRING_VALUE", // required
81
+ * scope: "STRING_VALUE",
82
+ * },
83
+ * },
71
84
  * headers: [ // VoiceBotFunctionIntegrationWebhookHeadersList
72
85
  * { // VoiceBotFunctionIntegrationWebhookHeader
73
86
  * key: "STRING_VALUE", // required
@@ -122,7 +135,7 @@ declare const UpdateVoiceBotCommand_base: {
122
135
  * // prompt: "STRING_VALUE", // required
123
136
  * // embeddedTools: [ // VoiceBotEmbeddedToolsList
124
137
  * // { // VoiceBotEmbeddedTool
125
- * // type: "HANGUP" || "TRANSFER", // required
138
+ * // type: "HANGUP" || "TRANSFER" || "DELEGATE", // required
126
139
  * // name: "STRING_VALUE", // required
127
140
  * // parameters: "DOCUMENT_VALUE",
128
141
  * // },
@@ -138,8 +151,21 @@ declare const UpdateVoiceBotCommand_base: {
138
151
  * // webhook: { // VoiceBotFunctionIntegrationWebhook
139
152
  * // url: "STRING_VALUE", // required
140
153
  * // async: true || false,
141
- * // timeout: Number("int"),
142
- * // authorization: "DOCUMENT_VALUE",
154
+ * // authorization: { // VoiceBotFunctionIntegrationWebhookAuthorization Union: only one key present
155
+ * // bearer: { // VoiceBotFunctionIntegrationWebhookAuthorizationBearer
156
+ * // token: "STRING_VALUE", // required
157
+ * // },
158
+ * // basic: { // VoiceBotFunctionIntegrationWebhookAuthorizationBasic
159
+ * // username: "STRING_VALUE", // required
160
+ * // password: "STRING_VALUE", // required
161
+ * // },
162
+ * // oauth: { // VoiceBotFunctionIntegrationWebhookAuthorizationOAuth
163
+ * // clientId: "STRING_VALUE", // required
164
+ * // clientSecret: "STRING_VALUE", // required
165
+ * // endpointUrl: "STRING_VALUE", // required
166
+ * // scope: "STRING_VALUE",
167
+ * // },
168
+ * // },
143
169
  * // headers: [ // VoiceBotFunctionIntegrationWebhookHeadersList
144
170
  * // { // VoiceBotFunctionIntegrationWebhookHeader
145
171
  * // key: "STRING_VALUE", // required
@@ -1,7 +1,9 @@
1
1
  export * from "./CreateVoiceBotCommand";
2
2
  export * from "./DeleteVoiceBotCommand";
3
3
  export * from "./DescribeEventCommand";
4
+ export * from "./GetTraceCommand";
4
5
  export * from "./GetVoiceBotCommand";
6
+ export * from "./ListTracesCommand";
5
7
  export * from "./ListVoiceBotsCommand";
6
8
  export * from "./ListVoiceBotsNamesCommand";
7
9
  export * from "./SendHangupCommand";