@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
|
@@ -96,6 +96,9 @@ export declare var AgentWorkflowStepPosition$: StaticStructureSchema;
|
|
|
96
96
|
export declare var AgentWorkflowTransition$: StaticStructureSchema;
|
|
97
97
|
export declare var AgentWorkflowVariablesHandler$: StaticStructureSchema;
|
|
98
98
|
export declare var AssistantChannelSettings$: StaticStructureSchema;
|
|
99
|
+
export declare var AssistantQuickCommand$: StaticStructureSchema;
|
|
100
|
+
export declare var AssistantUiSettings$: StaticStructureSchema;
|
|
101
|
+
export declare var AssistantWelcomeSettings$: StaticStructureSchema;
|
|
99
102
|
export declare var ChatChannelSettings$: StaticStructureSchema;
|
|
100
103
|
export declare var CompareAgentVersionsInput$: StaticStructureSchema;
|
|
101
104
|
export declare var CompareAgentVersionsOutput$: StaticStructureSchema;
|
|
@@ -107,6 +110,8 @@ export declare var DeleteAgentApiKeyInput$: StaticStructureSchema;
|
|
|
107
110
|
export declare var DeleteAgentApiKeyOutput$: StaticStructureSchema;
|
|
108
111
|
export declare var DeleteAgentInput$: StaticStructureSchema;
|
|
109
112
|
export declare var DeleteAgentOutput$: StaticStructureSchema;
|
|
113
|
+
export declare var DeletePronunciationDictionaryInput$: StaticStructureSchema;
|
|
114
|
+
export declare var DeletePronunciationDictionaryOutput$: StaticStructureSchema;
|
|
110
115
|
export declare var GetAgentDeploymentInput$: StaticStructureSchema;
|
|
111
116
|
export declare var GetAgentDeploymentOutput$: StaticStructureSchema;
|
|
112
117
|
export declare var GetAgentInput$: StaticStructureSchema;
|
|
@@ -121,10 +126,15 @@ export declare var ListAgentsNamesOutput$: StaticStructureSchema;
|
|
|
121
126
|
export declare var ListAgentsOutput$: StaticStructureSchema;
|
|
122
127
|
export declare var ListAgentVersionsInput$: StaticStructureSchema;
|
|
123
128
|
export declare var ListAgentVersionsOutput$: StaticStructureSchema;
|
|
129
|
+
export declare var ListPronunciationDictionariesInput$: StaticStructureSchema;
|
|
130
|
+
export declare var ListPronunciationDictionariesOutput$: StaticStructureSchema;
|
|
131
|
+
export declare var PronunciationDictionary$: StaticStructureSchema;
|
|
124
132
|
export declare var PublishAgentVersionInput$: StaticStructureSchema;
|
|
125
133
|
export declare var PublishAgentVersionOutput$: StaticStructureSchema;
|
|
126
134
|
export declare var PutAgentDeploymentInput$: StaticStructureSchema;
|
|
127
135
|
export declare var PutAgentDeploymentOutput$: StaticStructureSchema;
|
|
136
|
+
export declare var PutPronunciationDictionaryInput$: StaticStructureSchema;
|
|
137
|
+
export declare var PutPronunciationDictionaryOutput$: StaticStructureSchema;
|
|
128
138
|
export declare var ResetAgentDeploymentInput$: StaticStructureSchema;
|
|
129
139
|
export declare var ResetAgentDeploymentOutput$: StaticStructureSchema;
|
|
130
140
|
export declare var RestoreAgentVersionToDraftInput$: StaticStructureSchema;
|
|
@@ -135,12 +145,16 @@ export declare var VoiceCallerMetadataSettings$: StaticStructureSchema;
|
|
|
135
145
|
export declare var VoiceChannelSettings$: StaticStructureSchema;
|
|
136
146
|
export declare var VoiceEndCallSettings$: StaticStructureSchema;
|
|
137
147
|
export declare var VoiceInterruptionSettings$: StaticStructureSchema;
|
|
148
|
+
export declare var VoiceLanguage$: StaticStructureSchema;
|
|
138
149
|
export declare var VoiceMaxDurationSettings$: StaticStructureSchema;
|
|
150
|
+
export declare var VoicePronunciation$: StaticStructureSchema;
|
|
139
151
|
export declare var VoiceSilenceTimeoutSettings$: StaticStructureSchema;
|
|
152
|
+
export declare var VoiceSpeechSettings$: StaticStructureSchema;
|
|
153
|
+
export declare var VoiceSynthesisOptions$: StaticStructureSchema;
|
|
140
154
|
export declare var VoiceTerminateHangupAction$: StaticStructureSchema;
|
|
155
|
+
export declare var VoiceTranscriptionSettings$: StaticStructureSchema;
|
|
141
156
|
export declare var VoiceTransferTarget$: StaticStructureSchema;
|
|
142
157
|
export declare var WebSearchUserLocation$: StaticStructureSchema;
|
|
143
|
-
export declare var WorkflowChannelSettings$: StaticStructureSchema;
|
|
144
158
|
export declare var Actor$: StaticStructureSchema;
|
|
145
159
|
export declare var SecretRef$: StaticStructureSchema;
|
|
146
160
|
export declare var AgentSkillReference$: StaticStructureSchema;
|
|
@@ -164,6 +178,7 @@ export declare var CreateAgent$: StaticOperationSchema;
|
|
|
164
178
|
export declare var CreateAgentApiKey$: StaticOperationSchema;
|
|
165
179
|
export declare var DeleteAgent$: StaticOperationSchema;
|
|
166
180
|
export declare var DeleteAgentApiKey$: StaticOperationSchema;
|
|
181
|
+
export declare var DeletePronunciationDictionary$: StaticOperationSchema;
|
|
167
182
|
export declare var GetAgent$: StaticOperationSchema;
|
|
168
183
|
export declare var GetAgentDeployment$: StaticOperationSchema;
|
|
169
184
|
export declare var GetAgentVersion$: StaticOperationSchema;
|
|
@@ -171,8 +186,10 @@ export declare var ListAgentApiKeys$: StaticOperationSchema;
|
|
|
171
186
|
export declare var ListAgents$: StaticOperationSchema;
|
|
172
187
|
export declare var ListAgentsNames$: StaticOperationSchema;
|
|
173
188
|
export declare var ListAgentVersions$: StaticOperationSchema;
|
|
189
|
+
export declare var ListPronunciationDictionaries$: StaticOperationSchema;
|
|
174
190
|
export declare var PublishAgentVersion$: StaticOperationSchema;
|
|
175
191
|
export declare var PutAgentDeployment$: StaticOperationSchema;
|
|
192
|
+
export declare var PutPronunciationDictionary$: StaticOperationSchema;
|
|
176
193
|
export declare var ResetAgentDeployment$: StaticOperationSchema;
|
|
177
194
|
export declare var RestoreAgentVersionToDraft$: StaticOperationSchema;
|
|
178
195
|
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.
|
|
4
|
+
"version": "1.0.29",
|
|
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",
|
|
@@ -56,4 +56,4 @@
|
|
|
56
56
|
"browser": {
|
|
57
57
|
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
58
58
|
}
|
|
59
|
-
}
|
|
59
|
+
}
|