@wildix/wilma-agents-client 1.0.28 → 1.0.29
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 +19 -7
- package/dist-cjs/schemas/schemas_0.js +233 -84
- 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 +18 -6
- package/dist-es/schemas/schemas_0.js +230 -81
- package/dist-types/WilmaAgents.d.ts +25 -3
- package/dist-types/WilmaAgentsClient.d.ts +8 -5
- package/dist-types/commands/CreateAgentCommand.d.ts +212 -32
- package/dist-types/commands/DeletePronunciationDictionaryCommand.d.ts +82 -0
- package/dist-types/commands/GetAgentCommand.d.ts +106 -16
- package/dist-types/commands/GetAgentVersionCommand.d.ts +106 -16
- package/dist-types/commands/ListAgentsCommand.d.ts +107 -17
- package/dist-types/commands/ListAgentsNamesCommand.d.ts +18 -2
- package/dist-types/commands/ListPronunciationDictionariesCommand.d.ts +103 -0
- package/dist-types/commands/PublishAgentVersionCommand.d.ts +106 -16
- package/dist-types/commands/PutPronunciationDictionaryCommand.d.ts +117 -0
- package/dist-types/commands/RestoreAgentVersionToDraftCommand.d.ts +106 -16
- package/dist-types/commands/UpdateAgentCommand.d.ts +212 -32
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/index.d.ts +3 -3
- package/dist-types/models/enums.d.ts +68 -26
- package/dist-types/models/models_0.d.ts +618 -49
- package/dist-types/schemas/schemas_0.d.ts +18 -1
- 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,8 +162,21 @@ 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
|
-
* // workflow: {},
|
|
112
180
|
* // },
|
|
113
181
|
* // engine: { // AgentEngine Union: only one key present
|
|
114
182
|
* // ai: { // AgentAiEngine
|
|
@@ -159,6 +227,9 @@ declare const GetAgentVersionCommand_base: {
|
|
|
159
227
|
* // approval: { // AgentToolApproval
|
|
160
228
|
* // prompt: "STRING_VALUE",
|
|
161
229
|
* // },
|
|
230
|
+
* // channels: [ // AgentCapabilityChannelsList
|
|
231
|
+
* // "voice" || "chat" || "assistant",
|
|
232
|
+
* // ],
|
|
162
233
|
* // annotations: [ // AgentToolAnnotationsList
|
|
163
234
|
* // { // AgentToolAnnotation Union: only one key present
|
|
164
235
|
* // tag: { // AgentToolTagAnnotation
|
|
@@ -186,6 +257,9 @@ declare const GetAgentVersionCommand_base: {
|
|
|
186
257
|
* // approval: {
|
|
187
258
|
* // prompt: "STRING_VALUE",
|
|
188
259
|
* // },
|
|
260
|
+
* // channels: [
|
|
261
|
+
* // "voice" || "chat" || "assistant",
|
|
262
|
+
* // ],
|
|
189
263
|
* // annotations: [
|
|
190
264
|
* // {// Union: only one key present
|
|
191
265
|
* // tag: {
|
|
@@ -206,6 +280,9 @@ declare const GetAgentVersionCommand_base: {
|
|
|
206
280
|
* // kb: { // AgentKnowledgeBase
|
|
207
281
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
208
282
|
* // instructions: "STRING_VALUE",
|
|
283
|
+
* // channels: [
|
|
284
|
+
* // "voice" || "chat" || "assistant",
|
|
285
|
+
* // ],
|
|
209
286
|
* // annotations: [
|
|
210
287
|
* // {// Union: only one key present
|
|
211
288
|
* // tag: {
|
|
@@ -251,17 +328,23 @@ declare const GetAgentVersionCommand_base: {
|
|
|
251
328
|
* // city: "STRING_VALUE",
|
|
252
329
|
* // timezone: "STRING_VALUE",
|
|
253
330
|
* // },
|
|
331
|
+
* // channels: [
|
|
332
|
+
* // "voice" || "chat" || "assistant",
|
|
333
|
+
* // ],
|
|
254
334
|
* // },
|
|
255
335
|
* // webFetch: { // AgentWebFetchCapability
|
|
256
336
|
* // allowedDomains: [
|
|
257
337
|
* // "STRING_VALUE",
|
|
258
338
|
* // ],
|
|
339
|
+
* // channels: [
|
|
340
|
+
* // "voice" || "chat" || "assistant",
|
|
341
|
+
* // ],
|
|
259
342
|
* // },
|
|
260
343
|
* // agent: { // AgentCallCapability
|
|
261
344
|
* // agentId: "STRING_VALUE", // required
|
|
262
345
|
* // agentVersion: Number("int"),
|
|
263
346
|
* // access: { // AgentAccess
|
|
264
|
-
* // visibility: "explicit" || "organization",
|
|
347
|
+
* // visibility: "explicit" || "organization" || "public",
|
|
265
348
|
* // grants: [ // AgentGrantPrincipalList
|
|
266
349
|
* // { // AgentGrantPrincipal Union: only one key present
|
|
267
350
|
* // userId: "STRING_VALUE",
|
|
@@ -283,6 +366,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
283
366
|
* // },
|
|
284
367
|
* // },
|
|
285
368
|
* // ],
|
|
369
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
286
370
|
* // },
|
|
287
371
|
* // handover: { // AgentHandoverCapability
|
|
288
372
|
* // name: "STRING_VALUE",
|
|
@@ -296,6 +380,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
296
380
|
* // type: "handover" || "reply_and_handover" || "reply_instructed_and_handover",
|
|
297
381
|
* // instructions: "STRING_VALUE",
|
|
298
382
|
* // },
|
|
383
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
299
384
|
* // annotations: [
|
|
300
385
|
* // {// Union: only one key present
|
|
301
386
|
* // tag: {
|
|
@@ -318,6 +403,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
318
403
|
* // description: "STRING_VALUE",
|
|
319
404
|
* // id: "STRING_VALUE", // required
|
|
320
405
|
* // agentVersion: Number("int"),
|
|
406
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
321
407
|
* // annotations: [
|
|
322
408
|
* // {// Union: only one key present
|
|
323
409
|
* // tag: {
|
|
@@ -345,10 +431,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
345
431
|
* // type: "transfer" || "reply_and_transfer" || "reply_instructed_and_transfer",
|
|
346
432
|
* // instructions: "STRING_VALUE",
|
|
347
433
|
* // },
|
|
434
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
348
435
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
349
436
|
* // },
|
|
350
437
|
* // suggestions: { // AgentSuggestionsCapability
|
|
351
438
|
* // name: "STRING_VALUE",
|
|
439
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
352
440
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
353
441
|
* // },
|
|
354
442
|
* // hangup: { // AgentHangupCapability
|
|
@@ -358,12 +446,14 @@ declare const GetAgentVersionCommand_base: {
|
|
|
358
446
|
* // type: "hangup" || "reply_and_hangup" || "reply_instructed_and_hangup",
|
|
359
447
|
* // instructions: "STRING_VALUE",
|
|
360
448
|
* // },
|
|
449
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
361
450
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
362
451
|
* // },
|
|
363
452
|
* // wait: { // AgentWaitCapability
|
|
364
453
|
* // name: "STRING_VALUE",
|
|
365
454
|
* // description: "STRING_VALUE",
|
|
366
455
|
* // message: "STRING_VALUE",
|
|
456
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
367
457
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
368
458
|
* // },
|
|
369
459
|
* // },
|
|
@@ -428,6 +518,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
428
518
|
* // approval: {
|
|
429
519
|
* // prompt: "STRING_VALUE",
|
|
430
520
|
* // },
|
|
521
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
431
522
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
432
523
|
* // },
|
|
433
524
|
* // connector: {
|
|
@@ -440,13 +531,14 @@ declare const GetAgentVersionCommand_base: {
|
|
|
440
531
|
* // approval: {
|
|
441
532
|
* // prompt: "STRING_VALUE",
|
|
442
533
|
* // },
|
|
534
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
443
535
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
444
536
|
* // },
|
|
445
537
|
* // agent: {
|
|
446
538
|
* // agentId: "STRING_VALUE", // required
|
|
447
539
|
* // agentVersion: Number("int"),
|
|
448
540
|
* // access: {
|
|
449
|
-
* // visibility: "explicit" || "organization",
|
|
541
|
+
* // visibility: "explicit" || "organization" || "public",
|
|
450
542
|
* // grants: [
|
|
451
543
|
* // {// Union: only one key present
|
|
452
544
|
* // userId: "STRING_VALUE",
|
|
@@ -468,6 +560,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
468
560
|
* // },
|
|
469
561
|
* // },
|
|
470
562
|
* // ],
|
|
563
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
471
564
|
* // },
|
|
472
565
|
* // handover: {
|
|
473
566
|
* // name: "STRING_VALUE",
|
|
@@ -481,6 +574,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
481
574
|
* // type: "handover" || "reply_and_handover" || "reply_instructed_and_handover",
|
|
482
575
|
* // instructions: "STRING_VALUE",
|
|
483
576
|
* // },
|
|
577
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
484
578
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
485
579
|
* // },
|
|
486
580
|
* // delegation: {
|
|
@@ -488,6 +582,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
488
582
|
* // description: "STRING_VALUE",
|
|
489
583
|
* // id: "STRING_VALUE", // required
|
|
490
584
|
* // agentVersion: Number("int"),
|
|
585
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
491
586
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
492
587
|
* // },
|
|
493
588
|
* // transfer: {
|
|
@@ -500,6 +595,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
500
595
|
* // type: "transfer" || "reply_and_transfer" || "reply_instructed_and_transfer",
|
|
501
596
|
* // instructions: "STRING_VALUE",
|
|
502
597
|
* // },
|
|
598
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
503
599
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
504
600
|
* // },
|
|
505
601
|
* // hangup: {
|
|
@@ -509,12 +605,14 @@ declare const GetAgentVersionCommand_base: {
|
|
|
509
605
|
* // type: "hangup" || "reply_and_hangup" || "reply_instructed_and_hangup",
|
|
510
606
|
* // instructions: "STRING_VALUE",
|
|
511
607
|
* // },
|
|
608
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
512
609
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
513
610
|
* // },
|
|
514
611
|
* // wait: {
|
|
515
612
|
* // name: "STRING_VALUE",
|
|
516
613
|
* // description: "STRING_VALUE",
|
|
517
614
|
* // message: "STRING_VALUE",
|
|
615
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
518
616
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
519
617
|
* // },
|
|
520
618
|
* // },
|
|
@@ -592,6 +690,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
592
690
|
* // kb: {
|
|
593
691
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
594
692
|
* // instructions: "STRING_VALUE",
|
|
693
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
595
694
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
596
695
|
* // },
|
|
597
696
|
* // sandbox: {// Union: only one key present
|
|
@@ -616,9 +715,11 @@ declare const GetAgentVersionCommand_base: {
|
|
|
616
715
|
* // city: "STRING_VALUE",
|
|
617
716
|
* // timezone: "STRING_VALUE",
|
|
618
717
|
* // },
|
|
718
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
619
719
|
* // },
|
|
620
720
|
* // webFetch: {
|
|
621
721
|
* // allowedDomains: "<DomainNameList>",
|
|
722
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
622
723
|
* // },
|
|
623
724
|
* // agent: "<AgentCallCapability>",
|
|
624
725
|
* // handover: "<AgentHandoverCapability>",
|
|
@@ -626,6 +727,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
626
727
|
* // transfer: "<AgentTransferCapability>",
|
|
627
728
|
* // suggestions: {
|
|
628
729
|
* // name: "STRING_VALUE",
|
|
730
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
629
731
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
630
732
|
* // },
|
|
631
733
|
* // hangup: "<AgentHangupCapability>",
|
|
@@ -766,16 +868,6 @@ declare const GetAgentVersionCommand_base: {
|
|
|
766
868
|
* // },
|
|
767
869
|
* // ],
|
|
768
870
|
* // 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
871
|
* // mode: "blocking" || "parallel",
|
|
780
872
|
* // errorMode: "open" || "closed",
|
|
781
873
|
* // window: "lastMessage" || "lastWithPrior",
|
|
@@ -809,9 +901,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
809
901
|
* // sqs: { // AgentSqsEngine
|
|
810
902
|
* // url: "STRING_VALUE", // required
|
|
811
903
|
* // key: "STRING_VALUE", // required
|
|
812
|
-
* // secret:
|
|
813
|
-
* // id: "STRING_VALUE", // required
|
|
814
|
-
* // },
|
|
904
|
+
* // secret: "<SecretRef>", // required
|
|
815
905
|
* // },
|
|
816
906
|
* // },
|
|
817
907
|
* // settings: { // AgentSettings
|
|
@@ -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",
|
|
42
42
|
* status: "draft" || "active",
|
|
43
43
|
* search: "STRING_VALUE",
|
|
44
44
|
* limit: Number("int"),
|
|
@@ -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,8 +160,21 @@ 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
|
-
* // workflow: {},
|
|
110
178
|
* // },
|
|
111
179
|
* // engine: { // AgentEngine Union: only one key present
|
|
112
180
|
* // ai: { // AgentAiEngine
|
|
@@ -157,6 +225,9 @@ declare const ListAgentsCommand_base: {
|
|
|
157
225
|
* // approval: { // AgentToolApproval
|
|
158
226
|
* // prompt: "STRING_VALUE",
|
|
159
227
|
* // },
|
|
228
|
+
* // channels: [ // AgentCapabilityChannelsList
|
|
229
|
+
* // "voice" || "chat" || "assistant",
|
|
230
|
+
* // ],
|
|
160
231
|
* // annotations: [ // AgentToolAnnotationsList
|
|
161
232
|
* // { // AgentToolAnnotation Union: only one key present
|
|
162
233
|
* // tag: { // AgentToolTagAnnotation
|
|
@@ -184,6 +255,9 @@ declare const ListAgentsCommand_base: {
|
|
|
184
255
|
* // approval: {
|
|
185
256
|
* // prompt: "STRING_VALUE",
|
|
186
257
|
* // },
|
|
258
|
+
* // channels: [
|
|
259
|
+
* // "voice" || "chat" || "assistant",
|
|
260
|
+
* // ],
|
|
187
261
|
* // annotations: [
|
|
188
262
|
* // {// Union: only one key present
|
|
189
263
|
* // tag: {
|
|
@@ -204,6 +278,9 @@ declare const ListAgentsCommand_base: {
|
|
|
204
278
|
* // kb: { // AgentKnowledgeBase
|
|
205
279
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
206
280
|
* // instructions: "STRING_VALUE",
|
|
281
|
+
* // channels: [
|
|
282
|
+
* // "voice" || "chat" || "assistant",
|
|
283
|
+
* // ],
|
|
207
284
|
* // annotations: [
|
|
208
285
|
* // {// Union: only one key present
|
|
209
286
|
* // tag: {
|
|
@@ -249,17 +326,23 @@ declare const ListAgentsCommand_base: {
|
|
|
249
326
|
* // city: "STRING_VALUE",
|
|
250
327
|
* // timezone: "STRING_VALUE",
|
|
251
328
|
* // },
|
|
329
|
+
* // channels: [
|
|
330
|
+
* // "voice" || "chat" || "assistant",
|
|
331
|
+
* // ],
|
|
252
332
|
* // },
|
|
253
333
|
* // webFetch: { // AgentWebFetchCapability
|
|
254
334
|
* // allowedDomains: [
|
|
255
335
|
* // "STRING_VALUE",
|
|
256
336
|
* // ],
|
|
337
|
+
* // channels: [
|
|
338
|
+
* // "voice" || "chat" || "assistant",
|
|
339
|
+
* // ],
|
|
257
340
|
* // },
|
|
258
341
|
* // agent: { // AgentCallCapability
|
|
259
342
|
* // agentId: "STRING_VALUE", // required
|
|
260
343
|
* // agentVersion: Number("int"),
|
|
261
344
|
* // access: { // AgentAccess
|
|
262
|
-
* // visibility: "explicit" || "organization",
|
|
345
|
+
* // visibility: "explicit" || "organization" || "public",
|
|
263
346
|
* // grants: [ // AgentGrantPrincipalList
|
|
264
347
|
* // { // AgentGrantPrincipal Union: only one key present
|
|
265
348
|
* // userId: "STRING_VALUE",
|
|
@@ -281,6 +364,7 @@ declare const ListAgentsCommand_base: {
|
|
|
281
364
|
* // },
|
|
282
365
|
* // },
|
|
283
366
|
* // ],
|
|
367
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
284
368
|
* // },
|
|
285
369
|
* // handover: { // AgentHandoverCapability
|
|
286
370
|
* // name: "STRING_VALUE",
|
|
@@ -294,6 +378,7 @@ declare const ListAgentsCommand_base: {
|
|
|
294
378
|
* // type: "handover" || "reply_and_handover" || "reply_instructed_and_handover",
|
|
295
379
|
* // instructions: "STRING_VALUE",
|
|
296
380
|
* // },
|
|
381
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
297
382
|
* // annotations: [
|
|
298
383
|
* // {// Union: only one key present
|
|
299
384
|
* // tag: {
|
|
@@ -316,6 +401,7 @@ declare const ListAgentsCommand_base: {
|
|
|
316
401
|
* // description: "STRING_VALUE",
|
|
317
402
|
* // id: "STRING_VALUE", // required
|
|
318
403
|
* // agentVersion: Number("int"),
|
|
404
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
319
405
|
* // annotations: [
|
|
320
406
|
* // {// Union: only one key present
|
|
321
407
|
* // tag: {
|
|
@@ -343,10 +429,12 @@ declare const ListAgentsCommand_base: {
|
|
|
343
429
|
* // type: "transfer" || "reply_and_transfer" || "reply_instructed_and_transfer",
|
|
344
430
|
* // instructions: "STRING_VALUE",
|
|
345
431
|
* // },
|
|
432
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
346
433
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
347
434
|
* // },
|
|
348
435
|
* // suggestions: { // AgentSuggestionsCapability
|
|
349
436
|
* // name: "STRING_VALUE",
|
|
437
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
350
438
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
351
439
|
* // },
|
|
352
440
|
* // hangup: { // AgentHangupCapability
|
|
@@ -356,12 +444,14 @@ declare const ListAgentsCommand_base: {
|
|
|
356
444
|
* // type: "hangup" || "reply_and_hangup" || "reply_instructed_and_hangup",
|
|
357
445
|
* // instructions: "STRING_VALUE",
|
|
358
446
|
* // },
|
|
447
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
359
448
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
360
449
|
* // },
|
|
361
450
|
* // wait: { // AgentWaitCapability
|
|
362
451
|
* // name: "STRING_VALUE",
|
|
363
452
|
* // description: "STRING_VALUE",
|
|
364
453
|
* // message: "STRING_VALUE",
|
|
454
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
365
455
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
366
456
|
* // },
|
|
367
457
|
* // },
|
|
@@ -426,6 +516,7 @@ declare const ListAgentsCommand_base: {
|
|
|
426
516
|
* // approval: {
|
|
427
517
|
* // prompt: "STRING_VALUE",
|
|
428
518
|
* // },
|
|
519
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
429
520
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
430
521
|
* // },
|
|
431
522
|
* // connector: {
|
|
@@ -438,13 +529,14 @@ declare const ListAgentsCommand_base: {
|
|
|
438
529
|
* // approval: {
|
|
439
530
|
* // prompt: "STRING_VALUE",
|
|
440
531
|
* // },
|
|
532
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
441
533
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
442
534
|
* // },
|
|
443
535
|
* // agent: {
|
|
444
536
|
* // agentId: "STRING_VALUE", // required
|
|
445
537
|
* // agentVersion: Number("int"),
|
|
446
538
|
* // access: {
|
|
447
|
-
* // visibility: "explicit" || "organization",
|
|
539
|
+
* // visibility: "explicit" || "organization" || "public",
|
|
448
540
|
* // grants: [
|
|
449
541
|
* // {// Union: only one key present
|
|
450
542
|
* // userId: "STRING_VALUE",
|
|
@@ -466,6 +558,7 @@ declare const ListAgentsCommand_base: {
|
|
|
466
558
|
* // },
|
|
467
559
|
* // },
|
|
468
560
|
* // ],
|
|
561
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
469
562
|
* // },
|
|
470
563
|
* // handover: {
|
|
471
564
|
* // name: "STRING_VALUE",
|
|
@@ -479,6 +572,7 @@ declare const ListAgentsCommand_base: {
|
|
|
479
572
|
* // type: "handover" || "reply_and_handover" || "reply_instructed_and_handover",
|
|
480
573
|
* // instructions: "STRING_VALUE",
|
|
481
574
|
* // },
|
|
575
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
482
576
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
483
577
|
* // },
|
|
484
578
|
* // delegation: {
|
|
@@ -486,6 +580,7 @@ declare const ListAgentsCommand_base: {
|
|
|
486
580
|
* // description: "STRING_VALUE",
|
|
487
581
|
* // id: "STRING_VALUE", // required
|
|
488
582
|
* // agentVersion: Number("int"),
|
|
583
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
489
584
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
490
585
|
* // },
|
|
491
586
|
* // transfer: {
|
|
@@ -498,6 +593,7 @@ declare const ListAgentsCommand_base: {
|
|
|
498
593
|
* // type: "transfer" || "reply_and_transfer" || "reply_instructed_and_transfer",
|
|
499
594
|
* // instructions: "STRING_VALUE",
|
|
500
595
|
* // },
|
|
596
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
501
597
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
502
598
|
* // },
|
|
503
599
|
* // hangup: {
|
|
@@ -507,12 +603,14 @@ declare const ListAgentsCommand_base: {
|
|
|
507
603
|
* // type: "hangup" || "reply_and_hangup" || "reply_instructed_and_hangup",
|
|
508
604
|
* // instructions: "STRING_VALUE",
|
|
509
605
|
* // },
|
|
606
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
510
607
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
511
608
|
* // },
|
|
512
609
|
* // wait: {
|
|
513
610
|
* // name: "STRING_VALUE",
|
|
514
611
|
* // description: "STRING_VALUE",
|
|
515
612
|
* // message: "STRING_VALUE",
|
|
613
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
516
614
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
517
615
|
* // },
|
|
518
616
|
* // },
|
|
@@ -590,6 +688,7 @@ declare const ListAgentsCommand_base: {
|
|
|
590
688
|
* // kb: {
|
|
591
689
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
592
690
|
* // instructions: "STRING_VALUE",
|
|
691
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
593
692
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
594
693
|
* // },
|
|
595
694
|
* // sandbox: {// Union: only one key present
|
|
@@ -614,9 +713,11 @@ declare const ListAgentsCommand_base: {
|
|
|
614
713
|
* // city: "STRING_VALUE",
|
|
615
714
|
* // timezone: "STRING_VALUE",
|
|
616
715
|
* // },
|
|
716
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
617
717
|
* // },
|
|
618
718
|
* // webFetch: {
|
|
619
719
|
* // allowedDomains: "<DomainNameList>",
|
|
720
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
620
721
|
* // },
|
|
621
722
|
* // agent: "<AgentCallCapability>",
|
|
622
723
|
* // handover: "<AgentHandoverCapability>",
|
|
@@ -624,6 +725,7 @@ declare const ListAgentsCommand_base: {
|
|
|
624
725
|
* // transfer: "<AgentTransferCapability>",
|
|
625
726
|
* // suggestions: {
|
|
626
727
|
* // name: "STRING_VALUE",
|
|
728
|
+
* // channels: "<AgentCapabilityChannelsList>",
|
|
627
729
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
628
730
|
* // },
|
|
629
731
|
* // hangup: "<AgentHangupCapability>",
|
|
@@ -764,16 +866,6 @@ declare const ListAgentsCommand_base: {
|
|
|
764
866
|
* // },
|
|
765
867
|
* // ],
|
|
766
868
|
* // 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
869
|
* // mode: "blocking" || "parallel",
|
|
778
870
|
* // errorMode: "open" || "closed",
|
|
779
871
|
* // window: "lastMessage" || "lastWithPrior",
|
|
@@ -807,9 +899,7 @@ declare const ListAgentsCommand_base: {
|
|
|
807
899
|
* // sqs: { // AgentSqsEngine
|
|
808
900
|
* // url: "STRING_VALUE", // required
|
|
809
901
|
* // key: "STRING_VALUE", // required
|
|
810
|
-
* // secret:
|
|
811
|
-
* // id: "STRING_VALUE", // required
|
|
812
|
-
* // },
|
|
902
|
+
* // secret: "<SecretRef>", // required
|
|
813
903
|
* // },
|
|
814
904
|
* // },
|
|
815
905
|
* // settings: { // AgentSettings
|