@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.
- package/dist-cjs/VoiceBots.js +4 -0
- package/dist-cjs/commands/GetTraceCommand.js +21 -0
- package/dist-cjs/commands/ListTracesCommand.js +21 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +144 -1
- package/dist-cjs/protocols/Aws_restJson1.js +246 -5
- package/dist-es/VoiceBots.js +4 -0
- package/dist-es/commands/GetTraceCommand.js +17 -0
- package/dist-es/commands/ListTracesCommand.js +17 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +143 -0
- package/dist-es/protocols/Aws_restJson1.js +241 -4
- package/dist-types/VoiceBots.d.ts +15 -0
- package/dist-types/VoiceBotsClient.d.ts +4 -2
- package/dist-types/commands/CreateVoiceBotCommand.d.ts +32 -6
- package/dist-types/commands/DescribeEventCommand.d.ts +179 -2
- package/dist-types/commands/GetTraceCommand.d.ts +225 -0
- package/dist-types/commands/GetVoiceBotCommand.d.ts +16 -3
- package/dist-types/commands/ListTracesCommand.d.ts +80 -0
- package/dist-types/commands/ListVoiceBotsCommand.d.ts +16 -3
- package/dist-types/commands/SendHangupCommand.d.ts +2 -2
- package/dist-types/commands/SendSayCommand.d.ts +2 -2
- package/dist-types/commands/SendTransferCommand.d.ts +2 -2
- package/dist-types/commands/UpdateVoiceBotCommand.d.ts +32 -6
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +831 -42
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/package.json +1 -1
|
@@ -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
|
-
*
|
|
70
|
-
*
|
|
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
|
-
* //
|
|
142
|
-
* //
|
|
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";
|