@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
@@ -3,7 +3,6 @@ export * from "./CreateAgentApiKeyCommand";
3
3
  export * from "./CreateAgentCommand";
4
4
  export * from "./DeleteAgentApiKeyCommand";
5
5
  export * from "./DeleteAgentCommand";
6
- export * from "./DeletePronunciationDictionaryCommand";
7
6
  export * from "./GetAgentCommand";
8
7
  export * from "./GetAgentDeploymentCommand";
9
8
  export * from "./GetAgentVersionCommand";
@@ -11,10 +10,8 @@ export * from "./ListAgentApiKeysCommand";
11
10
  export * from "./ListAgentVersionsCommand";
12
11
  export * from "./ListAgentsCommand";
13
12
  export * from "./ListAgentsNamesCommand";
14
- export * from "./ListPronunciationDictionariesCommand";
15
13
  export * from "./PublishAgentVersionCommand";
16
14
  export * from "./PutAgentDeploymentCommand";
17
- export * from "./PutPronunciationDictionaryCommand";
18
15
  export * from "./ResetAgentDeploymentCommand";
19
16
  export * from "./RestoreAgentVersionToDraftCommand";
20
17
  export * from "./UpdateAgentCommand";
@@ -16,48 +16,6 @@ export declare const AgentVisibility: {
16
16
  * @public
17
17
  */
18
18
  export type AgentVisibility = (typeof AgentVisibility)[keyof typeof AgentVisibility];
19
- /**
20
- * @public
21
- * @enum
22
- */
23
- export declare const VoicePronunciationEncoding: {
24
- /**
25
- * A respelling substituted into the text before it reaches the provider. The only encoding version 1 applies.
26
- */
27
- readonly ALIAS: "alias";
28
- /**
29
- * Phonetic transcription. Declared so IPA can be enabled per provider later; ignored by the runtime today.
30
- */
31
- readonly IPA: "ipa";
32
- };
33
- /**
34
- * @public
35
- */
36
- export type VoicePronunciationEncoding = (typeof VoicePronunciationEncoding)[keyof typeof VoicePronunciationEncoding];
37
- /**
38
- * @public
39
- * @enum
40
- */
41
- export declare const VoiceSpeechProvider: {
42
- readonly AMAZON_POLLY: "amazon_polly";
43
- readonly ELEVENLABS: "elevenlabs";
44
- readonly GOOGLE: "google";
45
- };
46
- /**
47
- * @public
48
- */
49
- export type VoiceSpeechProvider = (typeof VoiceSpeechProvider)[keyof typeof VoiceSpeechProvider];
50
- /**
51
- * @public
52
- * @enum
53
- */
54
- export declare const VoiceTranscriptionVendor: {
55
- readonly AWS: "aws";
56
- };
57
- /**
58
- * @public
59
- */
60
- export type VoiceTranscriptionVendor = (typeof VoiceTranscriptionVendor)[keyof typeof VoiceTranscriptionVendor];
61
19
  /**
62
20
  * @public
63
21
  * @enum
@@ -270,6 +228,95 @@ export declare const AgentVariableType: {
270
228
  * @public
271
229
  */
272
230
  export type AgentVariableType = (typeof AgentVariableType)[keyof typeof AgentVariableType];
231
+ /**
232
+ * @public
233
+ * @enum
234
+ */
235
+ export declare const AgentWorkflowEntryBehavior: {
236
+ /**
237
+ * Let the model decide from the conversation so far. The default.
238
+ */
239
+ readonly AUTO: "auto";
240
+ /**
241
+ * Wait for the user before saying anything.
242
+ */
243
+ readonly LISTEN_FIRST: "listen_first";
244
+ /**
245
+ * Say something on entering the step, before waiting for the user.
246
+ */
247
+ readonly SPEAK_FIRST: "speak_first";
248
+ };
249
+ /**
250
+ * @public
251
+ */
252
+ export type AgentWorkflowEntryBehavior = (typeof AgentWorkflowEntryBehavior)[keyof typeof AgentWorkflowEntryBehavior];
253
+ /**
254
+ * @public
255
+ * @enum
256
+ */
257
+ export declare const AgentWorkflowMessageButtonVariant: {
258
+ readonly CONTAINED: "contained";
259
+ readonly OUTLINED: "outlined";
260
+ };
261
+ /**
262
+ * @public
263
+ */
264
+ export type AgentWorkflowMessageButtonVariant = (typeof AgentWorkflowMessageButtonVariant)[keyof typeof AgentWorkflowMessageButtonVariant];
265
+ /**
266
+ * @public
267
+ * @enum
268
+ */
269
+ export declare const AgentWorkflowFailureKind: {
270
+ /**
271
+ * The session user was asked to approve the action (AgentToolApproval) and refused. Not an error — a decision, and usually the most interesting branch on the step.
272
+ */
273
+ readonly DENIED: "denied";
274
+ /**
275
+ * Anything the runtime could not classify as one of the above.
276
+ */
277
+ readonly ERROR: "error";
278
+ /**
279
+ * The arguments were rejected as invalid. On a step with `forceToolCall` this is usually what the model wrote; elsewhere it is a pinned field that no longer fits the schema.
280
+ */
281
+ readonly INVALID_INPUT: "invalid_input";
282
+ /**
283
+ * The target does not exist: an unknown record, an extension that is not routable.
284
+ */
285
+ readonly NOT_FOUND: "not_found";
286
+ /**
287
+ * Throttled by the provider. Distinct from `unavailable` because waiting is the right answer.
288
+ */
289
+ readonly RATE_LIMITED: "rate_limited";
290
+ /**
291
+ * The capability did not answer in time, or a `wait` ran out.
292
+ */
293
+ readonly TIMEOUT: "timeout";
294
+ /**
295
+ * Rejected for credentials or permissions: an expired connection, a grant the agent does not hold.
296
+ */
297
+ readonly UNAUTHORIZED: "unauthorized";
298
+ /**
299
+ * The far side is reachable but not working — a 5xx, a dropped connection, a destination that is busy or does not answer.
300
+ */
301
+ readonly UNAVAILABLE: "unavailable";
302
+ };
303
+ /**
304
+ * @public
305
+ */
306
+ export type AgentWorkflowFailureKind = (typeof AgentWorkflowFailureKind)[keyof typeof AgentWorkflowFailureKind];
307
+ /**
308
+ * @public
309
+ * @enum
310
+ */
311
+ export declare const AgentWorkflowLayout: {
312
+ readonly COMPACT: "compact";
313
+ readonly FLOW: "flow";
314
+ readonly STAGES: "stages";
315
+ };
316
+ /**
317
+ * @public
318
+ */
319
+ export type AgentWorkflowLayout = (typeof AgentWorkflowLayout)[keyof typeof AgentWorkflowLayout];
273
320
  /**
274
321
  * @public
275
322
  * @enum