@wildix/wilma-agents-client 1.0.18 → 1.0.24

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 +385 -13
  31. package/dist-types/schemas/schemas_0.d.ts +15 -0
  32. package/package.json +1 -1
@@ -69,6 +69,8 @@ export declare var DeleteAgentApiKeyInput$: StaticStructureSchema;
69
69
  export declare var DeleteAgentApiKeyOutput$: StaticStructureSchema;
70
70
  export declare var DeleteAgentInput$: StaticStructureSchema;
71
71
  export declare var DeleteAgentOutput$: StaticStructureSchema;
72
+ export declare var DeletePronunciationDictionaryInput$: StaticStructureSchema;
73
+ export declare var DeletePronunciationDictionaryOutput$: StaticStructureSchema;
72
74
  export declare var GetAgentDeploymentInput$: StaticStructureSchema;
73
75
  export declare var GetAgentDeploymentOutput$: StaticStructureSchema;
74
76
  export declare var GetAgentInput$: StaticStructureSchema;
@@ -83,10 +85,15 @@ export declare var ListAgentsNamesOutput$: StaticStructureSchema;
83
85
  export declare var ListAgentsOutput$: StaticStructureSchema;
84
86
  export declare var ListAgentVersionsInput$: StaticStructureSchema;
85
87
  export declare var ListAgentVersionsOutput$: StaticStructureSchema;
88
+ export declare var ListPronunciationDictionariesInput$: StaticStructureSchema;
89
+ export declare var ListPronunciationDictionariesOutput$: StaticStructureSchema;
90
+ export declare var PronunciationDictionary$: StaticStructureSchema;
86
91
  export declare var PublishAgentVersionInput$: StaticStructureSchema;
87
92
  export declare var PublishAgentVersionOutput$: StaticStructureSchema;
88
93
  export declare var PutAgentDeploymentInput$: StaticStructureSchema;
89
94
  export declare var PutAgentDeploymentOutput$: StaticStructureSchema;
95
+ export declare var PutPronunciationDictionaryInput$: StaticStructureSchema;
96
+ export declare var PutPronunciationDictionaryOutput$: StaticStructureSchema;
90
97
  export declare var ResetAgentDeploymentInput$: StaticStructureSchema;
91
98
  export declare var ResetAgentDeploymentOutput$: StaticStructureSchema;
92
99
  export declare var RestoreAgentVersionToDraftInput$: StaticStructureSchema;
@@ -97,9 +104,14 @@ export declare var VoiceCallerMetadataSettings$: StaticStructureSchema;
97
104
  export declare var VoiceChannelSettings$: StaticStructureSchema;
98
105
  export declare var VoiceEndCallSettings$: StaticStructureSchema;
99
106
  export declare var VoiceInterruptionSettings$: StaticStructureSchema;
107
+ export declare var VoiceLanguage$: StaticStructureSchema;
100
108
  export declare var VoiceMaxDurationSettings$: StaticStructureSchema;
109
+ export declare var VoicePronunciation$: StaticStructureSchema;
101
110
  export declare var VoiceSilenceTimeoutSettings$: StaticStructureSchema;
111
+ export declare var VoiceSpeechSettings$: StaticStructureSchema;
112
+ export declare var VoiceSynthesisOptions$: StaticStructureSchema;
102
113
  export declare var VoiceTerminateHangupAction$: StaticStructureSchema;
114
+ export declare var VoiceTranscriptionSettings$: StaticStructureSchema;
103
115
  export declare var VoiceTransferTarget$: StaticStructureSchema;
104
116
  export declare var WebSearchUserLocation$: StaticStructureSchema;
105
117
  export declare var WorkflowChannelSettings$: StaticStructureSchema;
@@ -119,6 +131,7 @@ export declare var CreateAgent$: StaticOperationSchema;
119
131
  export declare var CreateAgentApiKey$: StaticOperationSchema;
120
132
  export declare var DeleteAgent$: StaticOperationSchema;
121
133
  export declare var DeleteAgentApiKey$: StaticOperationSchema;
134
+ export declare var DeletePronunciationDictionary$: StaticOperationSchema;
122
135
  export declare var GetAgent$: StaticOperationSchema;
123
136
  export declare var GetAgentDeployment$: StaticOperationSchema;
124
137
  export declare var GetAgentVersion$: StaticOperationSchema;
@@ -126,8 +139,10 @@ export declare var ListAgentApiKeys$: StaticOperationSchema;
126
139
  export declare var ListAgents$: StaticOperationSchema;
127
140
  export declare var ListAgentsNames$: StaticOperationSchema;
128
141
  export declare var ListAgentVersions$: StaticOperationSchema;
142
+ export declare var ListPronunciationDictionaries$: StaticOperationSchema;
129
143
  export declare var PublishAgentVersion$: StaticOperationSchema;
130
144
  export declare var PutAgentDeployment$: StaticOperationSchema;
145
+ export declare var PutPronunciationDictionary$: StaticOperationSchema;
131
146
  export declare var ResetAgentDeployment$: StaticOperationSchema;
132
147
  export declare var RestoreAgentVersionToDraft$: StaticOperationSchema;
133
148
  export declare var UpdateAgent$: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wilma-agents-client",
3
3
  "description": "@wildix/wilma-agents-client client",
4
- "version": "1.0.18",
4
+ "version": "1.0.24",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",