@wildix/wilma-agents-client 1.0.32 → 1.0.33

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.
@@ -354,6 +354,7 @@ const _red = "redact";
354
354
  const _reg = "region";
355
355
  const _rep = "reply";
356
356
  const _s = "smithy.ts.sdk.synthetic.wildix.wilma.agents";
357
+ const _sC = "speechConfigured";
357
358
  const _sI = "snapshotId";
358
359
  const _sM = "startMessage";
359
360
  const _sT = "silenceTimeout";
@@ -582,8 +583,8 @@ exports.AgentHangupPipeline$ = [3, n2, _AHPg,
582
583
  ];
583
584
  exports.AgentInfo$ = [3, n2, _AI,
584
585
  0,
585
- [_i, _n, _st, _ch, _p, _ca, _as, _lV],
586
- [0, 0, 0, 64 | 0, 0, 0, () => exports.AssistantUiSettings$, 1], 4
586
+ [_i, _n, _st, _ch, _p, _ca, _sC, _as, _lV],
587
+ [0, 0, 0, 64 | 0, 0, 0, 2, () => exports.AssistantUiSettings$, 1], 4
587
588
  ];
588
589
  exports.AgentKnowledgeBase$ = [3, n2, _AKB,
589
590
  0,
@@ -348,6 +348,7 @@ const _red = "redact";
348
348
  const _reg = "region";
349
349
  const _rep = "reply";
350
350
  const _s = "smithy.ts.sdk.synthetic.wildix.wilma.agents";
351
+ const _sC = "speechConfigured";
351
352
  const _sI = "snapshotId";
352
353
  const _sM = "startMessage";
353
354
  const _sT = "silenceTimeout";
@@ -576,8 +577,8 @@ export var AgentHangupPipeline$ = [3, n2, _AHPg,
576
577
  ];
577
578
  export var AgentInfo$ = [3, n2, _AI,
578
579
  0,
579
- [_i, _n, _st, _ch, _p, _ca, _as, _lV],
580
- [0, 0, 0, 64 | 0, 0, 0, () => AssistantUiSettings$, 1], 4
580
+ [_i, _n, _st, _ch, _p, _ca, _sC, _as, _lV],
581
+ [0, 0, 0, 64 | 0, 0, 0, 2, () => AssistantUiSettings$, 1], 4
581
582
  ];
582
583
  export var AgentKnowledgeBase$ = [3, n2, _AKB,
583
584
  0,
@@ -53,6 +53,7 @@ declare const ListAgentsNamesCommand_base: {
53
53
  * // channels: [ // ChannelTypeList // required
54
54
  * // "voice" || "chat" || "assistant" || "workflow",
55
55
  * // ],
56
+ * // speechConfigured: true || false,
56
57
  * // assistant: { // AssistantUiSettings
57
58
  * // welcome: { // AssistantWelcomeSettings
58
59
  * // title: "STRING_VALUE",
@@ -3372,6 +3372,11 @@ export interface AgentInfo {
3372
3372
  * @public
3373
3373
  */
3374
3374
  channels: ChannelType[];
3375
+ /**
3376
+ * Whether the voice channel has at least one configured speech language. A dialplan form partitions its application lists on this, so the answer has to travel with the list rather than cost one lookup per entry — it is the reason this member exists and the reason removing it broke that form. Absent is read as false.
3377
+ * @public
3378
+ */
3379
+ speechConfigured?: boolean | undefined;
3375
3380
  /**
3376
3381
  * How the agent presents itself in the assistant UI: welcome message, quick commands and composer placeholder, copied from `channels.assistant.ui`. Absent when the agent does not serve the assistant channel, or when its author configured no presentation and the client should use its own defaults.
3377
3382
  * @public
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.32",
4
+ "version": "1.0.33",
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",