@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.
Files changed (33) hide show
  1. package/dist-cjs/WilmaAgents.js +6 -0
  2. package/dist-cjs/commands/DeletePronunciationDictionaryCommand.js +20 -0
  3. package/dist-cjs/commands/ListPronunciationDictionariesCommand.js +20 -0
  4. package/dist-cjs/commands/PutPronunciationDictionaryCommand.js +20 -0
  5. package/dist-cjs/commands/index.js +3 -0
  6. package/dist-cjs/models/enums.js +20 -7
  7. package/dist-cjs/schemas/schemas_0.js +231 -76
  8. package/dist-es/WilmaAgents.js +6 -0
  9. package/dist-es/commands/DeletePronunciationDictionaryCommand.js +16 -0
  10. package/dist-es/commands/ListPronunciationDictionariesCommand.js +16 -0
  11. package/dist-es/commands/PutPronunciationDictionaryCommand.js +16 -0
  12. package/dist-es/commands/index.js +3 -0
  13. package/dist-es/models/enums.js +19 -6
  14. package/dist-es/schemas/schemas_0.js +228 -73
  15. package/dist-types/WilmaAgents.d.ts +25 -3
  16. package/dist-types/WilmaAgentsClient.d.ts +8 -5
  17. package/dist-types/commands/CreateAgentCommand.d.ts +212 -30
  18. package/dist-types/commands/DeletePronunciationDictionaryCommand.d.ts +82 -0
  19. package/dist-types/commands/GetAgentCommand.d.ts +106 -15
  20. package/dist-types/commands/GetAgentVersionCommand.d.ts +106 -15
  21. package/dist-types/commands/ListAgentsCommand.d.ts +106 -15
  22. package/dist-types/commands/ListAgentsNamesCommand.d.ts +16 -0
  23. package/dist-types/commands/ListPronunciationDictionariesCommand.d.ts +103 -0
  24. package/dist-types/commands/PublishAgentVersionCommand.d.ts +106 -15
  25. package/dist-types/commands/PutPronunciationDictionaryCommand.d.ts +117 -0
  26. package/dist-types/commands/RestoreAgentVersionToDraftCommand.d.ts +106 -15
  27. package/dist-types/commands/UpdateAgentCommand.d.ts +212 -30
  28. package/dist-types/commands/index.d.ts +3 -0
  29. package/dist-types/index.d.ts +3 -3
  30. package/dist-types/models/enums.d.ts +72 -26
  31. package/dist-types/models/models_0.d.ts +620 -40
  32. package/dist-types/schemas/schemas_0.d.ts +18 -0
  33. package/package.json +2 -2
@@ -44,6 +44,61 @@ declare const CreateAgentCommand_base: {
44
44
  * channels: { // AgentChannels
45
45
  * voice: { // VoiceChannelSettings
46
46
  * greeting: "STRING_VALUE",
47
+ * backgroundSound: "STRING_VALUE",
48
+ * speech: { // VoiceSpeechSettings
49
+ * provider: "elevenlabs" || "google" || "amazon_polly", // required
50
+ * languages: [ // VoiceLanguageList // required
51
+ * { // VoiceLanguage
52
+ * code: "STRING_VALUE", // required
53
+ * provider: "elevenlabs" || "google" || "amazon_polly",
54
+ * voice: "STRING_VALUE", // required
55
+ * greeting: "STRING_VALUE",
56
+ * isDefault: true || false,
57
+ * instructions: "STRING_VALUE",
58
+ * synthesis: { // VoiceSynthesisOptions
59
+ * model: "STRING_VALUE",
60
+ * speed: Number("float"),
61
+ * stability: Number("float"),
62
+ * similarity: Number("float"),
63
+ * style: Number("float"),
64
+ * speakerBoost: true || false,
65
+ * pitch: Number("float"),
66
+ * volumeGain: Number("float"),
67
+ * },
68
+ * credential: { // SecretRef
69
+ * id: "STRING_VALUE", // required
70
+ * },
71
+ * pronunciations: [ // VoicePronunciationList
72
+ * { // VoicePronunciation
73
+ * phrase: "STRING_VALUE", // required
74
+ * as: "STRING_VALUE", // required
75
+ * encoding: "alias" || "ipa",
76
+ * },
77
+ * ],
78
+ * pronunciationSuppressions: [ // VoicePronunciationSuppressionList
79
+ * "STRING_VALUE",
80
+ * ],
81
+ * },
82
+ * ],
83
+ * autoDetect: true || false,
84
+ * greetEveryLanguage: true || false,
85
+ * transcription: { // VoiceTranscriptionSettings
86
+ * vendor: "aws",
87
+ * },
88
+ * synthesis: {
89
+ * model: "STRING_VALUE",
90
+ * speed: Number("float"),
91
+ * stability: Number("float"),
92
+ * similarity: Number("float"),
93
+ * style: Number("float"),
94
+ * speakerBoost: true || false,
95
+ * pitch: Number("float"),
96
+ * volumeGain: Number("float"),
97
+ * },
98
+ * credential: {
99
+ * id: "STRING_VALUE", // required
100
+ * },
101
+ * },
47
102
  * interruptions: { // VoiceInterruptionSettings
48
103
  * enabled: true || false, // required
49
104
  * minWords: Number("int"),
@@ -93,6 +148,20 @@ declare const CreateAgentCommand_base: {
93
148
  * },
94
149
  * assistant: { // AssistantChannelSettings
95
150
  * default: true || false,
151
+ * ui: { // AssistantUiSettings
152
+ * welcome: { // AssistantWelcomeSettings
153
+ * title: "STRING_VALUE",
154
+ * subtitle: "STRING_VALUE",
155
+ * },
156
+ * commands: [ // AssistantQuickCommandsList
157
+ * { // AssistantQuickCommand
158
+ * title: "STRING_VALUE", // required
159
+ * description: "STRING_VALUE",
160
+ * prompt: "STRING_VALUE", // required
161
+ * },
162
+ * ],
163
+ * placeholder: "STRING_VALUE",
164
+ * },
96
165
  * },
97
166
  * workflow: {},
98
167
  * },
@@ -145,6 +214,9 @@ declare const CreateAgentCommand_base: {
145
214
  * approval: { // AgentToolApproval
146
215
  * prompt: "STRING_VALUE",
147
216
  * },
217
+ * channels: [ // AgentCapabilityChannelsList
218
+ * "voice" || "chat" || "assistant" || "workflow",
219
+ * ],
148
220
  * annotations: [ // AgentToolAnnotationsList
149
221
  * { // AgentToolAnnotation Union: only one key present
150
222
  * tag: { // AgentToolTagAnnotation
@@ -172,6 +244,9 @@ declare const CreateAgentCommand_base: {
172
244
  * approval: {
173
245
  * prompt: "STRING_VALUE",
174
246
  * },
247
+ * channels: [
248
+ * "voice" || "chat" || "assistant" || "workflow",
249
+ * ],
175
250
  * annotations: [
176
251
  * {// Union: only one key present
177
252
  * tag: {
@@ -192,6 +267,9 @@ declare const CreateAgentCommand_base: {
192
267
  * kb: { // AgentKnowledgeBase
193
268
  * knowledgeBaseId: "STRING_VALUE",
194
269
  * instructions: "STRING_VALUE",
270
+ * channels: [
271
+ * "voice" || "chat" || "assistant" || "workflow",
272
+ * ],
195
273
  * annotations: [
196
274
  * {// Union: only one key present
197
275
  * tag: {
@@ -237,17 +315,23 @@ declare const CreateAgentCommand_base: {
237
315
  * city: "STRING_VALUE",
238
316
  * timezone: "STRING_VALUE",
239
317
  * },
318
+ * channels: [
319
+ * "voice" || "chat" || "assistant" || "workflow",
320
+ * ],
240
321
  * },
241
322
  * webFetch: { // AgentWebFetchCapability
242
323
  * allowedDomains: [
243
324
  * "STRING_VALUE",
244
325
  * ],
326
+ * channels: [
327
+ * "voice" || "chat" || "assistant" || "workflow",
328
+ * ],
245
329
  * },
246
330
  * agent: { // AgentCallCapability
247
331
  * agentId: "STRING_VALUE", // required
248
332
  * agentVersion: Number("int"),
249
333
  * access: { // AgentAccess
250
- * visibility: "explicit" || "organization",
334
+ * visibility: "explicit" || "organization" || "public",
251
335
  * grants: [ // AgentGrantPrincipalList
252
336
  * { // AgentGrantPrincipal Union: only one key present
253
337
  * userId: "STRING_VALUE",
@@ -269,6 +353,7 @@ declare const CreateAgentCommand_base: {
269
353
  * },
270
354
  * },
271
355
  * ],
356
+ * channels: "<AgentCapabilityChannelsList>",
272
357
  * },
273
358
  * handover: { // AgentHandoverCapability
274
359
  * name: "STRING_VALUE",
@@ -282,6 +367,7 @@ declare const CreateAgentCommand_base: {
282
367
  * type: "handover" || "reply_and_handover" || "reply_instructed_and_handover",
283
368
  * instructions: "STRING_VALUE",
284
369
  * },
370
+ * channels: "<AgentCapabilityChannelsList>",
285
371
  * annotations: [
286
372
  * {// Union: only one key present
287
373
  * tag: {
@@ -304,6 +390,7 @@ declare const CreateAgentCommand_base: {
304
390
  * description: "STRING_VALUE",
305
391
  * id: "STRING_VALUE", // required
306
392
  * agentVersion: Number("int"),
393
+ * channels: "<AgentCapabilityChannelsList>",
307
394
  * annotations: [
308
395
  * {// Union: only one key present
309
396
  * tag: {
@@ -331,10 +418,12 @@ declare const CreateAgentCommand_base: {
331
418
  * type: "transfer" || "reply_and_transfer" || "reply_instructed_and_transfer",
332
419
  * instructions: "STRING_VALUE",
333
420
  * },
421
+ * channels: "<AgentCapabilityChannelsList>",
334
422
  * annotations: "<AgentToolAnnotationsList>",
335
423
  * },
336
424
  * suggestions: { // AgentSuggestionsCapability
337
425
  * name: "STRING_VALUE",
426
+ * channels: "<AgentCapabilityChannelsList>",
338
427
  * annotations: "<AgentToolAnnotationsList>",
339
428
  * },
340
429
  * hangup: { // AgentHangupCapability
@@ -344,12 +433,14 @@ declare const CreateAgentCommand_base: {
344
433
  * type: "hangup" || "reply_and_hangup" || "reply_instructed_and_hangup",
345
434
  * instructions: "STRING_VALUE",
346
435
  * },
436
+ * channels: "<AgentCapabilityChannelsList>",
347
437
  * annotations: "<AgentToolAnnotationsList>",
348
438
  * },
349
439
  * wait: { // AgentWaitCapability
350
440
  * name: "STRING_VALUE",
351
441
  * description: "STRING_VALUE",
352
442
  * message: "STRING_VALUE",
443
+ * channels: "<AgentCapabilityChannelsList>",
353
444
  * annotations: "<AgentToolAnnotationsList>",
354
445
  * },
355
446
  * },
@@ -414,6 +505,7 @@ declare const CreateAgentCommand_base: {
414
505
  * approval: {
415
506
  * prompt: "STRING_VALUE",
416
507
  * },
508
+ * channels: "<AgentCapabilityChannelsList>",
417
509
  * annotations: "<AgentToolAnnotationsList>",
418
510
  * },
419
511
  * connector: {
@@ -426,13 +518,14 @@ declare const CreateAgentCommand_base: {
426
518
  * approval: {
427
519
  * prompt: "STRING_VALUE",
428
520
  * },
521
+ * channels: "<AgentCapabilityChannelsList>",
429
522
  * annotations: "<AgentToolAnnotationsList>",
430
523
  * },
431
524
  * agent: {
432
525
  * agentId: "STRING_VALUE", // required
433
526
  * agentVersion: Number("int"),
434
527
  * access: {
435
- * visibility: "explicit" || "organization",
528
+ * visibility: "explicit" || "organization" || "public",
436
529
  * grants: [
437
530
  * {// Union: only one key present
438
531
  * userId: "STRING_VALUE",
@@ -454,6 +547,7 @@ declare const CreateAgentCommand_base: {
454
547
  * },
455
548
  * },
456
549
  * ],
550
+ * channels: "<AgentCapabilityChannelsList>",
457
551
  * },
458
552
  * handover: {
459
553
  * name: "STRING_VALUE",
@@ -467,6 +561,7 @@ declare const CreateAgentCommand_base: {
467
561
  * type: "handover" || "reply_and_handover" || "reply_instructed_and_handover",
468
562
  * instructions: "STRING_VALUE",
469
563
  * },
564
+ * channels: "<AgentCapabilityChannelsList>",
470
565
  * annotations: "<AgentToolAnnotationsList>",
471
566
  * },
472
567
  * delegation: {
@@ -474,6 +569,7 @@ declare const CreateAgentCommand_base: {
474
569
  * description: "STRING_VALUE",
475
570
  * id: "STRING_VALUE", // required
476
571
  * agentVersion: Number("int"),
572
+ * channels: "<AgentCapabilityChannelsList>",
477
573
  * annotations: "<AgentToolAnnotationsList>",
478
574
  * },
479
575
  * transfer: {
@@ -486,6 +582,7 @@ declare const CreateAgentCommand_base: {
486
582
  * type: "transfer" || "reply_and_transfer" || "reply_instructed_and_transfer",
487
583
  * instructions: "STRING_VALUE",
488
584
  * },
585
+ * channels: "<AgentCapabilityChannelsList>",
489
586
  * annotations: "<AgentToolAnnotationsList>",
490
587
  * },
491
588
  * hangup: {
@@ -495,12 +592,14 @@ declare const CreateAgentCommand_base: {
495
592
  * type: "hangup" || "reply_and_hangup" || "reply_instructed_and_hangup",
496
593
  * instructions: "STRING_VALUE",
497
594
  * },
595
+ * channels: "<AgentCapabilityChannelsList>",
498
596
  * annotations: "<AgentToolAnnotationsList>",
499
597
  * },
500
598
  * wait: {
501
599
  * name: "STRING_VALUE",
502
600
  * description: "STRING_VALUE",
503
601
  * message: "STRING_VALUE",
602
+ * channels: "<AgentCapabilityChannelsList>",
504
603
  * annotations: "<AgentToolAnnotationsList>",
505
604
  * },
506
605
  * },
@@ -578,6 +677,7 @@ declare const CreateAgentCommand_base: {
578
677
  * kb: {
579
678
  * knowledgeBaseId: "STRING_VALUE",
580
679
  * instructions: "STRING_VALUE",
680
+ * channels: "<AgentCapabilityChannelsList>",
581
681
  * annotations: "<AgentToolAnnotationsList>",
582
682
  * },
583
683
  * sandbox: {// Union: only one key present
@@ -602,9 +702,11 @@ declare const CreateAgentCommand_base: {
602
702
  * city: "STRING_VALUE",
603
703
  * timezone: "STRING_VALUE",
604
704
  * },
705
+ * channels: "<AgentCapabilityChannelsList>",
605
706
  * },
606
707
  * webFetch: {
607
708
  * allowedDomains: "<DomainNameList>",
709
+ * channels: "<AgentCapabilityChannelsList>",
608
710
  * },
609
711
  * agent: "<AgentCallCapability>",
610
712
  * handover: "<AgentHandoverCapability>",
@@ -612,6 +714,7 @@ declare const CreateAgentCommand_base: {
612
714
  * transfer: "<AgentTransferCapability>",
613
715
  * suggestions: {
614
716
  * name: "STRING_VALUE",
717
+ * channels: "<AgentCapabilityChannelsList>",
615
718
  * annotations: "<AgentToolAnnotationsList>",
616
719
  * },
617
720
  * hangup: "<AgentHangupCapability>",
@@ -752,16 +855,6 @@ declare const CreateAgentCommand_base: {
752
855
  * },
753
856
  * ],
754
857
  * model: "STRING_VALUE",
755
- * action: {// Union: only one key present
756
- * observe: {},
757
- * redact: {},
758
- * block: {
759
- * message: "STRING_VALUE",
760
- * },
761
- * end: {
762
- * message: "STRING_VALUE",
763
- * },
764
- * },
765
858
  * mode: "blocking" || "parallel",
766
859
  * errorMode: "open" || "closed",
767
860
  * window: "lastMessage" || "lastWithPrior",
@@ -795,9 +888,7 @@ declare const CreateAgentCommand_base: {
795
888
  * sqs: { // AgentSqsEngine
796
889
  * url: "STRING_VALUE", // required
797
890
  * key: "STRING_VALUE", // required
798
- * secret: { // SecretRef
799
- * id: "STRING_VALUE", // required
800
- * },
891
+ * secret: "<SecretRef>", // required
801
892
  * },
802
893
  * },
803
894
  * settings: { // AgentSettings
@@ -817,6 +908,61 @@ declare const CreateAgentCommand_base: {
817
908
  * // channels: { // AgentChannels
818
909
  * // voice: { // VoiceChannelSettings
819
910
  * // greeting: "STRING_VALUE",
911
+ * // backgroundSound: "STRING_VALUE",
912
+ * // speech: { // VoiceSpeechSettings
913
+ * // provider: "elevenlabs" || "google" || "amazon_polly", // required
914
+ * // languages: [ // VoiceLanguageList // required
915
+ * // { // VoiceLanguage
916
+ * // code: "STRING_VALUE", // required
917
+ * // provider: "elevenlabs" || "google" || "amazon_polly",
918
+ * // voice: "STRING_VALUE", // required
919
+ * // greeting: "STRING_VALUE",
920
+ * // isDefault: true || false,
921
+ * // instructions: "STRING_VALUE",
922
+ * // synthesis: { // VoiceSynthesisOptions
923
+ * // model: "STRING_VALUE",
924
+ * // speed: Number("float"),
925
+ * // stability: Number("float"),
926
+ * // similarity: Number("float"),
927
+ * // style: Number("float"),
928
+ * // speakerBoost: true || false,
929
+ * // pitch: Number("float"),
930
+ * // volumeGain: Number("float"),
931
+ * // },
932
+ * // credential: { // SecretRef
933
+ * // id: "STRING_VALUE", // required
934
+ * // },
935
+ * // pronunciations: [ // VoicePronunciationList
936
+ * // { // VoicePronunciation
937
+ * // phrase: "STRING_VALUE", // required
938
+ * // as: "STRING_VALUE", // required
939
+ * // encoding: "alias" || "ipa",
940
+ * // },
941
+ * // ],
942
+ * // pronunciationSuppressions: [ // VoicePronunciationSuppressionList
943
+ * // "STRING_VALUE",
944
+ * // ],
945
+ * // },
946
+ * // ],
947
+ * // autoDetect: true || false,
948
+ * // greetEveryLanguage: true || false,
949
+ * // transcription: { // VoiceTranscriptionSettings
950
+ * // vendor: "aws",
951
+ * // },
952
+ * // synthesis: {
953
+ * // model: "STRING_VALUE",
954
+ * // speed: Number("float"),
955
+ * // stability: Number("float"),
956
+ * // similarity: Number("float"),
957
+ * // style: Number("float"),
958
+ * // speakerBoost: true || false,
959
+ * // pitch: Number("float"),
960
+ * // volumeGain: Number("float"),
961
+ * // },
962
+ * // credential: {
963
+ * // id: "STRING_VALUE", // required
964
+ * // },
965
+ * // },
820
966
  * // interruptions: { // VoiceInterruptionSettings
821
967
  * // enabled: true || false, // required
822
968
  * // minWords: Number("int"),
@@ -866,6 +1012,20 @@ declare const CreateAgentCommand_base: {
866
1012
  * // },
867
1013
  * // assistant: { // AssistantChannelSettings
868
1014
  * // default: true || false,
1015
+ * // ui: { // AssistantUiSettings
1016
+ * // welcome: { // AssistantWelcomeSettings
1017
+ * // title: "STRING_VALUE",
1018
+ * // subtitle: "STRING_VALUE",
1019
+ * // },
1020
+ * // commands: [ // AssistantQuickCommandsList
1021
+ * // { // AssistantQuickCommand
1022
+ * // title: "STRING_VALUE", // required
1023
+ * // description: "STRING_VALUE",
1024
+ * // prompt: "STRING_VALUE", // required
1025
+ * // },
1026
+ * // ],
1027
+ * // placeholder: "STRING_VALUE",
1028
+ * // },
869
1029
  * // },
870
1030
  * // workflow: {},
871
1031
  * // },
@@ -918,6 +1078,9 @@ declare const CreateAgentCommand_base: {
918
1078
  * // approval: { // AgentToolApproval
919
1079
  * // prompt: "STRING_VALUE",
920
1080
  * // },
1081
+ * // channels: [ // AgentCapabilityChannelsList
1082
+ * // "voice" || "chat" || "assistant" || "workflow",
1083
+ * // ],
921
1084
  * // annotations: [ // AgentToolAnnotationsList
922
1085
  * // { // AgentToolAnnotation Union: only one key present
923
1086
  * // tag: { // AgentToolTagAnnotation
@@ -945,6 +1108,9 @@ declare const CreateAgentCommand_base: {
945
1108
  * // approval: {
946
1109
  * // prompt: "STRING_VALUE",
947
1110
  * // },
1111
+ * // channels: [
1112
+ * // "voice" || "chat" || "assistant" || "workflow",
1113
+ * // ],
948
1114
  * // annotations: [
949
1115
  * // {// Union: only one key present
950
1116
  * // tag: {
@@ -965,6 +1131,9 @@ declare const CreateAgentCommand_base: {
965
1131
  * // kb: { // AgentKnowledgeBase
966
1132
  * // knowledgeBaseId: "STRING_VALUE",
967
1133
  * // instructions: "STRING_VALUE",
1134
+ * // channels: [
1135
+ * // "voice" || "chat" || "assistant" || "workflow",
1136
+ * // ],
968
1137
  * // annotations: [
969
1138
  * // {// Union: only one key present
970
1139
  * // tag: {
@@ -1010,17 +1179,23 @@ declare const CreateAgentCommand_base: {
1010
1179
  * // city: "STRING_VALUE",
1011
1180
  * // timezone: "STRING_VALUE",
1012
1181
  * // },
1182
+ * // channels: [
1183
+ * // "voice" || "chat" || "assistant" || "workflow",
1184
+ * // ],
1013
1185
  * // },
1014
1186
  * // webFetch: { // AgentWebFetchCapability
1015
1187
  * // allowedDomains: [
1016
1188
  * // "STRING_VALUE",
1017
1189
  * // ],
1190
+ * // channels: [
1191
+ * // "voice" || "chat" || "assistant" || "workflow",
1192
+ * // ],
1018
1193
  * // },
1019
1194
  * // agent: { // AgentCallCapability
1020
1195
  * // agentId: "STRING_VALUE", // required
1021
1196
  * // agentVersion: Number("int"),
1022
1197
  * // access: { // AgentAccess
1023
- * // visibility: "explicit" || "organization",
1198
+ * // visibility: "explicit" || "organization" || "public",
1024
1199
  * // grants: [ // AgentGrantPrincipalList
1025
1200
  * // { // AgentGrantPrincipal Union: only one key present
1026
1201
  * // userId: "STRING_VALUE",
@@ -1042,6 +1217,7 @@ declare const CreateAgentCommand_base: {
1042
1217
  * // },
1043
1218
  * // },
1044
1219
  * // ],
1220
+ * // channels: "<AgentCapabilityChannelsList>",
1045
1221
  * // },
1046
1222
  * // handover: { // AgentHandoverCapability
1047
1223
  * // name: "STRING_VALUE",
@@ -1055,6 +1231,7 @@ declare const CreateAgentCommand_base: {
1055
1231
  * // type: "handover" || "reply_and_handover" || "reply_instructed_and_handover",
1056
1232
  * // instructions: "STRING_VALUE",
1057
1233
  * // },
1234
+ * // channels: "<AgentCapabilityChannelsList>",
1058
1235
  * // annotations: [
1059
1236
  * // {// Union: only one key present
1060
1237
  * // tag: {
@@ -1077,6 +1254,7 @@ declare const CreateAgentCommand_base: {
1077
1254
  * // description: "STRING_VALUE",
1078
1255
  * // id: "STRING_VALUE", // required
1079
1256
  * // agentVersion: Number("int"),
1257
+ * // channels: "<AgentCapabilityChannelsList>",
1080
1258
  * // annotations: [
1081
1259
  * // {// Union: only one key present
1082
1260
  * // tag: {
@@ -1104,10 +1282,12 @@ declare const CreateAgentCommand_base: {
1104
1282
  * // type: "transfer" || "reply_and_transfer" || "reply_instructed_and_transfer",
1105
1283
  * // instructions: "STRING_VALUE",
1106
1284
  * // },
1285
+ * // channels: "<AgentCapabilityChannelsList>",
1107
1286
  * // annotations: "<AgentToolAnnotationsList>",
1108
1287
  * // },
1109
1288
  * // suggestions: { // AgentSuggestionsCapability
1110
1289
  * // name: "STRING_VALUE",
1290
+ * // channels: "<AgentCapabilityChannelsList>",
1111
1291
  * // annotations: "<AgentToolAnnotationsList>",
1112
1292
  * // },
1113
1293
  * // hangup: { // AgentHangupCapability
@@ -1117,12 +1297,14 @@ declare const CreateAgentCommand_base: {
1117
1297
  * // type: "hangup" || "reply_and_hangup" || "reply_instructed_and_hangup",
1118
1298
  * // instructions: "STRING_VALUE",
1119
1299
  * // },
1300
+ * // channels: "<AgentCapabilityChannelsList>",
1120
1301
  * // annotations: "<AgentToolAnnotationsList>",
1121
1302
  * // },
1122
1303
  * // wait: { // AgentWaitCapability
1123
1304
  * // name: "STRING_VALUE",
1124
1305
  * // description: "STRING_VALUE",
1125
1306
  * // message: "STRING_VALUE",
1307
+ * // channels: "<AgentCapabilityChannelsList>",
1126
1308
  * // annotations: "<AgentToolAnnotationsList>",
1127
1309
  * // },
1128
1310
  * // },
@@ -1187,6 +1369,7 @@ declare const CreateAgentCommand_base: {
1187
1369
  * // approval: {
1188
1370
  * // prompt: "STRING_VALUE",
1189
1371
  * // },
1372
+ * // channels: "<AgentCapabilityChannelsList>",
1190
1373
  * // annotations: "<AgentToolAnnotationsList>",
1191
1374
  * // },
1192
1375
  * // connector: {
@@ -1199,13 +1382,14 @@ declare const CreateAgentCommand_base: {
1199
1382
  * // approval: {
1200
1383
  * // prompt: "STRING_VALUE",
1201
1384
  * // },
1385
+ * // channels: "<AgentCapabilityChannelsList>",
1202
1386
  * // annotations: "<AgentToolAnnotationsList>",
1203
1387
  * // },
1204
1388
  * // agent: {
1205
1389
  * // agentId: "STRING_VALUE", // required
1206
1390
  * // agentVersion: Number("int"),
1207
1391
  * // access: {
1208
- * // visibility: "explicit" || "organization",
1392
+ * // visibility: "explicit" || "organization" || "public",
1209
1393
  * // grants: [
1210
1394
  * // {// Union: only one key present
1211
1395
  * // userId: "STRING_VALUE",
@@ -1227,6 +1411,7 @@ declare const CreateAgentCommand_base: {
1227
1411
  * // },
1228
1412
  * // },
1229
1413
  * // ],
1414
+ * // channels: "<AgentCapabilityChannelsList>",
1230
1415
  * // },
1231
1416
  * // handover: {
1232
1417
  * // name: "STRING_VALUE",
@@ -1240,6 +1425,7 @@ declare const CreateAgentCommand_base: {
1240
1425
  * // type: "handover" || "reply_and_handover" || "reply_instructed_and_handover",
1241
1426
  * // instructions: "STRING_VALUE",
1242
1427
  * // },
1428
+ * // channels: "<AgentCapabilityChannelsList>",
1243
1429
  * // annotations: "<AgentToolAnnotationsList>",
1244
1430
  * // },
1245
1431
  * // delegation: {
@@ -1247,6 +1433,7 @@ declare const CreateAgentCommand_base: {
1247
1433
  * // description: "STRING_VALUE",
1248
1434
  * // id: "STRING_VALUE", // required
1249
1435
  * // agentVersion: Number("int"),
1436
+ * // channels: "<AgentCapabilityChannelsList>",
1250
1437
  * // annotations: "<AgentToolAnnotationsList>",
1251
1438
  * // },
1252
1439
  * // transfer: {
@@ -1259,6 +1446,7 @@ declare const CreateAgentCommand_base: {
1259
1446
  * // type: "transfer" || "reply_and_transfer" || "reply_instructed_and_transfer",
1260
1447
  * // instructions: "STRING_VALUE",
1261
1448
  * // },
1449
+ * // channels: "<AgentCapabilityChannelsList>",
1262
1450
  * // annotations: "<AgentToolAnnotationsList>",
1263
1451
  * // },
1264
1452
  * // hangup: {
@@ -1268,12 +1456,14 @@ declare const CreateAgentCommand_base: {
1268
1456
  * // type: "hangup" || "reply_and_hangup" || "reply_instructed_and_hangup",
1269
1457
  * // instructions: "STRING_VALUE",
1270
1458
  * // },
1459
+ * // channels: "<AgentCapabilityChannelsList>",
1271
1460
  * // annotations: "<AgentToolAnnotationsList>",
1272
1461
  * // },
1273
1462
  * // wait: {
1274
1463
  * // name: "STRING_VALUE",
1275
1464
  * // description: "STRING_VALUE",
1276
1465
  * // message: "STRING_VALUE",
1466
+ * // channels: "<AgentCapabilityChannelsList>",
1277
1467
  * // annotations: "<AgentToolAnnotationsList>",
1278
1468
  * // },
1279
1469
  * // },
@@ -1351,6 +1541,7 @@ declare const CreateAgentCommand_base: {
1351
1541
  * // kb: {
1352
1542
  * // knowledgeBaseId: "STRING_VALUE",
1353
1543
  * // instructions: "STRING_VALUE",
1544
+ * // channels: "<AgentCapabilityChannelsList>",
1354
1545
  * // annotations: "<AgentToolAnnotationsList>",
1355
1546
  * // },
1356
1547
  * // sandbox: {// Union: only one key present
@@ -1375,9 +1566,11 @@ declare const CreateAgentCommand_base: {
1375
1566
  * // city: "STRING_VALUE",
1376
1567
  * // timezone: "STRING_VALUE",
1377
1568
  * // },
1569
+ * // channels: "<AgentCapabilityChannelsList>",
1378
1570
  * // },
1379
1571
  * // webFetch: {
1380
1572
  * // allowedDomains: "<DomainNameList>",
1573
+ * // channels: "<AgentCapabilityChannelsList>",
1381
1574
  * // },
1382
1575
  * // agent: "<AgentCallCapability>",
1383
1576
  * // handover: "<AgentHandoverCapability>",
@@ -1385,6 +1578,7 @@ declare const CreateAgentCommand_base: {
1385
1578
  * // transfer: "<AgentTransferCapability>",
1386
1579
  * // suggestions: {
1387
1580
  * // name: "STRING_VALUE",
1581
+ * // channels: "<AgentCapabilityChannelsList>",
1388
1582
  * // annotations: "<AgentToolAnnotationsList>",
1389
1583
  * // },
1390
1584
  * // hangup: "<AgentHangupCapability>",
@@ -1525,16 +1719,6 @@ declare const CreateAgentCommand_base: {
1525
1719
  * // },
1526
1720
  * // ],
1527
1721
  * // model: "STRING_VALUE",
1528
- * // action: {// Union: only one key present
1529
- * // observe: {},
1530
- * // redact: {},
1531
- * // block: {
1532
- * // message: "STRING_VALUE",
1533
- * // },
1534
- * // end: {
1535
- * // message: "STRING_VALUE",
1536
- * // },
1537
- * // },
1538
1722
  * // mode: "blocking" || "parallel",
1539
1723
  * // errorMode: "open" || "closed",
1540
1724
  * // window: "lastMessage" || "lastWithPrior",
@@ -1568,9 +1752,7 @@ declare const CreateAgentCommand_base: {
1568
1752
  * // sqs: { // AgentSqsEngine
1569
1753
  * // url: "STRING_VALUE", // required
1570
1754
  * // key: "STRING_VALUE", // required
1571
- * // secret: { // SecretRef
1572
- * // id: "STRING_VALUE", // required
1573
- * // },
1755
+ * // secret: "<SecretRef>", // required
1574
1756
  * // },
1575
1757
  * // },
1576
1758
  * // settings: { // AgentSettings