@wildix/wilma-agents-client 1.0.28 → 1.0.30
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/WilmaAgents.js +6 -0
- package/dist-cjs/commands/DeletePronunciationDictionaryCommand.js +20 -0
- package/dist-cjs/commands/ListPronunciationDictionariesCommand.js +20 -0
- package/dist-cjs/commands/PutPronunciationDictionaryCommand.js +20 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/enums.js +20 -7
- package/dist-cjs/schemas/schemas_0.js +231 -76
- package/dist-es/WilmaAgents.js +6 -0
- package/dist-es/commands/DeletePronunciationDictionaryCommand.js +16 -0
- package/dist-es/commands/ListPronunciationDictionariesCommand.js +16 -0
- package/dist-es/commands/PutPronunciationDictionaryCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/enums.js +19 -6
- package/dist-es/schemas/schemas_0.js +228 -73
- package/dist-types/WilmaAgents.d.ts +25 -3
- package/dist-types/WilmaAgentsClient.d.ts +8 -5
- package/dist-types/commands/CreateAgentCommand.d.ts +212 -30
- package/dist-types/commands/DeletePronunciationDictionaryCommand.d.ts +82 -0
- package/dist-types/commands/GetAgentCommand.d.ts +106 -15
- package/dist-types/commands/GetAgentVersionCommand.d.ts +106 -15
- package/dist-types/commands/ListAgentsCommand.d.ts +106 -15
- package/dist-types/commands/ListAgentsNamesCommand.d.ts +16 -0
- package/dist-types/commands/ListPronunciationDictionariesCommand.d.ts +103 -0
- package/dist-types/commands/PublishAgentVersionCommand.d.ts +106 -15
- package/dist-types/commands/PutPronunciationDictionaryCommand.d.ts +117 -0
- package/dist-types/commands/RestoreAgentVersionToDraftCommand.d.ts +106 -15
- package/dist-types/commands/UpdateAgentCommand.d.ts +212 -30
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/index.d.ts +3 -3
- package/dist-types/models/enums.d.ts +72 -26
- package/dist-types/models/models_0.d.ts +620 -40
- package/dist-types/schemas/schemas_0.d.ts +18 -0
- package/package.json +2 -2
|
@@ -58,6 +58,61 @@ declare const GetAgentVersionCommand_base: {
|
|
|
58
58
|
* // channels: { // AgentChannels
|
|
59
59
|
* // voice: { // VoiceChannelSettings
|
|
60
60
|
* // greeting: "STRING_VALUE",
|
|
61
|
+
* // backgroundSound: "STRING_VALUE",
|
|
62
|
+
* // speech: { // VoiceSpeechSettings
|
|
63
|
+
* // provider: "elevenlabs" || "google" || "amazon_polly", // required
|
|
64
|
+
* // languages: [ // VoiceLanguageList // required
|
|
65
|
+
* // { // VoiceLanguage
|
|
66
|
+
* // code: "STRING_VALUE", // required
|
|
67
|
+
* // provider: "elevenlabs" || "google" || "amazon_polly",
|
|
68
|
+
* // voice: "STRING_VALUE", // required
|
|
69
|
+
* // greeting: "STRING_VALUE",
|
|
70
|
+
* // isDefault: true || false,
|
|
71
|
+
* // instructions: "STRING_VALUE",
|
|
72
|
+
* // synthesis: { // VoiceSynthesisOptions
|
|
73
|
+
* // model: "STRING_VALUE",
|
|
74
|
+
* // speed: Number("float"),
|
|
75
|
+
* // stability: Number("float"),
|
|
76
|
+
* // similarity: Number("float"),
|
|
77
|
+
* // style: Number("float"),
|
|
78
|
+
* // speakerBoost: true || false,
|
|
79
|
+
* // pitch: Number("float"),
|
|
80
|
+
* // volumeGain: Number("float"),
|
|
81
|
+
* // },
|
|
82
|
+
* // credential: { // SecretRef
|
|
83
|
+
* // id: "STRING_VALUE", // required
|
|
84
|
+
* // },
|
|
85
|
+
* // pronunciations: [ // VoicePronunciationList
|
|
86
|
+
* // { // VoicePronunciation
|
|
87
|
+
* // phrase: "STRING_VALUE", // required
|
|
88
|
+
* // as: "STRING_VALUE", // required
|
|
89
|
+
* // encoding: "alias" || "ipa",
|
|
90
|
+
* // },
|
|
91
|
+
* // ],
|
|
92
|
+
* // pronunciationSuppressions: [ // VoicePronunciationSuppressionList
|
|
93
|
+
* // "STRING_VALUE",
|
|
94
|
+
* // ],
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
97
|
+
* // autoDetect: true || false,
|
|
98
|
+
* // greetEveryLanguage: true || false,
|
|
99
|
+
* // transcription: { // VoiceTranscriptionSettings
|
|
100
|
+
* // vendor: "aws",
|
|
101
|
+
* // },
|
|
102
|
+
* // synthesis: {
|
|
103
|
+
* // model: "STRING_VALUE",
|
|
104
|
+
* // speed: Number("float"),
|
|
105
|
+
* // stability: Number("float"),
|
|
106
|
+
* // similarity: Number("float"),
|
|
107
|
+
* // style: Number("float"),
|
|
108
|
+
* // speakerBoost: true || false,
|
|
109
|
+
* // pitch: Number("float"),
|
|
110
|
+
* // volumeGain: Number("float"),
|
|
111
|
+
* // },
|
|
112
|
+
* // credential: {
|
|
113
|
+
* // id: "STRING_VALUE", // required
|
|
114
|
+
* // },
|
|
115
|
+
* // },
|
|
61
116
|
* // interruptions: { // VoiceInterruptionSettings
|
|
62
117
|
* // enabled: true || false, // required
|
|
63
118
|
* // minWords: Number("int"),
|
|
@@ -107,6 +162,20 @@ declare const GetAgentVersionCommand_base: {
|
|
|
107
162
|
* // },
|
|
108
163
|
* // assistant: { // AssistantChannelSettings
|
|
109
164
|
* // default: true || false,
|
|
165
|
+
* // ui: { // AssistantUiSettings
|
|
166
|
+
* // welcome: { // AssistantWelcomeSettings
|
|
167
|
+
* // title: "STRING_VALUE",
|
|
168
|
+
* // subtitle: "STRING_VALUE",
|
|
169
|
+
* // },
|
|
170
|
+
* // commands: [ // AssistantQuickCommandsList
|
|
171
|
+
* // { // AssistantQuickCommand
|
|
172
|
+
* // title: "STRING_VALUE", // required
|
|
173
|
+
* // description: "STRING_VALUE",
|
|
174
|
+
* // prompt: "STRING_VALUE", // required
|
|
175
|
+
* // },
|
|
176
|
+
* // ],
|
|
177
|
+
* // placeholder: "STRING_VALUE",
|
|
178
|
+
* // },
|
|
110
179
|
* // },
|
|
111
180
|
* // workflow: {},
|
|
112
181
|
* // },
|
|
@@ -159,6 +228,9 @@ declare const GetAgentVersionCommand_base: {
|
|
|
159
228
|
* // approval: { // AgentToolApproval
|
|
160
229
|
* // prompt: "STRING_VALUE",
|
|
161
230
|
* // },
|
|
231
|
+
* // channels: [ // AgentCapabilityChannelsList
|
|
232
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
233
|
+
* // ],
|
|
162
234
|
* // annotations: [ // AgentToolAnnotationsList
|
|
163
235
|
* // { // AgentToolAnnotation Union: only one key present
|
|
164
236
|
* // tag: { // AgentToolTagAnnotation
|
|
@@ -186,6 +258,9 @@ declare const GetAgentVersionCommand_base: {
|
|
|
186
258
|
* // approval: {
|
|
187
259
|
* // prompt: "STRING_VALUE",
|
|
188
260
|
* // },
|
|
261
|
+
* // channels: [
|
|
262
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
263
|
+
* // ],
|
|
189
264
|
* // annotations: [
|
|
190
265
|
* // {// Union: only one key present
|
|
191
266
|
* // tag: {
|
|
@@ -206,6 +281,9 @@ declare const GetAgentVersionCommand_base: {
|
|
|
206
281
|
* // kb: { // AgentKnowledgeBase
|
|
207
282
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
208
283
|
* // instructions: "STRING_VALUE",
|
|
284
|
+
* // channels: [
|
|
285
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
286
|
+
* // ],
|
|
209
287
|
* // annotations: [
|
|
210
288
|
* // {// Union: only one key present
|
|
211
289
|
* // tag: {
|
|
@@ -251,17 +329,23 @@ declare const GetAgentVersionCommand_base: {
|
|
|
251
329
|
* // city: "STRING_VALUE",
|
|
252
330
|
* // timezone: "STRING_VALUE",
|
|
253
331
|
* // },
|
|
332
|
+
* // channels: [
|
|
333
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
334
|
+
* // ],
|
|
254
335
|
* // },
|
|
255
336
|
* // webFetch: { // AgentWebFetchCapability
|
|
256
337
|
* // allowedDomains: [
|
|
257
338
|
* // "STRING_VALUE",
|
|
258
339
|
* // ],
|
|
340
|
+
* // channels: [
|
|
341
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
342
|
+
* // ],
|
|
259
343
|
* // },
|
|
260
344
|
* // agent: { // AgentCallCapability
|
|
261
345
|
* // agentId: "STRING_VALUE", // required
|
|
262
346
|
* // agentVersion: Number("int"),
|
|
263
347
|
* // access: { // AgentAccess
|
|
264
|
-
* // visibility: "explicit" || "organization",
|
|
348
|
+
* // visibility: "explicit" || "organization" || "public",
|
|
265
349
|
* // grants: [ // AgentGrantPrincipalList
|
|
266
350
|
* // { // AgentGrantPrincipal Union: only one key present
|
|
267
351
|
* // userId: "STRING_VALUE",
|
|
@@ -283,6 +367,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
283
367
|
* // },
|
|
284
368
|
* // },
|
|
285
369
|
* // ],
|
|
370
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
286
371
|
* // },
|
|
287
372
|
* // handover: { // AgentHandoverCapability
|
|
288
373
|
* // name: "STRING_VALUE",
|
|
@@ -296,6 +381,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
296
381
|
* // type: "handover" || "reply_and_handover" || "reply_instructed_and_handover",
|
|
297
382
|
* // instructions: "STRING_VALUE",
|
|
298
383
|
* // },
|
|
384
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
299
385
|
* // annotations: [
|
|
300
386
|
* // {// Union: only one key present
|
|
301
387
|
* // tag: {
|
|
@@ -318,6 +404,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
318
404
|
* // description: "STRING_VALUE",
|
|
319
405
|
* // id: "STRING_VALUE", // required
|
|
320
406
|
* // agentVersion: Number("int"),
|
|
407
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
321
408
|
* // annotations: [
|
|
322
409
|
* // {// Union: only one key present
|
|
323
410
|
* // tag: {
|
|
@@ -345,10 +432,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
345
432
|
* // type: "transfer" || "reply_and_transfer" || "reply_instructed_and_transfer",
|
|
346
433
|
* // instructions: "STRING_VALUE",
|
|
347
434
|
* // },
|
|
435
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
348
436
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
349
437
|
* // },
|
|
350
438
|
* // suggestions: { // AgentSuggestionsCapability
|
|
351
439
|
* // name: "STRING_VALUE",
|
|
440
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
352
441
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
353
442
|
* // },
|
|
354
443
|
* // hangup: { // AgentHangupCapability
|
|
@@ -358,12 +447,14 @@ declare const GetAgentVersionCommand_base: {
|
|
|
358
447
|
* // type: "hangup" || "reply_and_hangup" || "reply_instructed_and_hangup",
|
|
359
448
|
* // instructions: "STRING_VALUE",
|
|
360
449
|
* // },
|
|
450
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
361
451
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
362
452
|
* // },
|
|
363
453
|
* // wait: { // AgentWaitCapability
|
|
364
454
|
* // name: "STRING_VALUE",
|
|
365
455
|
* // description: "STRING_VALUE",
|
|
366
456
|
* // message: "STRING_VALUE",
|
|
457
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
367
458
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
368
459
|
* // },
|
|
369
460
|
* // },
|
|
@@ -428,6 +519,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
428
519
|
* // approval: {
|
|
429
520
|
* // prompt: "STRING_VALUE",
|
|
430
521
|
* // },
|
|
522
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
431
523
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
432
524
|
* // },
|
|
433
525
|
* // connector: {
|
|
@@ -440,13 +532,14 @@ declare const GetAgentVersionCommand_base: {
|
|
|
440
532
|
* // approval: {
|
|
441
533
|
* // prompt: "STRING_VALUE",
|
|
442
534
|
* // },
|
|
535
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
443
536
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
444
537
|
* // },
|
|
445
538
|
* // agent: {
|
|
446
539
|
* // agentId: "STRING_VALUE", // required
|
|
447
540
|
* // agentVersion: Number("int"),
|
|
448
541
|
* // access: {
|
|
449
|
-
* // visibility: "explicit" || "organization",
|
|
542
|
+
* // visibility: "explicit" || "organization" || "public",
|
|
450
543
|
* // grants: [
|
|
451
544
|
* // {// Union: only one key present
|
|
452
545
|
* // userId: "STRING_VALUE",
|
|
@@ -468,6 +561,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
468
561
|
* // },
|
|
469
562
|
* // },
|
|
470
563
|
* // ],
|
|
564
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
471
565
|
* // },
|
|
472
566
|
* // handover: {
|
|
473
567
|
* // name: "STRING_VALUE",
|
|
@@ -481,6 +575,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
481
575
|
* // type: "handover" || "reply_and_handover" || "reply_instructed_and_handover",
|
|
482
576
|
* // instructions: "STRING_VALUE",
|
|
483
577
|
* // },
|
|
578
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
484
579
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
485
580
|
* // },
|
|
486
581
|
* // delegation: {
|
|
@@ -488,6 +583,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
488
583
|
* // description: "STRING_VALUE",
|
|
489
584
|
* // id: "STRING_VALUE", // required
|
|
490
585
|
* // agentVersion: Number("int"),
|
|
586
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
491
587
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
492
588
|
* // },
|
|
493
589
|
* // transfer: {
|
|
@@ -500,6 +596,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
500
596
|
* // type: "transfer" || "reply_and_transfer" || "reply_instructed_and_transfer",
|
|
501
597
|
* // instructions: "STRING_VALUE",
|
|
502
598
|
* // },
|
|
599
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
503
600
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
504
601
|
* // },
|
|
505
602
|
* // hangup: {
|
|
@@ -509,12 +606,14 @@ declare const GetAgentVersionCommand_base: {
|
|
|
509
606
|
* // type: "hangup" || "reply_and_hangup" || "reply_instructed_and_hangup",
|
|
510
607
|
* // instructions: "STRING_VALUE",
|
|
511
608
|
* // },
|
|
609
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
512
610
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
513
611
|
* // },
|
|
514
612
|
* // wait: {
|
|
515
613
|
* // name: "STRING_VALUE",
|
|
516
614
|
* // description: "STRING_VALUE",
|
|
517
615
|
* // message: "STRING_VALUE",
|
|
616
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
518
617
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
519
618
|
* // },
|
|
520
619
|
* // },
|
|
@@ -592,6 +691,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
592
691
|
* // kb: {
|
|
593
692
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
594
693
|
* // instructions: "STRING_VALUE",
|
|
694
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
595
695
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
596
696
|
* // },
|
|
597
697
|
* // sandbox: {// Union: only one key present
|
|
@@ -616,9 +716,11 @@ declare const GetAgentVersionCommand_base: {
|
|
|
616
716
|
* // city: "STRING_VALUE",
|
|
617
717
|
* // timezone: "STRING_VALUE",
|
|
618
718
|
* // },
|
|
719
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
619
720
|
* // },
|
|
620
721
|
* // webFetch: {
|
|
621
722
|
* // allowedDomains: "<DomainNameList>",
|
|
723
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
622
724
|
* // },
|
|
623
725
|
* // agent: "<AgentCallCapability>",
|
|
624
726
|
* // handover: "<AgentHandoverCapability>",
|
|
@@ -626,6 +728,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
626
728
|
* // transfer: "<AgentTransferCapability>",
|
|
627
729
|
* // suggestions: {
|
|
628
730
|
* // name: "STRING_VALUE",
|
|
731
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
629
732
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
630
733
|
* // },
|
|
631
734
|
* // hangup: "<AgentHangupCapability>",
|
|
@@ -766,16 +869,6 @@ declare const GetAgentVersionCommand_base: {
|
|
|
766
869
|
* // },
|
|
767
870
|
* // ],
|
|
768
871
|
* // model: "STRING_VALUE",
|
|
769
|
-
* // action: {// Union: only one key present
|
|
770
|
-
* // observe: {},
|
|
771
|
-
* // redact: {},
|
|
772
|
-
* // block: {
|
|
773
|
-
* // message: "STRING_VALUE",
|
|
774
|
-
* // },
|
|
775
|
-
* // end: {
|
|
776
|
-
* // message: "STRING_VALUE",
|
|
777
|
-
* // },
|
|
778
|
-
* // },
|
|
779
872
|
* // mode: "blocking" || "parallel",
|
|
780
873
|
* // errorMode: "open" || "closed",
|
|
781
874
|
* // window: "lastMessage" || "lastWithPrior",
|
|
@@ -809,9 +902,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
809
902
|
* // sqs: { // AgentSqsEngine
|
|
810
903
|
* // url: "STRING_VALUE", // required
|
|
811
904
|
* // key: "STRING_VALUE", // required
|
|
812
|
-
* // secret:
|
|
813
|
-
* // id: "STRING_VALUE", // required
|
|
814
|
-
* // },
|
|
905
|
+
* // secret: "<SecretRef>", // required
|
|
815
906
|
* // },
|
|
816
907
|
* // },
|
|
817
908
|
* // settings: { // AgentSettings
|
|
@@ -56,6 +56,61 @@ declare const ListAgentsCommand_base: {
|
|
|
56
56
|
* // channels: { // AgentChannels
|
|
57
57
|
* // voice: { // VoiceChannelSettings
|
|
58
58
|
* // greeting: "STRING_VALUE",
|
|
59
|
+
* // backgroundSound: "STRING_VALUE",
|
|
60
|
+
* // speech: { // VoiceSpeechSettings
|
|
61
|
+
* // provider: "elevenlabs" || "google" || "amazon_polly", // required
|
|
62
|
+
* // languages: [ // VoiceLanguageList // required
|
|
63
|
+
* // { // VoiceLanguage
|
|
64
|
+
* // code: "STRING_VALUE", // required
|
|
65
|
+
* // provider: "elevenlabs" || "google" || "amazon_polly",
|
|
66
|
+
* // voice: "STRING_VALUE", // required
|
|
67
|
+
* // greeting: "STRING_VALUE",
|
|
68
|
+
* // isDefault: true || false,
|
|
69
|
+
* // instructions: "STRING_VALUE",
|
|
70
|
+
* // synthesis: { // VoiceSynthesisOptions
|
|
71
|
+
* // model: "STRING_VALUE",
|
|
72
|
+
* // speed: Number("float"),
|
|
73
|
+
* // stability: Number("float"),
|
|
74
|
+
* // similarity: Number("float"),
|
|
75
|
+
* // style: Number("float"),
|
|
76
|
+
* // speakerBoost: true || false,
|
|
77
|
+
* // pitch: Number("float"),
|
|
78
|
+
* // volumeGain: Number("float"),
|
|
79
|
+
* // },
|
|
80
|
+
* // credential: { // SecretRef
|
|
81
|
+
* // id: "STRING_VALUE", // required
|
|
82
|
+
* // },
|
|
83
|
+
* // pronunciations: [ // VoicePronunciationList
|
|
84
|
+
* // { // VoicePronunciation
|
|
85
|
+
* // phrase: "STRING_VALUE", // required
|
|
86
|
+
* // as: "STRING_VALUE", // required
|
|
87
|
+
* // encoding: "alias" || "ipa",
|
|
88
|
+
* // },
|
|
89
|
+
* // ],
|
|
90
|
+
* // pronunciationSuppressions: [ // VoicePronunciationSuppressionList
|
|
91
|
+
* // "STRING_VALUE",
|
|
92
|
+
* // ],
|
|
93
|
+
* // },
|
|
94
|
+
* // ],
|
|
95
|
+
* // autoDetect: true || false,
|
|
96
|
+
* // greetEveryLanguage: true || false,
|
|
97
|
+
* // transcription: { // VoiceTranscriptionSettings
|
|
98
|
+
* // vendor: "aws",
|
|
99
|
+
* // },
|
|
100
|
+
* // synthesis: {
|
|
101
|
+
* // model: "STRING_VALUE",
|
|
102
|
+
* // speed: Number("float"),
|
|
103
|
+
* // stability: Number("float"),
|
|
104
|
+
* // similarity: Number("float"),
|
|
105
|
+
* // style: Number("float"),
|
|
106
|
+
* // speakerBoost: true || false,
|
|
107
|
+
* // pitch: Number("float"),
|
|
108
|
+
* // volumeGain: Number("float"),
|
|
109
|
+
* // },
|
|
110
|
+
* // credential: {
|
|
111
|
+
* // id: "STRING_VALUE", // required
|
|
112
|
+
* // },
|
|
113
|
+
* // },
|
|
59
114
|
* // interruptions: { // VoiceInterruptionSettings
|
|
60
115
|
* // enabled: true || false, // required
|
|
61
116
|
* // minWords: Number("int"),
|
|
@@ -105,6 +160,20 @@ declare const ListAgentsCommand_base: {
|
|
|
105
160
|
* // },
|
|
106
161
|
* // assistant: { // AssistantChannelSettings
|
|
107
162
|
* // default: true || false,
|
|
163
|
+
* // ui: { // AssistantUiSettings
|
|
164
|
+
* // welcome: { // AssistantWelcomeSettings
|
|
165
|
+
* // title: "STRING_VALUE",
|
|
166
|
+
* // subtitle: "STRING_VALUE",
|
|
167
|
+
* // },
|
|
168
|
+
* // commands: [ // AssistantQuickCommandsList
|
|
169
|
+
* // { // AssistantQuickCommand
|
|
170
|
+
* // title: "STRING_VALUE", // required
|
|
171
|
+
* // description: "STRING_VALUE",
|
|
172
|
+
* // prompt: "STRING_VALUE", // required
|
|
173
|
+
* // },
|
|
174
|
+
* // ],
|
|
175
|
+
* // placeholder: "STRING_VALUE",
|
|
176
|
+
* // },
|
|
108
177
|
* // },
|
|
109
178
|
* // workflow: {},
|
|
110
179
|
* // },
|
|
@@ -157,6 +226,9 @@ declare const ListAgentsCommand_base: {
|
|
|
157
226
|
* // approval: { // AgentToolApproval
|
|
158
227
|
* // prompt: "STRING_VALUE",
|
|
159
228
|
* // },
|
|
229
|
+
* // channels: [ // AgentCapabilityChannelsList
|
|
230
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
231
|
+
* // ],
|
|
160
232
|
* // annotations: [ // AgentToolAnnotationsList
|
|
161
233
|
* // { // AgentToolAnnotation Union: only one key present
|
|
162
234
|
* // tag: { // AgentToolTagAnnotation
|
|
@@ -184,6 +256,9 @@ declare const ListAgentsCommand_base: {
|
|
|
184
256
|
* // approval: {
|
|
185
257
|
* // prompt: "STRING_VALUE",
|
|
186
258
|
* // },
|
|
259
|
+
* // channels: [
|
|
260
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
261
|
+
* // ],
|
|
187
262
|
* // annotations: [
|
|
188
263
|
* // {// Union: only one key present
|
|
189
264
|
* // tag: {
|
|
@@ -204,6 +279,9 @@ declare const ListAgentsCommand_base: {
|
|
|
204
279
|
* // kb: { // AgentKnowledgeBase
|
|
205
280
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
206
281
|
* // instructions: "STRING_VALUE",
|
|
282
|
+
* // channels: [
|
|
283
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
284
|
+
* // ],
|
|
207
285
|
* // annotations: [
|
|
208
286
|
* // {// Union: only one key present
|
|
209
287
|
* // tag: {
|
|
@@ -249,17 +327,23 @@ declare const ListAgentsCommand_base: {
|
|
|
249
327
|
* // city: "STRING_VALUE",
|
|
250
328
|
* // timezone: "STRING_VALUE",
|
|
251
329
|
* // },
|
|
330
|
+
* // channels: [
|
|
331
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
332
|
+
* // ],
|
|
252
333
|
* // },
|
|
253
334
|
* // webFetch: { // AgentWebFetchCapability
|
|
254
335
|
* // allowedDomains: [
|
|
255
336
|
* // "STRING_VALUE",
|
|
256
337
|
* // ],
|
|
338
|
+
* // channels: [
|
|
339
|
+
* // "voice" || "chat" || "assistant" || "workflow",
|
|
340
|
+
* // ],
|
|
257
341
|
* // },
|
|
258
342
|
* // agent: { // AgentCallCapability
|
|
259
343
|
* // agentId: "STRING_VALUE", // required
|
|
260
344
|
* // agentVersion: Number("int"),
|
|
261
345
|
* // access: { // AgentAccess
|
|
262
|
-
* // visibility: "explicit" || "organization",
|
|
346
|
+
* // visibility: "explicit" || "organization" || "public",
|
|
263
347
|
* // grants: [ // AgentGrantPrincipalList
|
|
264
348
|
* // { // AgentGrantPrincipal Union: only one key present
|
|
265
349
|
* // userId: "STRING_VALUE",
|
|
@@ -281,6 +365,7 @@ declare const ListAgentsCommand_base: {
|
|
|
281
365
|
* // },
|
|
282
366
|
* // },
|
|
283
367
|
* // ],
|
|
368
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
284
369
|
* // },
|
|
285
370
|
* // handover: { // AgentHandoverCapability
|
|
286
371
|
* // name: "STRING_VALUE",
|
|
@@ -294,6 +379,7 @@ declare const ListAgentsCommand_base: {
|
|
|
294
379
|
* // type: "handover" || "reply_and_handover" || "reply_instructed_and_handover",
|
|
295
380
|
* // instructions: "STRING_VALUE",
|
|
296
381
|
* // },
|
|
382
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
297
383
|
* // annotations: [
|
|
298
384
|
* // {// Union: only one key present
|
|
299
385
|
* // tag: {
|
|
@@ -316,6 +402,7 @@ declare const ListAgentsCommand_base: {
|
|
|
316
402
|
* // description: "STRING_VALUE",
|
|
317
403
|
* // id: "STRING_VALUE", // required
|
|
318
404
|
* // agentVersion: Number("int"),
|
|
405
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
319
406
|
* // annotations: [
|
|
320
407
|
* // {// Union: only one key present
|
|
321
408
|
* // tag: {
|
|
@@ -343,10 +430,12 @@ declare const ListAgentsCommand_base: {
|
|
|
343
430
|
* // type: "transfer" || "reply_and_transfer" || "reply_instructed_and_transfer",
|
|
344
431
|
* // instructions: "STRING_VALUE",
|
|
345
432
|
* // },
|
|
433
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
346
434
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
347
435
|
* // },
|
|
348
436
|
* // suggestions: { // AgentSuggestionsCapability
|
|
349
437
|
* // name: "STRING_VALUE",
|
|
438
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
350
439
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
351
440
|
* // },
|
|
352
441
|
* // hangup: { // AgentHangupCapability
|
|
@@ -356,12 +445,14 @@ declare const ListAgentsCommand_base: {
|
|
|
356
445
|
* // type: "hangup" || "reply_and_hangup" || "reply_instructed_and_hangup",
|
|
357
446
|
* // instructions: "STRING_VALUE",
|
|
358
447
|
* // },
|
|
448
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
359
449
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
360
450
|
* // },
|
|
361
451
|
* // wait: { // AgentWaitCapability
|
|
362
452
|
* // name: "STRING_VALUE",
|
|
363
453
|
* // description: "STRING_VALUE",
|
|
364
454
|
* // message: "STRING_VALUE",
|
|
455
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
365
456
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
366
457
|
* // },
|
|
367
458
|
* // },
|
|
@@ -426,6 +517,7 @@ declare const ListAgentsCommand_base: {
|
|
|
426
517
|
* // approval: {
|
|
427
518
|
* // prompt: "STRING_VALUE",
|
|
428
519
|
* // },
|
|
520
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
429
521
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
430
522
|
* // },
|
|
431
523
|
* // connector: {
|
|
@@ -438,13 +530,14 @@ declare const ListAgentsCommand_base: {
|
|
|
438
530
|
* // approval: {
|
|
439
531
|
* // prompt: "STRING_VALUE",
|
|
440
532
|
* // },
|
|
533
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
441
534
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
442
535
|
* // },
|
|
443
536
|
* // agent: {
|
|
444
537
|
* // agentId: "STRING_VALUE", // required
|
|
445
538
|
* // agentVersion: Number("int"),
|
|
446
539
|
* // access: {
|
|
447
|
-
* // visibility: "explicit" || "organization",
|
|
540
|
+
* // visibility: "explicit" || "organization" || "public",
|
|
448
541
|
* // grants: [
|
|
449
542
|
* // {// Union: only one key present
|
|
450
543
|
* // userId: "STRING_VALUE",
|
|
@@ -466,6 +559,7 @@ declare const ListAgentsCommand_base: {
|
|
|
466
559
|
* // },
|
|
467
560
|
* // },
|
|
468
561
|
* // ],
|
|
562
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
469
563
|
* // },
|
|
470
564
|
* // handover: {
|
|
471
565
|
* // name: "STRING_VALUE",
|
|
@@ -479,6 +573,7 @@ declare const ListAgentsCommand_base: {
|
|
|
479
573
|
* // type: "handover" || "reply_and_handover" || "reply_instructed_and_handover",
|
|
480
574
|
* // instructions: "STRING_VALUE",
|
|
481
575
|
* // },
|
|
576
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
482
577
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
483
578
|
* // },
|
|
484
579
|
* // delegation: {
|
|
@@ -486,6 +581,7 @@ declare const ListAgentsCommand_base: {
|
|
|
486
581
|
* // description: "STRING_VALUE",
|
|
487
582
|
* // id: "STRING_VALUE", // required
|
|
488
583
|
* // agentVersion: Number("int"),
|
|
584
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
489
585
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
490
586
|
* // },
|
|
491
587
|
* // transfer: {
|
|
@@ -498,6 +594,7 @@ declare const ListAgentsCommand_base: {
|
|
|
498
594
|
* // type: "transfer" || "reply_and_transfer" || "reply_instructed_and_transfer",
|
|
499
595
|
* // instructions: "STRING_VALUE",
|
|
500
596
|
* // },
|
|
597
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
501
598
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
502
599
|
* // },
|
|
503
600
|
* // hangup: {
|
|
@@ -507,12 +604,14 @@ declare const ListAgentsCommand_base: {
|
|
|
507
604
|
* // type: "hangup" || "reply_and_hangup" || "reply_instructed_and_hangup",
|
|
508
605
|
* // instructions: "STRING_VALUE",
|
|
509
606
|
* // },
|
|
607
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
510
608
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
511
609
|
* // },
|
|
512
610
|
* // wait: {
|
|
513
611
|
* // name: "STRING_VALUE",
|
|
514
612
|
* // description: "STRING_VALUE",
|
|
515
613
|
* // message: "STRING_VALUE",
|
|
614
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
516
615
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
517
616
|
* // },
|
|
518
617
|
* // },
|
|
@@ -590,6 +689,7 @@ declare const ListAgentsCommand_base: {
|
|
|
590
689
|
* // kb: {
|
|
591
690
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
592
691
|
* // instructions: "STRING_VALUE",
|
|
692
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
593
693
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
594
694
|
* // },
|
|
595
695
|
* // sandbox: {// Union: only one key present
|
|
@@ -614,9 +714,11 @@ declare const ListAgentsCommand_base: {
|
|
|
614
714
|
* // city: "STRING_VALUE",
|
|
615
715
|
* // timezone: "STRING_VALUE",
|
|
616
716
|
* // },
|
|
717
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
617
718
|
* // },
|
|
618
719
|
* // webFetch: {
|
|
619
720
|
* // allowedDomains: "<DomainNameList>",
|
|
721
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
620
722
|
* // },
|
|
621
723
|
* // agent: "<AgentCallCapability>",
|
|
622
724
|
* // handover: "<AgentHandoverCapability>",
|
|
@@ -624,6 +726,7 @@ declare const ListAgentsCommand_base: {
|
|
|
624
726
|
* // transfer: "<AgentTransferCapability>",
|
|
625
727
|
* // suggestions: {
|
|
626
728
|
* // name: "STRING_VALUE",
|
|
729
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
627
730
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
628
731
|
* // },
|
|
629
732
|
* // hangup: "<AgentHangupCapability>",
|
|
@@ -764,16 +867,6 @@ declare const ListAgentsCommand_base: {
|
|
|
764
867
|
* // },
|
|
765
868
|
* // ],
|
|
766
869
|
* // model: "STRING_VALUE",
|
|
767
|
-
* // action: {// Union: only one key present
|
|
768
|
-
* // observe: {},
|
|
769
|
-
* // redact: {},
|
|
770
|
-
* // block: {
|
|
771
|
-
* // message: "STRING_VALUE",
|
|
772
|
-
* // },
|
|
773
|
-
* // end: {
|
|
774
|
-
* // message: "STRING_VALUE",
|
|
775
|
-
* // },
|
|
776
|
-
* // },
|
|
777
870
|
* // mode: "blocking" || "parallel",
|
|
778
871
|
* // errorMode: "open" || "closed",
|
|
779
872
|
* // window: "lastMessage" || "lastWithPrior",
|
|
@@ -807,9 +900,7 @@ declare const ListAgentsCommand_base: {
|
|
|
807
900
|
* // sqs: { // AgentSqsEngine
|
|
808
901
|
* // url: "STRING_VALUE", // required
|
|
809
902
|
* // key: "STRING_VALUE", // required
|
|
810
|
-
* // secret:
|
|
811
|
-
* // id: "STRING_VALUE", // required
|
|
812
|
-
* // },
|
|
903
|
+
* // secret: "<SecretRef>", // required
|
|
813
904
|
* // },
|
|
814
905
|
* // },
|
|
815
906
|
* // settings: { // AgentSettings
|
|
@@ -47,11 +47,27 @@ declare const ListAgentsNamesCommand_base: {
|
|
|
47
47
|
* // { // AgentInfo
|
|
48
48
|
* // id: "STRING_VALUE", // required
|
|
49
49
|
* // name: "STRING_VALUE", // required
|
|
50
|
+
* // picture: "STRING_VALUE",
|
|
50
51
|
* // category: "STRING_VALUE",
|
|
51
52
|
* // status: "draft" || "active", // required
|
|
52
53
|
* // channels: [ // ChannelTypeList // required
|
|
53
54
|
* // "voice" || "chat" || "assistant" || "workflow",
|
|
54
55
|
* // ],
|
|
56
|
+
* // speechConfigured: true || false,
|
|
57
|
+
* // assistant: { // AssistantUiSettings
|
|
58
|
+
* // welcome: { // AssistantWelcomeSettings
|
|
59
|
+
* // title: "STRING_VALUE",
|
|
60
|
+
* // subtitle: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // commands: [ // AssistantQuickCommandsList
|
|
63
|
+
* // { // AssistantQuickCommand
|
|
64
|
+
* // title: "STRING_VALUE", // required
|
|
65
|
+
* // description: "STRING_VALUE",
|
|
66
|
+
* // prompt: "STRING_VALUE", // required
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // placeholder: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
55
71
|
* // latestVersion: Number("int"),
|
|
56
72
|
* // },
|
|
57
73
|
* // ],
|