@wildix/wilma-agents-client 1.0.39 → 1.0.41
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 +1 -11
- package/dist-cjs/schemas/schemas_0.js +35 -25
- package/dist-es/models/enums.js +0 -10
- package/dist-es/schemas/schemas_0.js +31 -21
- package/dist-types/commands/CreateAgentCommand.d.ts +66 -16
- package/dist-types/commands/GetAgentCommand.d.ts +33 -8
- package/dist-types/commands/GetAgentVersionCommand.d.ts +33 -8
- package/dist-types/commands/ListAgentsCommand.d.ts +33 -8
- package/dist-types/commands/PublishAgentVersionCommand.d.ts +33 -8
- package/dist-types/commands/RestoreAgentVersionToDraftCommand.d.ts +33 -8
- package/dist-types/commands/UpdateAgentCommand.d.ts +66 -16
- package/dist-types/models/enums.d.ts +0 -35
- package/dist-types/models/models_0.d.ts +50 -34
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/package.json +1 -1
|
@@ -86,6 +86,12 @@ declare const GetAgentCommand_base: {
|
|
|
86
86
|
* // action: { // VoiceTerminateAction Union: only one key present
|
|
87
87
|
* // hangup: { // VoiceTerminateHangupAction
|
|
88
88
|
* // message: "STRING_VALUE",
|
|
89
|
+
* // messages: [ // AgentSpokenPhraseList
|
|
90
|
+
* // { // AgentSpokenPhrase
|
|
91
|
+
* // language: "STRING_VALUE", // required
|
|
92
|
+
* // text: "STRING_VALUE", // required
|
|
93
|
+
* // },
|
|
94
|
+
* // ],
|
|
89
95
|
* // },
|
|
90
96
|
* // transfer: { // VoiceTransferTarget
|
|
91
97
|
* // name: "STRING_VALUE", // required
|
|
@@ -100,6 +106,12 @@ declare const GetAgentCommand_base: {
|
|
|
100
106
|
* // action: {// Union: only one key present
|
|
101
107
|
* // hangup: {
|
|
102
108
|
* // message: "STRING_VALUE",
|
|
109
|
+
* // messages: [
|
|
110
|
+
* // {
|
|
111
|
+
* // language: "STRING_VALUE", // required
|
|
112
|
+
* // text: "STRING_VALUE", // required
|
|
113
|
+
* // },
|
|
114
|
+
* // ],
|
|
103
115
|
* // },
|
|
104
116
|
* // transfer: {
|
|
105
117
|
* // name: "STRING_VALUE", // required
|
|
@@ -184,6 +196,12 @@ declare const GetAgentCommand_base: {
|
|
|
184
196
|
* // },
|
|
185
197
|
* // ],
|
|
186
198
|
* // startMessage: "STRING_VALUE",
|
|
199
|
+
* // startMessages: [
|
|
200
|
+
* // {
|
|
201
|
+
* // language: "STRING_VALUE", // required
|
|
202
|
+
* // text: "STRING_VALUE", // required
|
|
203
|
+
* // },
|
|
204
|
+
* // ],
|
|
187
205
|
* // pipeline: { // AgentToolPipeline
|
|
188
206
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
189
207
|
* // instructions: "STRING_VALUE",
|
|
@@ -214,6 +232,12 @@ declare const GetAgentCommand_base: {
|
|
|
214
232
|
* // connector: { // AgentConnectorCapability
|
|
215
233
|
* // id: "STRING_VALUE", // required
|
|
216
234
|
* // startMessage: "STRING_VALUE",
|
|
235
|
+
* // startMessages: [
|
|
236
|
+
* // {
|
|
237
|
+
* // language: "STRING_VALUE", // required
|
|
238
|
+
* // text: "STRING_VALUE", // required
|
|
239
|
+
* // },
|
|
240
|
+
* // ],
|
|
217
241
|
* // pipeline: {
|
|
218
242
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
219
243
|
* // instructions: "STRING_VALUE",
|
|
@@ -244,9 +268,6 @@ declare const GetAgentCommand_base: {
|
|
|
244
268
|
* // kb: { // AgentKnowledgeBase
|
|
245
269
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
246
270
|
* // instructions: "STRING_VALUE",
|
|
247
|
-
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
248
|
-
* // searchThreshold: "low" || "medium" || "high",
|
|
249
|
-
* // searchLimit: Number("int"),
|
|
250
271
|
* // channels: [
|
|
251
272
|
* // "voice" || "chat" || "assistant",
|
|
252
273
|
* // ],
|
|
@@ -403,7 +424,6 @@ declare const GetAgentCommand_base: {
|
|
|
403
424
|
* // },
|
|
404
425
|
* // suggestions: { // AgentSuggestionsCapability
|
|
405
426
|
* // name: "STRING_VALUE",
|
|
406
|
-
* // instructions: "STRING_VALUE",
|
|
407
427
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
408
428
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
409
429
|
* // },
|
|
@@ -421,6 +441,12 @@ declare const GetAgentCommand_base: {
|
|
|
421
441
|
* // name: "STRING_VALUE",
|
|
422
442
|
* // description: "STRING_VALUE",
|
|
423
443
|
* // message: "STRING_VALUE",
|
|
444
|
+
* // messages: [
|
|
445
|
+
* // {
|
|
446
|
+
* // language: "STRING_VALUE", // required
|
|
447
|
+
* // text: "STRING_VALUE", // required
|
|
448
|
+
* // },
|
|
449
|
+
* // ],
|
|
424
450
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
425
451
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
426
452
|
* // },
|
|
@@ -479,6 +505,7 @@ declare const GetAgentCommand_base: {
|
|
|
479
505
|
* // },
|
|
480
506
|
* // ],
|
|
481
507
|
* // startMessage: "STRING_VALUE",
|
|
508
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
482
509
|
* // pipeline: {
|
|
483
510
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
484
511
|
* // instructions: "STRING_VALUE",
|
|
@@ -492,6 +519,7 @@ declare const GetAgentCommand_base: {
|
|
|
492
519
|
* // connector: {
|
|
493
520
|
* // id: "STRING_VALUE", // required
|
|
494
521
|
* // startMessage: "STRING_VALUE",
|
|
522
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
495
523
|
* // pipeline: {
|
|
496
524
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
497
525
|
* // instructions: "STRING_VALUE",
|
|
@@ -580,6 +608,7 @@ declare const GetAgentCommand_base: {
|
|
|
580
608
|
* // name: "STRING_VALUE",
|
|
581
609
|
* // description: "STRING_VALUE",
|
|
582
610
|
* // message: "STRING_VALUE",
|
|
611
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
583
612
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
584
613
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
585
614
|
* // },
|
|
@@ -658,9 +687,6 @@ declare const GetAgentCommand_base: {
|
|
|
658
687
|
* // kb: {
|
|
659
688
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
660
689
|
* // instructions: "STRING_VALUE",
|
|
661
|
-
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
662
|
-
* // searchThreshold: "low" || "medium" || "high",
|
|
663
|
-
* // searchLimit: Number("int"),
|
|
664
690
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
665
691
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
666
692
|
* // },
|
|
@@ -698,7 +724,6 @@ declare const GetAgentCommand_base: {
|
|
|
698
724
|
* // transfer: "<AgentTransferCapability>",
|
|
699
725
|
* // suggestions: {
|
|
700
726
|
* // name: "STRING_VALUE",
|
|
701
|
-
* // instructions: "STRING_VALUE",
|
|
702
727
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
703
728
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
704
729
|
* // },
|
|
@@ -93,6 +93,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
93
93
|
* // action: { // VoiceTerminateAction Union: only one key present
|
|
94
94
|
* // hangup: { // VoiceTerminateHangupAction
|
|
95
95
|
* // message: "STRING_VALUE",
|
|
96
|
+
* // messages: [ // AgentSpokenPhraseList
|
|
97
|
+
* // { // AgentSpokenPhrase
|
|
98
|
+
* // language: "STRING_VALUE", // required
|
|
99
|
+
* // text: "STRING_VALUE", // required
|
|
100
|
+
* // },
|
|
101
|
+
* // ],
|
|
96
102
|
* // },
|
|
97
103
|
* // transfer: { // VoiceTransferTarget
|
|
98
104
|
* // name: "STRING_VALUE", // required
|
|
@@ -107,6 +113,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
107
113
|
* // action: {// Union: only one key present
|
|
108
114
|
* // hangup: {
|
|
109
115
|
* // message: "STRING_VALUE",
|
|
116
|
+
* // messages: [
|
|
117
|
+
* // {
|
|
118
|
+
* // language: "STRING_VALUE", // required
|
|
119
|
+
* // text: "STRING_VALUE", // required
|
|
120
|
+
* // },
|
|
121
|
+
* // ],
|
|
110
122
|
* // },
|
|
111
123
|
* // transfer: {
|
|
112
124
|
* // name: "STRING_VALUE", // required
|
|
@@ -191,6 +203,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
191
203
|
* // },
|
|
192
204
|
* // ],
|
|
193
205
|
* // startMessage: "STRING_VALUE",
|
|
206
|
+
* // startMessages: [
|
|
207
|
+
* // {
|
|
208
|
+
* // language: "STRING_VALUE", // required
|
|
209
|
+
* // text: "STRING_VALUE", // required
|
|
210
|
+
* // },
|
|
211
|
+
* // ],
|
|
194
212
|
* // pipeline: { // AgentToolPipeline
|
|
195
213
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
196
214
|
* // instructions: "STRING_VALUE",
|
|
@@ -221,6 +239,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
221
239
|
* // connector: { // AgentConnectorCapability
|
|
222
240
|
* // id: "STRING_VALUE", // required
|
|
223
241
|
* // startMessage: "STRING_VALUE",
|
|
242
|
+
* // startMessages: [
|
|
243
|
+
* // {
|
|
244
|
+
* // language: "STRING_VALUE", // required
|
|
245
|
+
* // text: "STRING_VALUE", // required
|
|
246
|
+
* // },
|
|
247
|
+
* // ],
|
|
224
248
|
* // pipeline: {
|
|
225
249
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
226
250
|
* // instructions: "STRING_VALUE",
|
|
@@ -251,9 +275,6 @@ declare const GetAgentVersionCommand_base: {
|
|
|
251
275
|
* // kb: { // AgentKnowledgeBase
|
|
252
276
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
253
277
|
* // instructions: "STRING_VALUE",
|
|
254
|
-
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
255
|
-
* // searchThreshold: "low" || "medium" || "high",
|
|
256
|
-
* // searchLimit: Number("int"),
|
|
257
278
|
* // channels: [
|
|
258
279
|
* // "voice" || "chat" || "assistant",
|
|
259
280
|
* // ],
|
|
@@ -410,7 +431,6 @@ declare const GetAgentVersionCommand_base: {
|
|
|
410
431
|
* // },
|
|
411
432
|
* // suggestions: { // AgentSuggestionsCapability
|
|
412
433
|
* // name: "STRING_VALUE",
|
|
413
|
-
* // instructions: "STRING_VALUE",
|
|
414
434
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
415
435
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
416
436
|
* // },
|
|
@@ -428,6 +448,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
428
448
|
* // name: "STRING_VALUE",
|
|
429
449
|
* // description: "STRING_VALUE",
|
|
430
450
|
* // message: "STRING_VALUE",
|
|
451
|
+
* // messages: [
|
|
452
|
+
* // {
|
|
453
|
+
* // language: "STRING_VALUE", // required
|
|
454
|
+
* // text: "STRING_VALUE", // required
|
|
455
|
+
* // },
|
|
456
|
+
* // ],
|
|
431
457
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
432
458
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
433
459
|
* // },
|
|
@@ -486,6 +512,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
486
512
|
* // },
|
|
487
513
|
* // ],
|
|
488
514
|
* // startMessage: "STRING_VALUE",
|
|
515
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
489
516
|
* // pipeline: {
|
|
490
517
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
491
518
|
* // instructions: "STRING_VALUE",
|
|
@@ -499,6 +526,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
499
526
|
* // connector: {
|
|
500
527
|
* // id: "STRING_VALUE", // required
|
|
501
528
|
* // startMessage: "STRING_VALUE",
|
|
529
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
502
530
|
* // pipeline: {
|
|
503
531
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
504
532
|
* // instructions: "STRING_VALUE",
|
|
@@ -587,6 +615,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
587
615
|
* // name: "STRING_VALUE",
|
|
588
616
|
* // description: "STRING_VALUE",
|
|
589
617
|
* // message: "STRING_VALUE",
|
|
618
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
590
619
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
591
620
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
592
621
|
* // },
|
|
@@ -665,9 +694,6 @@ declare const GetAgentVersionCommand_base: {
|
|
|
665
694
|
* // kb: {
|
|
666
695
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
667
696
|
* // instructions: "STRING_VALUE",
|
|
668
|
-
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
669
|
-
* // searchThreshold: "low" || "medium" || "high",
|
|
670
|
-
* // searchLimit: Number("int"),
|
|
671
697
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
672
698
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
673
699
|
* // },
|
|
@@ -705,7 +731,6 @@ declare const GetAgentVersionCommand_base: {
|
|
|
705
731
|
* // transfer: "<AgentTransferCapability>",
|
|
706
732
|
* // suggestions: {
|
|
707
733
|
* // name: "STRING_VALUE",
|
|
708
|
-
* // instructions: "STRING_VALUE",
|
|
709
734
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
710
735
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
711
736
|
* // },
|
|
@@ -91,6 +91,12 @@ declare const ListAgentsCommand_base: {
|
|
|
91
91
|
* // action: { // VoiceTerminateAction Union: only one key present
|
|
92
92
|
* // hangup: { // VoiceTerminateHangupAction
|
|
93
93
|
* // message: "STRING_VALUE",
|
|
94
|
+
* // messages: [ // AgentSpokenPhraseList
|
|
95
|
+
* // { // AgentSpokenPhrase
|
|
96
|
+
* // language: "STRING_VALUE", // required
|
|
97
|
+
* // text: "STRING_VALUE", // required
|
|
98
|
+
* // },
|
|
99
|
+
* // ],
|
|
94
100
|
* // },
|
|
95
101
|
* // transfer: { // VoiceTransferTarget
|
|
96
102
|
* // name: "STRING_VALUE", // required
|
|
@@ -105,6 +111,12 @@ declare const ListAgentsCommand_base: {
|
|
|
105
111
|
* // action: {// Union: only one key present
|
|
106
112
|
* // hangup: {
|
|
107
113
|
* // message: "STRING_VALUE",
|
|
114
|
+
* // messages: [
|
|
115
|
+
* // {
|
|
116
|
+
* // language: "STRING_VALUE", // required
|
|
117
|
+
* // text: "STRING_VALUE", // required
|
|
118
|
+
* // },
|
|
119
|
+
* // ],
|
|
108
120
|
* // },
|
|
109
121
|
* // transfer: {
|
|
110
122
|
* // name: "STRING_VALUE", // required
|
|
@@ -189,6 +201,12 @@ declare const ListAgentsCommand_base: {
|
|
|
189
201
|
* // },
|
|
190
202
|
* // ],
|
|
191
203
|
* // startMessage: "STRING_VALUE",
|
|
204
|
+
* // startMessages: [
|
|
205
|
+
* // {
|
|
206
|
+
* // language: "STRING_VALUE", // required
|
|
207
|
+
* // text: "STRING_VALUE", // required
|
|
208
|
+
* // },
|
|
209
|
+
* // ],
|
|
192
210
|
* // pipeline: { // AgentToolPipeline
|
|
193
211
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
194
212
|
* // instructions: "STRING_VALUE",
|
|
@@ -219,6 +237,12 @@ declare const ListAgentsCommand_base: {
|
|
|
219
237
|
* // connector: { // AgentConnectorCapability
|
|
220
238
|
* // id: "STRING_VALUE", // required
|
|
221
239
|
* // startMessage: "STRING_VALUE",
|
|
240
|
+
* // startMessages: [
|
|
241
|
+
* // {
|
|
242
|
+
* // language: "STRING_VALUE", // required
|
|
243
|
+
* // text: "STRING_VALUE", // required
|
|
244
|
+
* // },
|
|
245
|
+
* // ],
|
|
222
246
|
* // pipeline: {
|
|
223
247
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
224
248
|
* // instructions: "STRING_VALUE",
|
|
@@ -249,9 +273,6 @@ declare const ListAgentsCommand_base: {
|
|
|
249
273
|
* // kb: { // AgentKnowledgeBase
|
|
250
274
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
251
275
|
* // instructions: "STRING_VALUE",
|
|
252
|
-
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
253
|
-
* // searchThreshold: "low" || "medium" || "high",
|
|
254
|
-
* // searchLimit: Number("int"),
|
|
255
276
|
* // channels: [
|
|
256
277
|
* // "voice" || "chat" || "assistant",
|
|
257
278
|
* // ],
|
|
@@ -408,7 +429,6 @@ declare const ListAgentsCommand_base: {
|
|
|
408
429
|
* // },
|
|
409
430
|
* // suggestions: { // AgentSuggestionsCapability
|
|
410
431
|
* // name: "STRING_VALUE",
|
|
411
|
-
* // instructions: "STRING_VALUE",
|
|
412
432
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
413
433
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
414
434
|
* // },
|
|
@@ -426,6 +446,12 @@ declare const ListAgentsCommand_base: {
|
|
|
426
446
|
* // name: "STRING_VALUE",
|
|
427
447
|
* // description: "STRING_VALUE",
|
|
428
448
|
* // message: "STRING_VALUE",
|
|
449
|
+
* // messages: [
|
|
450
|
+
* // {
|
|
451
|
+
* // language: "STRING_VALUE", // required
|
|
452
|
+
* // text: "STRING_VALUE", // required
|
|
453
|
+
* // },
|
|
454
|
+
* // ],
|
|
429
455
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
430
456
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
431
457
|
* // },
|
|
@@ -484,6 +510,7 @@ declare const ListAgentsCommand_base: {
|
|
|
484
510
|
* // },
|
|
485
511
|
* // ],
|
|
486
512
|
* // startMessage: "STRING_VALUE",
|
|
513
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
487
514
|
* // pipeline: {
|
|
488
515
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
489
516
|
* // instructions: "STRING_VALUE",
|
|
@@ -497,6 +524,7 @@ declare const ListAgentsCommand_base: {
|
|
|
497
524
|
* // connector: {
|
|
498
525
|
* // id: "STRING_VALUE", // required
|
|
499
526
|
* // startMessage: "STRING_VALUE",
|
|
527
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
500
528
|
* // pipeline: {
|
|
501
529
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
502
530
|
* // instructions: "STRING_VALUE",
|
|
@@ -585,6 +613,7 @@ declare const ListAgentsCommand_base: {
|
|
|
585
613
|
* // name: "STRING_VALUE",
|
|
586
614
|
* // description: "STRING_VALUE",
|
|
587
615
|
* // message: "STRING_VALUE",
|
|
616
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
588
617
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
589
618
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
590
619
|
* // },
|
|
@@ -663,9 +692,6 @@ declare const ListAgentsCommand_base: {
|
|
|
663
692
|
* // kb: {
|
|
664
693
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
665
694
|
* // instructions: "STRING_VALUE",
|
|
666
|
-
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
667
|
-
* // searchThreshold: "low" || "medium" || "high",
|
|
668
|
-
* // searchLimit: Number("int"),
|
|
669
695
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
670
696
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
671
697
|
* // },
|
|
@@ -703,7 +729,6 @@ declare const ListAgentsCommand_base: {
|
|
|
703
729
|
* // transfer: "<AgentTransferCapability>",
|
|
704
730
|
* // suggestions: {
|
|
705
731
|
* // name: "STRING_VALUE",
|
|
706
|
-
* // instructions: "STRING_VALUE",
|
|
707
732
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
708
733
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
709
734
|
* // },
|
|
@@ -95,6 +95,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
95
95
|
* // action: { // VoiceTerminateAction Union: only one key present
|
|
96
96
|
* // hangup: { // VoiceTerminateHangupAction
|
|
97
97
|
* // message: "STRING_VALUE",
|
|
98
|
+
* // messages: [ // AgentSpokenPhraseList
|
|
99
|
+
* // { // AgentSpokenPhrase
|
|
100
|
+
* // language: "STRING_VALUE", // required
|
|
101
|
+
* // text: "STRING_VALUE", // required
|
|
102
|
+
* // },
|
|
103
|
+
* // ],
|
|
98
104
|
* // },
|
|
99
105
|
* // transfer: { // VoiceTransferTarget
|
|
100
106
|
* // name: "STRING_VALUE", // required
|
|
@@ -109,6 +115,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
109
115
|
* // action: {// Union: only one key present
|
|
110
116
|
* // hangup: {
|
|
111
117
|
* // message: "STRING_VALUE",
|
|
118
|
+
* // messages: [
|
|
119
|
+
* // {
|
|
120
|
+
* // language: "STRING_VALUE", // required
|
|
121
|
+
* // text: "STRING_VALUE", // required
|
|
122
|
+
* // },
|
|
123
|
+
* // ],
|
|
112
124
|
* // },
|
|
113
125
|
* // transfer: {
|
|
114
126
|
* // name: "STRING_VALUE", // required
|
|
@@ -193,6 +205,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
193
205
|
* // },
|
|
194
206
|
* // ],
|
|
195
207
|
* // startMessage: "STRING_VALUE",
|
|
208
|
+
* // startMessages: [
|
|
209
|
+
* // {
|
|
210
|
+
* // language: "STRING_VALUE", // required
|
|
211
|
+
* // text: "STRING_VALUE", // required
|
|
212
|
+
* // },
|
|
213
|
+
* // ],
|
|
196
214
|
* // pipeline: { // AgentToolPipeline
|
|
197
215
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
198
216
|
* // instructions: "STRING_VALUE",
|
|
@@ -223,6 +241,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
223
241
|
* // connector: { // AgentConnectorCapability
|
|
224
242
|
* // id: "STRING_VALUE", // required
|
|
225
243
|
* // startMessage: "STRING_VALUE",
|
|
244
|
+
* // startMessages: [
|
|
245
|
+
* // {
|
|
246
|
+
* // language: "STRING_VALUE", // required
|
|
247
|
+
* // text: "STRING_VALUE", // required
|
|
248
|
+
* // },
|
|
249
|
+
* // ],
|
|
226
250
|
* // pipeline: {
|
|
227
251
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
228
252
|
* // instructions: "STRING_VALUE",
|
|
@@ -253,9 +277,6 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
253
277
|
* // kb: { // AgentKnowledgeBase
|
|
254
278
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
255
279
|
* // instructions: "STRING_VALUE",
|
|
256
|
-
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
257
|
-
* // searchThreshold: "low" || "medium" || "high",
|
|
258
|
-
* // searchLimit: Number("int"),
|
|
259
280
|
* // channels: [
|
|
260
281
|
* // "voice" || "chat" || "assistant",
|
|
261
282
|
* // ],
|
|
@@ -412,7 +433,6 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
412
433
|
* // },
|
|
413
434
|
* // suggestions: { // AgentSuggestionsCapability
|
|
414
435
|
* // name: "STRING_VALUE",
|
|
415
|
-
* // instructions: "STRING_VALUE",
|
|
416
436
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
417
437
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
418
438
|
* // },
|
|
@@ -430,6 +450,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
430
450
|
* // name: "STRING_VALUE",
|
|
431
451
|
* // description: "STRING_VALUE",
|
|
432
452
|
* // message: "STRING_VALUE",
|
|
453
|
+
* // messages: [
|
|
454
|
+
* // {
|
|
455
|
+
* // language: "STRING_VALUE", // required
|
|
456
|
+
* // text: "STRING_VALUE", // required
|
|
457
|
+
* // },
|
|
458
|
+
* // ],
|
|
433
459
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
434
460
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
435
461
|
* // },
|
|
@@ -488,6 +514,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
488
514
|
* // },
|
|
489
515
|
* // ],
|
|
490
516
|
* // startMessage: "STRING_VALUE",
|
|
517
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
491
518
|
* // pipeline: {
|
|
492
519
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
493
520
|
* // instructions: "STRING_VALUE",
|
|
@@ -501,6 +528,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
501
528
|
* // connector: {
|
|
502
529
|
* // id: "STRING_VALUE", // required
|
|
503
530
|
* // startMessage: "STRING_VALUE",
|
|
531
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
504
532
|
* // pipeline: {
|
|
505
533
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
506
534
|
* // instructions: "STRING_VALUE",
|
|
@@ -589,6 +617,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
589
617
|
* // name: "STRING_VALUE",
|
|
590
618
|
* // description: "STRING_VALUE",
|
|
591
619
|
* // message: "STRING_VALUE",
|
|
620
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
592
621
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
593
622
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
594
623
|
* // },
|
|
@@ -667,9 +696,6 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
667
696
|
* // kb: {
|
|
668
697
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
669
698
|
* // instructions: "STRING_VALUE",
|
|
670
|
-
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
671
|
-
* // searchThreshold: "low" || "medium" || "high",
|
|
672
|
-
* // searchLimit: Number("int"),
|
|
673
699
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
674
700
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
675
701
|
* // },
|
|
@@ -707,7 +733,6 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
707
733
|
* // transfer: "<AgentTransferCapability>",
|
|
708
734
|
* // suggestions: {
|
|
709
735
|
* // name: "STRING_VALUE",
|
|
710
|
-
* // instructions: "STRING_VALUE",
|
|
711
736
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
712
737
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
713
738
|
* // },
|
|
@@ -88,6 +88,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
88
88
|
* // action: { // VoiceTerminateAction Union: only one key present
|
|
89
89
|
* // hangup: { // VoiceTerminateHangupAction
|
|
90
90
|
* // message: "STRING_VALUE",
|
|
91
|
+
* // messages: [ // AgentSpokenPhraseList
|
|
92
|
+
* // { // AgentSpokenPhrase
|
|
93
|
+
* // language: "STRING_VALUE", // required
|
|
94
|
+
* // text: "STRING_VALUE", // required
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
91
97
|
* // },
|
|
92
98
|
* // transfer: { // VoiceTransferTarget
|
|
93
99
|
* // name: "STRING_VALUE", // required
|
|
@@ -102,6 +108,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
102
108
|
* // action: {// Union: only one key present
|
|
103
109
|
* // hangup: {
|
|
104
110
|
* // message: "STRING_VALUE",
|
|
111
|
+
* // messages: [
|
|
112
|
+
* // {
|
|
113
|
+
* // language: "STRING_VALUE", // required
|
|
114
|
+
* // text: "STRING_VALUE", // required
|
|
115
|
+
* // },
|
|
116
|
+
* // ],
|
|
105
117
|
* // },
|
|
106
118
|
* // transfer: {
|
|
107
119
|
* // name: "STRING_VALUE", // required
|
|
@@ -186,6 +198,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
186
198
|
* // },
|
|
187
199
|
* // ],
|
|
188
200
|
* // startMessage: "STRING_VALUE",
|
|
201
|
+
* // startMessages: [
|
|
202
|
+
* // {
|
|
203
|
+
* // language: "STRING_VALUE", // required
|
|
204
|
+
* // text: "STRING_VALUE", // required
|
|
205
|
+
* // },
|
|
206
|
+
* // ],
|
|
189
207
|
* // pipeline: { // AgentToolPipeline
|
|
190
208
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
191
209
|
* // instructions: "STRING_VALUE",
|
|
@@ -216,6 +234,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
216
234
|
* // connector: { // AgentConnectorCapability
|
|
217
235
|
* // id: "STRING_VALUE", // required
|
|
218
236
|
* // startMessage: "STRING_VALUE",
|
|
237
|
+
* // startMessages: [
|
|
238
|
+
* // {
|
|
239
|
+
* // language: "STRING_VALUE", // required
|
|
240
|
+
* // text: "STRING_VALUE", // required
|
|
241
|
+
* // },
|
|
242
|
+
* // ],
|
|
219
243
|
* // pipeline: {
|
|
220
244
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
221
245
|
* // instructions: "STRING_VALUE",
|
|
@@ -246,9 +270,6 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
246
270
|
* // kb: { // AgentKnowledgeBase
|
|
247
271
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
248
272
|
* // instructions: "STRING_VALUE",
|
|
249
|
-
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
250
|
-
* // searchThreshold: "low" || "medium" || "high",
|
|
251
|
-
* // searchLimit: Number("int"),
|
|
252
273
|
* // channels: [
|
|
253
274
|
* // "voice" || "chat" || "assistant",
|
|
254
275
|
* // ],
|
|
@@ -405,7 +426,6 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
405
426
|
* // },
|
|
406
427
|
* // suggestions: { // AgentSuggestionsCapability
|
|
407
428
|
* // name: "STRING_VALUE",
|
|
408
|
-
* // instructions: "STRING_VALUE",
|
|
409
429
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
410
430
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
411
431
|
* // },
|
|
@@ -423,6 +443,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
423
443
|
* // name: "STRING_VALUE",
|
|
424
444
|
* // description: "STRING_VALUE",
|
|
425
445
|
* // message: "STRING_VALUE",
|
|
446
|
+
* // messages: [
|
|
447
|
+
* // {
|
|
448
|
+
* // language: "STRING_VALUE", // required
|
|
449
|
+
* // text: "STRING_VALUE", // required
|
|
450
|
+
* // },
|
|
451
|
+
* // ],
|
|
426
452
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
427
453
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
428
454
|
* // },
|
|
@@ -481,6 +507,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
481
507
|
* // },
|
|
482
508
|
* // ],
|
|
483
509
|
* // startMessage: "STRING_VALUE",
|
|
510
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
484
511
|
* // pipeline: {
|
|
485
512
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
486
513
|
* // instructions: "STRING_VALUE",
|
|
@@ -494,6 +521,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
494
521
|
* // connector: {
|
|
495
522
|
* // id: "STRING_VALUE", // required
|
|
496
523
|
* // startMessage: "STRING_VALUE",
|
|
524
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
497
525
|
* // pipeline: {
|
|
498
526
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
499
527
|
* // instructions: "STRING_VALUE",
|
|
@@ -582,6 +610,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
582
610
|
* // name: "STRING_VALUE",
|
|
583
611
|
* // description: "STRING_VALUE",
|
|
584
612
|
* // message: "STRING_VALUE",
|
|
613
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
585
614
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
586
615
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
587
616
|
* // },
|
|
@@ -660,9 +689,6 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
660
689
|
* // kb: {
|
|
661
690
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
662
691
|
* // instructions: "STRING_VALUE",
|
|
663
|
-
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
664
|
-
* // searchThreshold: "low" || "medium" || "high",
|
|
665
|
-
* // searchLimit: Number("int"),
|
|
666
692
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
667
693
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
668
694
|
* // },
|
|
@@ -700,7 +726,6 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
700
726
|
* // transfer: "<AgentTransferCapability>",
|
|
701
727
|
* // suggestions: {
|
|
702
728
|
* // name: "STRING_VALUE",
|
|
703
|
-
* // instructions: "STRING_VALUE",
|
|
704
729
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
705
730
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
706
731
|
* // },
|