@wildix/wilma-agents-client 1.0.34 → 1.0.35
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/models/enums.js +6 -1
- package/dist-cjs/schemas/schemas_0.js +72 -14
- package/dist-es/models/enums.js +5 -0
- package/dist-es/schemas/schemas_0.js +70 -12
- package/dist-types/commands/CreateAgentCommand.d.ts +84 -10
- package/dist-types/commands/GetAgentCommand.d.ts +42 -5
- package/dist-types/commands/GetAgentVersionCommand.d.ts +42 -5
- package/dist-types/commands/ListAgentsCommand.d.ts +43 -6
- package/dist-types/commands/ListAgentsNamesCommand.d.ts +3 -2
- package/dist-types/commands/PublishAgentVersionCommand.d.ts +42 -5
- package/dist-types/commands/RestoreAgentVersionToDraftCommand.d.ts +42 -5
- package/dist-types/commands/UpdateAgentCommand.d.ts +84 -10
- package/dist-types/models/enums.d.ts +22 -0
- package/dist-types/models/models_0.d.ts +204 -1
- package/dist-types/schemas/schemas_0.d.ts +6 -0
- package/package.json +1 -1
|
@@ -44,6 +44,32 @@ declare const CreateAgentCommand_base: {
|
|
|
44
44
|
* channels: { // AgentChannels
|
|
45
45
|
* voice: { // VoiceChannelSettings
|
|
46
46
|
* greeting: "STRING_VALUE",
|
|
47
|
+
* backgroundSound: { // VoiceBackgroundSoundSettings
|
|
48
|
+
* enabled: true || false, // required
|
|
49
|
+
* sound: "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* speech: { // VoiceSpeechSettings
|
|
52
|
+
* languages: [ // VoiceLanguageList // required
|
|
53
|
+
* { // VoiceLanguage
|
|
54
|
+
* code: "STRING_VALUE", // required
|
|
55
|
+
* voice: "STRING_VALUE", // required
|
|
56
|
+
* greeting: "STRING_VALUE",
|
|
57
|
+
* isDefault: true || false,
|
|
58
|
+
* pronunciations: [ // VoicePronunciationList
|
|
59
|
+
* { // VoicePronunciation
|
|
60
|
+
* phrase: "STRING_VALUE", // required
|
|
61
|
+
* as: "STRING_VALUE", // required
|
|
62
|
+
* encoding: "alias" || "ipa",
|
|
63
|
+
* },
|
|
64
|
+
* ],
|
|
65
|
+
* },
|
|
66
|
+
* ],
|
|
67
|
+
* greetEveryLanguage: true || false,
|
|
68
|
+
* transcription: { // VoiceTranscriptionSettings
|
|
69
|
+
* engine: "STRING_VALUE",
|
|
70
|
+
* autoDetect: true || false,
|
|
71
|
+
* },
|
|
72
|
+
* },
|
|
47
73
|
* interruptions: { // VoiceInterruptionSettings
|
|
48
74
|
* enabled: true || false, // required
|
|
49
75
|
* minWords: Number("int"),
|
|
@@ -108,6 +134,7 @@ declare const CreateAgentCommand_base: {
|
|
|
108
134
|
* placeholder: "STRING_VALUE",
|
|
109
135
|
* },
|
|
110
136
|
* },
|
|
137
|
+
* workflow: {},
|
|
111
138
|
* },
|
|
112
139
|
* engine: { // AgentEngine Union: only one key present
|
|
113
140
|
* ai: { // AgentAiEngine
|
|
@@ -159,7 +186,7 @@ declare const CreateAgentCommand_base: {
|
|
|
159
186
|
* prompt: "STRING_VALUE",
|
|
160
187
|
* },
|
|
161
188
|
* channels: [ // AgentCapabilityChannelsList
|
|
162
|
-
* "voice" || "chat" || "assistant",
|
|
189
|
+
* "voice" || "chat" || "assistant" || "workflow",
|
|
163
190
|
* ],
|
|
164
191
|
* annotations: [ // AgentToolAnnotationsList
|
|
165
192
|
* { // AgentToolAnnotation Union: only one key present
|
|
@@ -189,7 +216,7 @@ declare const CreateAgentCommand_base: {
|
|
|
189
216
|
* prompt: "STRING_VALUE",
|
|
190
217
|
* },
|
|
191
218
|
* channels: [
|
|
192
|
-
* "voice" || "chat" || "assistant",
|
|
219
|
+
* "voice" || "chat" || "assistant" || "workflow",
|
|
193
220
|
* ],
|
|
194
221
|
* annotations: [
|
|
195
222
|
* {// Union: only one key present
|
|
@@ -212,7 +239,7 @@ declare const CreateAgentCommand_base: {
|
|
|
212
239
|
* knowledgeBaseId: "STRING_VALUE",
|
|
213
240
|
* instructions: "STRING_VALUE",
|
|
214
241
|
* channels: [
|
|
215
|
-
* "voice" || "chat" || "assistant",
|
|
242
|
+
* "voice" || "chat" || "assistant" || "workflow",
|
|
216
243
|
* ],
|
|
217
244
|
* annotations: [
|
|
218
245
|
* {// Union: only one key present
|
|
@@ -260,7 +287,7 @@ declare const CreateAgentCommand_base: {
|
|
|
260
287
|
* timezone: "STRING_VALUE",
|
|
261
288
|
* },
|
|
262
289
|
* channels: [
|
|
263
|
-
* "voice" || "chat" || "assistant",
|
|
290
|
+
* "voice" || "chat" || "assistant" || "workflow",
|
|
264
291
|
* ],
|
|
265
292
|
* },
|
|
266
293
|
* webFetch: { // AgentWebFetchCapability
|
|
@@ -268,7 +295,7 @@ declare const CreateAgentCommand_base: {
|
|
|
268
295
|
* "STRING_VALUE",
|
|
269
296
|
* ],
|
|
270
297
|
* channels: [
|
|
271
|
-
* "voice" || "chat" || "assistant",
|
|
298
|
+
* "voice" || "chat" || "assistant" || "workflow",
|
|
272
299
|
* ],
|
|
273
300
|
* },
|
|
274
301
|
* agent: { // AgentCallCapability
|
|
@@ -799,6 +826,16 @@ declare const CreateAgentCommand_base: {
|
|
|
799
826
|
* },
|
|
800
827
|
* ],
|
|
801
828
|
* model: "STRING_VALUE",
|
|
829
|
+
* action: {// Union: only one key present
|
|
830
|
+
* observe: {},
|
|
831
|
+
* redact: {},
|
|
832
|
+
* block: {
|
|
833
|
+
* message: "STRING_VALUE",
|
|
834
|
+
* },
|
|
835
|
+
* end: {
|
|
836
|
+
* message: "STRING_VALUE",
|
|
837
|
+
* },
|
|
838
|
+
* },
|
|
802
839
|
* mode: "blocking" || "parallel",
|
|
803
840
|
* errorMode: "open" || "closed",
|
|
804
841
|
* window: "lastMessage" || "lastWithPrior",
|
|
@@ -854,6 +891,32 @@ declare const CreateAgentCommand_base: {
|
|
|
854
891
|
* // channels: { // AgentChannels
|
|
855
892
|
* // voice: { // VoiceChannelSettings
|
|
856
893
|
* // greeting: "STRING_VALUE",
|
|
894
|
+
* // backgroundSound: { // VoiceBackgroundSoundSettings
|
|
895
|
+
* // enabled: true || false, // required
|
|
896
|
+
* // sound: "STRING_VALUE",
|
|
897
|
+
* // },
|
|
898
|
+
* // speech: { // VoiceSpeechSettings
|
|
899
|
+
* // languages: [ // VoiceLanguageList // required
|
|
900
|
+
* // { // VoiceLanguage
|
|
901
|
+
* // code: "STRING_VALUE", // required
|
|
902
|
+
* // voice: "STRING_VALUE", // required
|
|
903
|
+
* // greeting: "STRING_VALUE",
|
|
904
|
+
* // isDefault: true || false,
|
|
905
|
+
* // pronunciations: [ // VoicePronunciationList
|
|
906
|
+
* // { // VoicePronunciation
|
|
907
|
+
* // phrase: "STRING_VALUE", // required
|
|
908
|
+
* // as: "STRING_VALUE", // required
|
|
909
|
+
* // encoding: "alias" || "ipa",
|
|
910
|
+
* // },
|
|
911
|
+
* // ],
|
|
912
|
+
* // },
|
|
913
|
+
* // ],
|
|
914
|
+
* // greetEveryLanguage: true || false,
|
|
915
|
+
* // transcription: { // VoiceTranscriptionSettings
|
|
916
|
+
* // engine: "STRING_VALUE",
|
|
917
|
+
* // autoDetect: true || false,
|
|
918
|
+
* // },
|
|
919
|
+
* // },
|
|
857
920
|
* // interruptions: { // VoiceInterruptionSettings
|
|
858
921
|
* // enabled: true || false, // required
|
|
859
922
|
* // minWords: Number("int"),
|
|
@@ -918,6 +981,7 @@ declare const CreateAgentCommand_base: {
|
|
|
918
981
|
* // placeholder: "STRING_VALUE",
|
|
919
982
|
* // },
|
|
920
983
|
* // },
|
|
984
|
+
* // workflow: {},
|
|
921
985
|
* // },
|
|
922
986
|
* // engine: { // AgentEngine Union: only one key present
|
|
923
987
|
* // ai: { // AgentAiEngine
|
|
@@ -969,7 +1033,7 @@ declare const CreateAgentCommand_base: {
|
|
|
969
1033
|
* // prompt: "STRING_VALUE",
|
|
970
1034
|
* // },
|
|
971
1035
|
* // channels: [ // AgentCapabilityChannelsList
|
|
972
|
-
* // "voice" || "chat" || "assistant",
|
|
1036
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
973
1037
|
* // ],
|
|
974
1038
|
* // annotations: [ // AgentToolAnnotationsList
|
|
975
1039
|
* // { // AgentToolAnnotation Union: only one key present
|
|
@@ -999,7 +1063,7 @@ declare const CreateAgentCommand_base: {
|
|
|
999
1063
|
* // prompt: "STRING_VALUE",
|
|
1000
1064
|
* // },
|
|
1001
1065
|
* // channels: [
|
|
1002
|
-
* // "voice" || "chat" || "assistant",
|
|
1066
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
1003
1067
|
* // ],
|
|
1004
1068
|
* // annotations: [
|
|
1005
1069
|
* // {// Union: only one key present
|
|
@@ -1022,7 +1086,7 @@ declare const CreateAgentCommand_base: {
|
|
|
1022
1086
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
1023
1087
|
* // instructions: "STRING_VALUE",
|
|
1024
1088
|
* // channels: [
|
|
1025
|
-
* // "voice" || "chat" || "assistant",
|
|
1089
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
1026
1090
|
* // ],
|
|
1027
1091
|
* // annotations: [
|
|
1028
1092
|
* // {// Union: only one key present
|
|
@@ -1070,7 +1134,7 @@ declare const CreateAgentCommand_base: {
|
|
|
1070
1134
|
* // timezone: "STRING_VALUE",
|
|
1071
1135
|
* // },
|
|
1072
1136
|
* // channels: [
|
|
1073
|
-
* // "voice" || "chat" || "assistant",
|
|
1137
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
1074
1138
|
* // ],
|
|
1075
1139
|
* // },
|
|
1076
1140
|
* // webFetch: { // AgentWebFetchCapability
|
|
@@ -1078,7 +1142,7 @@ declare const CreateAgentCommand_base: {
|
|
|
1078
1142
|
* // "STRING_VALUE",
|
|
1079
1143
|
* // ],
|
|
1080
1144
|
* // channels: [
|
|
1081
|
-
* // "voice" || "chat" || "assistant",
|
|
1145
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
1082
1146
|
* // ],
|
|
1083
1147
|
* // },
|
|
1084
1148
|
* // agent: { // AgentCallCapability
|
|
@@ -1609,6 +1673,16 @@ declare const CreateAgentCommand_base: {
|
|
|
1609
1673
|
* // },
|
|
1610
1674
|
* // ],
|
|
1611
1675
|
* // model: "STRING_VALUE",
|
|
1676
|
+
* // action: {// Union: only one key present
|
|
1677
|
+
* // observe: {},
|
|
1678
|
+
* // redact: {},
|
|
1679
|
+
* // block: {
|
|
1680
|
+
* // message: "STRING_VALUE",
|
|
1681
|
+
* // },
|
|
1682
|
+
* // end: {
|
|
1683
|
+
* // message: "STRING_VALUE",
|
|
1684
|
+
* // },
|
|
1685
|
+
* // },
|
|
1612
1686
|
* // mode: "blocking" || "parallel",
|
|
1613
1687
|
* // errorMode: "open" || "closed",
|
|
1614
1688
|
* // window: "lastMessage" || "lastWithPrior",
|
|
@@ -51,6 +51,32 @@ declare const GetAgentCommand_base: {
|
|
|
51
51
|
* // channels: { // AgentChannels
|
|
52
52
|
* // voice: { // VoiceChannelSettings
|
|
53
53
|
* // greeting: "STRING_VALUE",
|
|
54
|
+
* // backgroundSound: { // VoiceBackgroundSoundSettings
|
|
55
|
+
* // enabled: true || false, // required
|
|
56
|
+
* // sound: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // speech: { // VoiceSpeechSettings
|
|
59
|
+
* // languages: [ // VoiceLanguageList // required
|
|
60
|
+
* // { // VoiceLanguage
|
|
61
|
+
* // code: "STRING_VALUE", // required
|
|
62
|
+
* // voice: "STRING_VALUE", // required
|
|
63
|
+
* // greeting: "STRING_VALUE",
|
|
64
|
+
* // isDefault: true || false,
|
|
65
|
+
* // pronunciations: [ // VoicePronunciationList
|
|
66
|
+
* // { // VoicePronunciation
|
|
67
|
+
* // phrase: "STRING_VALUE", // required
|
|
68
|
+
* // as: "STRING_VALUE", // required
|
|
69
|
+
* // encoding: "alias" || "ipa",
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // greetEveryLanguage: true || false,
|
|
75
|
+
* // transcription: { // VoiceTranscriptionSettings
|
|
76
|
+
* // engine: "STRING_VALUE",
|
|
77
|
+
* // autoDetect: true || false,
|
|
78
|
+
* // },
|
|
79
|
+
* // },
|
|
54
80
|
* // interruptions: { // VoiceInterruptionSettings
|
|
55
81
|
* // enabled: true || false, // required
|
|
56
82
|
* // minWords: Number("int"),
|
|
@@ -115,6 +141,7 @@ declare const GetAgentCommand_base: {
|
|
|
115
141
|
* // placeholder: "STRING_VALUE",
|
|
116
142
|
* // },
|
|
117
143
|
* // },
|
|
144
|
+
* // workflow: {},
|
|
118
145
|
* // },
|
|
119
146
|
* // engine: { // AgentEngine Union: only one key present
|
|
120
147
|
* // ai: { // AgentAiEngine
|
|
@@ -166,7 +193,7 @@ declare const GetAgentCommand_base: {
|
|
|
166
193
|
* // prompt: "STRING_VALUE",
|
|
167
194
|
* // },
|
|
168
195
|
* // channels: [ // AgentCapabilityChannelsList
|
|
169
|
-
* // "voice" || "chat" || "assistant",
|
|
196
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
170
197
|
* // ],
|
|
171
198
|
* // annotations: [ // AgentToolAnnotationsList
|
|
172
199
|
* // { // AgentToolAnnotation Union: only one key present
|
|
@@ -196,7 +223,7 @@ declare const GetAgentCommand_base: {
|
|
|
196
223
|
* // prompt: "STRING_VALUE",
|
|
197
224
|
* // },
|
|
198
225
|
* // channels: [
|
|
199
|
-
* // "voice" || "chat" || "assistant",
|
|
226
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
200
227
|
* // ],
|
|
201
228
|
* // annotations: [
|
|
202
229
|
* // {// Union: only one key present
|
|
@@ -219,7 +246,7 @@ declare const GetAgentCommand_base: {
|
|
|
219
246
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
220
247
|
* // instructions: "STRING_VALUE",
|
|
221
248
|
* // channels: [
|
|
222
|
-
* // "voice" || "chat" || "assistant",
|
|
249
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
223
250
|
* // ],
|
|
224
251
|
* // annotations: [
|
|
225
252
|
* // {// Union: only one key present
|
|
@@ -267,7 +294,7 @@ declare const GetAgentCommand_base: {
|
|
|
267
294
|
* // timezone: "STRING_VALUE",
|
|
268
295
|
* // },
|
|
269
296
|
* // channels: [
|
|
270
|
-
* // "voice" || "chat" || "assistant",
|
|
297
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
271
298
|
* // ],
|
|
272
299
|
* // },
|
|
273
300
|
* // webFetch: { // AgentWebFetchCapability
|
|
@@ -275,7 +302,7 @@ declare const GetAgentCommand_base: {
|
|
|
275
302
|
* // "STRING_VALUE",
|
|
276
303
|
* // ],
|
|
277
304
|
* // channels: [
|
|
278
|
-
* // "voice" || "chat" || "assistant",
|
|
305
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
279
306
|
* // ],
|
|
280
307
|
* // },
|
|
281
308
|
* // agent: { // AgentCallCapability
|
|
@@ -806,6 +833,16 @@ declare const GetAgentCommand_base: {
|
|
|
806
833
|
* // },
|
|
807
834
|
* // ],
|
|
808
835
|
* // model: "STRING_VALUE",
|
|
836
|
+
* // action: {// Union: only one key present
|
|
837
|
+
* // observe: {},
|
|
838
|
+
* // redact: {},
|
|
839
|
+
* // block: {
|
|
840
|
+
* // message: "STRING_VALUE",
|
|
841
|
+
* // },
|
|
842
|
+
* // end: {
|
|
843
|
+
* // message: "STRING_VALUE",
|
|
844
|
+
* // },
|
|
845
|
+
* // },
|
|
809
846
|
* // mode: "blocking" || "parallel",
|
|
810
847
|
* // errorMode: "open" || "closed",
|
|
811
848
|
* // window: "lastMessage" || "lastWithPrior",
|
|
@@ -58,6 +58,32 @@ declare const GetAgentVersionCommand_base: {
|
|
|
58
58
|
* // channels: { // AgentChannels
|
|
59
59
|
* // voice: { // VoiceChannelSettings
|
|
60
60
|
* // greeting: "STRING_VALUE",
|
|
61
|
+
* // backgroundSound: { // VoiceBackgroundSoundSettings
|
|
62
|
+
* // enabled: true || false, // required
|
|
63
|
+
* // sound: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // speech: { // VoiceSpeechSettings
|
|
66
|
+
* // languages: [ // VoiceLanguageList // required
|
|
67
|
+
* // { // VoiceLanguage
|
|
68
|
+
* // code: "STRING_VALUE", // required
|
|
69
|
+
* // voice: "STRING_VALUE", // required
|
|
70
|
+
* // greeting: "STRING_VALUE",
|
|
71
|
+
* // isDefault: true || false,
|
|
72
|
+
* // pronunciations: [ // VoicePronunciationList
|
|
73
|
+
* // { // VoicePronunciation
|
|
74
|
+
* // phrase: "STRING_VALUE", // required
|
|
75
|
+
* // as: "STRING_VALUE", // required
|
|
76
|
+
* // encoding: "alias" || "ipa",
|
|
77
|
+
* // },
|
|
78
|
+
* // ],
|
|
79
|
+
* // },
|
|
80
|
+
* // ],
|
|
81
|
+
* // greetEveryLanguage: true || false,
|
|
82
|
+
* // transcription: { // VoiceTranscriptionSettings
|
|
83
|
+
* // engine: "STRING_VALUE",
|
|
84
|
+
* // autoDetect: true || false,
|
|
85
|
+
* // },
|
|
86
|
+
* // },
|
|
61
87
|
* // interruptions: { // VoiceInterruptionSettings
|
|
62
88
|
* // enabled: true || false, // required
|
|
63
89
|
* // minWords: Number("int"),
|
|
@@ -122,6 +148,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
122
148
|
* // placeholder: "STRING_VALUE",
|
|
123
149
|
* // },
|
|
124
150
|
* // },
|
|
151
|
+
* // workflow: {},
|
|
125
152
|
* // },
|
|
126
153
|
* // engine: { // AgentEngine Union: only one key present
|
|
127
154
|
* // ai: { // AgentAiEngine
|
|
@@ -173,7 +200,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
173
200
|
* // prompt: "STRING_VALUE",
|
|
174
201
|
* // },
|
|
175
202
|
* // channels: [ // AgentCapabilityChannelsList
|
|
176
|
-
* // "voice" || "chat" || "assistant",
|
|
203
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
177
204
|
* // ],
|
|
178
205
|
* // annotations: [ // AgentToolAnnotationsList
|
|
179
206
|
* // { // AgentToolAnnotation Union: only one key present
|
|
@@ -203,7 +230,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
203
230
|
* // prompt: "STRING_VALUE",
|
|
204
231
|
* // },
|
|
205
232
|
* // channels: [
|
|
206
|
-
* // "voice" || "chat" || "assistant",
|
|
233
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
207
234
|
* // ],
|
|
208
235
|
* // annotations: [
|
|
209
236
|
* // {// Union: only one key present
|
|
@@ -226,7 +253,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
226
253
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
227
254
|
* // instructions: "STRING_VALUE",
|
|
228
255
|
* // channels: [
|
|
229
|
-
* // "voice" || "chat" || "assistant",
|
|
256
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
230
257
|
* // ],
|
|
231
258
|
* // annotations: [
|
|
232
259
|
* // {// Union: only one key present
|
|
@@ -274,7 +301,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
274
301
|
* // timezone: "STRING_VALUE",
|
|
275
302
|
* // },
|
|
276
303
|
* // channels: [
|
|
277
|
-
* // "voice" || "chat" || "assistant",
|
|
304
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
278
305
|
* // ],
|
|
279
306
|
* // },
|
|
280
307
|
* // webFetch: { // AgentWebFetchCapability
|
|
@@ -282,7 +309,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
282
309
|
* // "STRING_VALUE",
|
|
283
310
|
* // ],
|
|
284
311
|
* // channels: [
|
|
285
|
-
* // "voice" || "chat" || "assistant",
|
|
312
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
286
313
|
* // ],
|
|
287
314
|
* // },
|
|
288
315
|
* // agent: { // AgentCallCapability
|
|
@@ -813,6 +840,16 @@ declare const GetAgentVersionCommand_base: {
|
|
|
813
840
|
* // },
|
|
814
841
|
* // ],
|
|
815
842
|
* // model: "STRING_VALUE",
|
|
843
|
+
* // action: {// Union: only one key present
|
|
844
|
+
* // observe: {},
|
|
845
|
+
* // redact: {},
|
|
846
|
+
* // block: {
|
|
847
|
+
* // message: "STRING_VALUE",
|
|
848
|
+
* // },
|
|
849
|
+
* // end: {
|
|
850
|
+
* // message: "STRING_VALUE",
|
|
851
|
+
* // },
|
|
852
|
+
* // },
|
|
816
853
|
* // mode: "blocking" || "parallel",
|
|
817
854
|
* // errorMode: "open" || "closed",
|
|
818
855
|
* // window: "lastMessage" || "lastWithPrior",
|
|
@@ -38,7 +38,7 @@ declare const ListAgentsCommand_base: {
|
|
|
38
38
|
* const client = new WilmaAgentsClient(config);
|
|
39
39
|
* const input = { // ListAgentsInput
|
|
40
40
|
* company: "STRING_VALUE",
|
|
41
|
-
* channel: "voice" || "chat" || "assistant",
|
|
41
|
+
* channel: "voice" || "chat" || "assistant" || "workflow",
|
|
42
42
|
* status: "draft" || "active",
|
|
43
43
|
* search: "STRING_VALUE",
|
|
44
44
|
* limit: Number("int"),
|
|
@@ -56,6 +56,32 @@ declare const ListAgentsCommand_base: {
|
|
|
56
56
|
* // channels: { // AgentChannels
|
|
57
57
|
* // voice: { // VoiceChannelSettings
|
|
58
58
|
* // greeting: "STRING_VALUE",
|
|
59
|
+
* // backgroundSound: { // VoiceBackgroundSoundSettings
|
|
60
|
+
* // enabled: true || false, // required
|
|
61
|
+
* // sound: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // speech: { // VoiceSpeechSettings
|
|
64
|
+
* // languages: [ // VoiceLanguageList // required
|
|
65
|
+
* // { // VoiceLanguage
|
|
66
|
+
* // code: "STRING_VALUE", // required
|
|
67
|
+
* // voice: "STRING_VALUE", // required
|
|
68
|
+
* // greeting: "STRING_VALUE",
|
|
69
|
+
* // isDefault: true || false,
|
|
70
|
+
* // pronunciations: [ // VoicePronunciationList
|
|
71
|
+
* // { // VoicePronunciation
|
|
72
|
+
* // phrase: "STRING_VALUE", // required
|
|
73
|
+
* // as: "STRING_VALUE", // required
|
|
74
|
+
* // encoding: "alias" || "ipa",
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // },
|
|
78
|
+
* // ],
|
|
79
|
+
* // greetEveryLanguage: true || false,
|
|
80
|
+
* // transcription: { // VoiceTranscriptionSettings
|
|
81
|
+
* // engine: "STRING_VALUE",
|
|
82
|
+
* // autoDetect: true || false,
|
|
83
|
+
* // },
|
|
84
|
+
* // },
|
|
59
85
|
* // interruptions: { // VoiceInterruptionSettings
|
|
60
86
|
* // enabled: true || false, // required
|
|
61
87
|
* // minWords: Number("int"),
|
|
@@ -120,6 +146,7 @@ declare const ListAgentsCommand_base: {
|
|
|
120
146
|
* // placeholder: "STRING_VALUE",
|
|
121
147
|
* // },
|
|
122
148
|
* // },
|
|
149
|
+
* // workflow: {},
|
|
123
150
|
* // },
|
|
124
151
|
* // engine: { // AgentEngine Union: only one key present
|
|
125
152
|
* // ai: { // AgentAiEngine
|
|
@@ -171,7 +198,7 @@ declare const ListAgentsCommand_base: {
|
|
|
171
198
|
* // prompt: "STRING_VALUE",
|
|
172
199
|
* // },
|
|
173
200
|
* // channels: [ // AgentCapabilityChannelsList
|
|
174
|
-
* // "voice" || "chat" || "assistant",
|
|
201
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
175
202
|
* // ],
|
|
176
203
|
* // annotations: [ // AgentToolAnnotationsList
|
|
177
204
|
* // { // AgentToolAnnotation Union: only one key present
|
|
@@ -201,7 +228,7 @@ declare const ListAgentsCommand_base: {
|
|
|
201
228
|
* // prompt: "STRING_VALUE",
|
|
202
229
|
* // },
|
|
203
230
|
* // channels: [
|
|
204
|
-
* // "voice" || "chat" || "assistant",
|
|
231
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
205
232
|
* // ],
|
|
206
233
|
* // annotations: [
|
|
207
234
|
* // {// Union: only one key present
|
|
@@ -224,7 +251,7 @@ declare const ListAgentsCommand_base: {
|
|
|
224
251
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
225
252
|
* // instructions: "STRING_VALUE",
|
|
226
253
|
* // channels: [
|
|
227
|
-
* // "voice" || "chat" || "assistant",
|
|
254
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
228
255
|
* // ],
|
|
229
256
|
* // annotations: [
|
|
230
257
|
* // {// Union: only one key present
|
|
@@ -272,7 +299,7 @@ declare const ListAgentsCommand_base: {
|
|
|
272
299
|
* // timezone: "STRING_VALUE",
|
|
273
300
|
* // },
|
|
274
301
|
* // channels: [
|
|
275
|
-
* // "voice" || "chat" || "assistant",
|
|
302
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
276
303
|
* // ],
|
|
277
304
|
* // },
|
|
278
305
|
* // webFetch: { // AgentWebFetchCapability
|
|
@@ -280,7 +307,7 @@ declare const ListAgentsCommand_base: {
|
|
|
280
307
|
* // "STRING_VALUE",
|
|
281
308
|
* // ],
|
|
282
309
|
* // channels: [
|
|
283
|
-
* // "voice" || "chat" || "assistant",
|
|
310
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
284
311
|
* // ],
|
|
285
312
|
* // },
|
|
286
313
|
* // agent: { // AgentCallCapability
|
|
@@ -811,6 +838,16 @@ declare const ListAgentsCommand_base: {
|
|
|
811
838
|
* // },
|
|
812
839
|
* // ],
|
|
813
840
|
* // model: "STRING_VALUE",
|
|
841
|
+
* // action: {// Union: only one key present
|
|
842
|
+
* // observe: {},
|
|
843
|
+
* // redact: {},
|
|
844
|
+
* // block: {
|
|
845
|
+
* // message: "STRING_VALUE",
|
|
846
|
+
* // },
|
|
847
|
+
* // end: {
|
|
848
|
+
* // message: "STRING_VALUE",
|
|
849
|
+
* // },
|
|
850
|
+
* // },
|
|
814
851
|
* // mode: "blocking" || "parallel",
|
|
815
852
|
* // errorMode: "open" || "closed",
|
|
816
853
|
* // window: "lastMessage" || "lastWithPrior",
|
|
@@ -38,7 +38,7 @@ declare const ListAgentsNamesCommand_base: {
|
|
|
38
38
|
* const client = new WilmaAgentsClient(config);
|
|
39
39
|
* const input = { // ListAgentsNamesInput
|
|
40
40
|
* company: "STRING_VALUE",
|
|
41
|
-
* channel: "voice" || "chat" || "assistant",
|
|
41
|
+
* channel: "voice" || "chat" || "assistant" || "workflow",
|
|
42
42
|
* };
|
|
43
43
|
* const command = new ListAgentsNamesCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
@@ -51,8 +51,9 @@ declare const ListAgentsNamesCommand_base: {
|
|
|
51
51
|
* // category: "STRING_VALUE",
|
|
52
52
|
* // status: "draft" || "active", // required
|
|
53
53
|
* // channels: [ // ChannelTypeList // required
|
|
54
|
-
* // "voice" || "chat" || "assistant",
|
|
54
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
55
55
|
* // ],
|
|
56
|
+
* // speechConfigured: true || false,
|
|
56
57
|
* // skillIds: [ // AgentSkillIdsList
|
|
57
58
|
* // "STRING_VALUE",
|
|
58
59
|
* // ],
|
|
@@ -60,6 +60,32 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
60
60
|
* // channels: { // AgentChannels
|
|
61
61
|
* // voice: { // VoiceChannelSettings
|
|
62
62
|
* // greeting: "STRING_VALUE",
|
|
63
|
+
* // backgroundSound: { // VoiceBackgroundSoundSettings
|
|
64
|
+
* // enabled: true || false, // required
|
|
65
|
+
* // sound: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // speech: { // VoiceSpeechSettings
|
|
68
|
+
* // languages: [ // VoiceLanguageList // required
|
|
69
|
+
* // { // VoiceLanguage
|
|
70
|
+
* // code: "STRING_VALUE", // required
|
|
71
|
+
* // voice: "STRING_VALUE", // required
|
|
72
|
+
* // greeting: "STRING_VALUE",
|
|
73
|
+
* // isDefault: true || false,
|
|
74
|
+
* // pronunciations: [ // VoicePronunciationList
|
|
75
|
+
* // { // VoicePronunciation
|
|
76
|
+
* // phrase: "STRING_VALUE", // required
|
|
77
|
+
* // as: "STRING_VALUE", // required
|
|
78
|
+
* // encoding: "alias" || "ipa",
|
|
79
|
+
* // },
|
|
80
|
+
* // ],
|
|
81
|
+
* // },
|
|
82
|
+
* // ],
|
|
83
|
+
* // greetEveryLanguage: true || false,
|
|
84
|
+
* // transcription: { // VoiceTranscriptionSettings
|
|
85
|
+
* // engine: "STRING_VALUE",
|
|
86
|
+
* // autoDetect: true || false,
|
|
87
|
+
* // },
|
|
88
|
+
* // },
|
|
63
89
|
* // interruptions: { // VoiceInterruptionSettings
|
|
64
90
|
* // enabled: true || false, // required
|
|
65
91
|
* // minWords: Number("int"),
|
|
@@ -124,6 +150,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
124
150
|
* // placeholder: "STRING_VALUE",
|
|
125
151
|
* // },
|
|
126
152
|
* // },
|
|
153
|
+
* // workflow: {},
|
|
127
154
|
* // },
|
|
128
155
|
* // engine: { // AgentEngine Union: only one key present
|
|
129
156
|
* // ai: { // AgentAiEngine
|
|
@@ -175,7 +202,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
175
202
|
* // prompt: "STRING_VALUE",
|
|
176
203
|
* // },
|
|
177
204
|
* // channels: [ // AgentCapabilityChannelsList
|
|
178
|
-
* // "voice" || "chat" || "assistant",
|
|
205
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
179
206
|
* // ],
|
|
180
207
|
* // annotations: [ // AgentToolAnnotationsList
|
|
181
208
|
* // { // AgentToolAnnotation Union: only one key present
|
|
@@ -205,7 +232,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
205
232
|
* // prompt: "STRING_VALUE",
|
|
206
233
|
* // },
|
|
207
234
|
* // channels: [
|
|
208
|
-
* // "voice" || "chat" || "assistant",
|
|
235
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
209
236
|
* // ],
|
|
210
237
|
* // annotations: [
|
|
211
238
|
* // {// Union: only one key present
|
|
@@ -228,7 +255,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
228
255
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
229
256
|
* // instructions: "STRING_VALUE",
|
|
230
257
|
* // channels: [
|
|
231
|
-
* // "voice" || "chat" || "assistant",
|
|
258
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
232
259
|
* // ],
|
|
233
260
|
* // annotations: [
|
|
234
261
|
* // {// Union: only one key present
|
|
@@ -276,7 +303,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
276
303
|
* // timezone: "STRING_VALUE",
|
|
277
304
|
* // },
|
|
278
305
|
* // channels: [
|
|
279
|
-
* // "voice" || "chat" || "assistant",
|
|
306
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
280
307
|
* // ],
|
|
281
308
|
* // },
|
|
282
309
|
* // webFetch: { // AgentWebFetchCapability
|
|
@@ -284,7 +311,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
284
311
|
* // "STRING_VALUE",
|
|
285
312
|
* // ],
|
|
286
313
|
* // channels: [
|
|
287
|
-
* // "voice" || "chat" || "assistant",
|
|
314
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
288
315
|
* // ],
|
|
289
316
|
* // },
|
|
290
317
|
* // agent: { // AgentCallCapability
|
|
@@ -815,6 +842,16 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
815
842
|
* // },
|
|
816
843
|
* // ],
|
|
817
844
|
* // model: "STRING_VALUE",
|
|
845
|
+
* // action: {// Union: only one key present
|
|
846
|
+
* // observe: {},
|
|
847
|
+
* // redact: {},
|
|
848
|
+
* // block: {
|
|
849
|
+
* // message: "STRING_VALUE",
|
|
850
|
+
* // },
|
|
851
|
+
* // end: {
|
|
852
|
+
* // message: "STRING_VALUE",
|
|
853
|
+
* // },
|
|
854
|
+
* // },
|
|
818
855
|
* // mode: "blocking" || "parallel",
|
|
819
856
|
* // errorMode: "open" || "closed",
|
|
820
857
|
* // window: "lastMessage" || "lastWithPrior",
|