@wildix/wilma-agents-client 1.0.18 → 1.0.22

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 (32) 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 +13 -1
  7. package/dist-cjs/schemas/schemas_0.js +134 -9
  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 +12 -0
  14. package/dist-es/schemas/schemas_0.js +132 -7
  15. package/dist-types/WilmaAgents.d.ts +22 -0
  16. package/dist-types/WilmaAgentsClient.d.ts +5 -2
  17. package/dist-types/commands/CreateAgentCommand.d.ts +112 -6
  18. package/dist-types/commands/DeletePronunciationDictionaryCommand.d.ts +78 -0
  19. package/dist-types/commands/GetAgentCommand.d.ts +56 -3
  20. package/dist-types/commands/GetAgentVersionCommand.d.ts +56 -3
  21. package/dist-types/commands/ListAgentsCommand.d.ts +56 -3
  22. package/dist-types/commands/ListAgentsNamesCommand.d.ts +1 -0
  23. package/dist-types/commands/ListPronunciationDictionariesCommand.d.ts +96 -0
  24. package/dist-types/commands/PublishAgentVersionCommand.d.ts +56 -3
  25. package/dist-types/commands/PutPronunciationDictionaryCommand.d.ts +108 -0
  26. package/dist-types/commands/RestoreAgentVersionToDraftCommand.d.ts +56 -3
  27. package/dist-types/commands/UpdateAgentCommand.d.ts +112 -6
  28. package/dist-types/commands/index.d.ts +3 -0
  29. package/dist-types/models/enums.d.ts +42 -0
  30. package/dist-types/models/models_0.d.ts +379 -13
  31. package/dist-types/schemas/schemas_0.d.ts +15 -0
  32. package/package.json +2 -2
@@ -7,6 +7,7 @@ const CreateAgentApiKeyCommand_1 = require("./commands/CreateAgentApiKeyCommand"
7
7
  const CreateAgentCommand_1 = require("./commands/CreateAgentCommand");
8
8
  const DeleteAgentApiKeyCommand_1 = require("./commands/DeleteAgentApiKeyCommand");
9
9
  const DeleteAgentCommand_1 = require("./commands/DeleteAgentCommand");
10
+ const DeletePronunciationDictionaryCommand_1 = require("./commands/DeletePronunciationDictionaryCommand");
10
11
  const GetAgentCommand_1 = require("./commands/GetAgentCommand");
11
12
  const GetAgentDeploymentCommand_1 = require("./commands/GetAgentDeploymentCommand");
12
13
  const GetAgentVersionCommand_1 = require("./commands/GetAgentVersionCommand");
@@ -14,8 +15,10 @@ const ListAgentApiKeysCommand_1 = require("./commands/ListAgentApiKeysCommand");
14
15
  const ListAgentsCommand_1 = require("./commands/ListAgentsCommand");
15
16
  const ListAgentsNamesCommand_1 = require("./commands/ListAgentsNamesCommand");
16
17
  const ListAgentVersionsCommand_1 = require("./commands/ListAgentVersionsCommand");
18
+ const ListPronunciationDictionariesCommand_1 = require("./commands/ListPronunciationDictionariesCommand");
17
19
  const PublishAgentVersionCommand_1 = require("./commands/PublishAgentVersionCommand");
18
20
  const PutAgentDeploymentCommand_1 = require("./commands/PutAgentDeploymentCommand");
21
+ const PutPronunciationDictionaryCommand_1 = require("./commands/PutPronunciationDictionaryCommand");
19
22
  const ResetAgentDeploymentCommand_1 = require("./commands/ResetAgentDeploymentCommand");
20
23
  const RestoreAgentVersionToDraftCommand_1 = require("./commands/RestoreAgentVersionToDraftCommand");
21
24
  const UpdateAgentCommand_1 = require("./commands/UpdateAgentCommand");
@@ -26,6 +29,7 @@ const commands = {
26
29
  CreateAgentApiKeyCommand: CreateAgentApiKeyCommand_1.CreateAgentApiKeyCommand,
27
30
  DeleteAgentCommand: DeleteAgentCommand_1.DeleteAgentCommand,
28
31
  DeleteAgentApiKeyCommand: DeleteAgentApiKeyCommand_1.DeleteAgentApiKeyCommand,
32
+ DeletePronunciationDictionaryCommand: DeletePronunciationDictionaryCommand_1.DeletePronunciationDictionaryCommand,
29
33
  GetAgentCommand: GetAgentCommand_1.GetAgentCommand,
30
34
  GetAgentDeploymentCommand: GetAgentDeploymentCommand_1.GetAgentDeploymentCommand,
31
35
  GetAgentVersionCommand: GetAgentVersionCommand_1.GetAgentVersionCommand,
@@ -33,8 +37,10 @@ const commands = {
33
37
  ListAgentsCommand: ListAgentsCommand_1.ListAgentsCommand,
34
38
  ListAgentsNamesCommand: ListAgentsNamesCommand_1.ListAgentsNamesCommand,
35
39
  ListAgentVersionsCommand: ListAgentVersionsCommand_1.ListAgentVersionsCommand,
40
+ ListPronunciationDictionariesCommand: ListPronunciationDictionariesCommand_1.ListPronunciationDictionariesCommand,
36
41
  PublishAgentVersionCommand: PublishAgentVersionCommand_1.PublishAgentVersionCommand,
37
42
  PutAgentDeploymentCommand: PutAgentDeploymentCommand_1.PutAgentDeploymentCommand,
43
+ PutPronunciationDictionaryCommand: PutPronunciationDictionaryCommand_1.PutPronunciationDictionaryCommand,
38
44
  ResetAgentDeploymentCommand: ResetAgentDeploymentCommand_1.ResetAgentDeploymentCommand,
39
45
  RestoreAgentVersionToDraftCommand: RestoreAgentVersionToDraftCommand_1.RestoreAgentVersionToDraftCommand,
40
46
  UpdateAgentCommand: UpdateAgentCommand_1.UpdateAgentCommand,
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeletePronunciationDictionaryCommand = exports.$Command = void 0;
4
+ const client_1 = require("@smithy/core/client");
5
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
6
+ const endpoints_1 = require("@smithy/core/endpoints");
7
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
8
+ const schemas_0_1 = require("../schemas/schemas_0");
9
+ class DeletePronunciationDictionaryCommand extends client_1.Command
10
+ .classBuilder()
11
+ .ep(EndpointParameters_1.commonParams)
12
+ .m(function (Command, cs, config, o) {
13
+ return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
14
+ })
15
+ .s("WilmaAgents", "DeletePronunciationDictionary", {})
16
+ .n("WilmaAgentsClient", "DeletePronunciationDictionaryCommand")
17
+ .sc(schemas_0_1.DeletePronunciationDictionary$)
18
+ .build() {
19
+ }
20
+ exports.DeletePronunciationDictionaryCommand = DeletePronunciationDictionaryCommand;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListPronunciationDictionariesCommand = exports.$Command = void 0;
4
+ const client_1 = require("@smithy/core/client");
5
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
6
+ const endpoints_1 = require("@smithy/core/endpoints");
7
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
8
+ const schemas_0_1 = require("../schemas/schemas_0");
9
+ class ListPronunciationDictionariesCommand extends client_1.Command
10
+ .classBuilder()
11
+ .ep(EndpointParameters_1.commonParams)
12
+ .m(function (Command, cs, config, o) {
13
+ return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
14
+ })
15
+ .s("WilmaAgents", "ListPronunciationDictionaries", {})
16
+ .n("WilmaAgentsClient", "ListPronunciationDictionariesCommand")
17
+ .sc(schemas_0_1.ListPronunciationDictionaries$)
18
+ .build() {
19
+ }
20
+ exports.ListPronunciationDictionariesCommand = ListPronunciationDictionariesCommand;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PutPronunciationDictionaryCommand = exports.$Command = void 0;
4
+ const client_1 = require("@smithy/core/client");
5
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
6
+ const endpoints_1 = require("@smithy/core/endpoints");
7
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
8
+ const schemas_0_1 = require("../schemas/schemas_0");
9
+ class PutPronunciationDictionaryCommand extends client_1.Command
10
+ .classBuilder()
11
+ .ep(EndpointParameters_1.commonParams)
12
+ .m(function (Command, cs, config, o) {
13
+ return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
14
+ })
15
+ .s("WilmaAgents", "PutPronunciationDictionary", {})
16
+ .n("WilmaAgentsClient", "PutPronunciationDictionaryCommand")
17
+ .sc(schemas_0_1.PutPronunciationDictionary$)
18
+ .build() {
19
+ }
20
+ exports.PutPronunciationDictionaryCommand = PutPronunciationDictionaryCommand;
@@ -6,6 +6,7 @@ tslib_1.__exportStar(require("./CreateAgentApiKeyCommand"), exports);
6
6
  tslib_1.__exportStar(require("./CreateAgentCommand"), exports);
7
7
  tslib_1.__exportStar(require("./DeleteAgentApiKeyCommand"), exports);
8
8
  tslib_1.__exportStar(require("./DeleteAgentCommand"), exports);
9
+ tslib_1.__exportStar(require("./DeletePronunciationDictionaryCommand"), exports);
9
10
  tslib_1.__exportStar(require("./GetAgentCommand"), exports);
10
11
  tslib_1.__exportStar(require("./GetAgentDeploymentCommand"), exports);
11
12
  tslib_1.__exportStar(require("./GetAgentVersionCommand"), exports);
@@ -13,8 +14,10 @@ tslib_1.__exportStar(require("./ListAgentApiKeysCommand"), exports);
13
14
  tslib_1.__exportStar(require("./ListAgentVersionsCommand"), exports);
14
15
  tslib_1.__exportStar(require("./ListAgentsCommand"), exports);
15
16
  tslib_1.__exportStar(require("./ListAgentsNamesCommand"), exports);
17
+ tslib_1.__exportStar(require("./ListPronunciationDictionariesCommand"), exports);
16
18
  tslib_1.__exportStar(require("./PublishAgentVersionCommand"), exports);
17
19
  tslib_1.__exportStar(require("./PutAgentDeploymentCommand"), exports);
20
+ tslib_1.__exportStar(require("./PutPronunciationDictionaryCommand"), exports);
18
21
  tslib_1.__exportStar(require("./ResetAgentDeploymentCommand"), exports);
19
22
  tslib_1.__exportStar(require("./RestoreAgentVersionToDraftCommand"), exports);
20
23
  tslib_1.__exportStar(require("./UpdateAgentCommand"), exports);
@@ -1,10 +1,22 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ChannelType = exports.AgentStatus = exports.AgentVariableType = exports.WebSearchContextSize = exports.AgentTransferVariant = exports.AgentTransferPipelineType = exports.SandboxSize = exports.SandboxNetworkAccess = exports.AgentHangupPipelineType = exports.AgentHandoverVariant = exports.AgentHandoverPipelineType = exports.AgentToolPipelineType = exports.ActorType = exports.AgentVisibility = void 0;
3
+ exports.ChannelType = exports.AgentStatus = exports.AgentVariableType = exports.WebSearchContextSize = exports.AgentTransferVariant = exports.AgentTransferPipelineType = exports.SandboxSize = exports.SandboxNetworkAccess = exports.AgentHangupPipelineType = exports.AgentHandoverVariant = exports.AgentHandoverPipelineType = exports.AgentToolPipelineType = exports.ActorType = exports.VoiceTranscriptionVendor = exports.VoiceSpeechProvider = exports.VoicePronunciationEncoding = exports.AgentVisibility = void 0;
4
4
  exports.AgentVisibility = {
5
5
  EXPLICIT: "explicit",
6
6
  ORGANIZATION: "organization",
7
7
  };
8
+ exports.VoicePronunciationEncoding = {
9
+ ALIAS: "alias",
10
+ IPA: "ipa",
11
+ };
12
+ exports.VoiceSpeechProvider = {
13
+ AMAZON_POLLY: "amazon_polly",
14
+ ELEVENLABS: "elevenlabs",
15
+ GOOGLE: "google",
16
+ };
17
+ exports.VoiceTranscriptionVendor = {
18
+ AWS: "aws",
19
+ };
8
20
  exports.ActorType = {
9
21
  API_KEY: "api_key",
10
22
  SERVICE: "service",
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AgentWebFetchCapability$ = exports.AgentWaitCapability$ = exports.AgentVersionInfo$ = exports.AgentVersionChange$ = exports.AgentVersion$ = exports.AgentVercelSandboxOptions$ = exports.AgentVariable$ = exports.AgentTransferPipeline$ = exports.AgentTransferCapability$ = exports.AgentToolVariablesAnnotation$ = exports.AgentToolVariablePredefinedHandler$ = exports.AgentToolVariableGuidedHandler$ = exports.AgentToolVariableAutoHandler$ = exports.AgentToolVariable$ = exports.AgentToolTagAnnotation$ = exports.AgentToolResultAnnotation$ = exports.AgentToolPipeline$ = exports.AgentToolFieldPredefinedHandler$ = exports.AgentToolFieldGuidedHandler$ = exports.AgentToolField$ = exports.AgentToolCommentAnnotation$ = exports.AgentToolApproval$ = exports.AgentTool$ = exports.AgentSuggestionsCapability$ = exports.AgentSqsEngine$ = exports.AgentSnapshotSandboxOptions$ = exports.AgentSettings$ = exports.AgentKnowledgeBase$ = exports.AgentInfo$ = exports.AgentHangupPipeline$ = exports.AgentHangupCapability$ = exports.AgentHandoverPipeline$ = exports.AgentHandoverCapability$ = exports.AgentDeploymentRoute$ = exports.AgentDelegationCapability$ = exports.AgentDefinitionSnapshot$ = exports.AgentConnectorCapability$ = exports.AgentChannels$ = exports.AgentCallCapability$ = exports.AgentApiKey$ = exports.AgentAiEngine$ = exports.AgentAccess$ = exports.Agent$ = exports.errorTypeRegistries = exports.RevisionConflictException$ = exports.NothingToPublishException$ = exports.ValidationException$ = exports.NotFoundException$ = exports.ConflictException$ = exports.WilmaAgentsServiceException$ = void 0;
4
- exports.SecretRef$ = exports.Actor$ = exports.WorkflowChannelSettings$ = exports.WebSearchUserLocation$ = exports.VoiceTransferTarget$ = exports.VoiceTerminateHangupAction$ = exports.VoiceSilenceTimeoutSettings$ = exports.VoiceMaxDurationSettings$ = exports.VoiceInterruptionSettings$ = exports.VoiceEndCallSettings$ = exports.VoiceChannelSettings$ = exports.VoiceCallerMetadataSettings$ = exports.UpdateAgentOutput$ = exports.UpdateAgentInput$ = exports.RestoreAgentVersionToDraftOutput$ = exports.RestoreAgentVersionToDraftInput$ = exports.ResetAgentDeploymentOutput$ = exports.ResetAgentDeploymentInput$ = exports.PutAgentDeploymentOutput$ = exports.PutAgentDeploymentInput$ = exports.PublishAgentVersionOutput$ = exports.PublishAgentVersionInput$ = exports.ListAgentVersionsOutput$ = exports.ListAgentVersionsInput$ = exports.ListAgentsOutput$ = exports.ListAgentsNamesOutput$ = exports.ListAgentsNamesInput$ = exports.ListAgentsInput$ = exports.ListAgentApiKeysOutput$ = exports.ListAgentApiKeysInput$ = exports.GetAgentVersionOutput$ = exports.GetAgentVersionInput$ = exports.GetAgentOutput$ = exports.GetAgentInput$ = exports.GetAgentDeploymentOutput$ = exports.GetAgentDeploymentInput$ = exports.DeleteAgentOutput$ = exports.DeleteAgentInput$ = exports.DeleteAgentApiKeyOutput$ = exports.DeleteAgentApiKeyInput$ = exports.CreateAgentOutput$ = exports.CreateAgentInput$ = exports.CreateAgentApiKeyOutput$ = exports.CreateAgentApiKeyInput$ = exports.CompareAgentVersionsOutput$ = exports.CompareAgentVersionsInput$ = exports.ChatChannelSettings$ = exports.AssistantChannelSettings$ = exports.AgentWebSearchCapability$ = exports.AgentWebhookEngine$ = void 0;
5
- exports.UpdateAgent$ = exports.RestoreAgentVersionToDraft$ = exports.ResetAgentDeployment$ = exports.PutAgentDeployment$ = exports.PublishAgentVersion$ = exports.ListAgentVersions$ = exports.ListAgentsNames$ = exports.ListAgents$ = exports.ListAgentApiKeys$ = exports.GetAgentVersion$ = exports.GetAgentDeployment$ = exports.GetAgent$ = exports.DeleteAgentApiKey$ = exports.DeleteAgent$ = exports.CreateAgentApiKey$ = exports.CreateAgent$ = exports.CompareAgentVersions$ = exports.VoiceTerminateAction$ = exports.AgentToolVariableHandler$ = exports.AgentToolFieldHandler$ = exports.AgentToolAnnotation$ = exports.AgentSandboxCapability$ = exports.AgentGrantPrincipal$ = exports.AgentEngine$ = exports.AgentCapability$ = exports.AgentSkillReference$ = void 0;
4
+ exports.VoiceLanguage$ = exports.VoiceInterruptionSettings$ = exports.VoiceEndCallSettings$ = exports.VoiceChannelSettings$ = exports.VoiceCallerMetadataSettings$ = exports.UpdateAgentOutput$ = exports.UpdateAgentInput$ = exports.RestoreAgentVersionToDraftOutput$ = exports.RestoreAgentVersionToDraftInput$ = exports.ResetAgentDeploymentOutput$ = exports.ResetAgentDeploymentInput$ = exports.PutPronunciationDictionaryOutput$ = exports.PutPronunciationDictionaryInput$ = exports.PutAgentDeploymentOutput$ = exports.PutAgentDeploymentInput$ = exports.PublishAgentVersionOutput$ = exports.PublishAgentVersionInput$ = exports.PronunciationDictionary$ = exports.ListPronunciationDictionariesOutput$ = exports.ListPronunciationDictionariesInput$ = exports.ListAgentVersionsOutput$ = exports.ListAgentVersionsInput$ = exports.ListAgentsOutput$ = exports.ListAgentsNamesOutput$ = exports.ListAgentsNamesInput$ = exports.ListAgentsInput$ = exports.ListAgentApiKeysOutput$ = exports.ListAgentApiKeysInput$ = exports.GetAgentVersionOutput$ = exports.GetAgentVersionInput$ = exports.GetAgentOutput$ = exports.GetAgentInput$ = exports.GetAgentDeploymentOutput$ = exports.GetAgentDeploymentInput$ = exports.DeletePronunciationDictionaryOutput$ = exports.DeletePronunciationDictionaryInput$ = exports.DeleteAgentOutput$ = exports.DeleteAgentInput$ = exports.DeleteAgentApiKeyOutput$ = exports.DeleteAgentApiKeyInput$ = exports.CreateAgentOutput$ = exports.CreateAgentInput$ = exports.CreateAgentApiKeyOutput$ = exports.CreateAgentApiKeyInput$ = exports.CompareAgentVersionsOutput$ = exports.CompareAgentVersionsInput$ = exports.ChatChannelSettings$ = exports.AssistantChannelSettings$ = exports.AgentWebSearchCapability$ = exports.AgentWebhookEngine$ = void 0;
5
+ exports.UpdateAgent$ = exports.RestoreAgentVersionToDraft$ = exports.ResetAgentDeployment$ = exports.PutPronunciationDictionary$ = exports.PutAgentDeployment$ = exports.PublishAgentVersion$ = exports.ListPronunciationDictionaries$ = exports.ListAgentVersions$ = exports.ListAgentsNames$ = exports.ListAgents$ = exports.ListAgentApiKeys$ = exports.GetAgentVersion$ = exports.GetAgentDeployment$ = exports.GetAgent$ = exports.DeletePronunciationDictionary$ = exports.DeleteAgentApiKey$ = exports.DeleteAgent$ = exports.CreateAgentApiKey$ = exports.CreateAgent$ = exports.CompareAgentVersions$ = exports.VoiceTerminateAction$ = exports.AgentToolVariableHandler$ = exports.AgentToolFieldHandler$ = exports.AgentToolAnnotation$ = exports.AgentSandboxCapability$ = exports.AgentGrantPrincipal$ = exports.AgentEngine$ = exports.AgentCapability$ = exports.AgentSkillReference$ = exports.SecretRef$ = exports.Actor$ = exports.WorkflowChannelSettings$ = exports.WebSearchUserLocation$ = exports.VoiceTransferTarget$ = exports.VoiceTranscriptionSettings$ = exports.VoiceTerminateHangupAction$ = exports.VoiceSynthesisOptions$ = exports.VoiceSpeechSettings$ = exports.VoiceSilenceTimeoutSettings$ = exports.VoicePronunciation$ = exports.VoiceMaxDurationSettings$ = void 0;
6
6
  const _A = "Agent";
7
7
  const _AA = "AgentAccess";
8
8
  const _AAE = "AgentAiEngine";
@@ -88,6 +88,9 @@ const _DAAKI = "DeleteAgentApiKeyInput";
88
88
  const _DAAKO = "DeleteAgentApiKeyOutput";
89
89
  const _DAI = "DeleteAgentInput";
90
90
  const _DAO = "DeleteAgentOutput";
91
+ const _DPD = "DeletePronunciationDictionary";
92
+ const _DPDI = "DeletePronunciationDictionaryInput";
93
+ const _DPDO = "DeletePronunciationDictionaryOutput";
91
94
  const _GA = "GetAgent";
92
95
  const _GAD = "GetAgentDeployment";
93
96
  const _GADI = "GetAgentDeploymentInput";
@@ -109,6 +112,9 @@ const _LAO = "ListAgentsOutput";
109
112
  const _LAV = "ListAgentVersions";
110
113
  const _LAVI = "ListAgentVersionsInput";
111
114
  const _LAVO = "ListAgentVersionsOutput";
115
+ const _LPD = "ListPronunciationDictionaries";
116
+ const _LPDI = "ListPronunciationDictionariesInput";
117
+ const _LPDO = "ListPronunciationDictionariesOutput";
112
118
  const _NFE = "NotFoundException";
113
119
  const _NTPE = "NothingToPublishException";
114
120
  const _PAD = "PutAgentDeployment";
@@ -117,6 +123,11 @@ const _PADO = "PutAgentDeploymentOutput";
117
123
  const _PAV = "PublishAgentVersion";
118
124
  const _PAVI = "PublishAgentVersionInput";
119
125
  const _PAVO = "PublishAgentVersionOutput";
126
+ const _PD = "PronunciationDictionary";
127
+ const _PDL = "PronunciationDictionaryList";
128
+ const _PPD = "PutPronunciationDictionary";
129
+ const _PPDI = "PutPronunciationDictionaryInput";
130
+ const _PPDO = "PutPronunciationDictionaryOutput";
120
131
  const _RAD = "ResetAgentDeployment";
121
132
  const _RADI = "ResetAgentDeploymentInput";
122
133
  const _RADO = "ResetAgentDeploymentOutput";
@@ -133,15 +144,23 @@ const _VCS = "VoiceChannelSettings";
133
144
  const _VE = "ValidationException";
134
145
  const _VECS = "VoiceEndCallSettings";
135
146
  const _VIS = "VoiceInterruptionSettings";
147
+ const _VL = "VoiceLanguage";
148
+ const _VLL = "VoiceLanguageList";
136
149
  const _VMDS = "VoiceMaxDurationSettings";
150
+ const _VP = "VoicePronunciation";
151
+ const _VPL = "VoicePronunciationList";
152
+ const _VSO = "VoiceSynthesisOptions";
153
+ const _VSS = "VoiceSpeechSettings";
137
154
  const _VSTS = "VoiceSilenceTimeoutSettings";
138
155
  const _VTA = "VoiceTerminateAction";
139
156
  const _VTHA = "VoiceTerminateHangupAction";
157
+ const _VTS = "VoiceTranscriptionSettings";
140
158
  const _VTT = "VoiceTransferTarget";
141
159
  const _WCS = "WorkflowChannelSettings";
142
160
  const _WSUL = "WebSearchUserLocation";
143
161
  const _a = "access";
144
162
  const _aD = "allowedDomains";
163
+ const _aDu = "autoDetect";
145
164
  const _aI = "agentId";
146
165
  const _aOF = "applyOnFailure";
147
166
  const _aOS = "applyOnSuccess";
@@ -155,9 +174,11 @@ const _an = "annotations";
155
174
  const _ap = "approval";
156
175
  const _ar = "artifacts";
157
176
  const _as = "assistant";
177
+ const _as_ = "as";
158
178
  const _au = "auto";
159
179
  const _b = "before";
160
180
  const _bOV = "basedOnVersion";
181
+ const _bS = "backgroundSound";
161
182
  const _c = "client";
162
183
  const _cA = "createdAt";
163
184
  const _cB = "createdBy";
@@ -177,10 +198,12 @@ const _chang = "changes";
177
198
  const _chann = "channel";
178
199
  const _ci = "city";
179
200
  const _co = "context";
201
+ const _cod = "code";
180
202
  const _com = "company";
181
203
  const _comm = "comment";
182
204
  const _con = "connector";
183
205
  const _cou = "country";
206
+ const _cr = "credential";
184
207
  const _cu = "cursor";
185
208
  const _d = "description";
186
209
  const _dBV = "draftBaseVersion";
@@ -189,16 +212,20 @@ const _def = "definition";
189
212
  const _defa = "default";
190
213
  const _del = "delegation";
191
214
  const _di = "discoverable";
215
+ const _dic = "dictionaries";
216
+ const _dict = "dictionary";
192
217
  const _e = "error";
193
218
  const _eA = "expiresAt";
194
219
  const _eC = "endCall";
195
220
  const _en = "engine";
196
221
  const _ena = "enabled";
222
+ const _enc = "encoding";
197
223
  const _ex = "extension";
198
224
  const _f = "fields";
199
225
  const _fD = "fromDraft";
200
226
  const _fr = "from";
201
227
  const _g = "grants";
228
+ const _gEL = "greetEveryLanguage";
202
229
  const _gI = "groupId";
203
230
  const _gr = "greeting";
204
231
  const _gu = "guided";
@@ -209,6 +236,7 @@ const _ha = "handover";
209
236
  const _han = "hangup";
210
237
  const _ht = "http";
211
238
  const _i = "id";
239
+ const _iD = "isDefault";
212
240
  const _in = "instructions";
213
241
  const _int = "interruptions";
214
242
  const _k = "key";
@@ -219,6 +247,7 @@ const _ke = "keys";
219
247
  const _l = "limit";
220
248
  const _lUA = "lastUsedAt";
221
249
  const _lV = "latestVersion";
250
+ const _la = "languages";
222
251
  const _m = "message";
223
252
  const _mD = "maxDuration";
224
253
  const _mW = "minWords";
@@ -231,17 +260,25 @@ const _p = "picture";
231
260
  const _pA = "publishedAt";
232
261
  const _pB = "publishedBy";
233
262
  const _pGI = "pbxGroupId";
263
+ const _pS = "pronunciationSuppressions";
234
264
  const _pa = "path";
235
265
  const _pe = "percentage";
236
266
  const _ph = "phrases";
267
+ const _phr = "phrase";
237
268
  const _pi = "pipeline";
269
+ const _pit = "pitch";
238
270
  const _pr = "prefix";
239
271
  const _pre = "predefined";
240
272
  const _pro = "prompt";
273
+ const _pron = "pronunciations";
274
+ const _prov = "provider";
241
275
  const _r = "revision";
242
276
  const _re = "region";
243
277
  const _res = "result";
278
+ const _ru = "rules";
244
279
  const _s = "smithy.ts.sdk.synthetic.wildix.wilma.agents";
280
+ const _sB = "speakerBoost";
281
+ const _sC = "speechConfigured";
245
282
  const _sI = "snapshotId";
246
283
  const _sM = "startMessage";
247
284
  const _sT = "silenceTimeout";
@@ -253,12 +290,18 @@ const _sec = "secret";
253
290
  const _seco = "seconds";
254
291
  const _ser = "service";
255
292
  const _si = "silent";
293
+ const _sim = "similarity";
256
294
  const _siz = "size";
257
295
  const _sk = "skills";
258
296
  const _sn = "snapshot";
297
+ const _sp = "speech";
298
+ const _spe = "speed";
259
299
  const _sq = "sqs";
260
300
  const _st = "status";
301
+ const _sta = "stability";
302
+ const _sty = "style";
261
303
  const _su = "suggestions";
304
+ const _sy = "synthesis";
262
305
  const _t = "type";
263
306
  const _tD = "toDraft";
264
307
  const _tV = "toolVersion";
@@ -269,18 +312,21 @@ const _tim = "time";
269
312
  const _time = "timezone";
270
313
  const _to = "to";
271
314
  const _too = "tool";
272
- const _tr = "transfer";
315
+ const _tr = "transcription";
316
+ const _tra = "transfer";
273
317
  const _u = "url";
274
318
  const _uA = "updatedAt";
275
319
  const _uB = "updatedBy";
276
320
  const _uI = "userId";
277
321
  const _uL = "userLocation";
278
322
  const _v = "visibility";
323
+ const _vG = "volumeGain";
279
324
  const _va = "variables";
280
325
  const _val = "value";
281
326
  const _var = "variant";
282
327
  const _vc = "vcpus";
283
328
  const _ve = "version";
329
+ const _ven = "vendor";
284
330
  const _ver = "versions";
285
331
  const _verc = "vercel";
286
332
  const _vo = "voice";
@@ -409,8 +455,8 @@ exports.AgentHangupPipeline$ = [3, n2, _AHPg,
409
455
  ];
410
456
  exports.AgentInfo$ = [3, n2, _AI,
411
457
  0,
412
- [_i, _n, _st, _ch, _ca, _lV],
413
- [0, 0, 0, 64 | 0, 0, 1], 4
458
+ [_i, _n, _st, _ch, _ca, _sC, _lV],
459
+ [0, 0, 0, 64 | 0, 0, 2, 1], 4
414
460
  ];
415
461
  exports.AgentKnowledgeBase$ = [3, n2, _AKB,
416
462
  0,
@@ -622,6 +668,16 @@ exports.DeleteAgentOutput$ = [3, n2, _DAO,
622
668
  [],
623
669
  []
624
670
  ];
671
+ exports.DeletePronunciationDictionaryInput$ = [3, n2, _DPDI,
672
+ 0,
673
+ [_cod, _com],
674
+ [[0, 1], [0, { [_hQ]: _com }]], 1
675
+ ];
676
+ exports.DeletePronunciationDictionaryOutput$ = [3, n2, _DPDO,
677
+ 0,
678
+ [],
679
+ []
680
+ ];
625
681
  exports.GetAgentDeploymentInput$ = [3, n2, _GADI,
626
682
  0,
627
683
  [_aI, _com],
@@ -692,6 +748,21 @@ exports.ListAgentVersionsOutput$ = [3, n2, _LAVO,
692
748
  [_ver, _nC],
693
749
  [() => AgentVersionInfoList, 0], 1
694
750
  ];
751
+ exports.ListPronunciationDictionariesInput$ = [3, n2, _LPDI,
752
+ 0,
753
+ [_com],
754
+ [[0, { [_hQ]: _com }]]
755
+ ];
756
+ exports.ListPronunciationDictionariesOutput$ = [3, n2, _LPDO,
757
+ 0,
758
+ [_dic],
759
+ [() => PronunciationDictionaryList], 1
760
+ ];
761
+ exports.PronunciationDictionary$ = [3, n2, _PD,
762
+ 0,
763
+ [_i, _cod, _ru, _uA, _uB],
764
+ [0, 0, () => VoicePronunciationList, 0, () => exports.Actor$], 5
765
+ ];
695
766
  exports.PublishAgentVersionInput$ = [3, n2, _PAVI,
696
767
  0,
697
768
  [_aI, _r, _com, _chan, _n],
@@ -712,6 +783,16 @@ exports.PutAgentDeploymentOutput$ = [3, n2, _PADO,
712
783
  [_de],
713
784
  [() => AgentDeploymentRoutesList], 1
714
785
  ];
786
+ exports.PutPronunciationDictionaryInput$ = [3, n2, _PPDI,
787
+ 0,
788
+ [_cod, _ru, _com],
789
+ [[0, 1], () => VoicePronunciationList, [0, { [_hQ]: _com }]], 2
790
+ ];
791
+ exports.PutPronunciationDictionaryOutput$ = [3, n2, _PPDO,
792
+ 0,
793
+ [_dict],
794
+ [() => exports.PronunciationDictionary$], 1
795
+ ];
715
796
  exports.ResetAgentDeploymentInput$ = [3, n2, _RADI,
716
797
  0,
717
798
  [_aI, _com],
@@ -749,8 +830,8 @@ exports.VoiceCallerMetadataSettings$ = [3, n2, _VCMS,
749
830
  ];
750
831
  exports.VoiceChannelSettings$ = [3, n2, _VCS,
751
832
  0,
752
- [_gr, _int, _sT, _mD, _eC, _cM],
753
- [0, () => exports.VoiceInterruptionSettings$, () => exports.VoiceSilenceTimeoutSettings$, () => exports.VoiceMaxDurationSettings$, () => exports.VoiceEndCallSettings$, () => exports.VoiceCallerMetadataSettings$]
833
+ [_gr, _bS, _sp, _int, _sT, _mD, _eC, _cM],
834
+ [0, 0, () => exports.VoiceSpeechSettings$, () => exports.VoiceInterruptionSettings$, () => exports.VoiceSilenceTimeoutSettings$, () => exports.VoiceMaxDurationSettings$, () => exports.VoiceEndCallSettings$, () => exports.VoiceCallerMetadataSettings$]
754
835
  ];
755
836
  exports.VoiceEndCallSettings$ = [3, n2, _VECS,
756
837
  0,
@@ -762,21 +843,46 @@ exports.VoiceInterruptionSettings$ = [3, n2, _VIS,
762
843
  [_ena, _mW],
763
844
  [2, 1], 1
764
845
  ];
846
+ exports.VoiceLanguage$ = [3, n2, _VL,
847
+ 0,
848
+ [_cod, _vo, _prov, _gr, _iD, _in, _sy, _cr, _pron, _pS],
849
+ [0, 0, 0, 0, 2, 0, () => exports.VoiceSynthesisOptions$, () => exports.SecretRef$, () => VoicePronunciationList, 64 | 0], 2
850
+ ];
765
851
  exports.VoiceMaxDurationSettings$ = [3, n2, _VMDS,
766
852
  0,
767
853
  [_seco, _ac],
768
854
  [1, () => exports.VoiceTerminateAction$], 2
769
855
  ];
856
+ exports.VoicePronunciation$ = [3, n2, _VP,
857
+ 0,
858
+ [_phr, _as_, _enc],
859
+ [0, 0, 0], 2
860
+ ];
770
861
  exports.VoiceSilenceTimeoutSettings$ = [3, n2, _VSTS,
771
862
  0,
772
863
  [_seco, _ac],
773
864
  [1, () => exports.VoiceTerminateAction$], 2
774
865
  ];
866
+ exports.VoiceSpeechSettings$ = [3, n2, _VSS,
867
+ 0,
868
+ [_prov, _la, _aDu, _gEL, _tr, _sy, _cr],
869
+ [0, () => VoiceLanguageList, 2, 2, () => exports.VoiceTranscriptionSettings$, () => exports.VoiceSynthesisOptions$, () => exports.SecretRef$], 2
870
+ ];
871
+ exports.VoiceSynthesisOptions$ = [3, n2, _VSO,
872
+ 0,
873
+ [_mo, _spe, _sta, _sim, _sty, _sB, _pit, _vG],
874
+ [0, 1, 1, 1, 1, 2, 1, 1]
875
+ ];
775
876
  exports.VoiceTerminateHangupAction$ = [3, n2, _VTHA,
776
877
  0,
777
878
  [_m],
778
879
  [0]
779
880
  ];
881
+ exports.VoiceTranscriptionSettings$ = [3, n2, _VTS,
882
+ 0,
883
+ [_ven],
884
+ [0], 1
885
+ ];
780
886
  exports.VoiceTransferTarget$ = [3, n2, _VTT,
781
887
  0,
782
888
  [_n, _co, _ex, _d],
@@ -845,12 +951,22 @@ var AgentVersionInfoList = [1, n2, _AVIL,
845
951
  ];
846
952
  var ChannelTypeList = 64 | 0;
847
953
  var DomainNameList = 64 | 0;
954
+ var PronunciationDictionaryList = [1, n2, _PDL,
955
+ 0, () => exports.PronunciationDictionary$
956
+ ];
957
+ var VoiceLanguageList = [1, n2, _VLL,
958
+ 0, () => exports.VoiceLanguage$
959
+ ];
960
+ var VoicePronunciationList = [1, n2, _VPL,
961
+ 0, () => exports.VoicePronunciation$
962
+ ];
963
+ var VoicePronunciationSuppressionList = 64 | 0;
848
964
  var AgentSkillsList = [1, n4, _ASL,
849
965
  0, () => exports.AgentSkillReference$
850
966
  ];
851
967
  exports.AgentCapability$ = [4, n2, _ACg,
852
968
  0,
853
- [_too, _con, _kb, _sa, _wS, _wF, _ag, _ha, _del, _tr, _su, _han, _wa],
969
+ [_too, _con, _kb, _sa, _wS, _wF, _ag, _ha, _del, _tra, _su, _han, _wa],
854
970
  [() => exports.AgentTool$, () => exports.AgentConnectorCapability$, () => exports.AgentKnowledgeBase$, () => exports.AgentSandboxCapability$, () => exports.AgentWebSearchCapability$, () => exports.AgentWebFetchCapability$, () => exports.AgentCallCapability$, () => exports.AgentHandoverCapability$, () => exports.AgentDelegationCapability$, () => exports.AgentTransferCapability$, () => exports.AgentSuggestionsCapability$, () => exports.AgentHangupCapability$, () => exports.AgentWaitCapability$]
855
971
  ];
856
972
  exports.AgentEngine$ = [4, n2, _AE,
@@ -885,7 +1001,7 @@ exports.AgentToolVariableHandler$ = [4, n2, _ATVH,
885
1001
  ];
886
1002
  exports.VoiceTerminateAction$ = [4, n2, _VTA,
887
1003
  0,
888
- [_han, _tr],
1004
+ [_han, _tra],
889
1005
  [() => exports.VoiceTerminateHangupAction$, () => exports.VoiceTransferTarget$]
890
1006
  ];
891
1007
  exports.CompareAgentVersions$ = [9, n2, _CAV,
@@ -903,6 +1019,9 @@ exports.DeleteAgent$ = [9, n2, _DA,
903
1019
  exports.DeleteAgentApiKey$ = [9, n2, _DAAK,
904
1020
  { [_ht]: ["DELETE", "/v2/agents/agents/{agentId}/keys/{keyId}", 200] }, () => exports.DeleteAgentApiKeyInput$, () => exports.DeleteAgentApiKeyOutput$
905
1021
  ];
1022
+ exports.DeletePronunciationDictionary$ = [9, n2, _DPD,
1023
+ { [_ht]: ["DELETE", "/v2/agents/pronunciations/{code}", 200] }, () => exports.DeletePronunciationDictionaryInput$, () => exports.DeletePronunciationDictionaryOutput$
1024
+ ];
906
1025
  exports.GetAgent$ = [9, n2, _GA,
907
1026
  { [_ht]: ["GET", "/v2/agents/agents/{agentId}", 200] }, () => exports.GetAgentInput$, () => exports.GetAgentOutput$
908
1027
  ];
@@ -924,12 +1043,18 @@ exports.ListAgentsNames$ = [9, n2, _LAN,
924
1043
  exports.ListAgentVersions$ = [9, n2, _LAV,
925
1044
  { [_ht]: ["GET", "/v2/agents/agents/{agentId}/versions", 200] }, () => exports.ListAgentVersionsInput$, () => exports.ListAgentVersionsOutput$
926
1045
  ];
1046
+ exports.ListPronunciationDictionaries$ = [9, n2, _LPD,
1047
+ { [_ht]: ["GET", "/v2/agents/pronunciations", 200] }, () => exports.ListPronunciationDictionariesInput$, () => exports.ListPronunciationDictionariesOutput$
1048
+ ];
927
1049
  exports.PublishAgentVersion$ = [9, n2, _PAV,
928
1050
  { [_ht]: ["POST", "/v2/agents/agents/{agentId}/versions", 200] }, () => exports.PublishAgentVersionInput$, () => exports.PublishAgentVersionOutput$
929
1051
  ];
930
1052
  exports.PutAgentDeployment$ = [9, n2, _PAD,
931
1053
  { [_ht]: ["PUT", "/v2/agents/agents/{agentId}/deployment", 200] }, () => exports.PutAgentDeploymentInput$, () => exports.PutAgentDeploymentOutput$
932
1054
  ];
1055
+ exports.PutPronunciationDictionary$ = [9, n2, _PPD,
1056
+ { [_ht]: ["PUT", "/v2/agents/pronunciations/{code}", 200] }, () => exports.PutPronunciationDictionaryInput$, () => exports.PutPronunciationDictionaryOutput$
1057
+ ];
933
1058
  exports.ResetAgentDeployment$ = [9, n2, _RAD,
934
1059
  { [_ht]: ["POST", "/v2/agents/agents/{agentId}/deployment/reset", 200] }, () => exports.ResetAgentDeploymentInput$, () => exports.ResetAgentDeploymentOutput$
935
1060
  ];
@@ -4,6 +4,7 @@ import { CreateAgentApiKeyCommand, } from "./commands/CreateAgentApiKeyCommand";
4
4
  import { CreateAgentCommand, } from "./commands/CreateAgentCommand";
5
5
  import { DeleteAgentApiKeyCommand, } from "./commands/DeleteAgentApiKeyCommand";
6
6
  import { DeleteAgentCommand, } from "./commands/DeleteAgentCommand";
7
+ import { DeletePronunciationDictionaryCommand, } from "./commands/DeletePronunciationDictionaryCommand";
7
8
  import { GetAgentCommand } from "./commands/GetAgentCommand";
8
9
  import { GetAgentDeploymentCommand, } from "./commands/GetAgentDeploymentCommand";
9
10
  import { GetAgentVersionCommand, } from "./commands/GetAgentVersionCommand";
@@ -11,8 +12,10 @@ import { ListAgentApiKeysCommand, } from "./commands/ListAgentApiKeysCommand";
11
12
  import { ListAgentsCommand, } from "./commands/ListAgentsCommand";
12
13
  import { ListAgentsNamesCommand, } from "./commands/ListAgentsNamesCommand";
13
14
  import { ListAgentVersionsCommand, } from "./commands/ListAgentVersionsCommand";
15
+ import { ListPronunciationDictionariesCommand, } from "./commands/ListPronunciationDictionariesCommand";
14
16
  import { PublishAgentVersionCommand, } from "./commands/PublishAgentVersionCommand";
15
17
  import { PutAgentDeploymentCommand, } from "./commands/PutAgentDeploymentCommand";
18
+ import { PutPronunciationDictionaryCommand, } from "./commands/PutPronunciationDictionaryCommand";
16
19
  import { ResetAgentDeploymentCommand, } from "./commands/ResetAgentDeploymentCommand";
17
20
  import { RestoreAgentVersionToDraftCommand, } from "./commands/RestoreAgentVersionToDraftCommand";
18
21
  import { UpdateAgentCommand, } from "./commands/UpdateAgentCommand";
@@ -23,6 +26,7 @@ const commands = {
23
26
  CreateAgentApiKeyCommand,
24
27
  DeleteAgentCommand,
25
28
  DeleteAgentApiKeyCommand,
29
+ DeletePronunciationDictionaryCommand,
26
30
  GetAgentCommand,
27
31
  GetAgentDeploymentCommand,
28
32
  GetAgentVersionCommand,
@@ -30,8 +34,10 @@ const commands = {
30
34
  ListAgentsCommand,
31
35
  ListAgentsNamesCommand,
32
36
  ListAgentVersionsCommand,
37
+ ListPronunciationDictionariesCommand,
33
38
  PublishAgentVersionCommand,
34
39
  PutAgentDeploymentCommand,
40
+ PutPronunciationDictionaryCommand,
35
41
  ResetAgentDeploymentCommand,
36
42
  RestoreAgentVersionToDraftCommand,
37
43
  UpdateAgentCommand,
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeletePronunciationDictionary$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeletePronunciationDictionaryCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("WilmaAgents", "DeletePronunciationDictionary", {})
13
+ .n("WilmaAgentsClient", "DeletePronunciationDictionaryCommand")
14
+ .sc(DeletePronunciationDictionary$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListPronunciationDictionaries$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListPronunciationDictionariesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("WilmaAgents", "ListPronunciationDictionaries", {})
13
+ .n("WilmaAgentsClient", "ListPronunciationDictionariesCommand")
14
+ .sc(ListPronunciationDictionaries$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { PutPronunciationDictionary$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class PutPronunciationDictionaryCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("WilmaAgents", "PutPronunciationDictionary", {})
13
+ .n("WilmaAgentsClient", "PutPronunciationDictionaryCommand")
14
+ .sc(PutPronunciationDictionary$)
15
+ .build() {
16
+ }
@@ -3,6 +3,7 @@ export * from "./CreateAgentApiKeyCommand";
3
3
  export * from "./CreateAgentCommand";
4
4
  export * from "./DeleteAgentApiKeyCommand";
5
5
  export * from "./DeleteAgentCommand";
6
+ export * from "./DeletePronunciationDictionaryCommand";
6
7
  export * from "./GetAgentCommand";
7
8
  export * from "./GetAgentDeploymentCommand";
8
9
  export * from "./GetAgentVersionCommand";
@@ -10,8 +11,10 @@ export * from "./ListAgentApiKeysCommand";
10
11
  export * from "./ListAgentVersionsCommand";
11
12
  export * from "./ListAgentsCommand";
12
13
  export * from "./ListAgentsNamesCommand";
14
+ export * from "./ListPronunciationDictionariesCommand";
13
15
  export * from "./PublishAgentVersionCommand";
14
16
  export * from "./PutAgentDeploymentCommand";
17
+ export * from "./PutPronunciationDictionaryCommand";
15
18
  export * from "./ResetAgentDeploymentCommand";
16
19
  export * from "./RestoreAgentVersionToDraftCommand";
17
20
  export * from "./UpdateAgentCommand";