@wildix/wilma-agents-client 1.0.24 → 1.0.26

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 +0 -6
  2. package/dist-cjs/commands/index.js +0 -3
  3. package/dist-cjs/models/enums.js +25 -13
  4. package/dist-cjs/schemas/schemas_0.js +277 -144
  5. package/dist-es/WilmaAgents.js +0 -6
  6. package/dist-es/commands/index.js +0 -3
  7. package/dist-es/models/enums.js +24 -12
  8. package/dist-es/schemas/schemas_0.js +274 -142
  9. package/dist-types/WilmaAgents.d.ts +0 -22
  10. package/dist-types/WilmaAgentsClient.d.ts +2 -5
  11. package/dist-types/commands/CreateAgentCommand.d.ts +1222 -568
  12. package/dist-types/commands/GetAgentCommand.d.ts +611 -284
  13. package/dist-types/commands/GetAgentVersionCommand.d.ts +611 -284
  14. package/dist-types/commands/ListAgentsCommand.d.ts +611 -284
  15. package/dist-types/commands/ListAgentsNamesCommand.d.ts +0 -1
  16. package/dist-types/commands/PublishAgentVersionCommand.d.ts +611 -284
  17. package/dist-types/commands/RestoreAgentVersionToDraftCommand.d.ts +611 -284
  18. package/dist-types/commands/UpdateAgentCommand.d.ts +1222 -568
  19. package/dist-types/commands/index.d.ts +0 -3
  20. package/dist-types/models/enums.d.ts +89 -42
  21. package/dist-types/models/models_0.d.ts +1146 -457
  22. package/dist-types/schemas/schemas_0.d.ts +34 -15
  23. package/package.json +1 -1
  24. package/dist-cjs/commands/DeletePronunciationDictionaryCommand.js +0 -20
  25. package/dist-cjs/commands/ListPronunciationDictionariesCommand.js +0 -20
  26. package/dist-cjs/commands/PutPronunciationDictionaryCommand.js +0 -20
  27. package/dist-es/commands/DeletePronunciationDictionaryCommand.js +0 -16
  28. package/dist-es/commands/ListPronunciationDictionariesCommand.js +0 -16
  29. package/dist-es/commands/PutPronunciationDictionaryCommand.js +0 -16
  30. package/dist-types/commands/DeletePronunciationDictionaryCommand.d.ts +0 -78
  31. package/dist-types/commands/ListPronunciationDictionariesCommand.d.ts +0 -96
  32. package/dist-types/commands/PutPronunciationDictionaryCommand.d.ts +0 -108
@@ -4,7 +4,6 @@ import { type CreateAgentApiKeyCommandInput, type CreateAgentApiKeyCommandOutput
4
4
  import { type CreateAgentCommandInput, type CreateAgentCommandOutput } from "./commands/CreateAgentCommand";
5
5
  import { type DeleteAgentApiKeyCommandInput, type DeleteAgentApiKeyCommandOutput } from "./commands/DeleteAgentApiKeyCommand";
6
6
  import { type DeleteAgentCommandInput, type DeleteAgentCommandOutput } from "./commands/DeleteAgentCommand";
7
- import { type DeletePronunciationDictionaryCommandInput, type DeletePronunciationDictionaryCommandOutput } from "./commands/DeletePronunciationDictionaryCommand";
8
7
  import { type GetAgentCommandInput, type GetAgentCommandOutput } from "./commands/GetAgentCommand";
9
8
  import { type GetAgentDeploymentCommandInput, type GetAgentDeploymentCommandOutput } from "./commands/GetAgentDeploymentCommand";
10
9
  import { type GetAgentVersionCommandInput, type GetAgentVersionCommandOutput } from "./commands/GetAgentVersionCommand";
@@ -12,10 +11,8 @@ import { type ListAgentApiKeysCommandInput, type ListAgentApiKeysCommandOutput }
12
11
  import { type ListAgentsCommandInput, type ListAgentsCommandOutput } from "./commands/ListAgentsCommand";
13
12
  import { type ListAgentsNamesCommandInput, type ListAgentsNamesCommandOutput } from "./commands/ListAgentsNamesCommand";
14
13
  import { type ListAgentVersionsCommandInput, type ListAgentVersionsCommandOutput } from "./commands/ListAgentVersionsCommand";
15
- import { type ListPronunciationDictionariesCommandInput, type ListPronunciationDictionariesCommandOutput } from "./commands/ListPronunciationDictionariesCommand";
16
14
  import { type PublishAgentVersionCommandInput, type PublishAgentVersionCommandOutput } from "./commands/PublishAgentVersionCommand";
17
15
  import { type PutAgentDeploymentCommandInput, type PutAgentDeploymentCommandOutput } from "./commands/PutAgentDeploymentCommand";
18
- import { type PutPronunciationDictionaryCommandInput, type PutPronunciationDictionaryCommandOutput } from "./commands/PutPronunciationDictionaryCommand";
19
16
  import { type ResetAgentDeploymentCommandInput, type ResetAgentDeploymentCommandOutput } from "./commands/ResetAgentDeploymentCommand";
20
17
  import { type RestoreAgentVersionToDraftCommandInput, type RestoreAgentVersionToDraftCommandOutput } from "./commands/RestoreAgentVersionToDraftCommand";
21
18
  import { type UpdateAgentCommandInput, type UpdateAgentCommandOutput } from "./commands/UpdateAgentCommand";
@@ -51,12 +48,6 @@ export interface WilmaAgents {
51
48
  deleteAgentApiKey(args: DeleteAgentApiKeyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAgentApiKeyCommandOutput>;
52
49
  deleteAgentApiKey(args: DeleteAgentApiKeyCommandInput, cb: (err: any, data?: DeleteAgentApiKeyCommandOutput) => void): void;
53
50
  deleteAgentApiKey(args: DeleteAgentApiKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAgentApiKeyCommandOutput) => void): void;
54
- /**
55
- * @see {@link DeletePronunciationDictionaryCommand}
56
- */
57
- deletePronunciationDictionary(args: DeletePronunciationDictionaryCommandInput, options?: __HttpHandlerOptions): Promise<DeletePronunciationDictionaryCommandOutput>;
58
- deletePronunciationDictionary(args: DeletePronunciationDictionaryCommandInput, cb: (err: any, data?: DeletePronunciationDictionaryCommandOutput) => void): void;
59
- deletePronunciationDictionary(args: DeletePronunciationDictionaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePronunciationDictionaryCommandOutput) => void): void;
60
51
  /**
61
52
  * @see {@link GetAgentCommand}
62
53
  */
@@ -101,13 +92,6 @@ export interface WilmaAgents {
101
92
  listAgentVersions(args: ListAgentVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListAgentVersionsCommandOutput>;
102
93
  listAgentVersions(args: ListAgentVersionsCommandInput, cb: (err: any, data?: ListAgentVersionsCommandOutput) => void): void;
103
94
  listAgentVersions(args: ListAgentVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAgentVersionsCommandOutput) => void): void;
104
- /**
105
- * @see {@link ListPronunciationDictionariesCommand}
106
- */
107
- listPronunciationDictionaries(): Promise<ListPronunciationDictionariesCommandOutput>;
108
- listPronunciationDictionaries(args: ListPronunciationDictionariesCommandInput, options?: __HttpHandlerOptions): Promise<ListPronunciationDictionariesCommandOutput>;
109
- listPronunciationDictionaries(args: ListPronunciationDictionariesCommandInput, cb: (err: any, data?: ListPronunciationDictionariesCommandOutput) => void): void;
110
- listPronunciationDictionaries(args: ListPronunciationDictionariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPronunciationDictionariesCommandOutput) => void): void;
111
95
  /**
112
96
  * @see {@link PublishAgentVersionCommand}
113
97
  */
@@ -120,12 +104,6 @@ export interface WilmaAgents {
120
104
  putAgentDeployment(args: PutAgentDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<PutAgentDeploymentCommandOutput>;
121
105
  putAgentDeployment(args: PutAgentDeploymentCommandInput, cb: (err: any, data?: PutAgentDeploymentCommandOutput) => void): void;
122
106
  putAgentDeployment(args: PutAgentDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAgentDeploymentCommandOutput) => void): void;
123
- /**
124
- * @see {@link PutPronunciationDictionaryCommand}
125
- */
126
- putPronunciationDictionary(args: PutPronunciationDictionaryCommandInput, options?: __HttpHandlerOptions): Promise<PutPronunciationDictionaryCommandOutput>;
127
- putPronunciationDictionary(args: PutPronunciationDictionaryCommandInput, cb: (err: any, data?: PutPronunciationDictionaryCommandOutput) => void): void;
128
- putPronunciationDictionary(args: PutPronunciationDictionaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPronunciationDictionaryCommandOutput) => void): void;
129
107
  /**
130
108
  * @see {@link ResetAgentDeploymentCommand}
131
109
  */
@@ -10,7 +10,6 @@ import type { CreateAgentApiKeyCommandInput, CreateAgentApiKeyCommandOutput } fr
10
10
  import type { CreateAgentCommandInput, CreateAgentCommandOutput } from "./commands/CreateAgentCommand";
11
11
  import type { DeleteAgentApiKeyCommandInput, DeleteAgentApiKeyCommandOutput } from "./commands/DeleteAgentApiKeyCommand";
12
12
  import type { DeleteAgentCommandInput, DeleteAgentCommandOutput } from "./commands/DeleteAgentCommand";
13
- import type { DeletePronunciationDictionaryCommandInput, DeletePronunciationDictionaryCommandOutput } from "./commands/DeletePronunciationDictionaryCommand";
14
13
  import type { GetAgentCommandInput, GetAgentCommandOutput } from "./commands/GetAgentCommand";
15
14
  import type { GetAgentDeploymentCommandInput, GetAgentDeploymentCommandOutput } from "./commands/GetAgentDeploymentCommand";
16
15
  import type { GetAgentVersionCommandInput, GetAgentVersionCommandOutput } from "./commands/GetAgentVersionCommand";
@@ -18,10 +17,8 @@ import type { ListAgentApiKeysCommandInput, ListAgentApiKeysCommandOutput } from
18
17
  import type { ListAgentsCommandInput, ListAgentsCommandOutput } from "./commands/ListAgentsCommand";
19
18
  import type { ListAgentsNamesCommandInput, ListAgentsNamesCommandOutput } from "./commands/ListAgentsNamesCommand";
20
19
  import type { ListAgentVersionsCommandInput, ListAgentVersionsCommandOutput } from "./commands/ListAgentVersionsCommand";
21
- import type { ListPronunciationDictionariesCommandInput, ListPronunciationDictionariesCommandOutput } from "./commands/ListPronunciationDictionariesCommand";
22
20
  import type { PublishAgentVersionCommandInput, PublishAgentVersionCommandOutput } from "./commands/PublishAgentVersionCommand";
23
21
  import type { PutAgentDeploymentCommandInput, PutAgentDeploymentCommandOutput } from "./commands/PutAgentDeploymentCommand";
24
- import type { PutPronunciationDictionaryCommandInput, PutPronunciationDictionaryCommandOutput } from "./commands/PutPronunciationDictionaryCommand";
25
22
  import type { ResetAgentDeploymentCommandInput, ResetAgentDeploymentCommandOutput } from "./commands/ResetAgentDeploymentCommand";
26
23
  import type { RestoreAgentVersionToDraftCommandInput, RestoreAgentVersionToDraftCommandOutput } from "./commands/RestoreAgentVersionToDraftCommand";
27
24
  import type { UpdateAgentCommandInput, UpdateAgentCommandOutput } from "./commands/UpdateAgentCommand";
@@ -31,11 +28,11 @@ export { __Client };
31
28
  /**
32
29
  * @public
33
30
  */
34
- export type ServiceInputTypes = CompareAgentVersionsCommandInput | CreateAgentApiKeyCommandInput | CreateAgentCommandInput | DeleteAgentApiKeyCommandInput | DeleteAgentCommandInput | DeletePronunciationDictionaryCommandInput | GetAgentCommandInput | GetAgentDeploymentCommandInput | GetAgentVersionCommandInput | ListAgentApiKeysCommandInput | ListAgentVersionsCommandInput | ListAgentsCommandInput | ListAgentsNamesCommandInput | ListPronunciationDictionariesCommandInput | PublishAgentVersionCommandInput | PutAgentDeploymentCommandInput | PutPronunciationDictionaryCommandInput | ResetAgentDeploymentCommandInput | RestoreAgentVersionToDraftCommandInput | UpdateAgentCommandInput;
31
+ export type ServiceInputTypes = CompareAgentVersionsCommandInput | CreateAgentApiKeyCommandInput | CreateAgentCommandInput | DeleteAgentApiKeyCommandInput | DeleteAgentCommandInput | GetAgentCommandInput | GetAgentDeploymentCommandInput | GetAgentVersionCommandInput | ListAgentApiKeysCommandInput | ListAgentVersionsCommandInput | ListAgentsCommandInput | ListAgentsNamesCommandInput | PublishAgentVersionCommandInput | PutAgentDeploymentCommandInput | ResetAgentDeploymentCommandInput | RestoreAgentVersionToDraftCommandInput | UpdateAgentCommandInput;
35
32
  /**
36
33
  * @public
37
34
  */
38
- export type ServiceOutputTypes = CompareAgentVersionsCommandOutput | CreateAgentApiKeyCommandOutput | CreateAgentCommandOutput | DeleteAgentApiKeyCommandOutput | DeleteAgentCommandOutput | DeletePronunciationDictionaryCommandOutput | GetAgentCommandOutput | GetAgentDeploymentCommandOutput | GetAgentVersionCommandOutput | ListAgentApiKeysCommandOutput | ListAgentVersionsCommandOutput | ListAgentsCommandOutput | ListAgentsNamesCommandOutput | ListPronunciationDictionariesCommandOutput | PublishAgentVersionCommandOutput | PutAgentDeploymentCommandOutput | PutPronunciationDictionaryCommandOutput | ResetAgentDeploymentCommandOutput | RestoreAgentVersionToDraftCommandOutput | UpdateAgentCommandOutput;
35
+ export type ServiceOutputTypes = CompareAgentVersionsCommandOutput | CreateAgentApiKeyCommandOutput | CreateAgentCommandOutput | DeleteAgentApiKeyCommandOutput | DeleteAgentCommandOutput | GetAgentCommandOutput | GetAgentDeploymentCommandOutput | GetAgentVersionCommandOutput | ListAgentApiKeysCommandOutput | ListAgentVersionsCommandOutput | ListAgentsCommandOutput | ListAgentsNamesCommandOutput | PublishAgentVersionCommandOutput | PutAgentDeploymentCommandOutput | ResetAgentDeploymentCommandOutput | RestoreAgentVersionToDraftCommandOutput | UpdateAgentCommandOutput;
39
36
  /**
40
37
  * @public
41
38
  */