@wildix/wilma-agents-client 1.0.33 → 1.0.35

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.
@@ -355,7 +355,8 @@ const _reg = "region";
355
355
  const _rep = "reply";
356
356
  const _s = "smithy.ts.sdk.synthetic.wildix.wilma.agents";
357
357
  const _sC = "speechConfigured";
358
- const _sI = "snapshotId";
358
+ const _sI = "skillIds";
359
+ const _sIn = "snapshotId";
359
360
  const _sM = "startMessage";
360
361
  const _sT = "silenceTimeout";
361
362
  const _sV = "skillVersion";
@@ -583,8 +584,8 @@ exports.AgentHangupPipeline$ = [3, n2, _AHPg,
583
584
  ];
584
585
  exports.AgentInfo$ = [3, n2, _AI,
585
586
  0,
586
- [_i, _n, _st, _ch, _p, _ca, _sC, _as, _lV],
587
- [0, 0, 0, 64 | 0, 0, 0, 2, () => exports.AssistantUiSettings$, 1], 4
587
+ [_i, _n, _st, _ch, _p, _ca, _sC, _sI, _as, _lV],
588
+ [0, 0, 0, 64 | 0, 0, 0, 2, 64 | 0, () => exports.AssistantUiSettings$, 1], 4
588
589
  ];
589
590
  exports.AgentKnowledgeBase$ = [3, n2, _AKB,
590
591
  0,
@@ -598,7 +599,7 @@ exports.AgentSettings$ = [3, n2, _AS,
598
599
  ];
599
600
  exports.AgentSnapshotSandboxOptions$ = [3, n2, _ASSO,
600
601
  0,
601
- [_sI, _ne, _aD, _siz],
602
+ [_sIn, _ne, _aD, _siz],
602
603
  [0, 0, 64 | 0, 0], 1
603
604
  ];
604
605
  exports.AgentSqsEngine$ = [3, n2, _ASE,
@@ -1186,6 +1187,7 @@ var AgentGuardrailExamplesList = 64 | 0;
1186
1187
  var AgentsInfoList = [1, n2, _AIL,
1187
1188
  0, () => exports.AgentInfo$
1188
1189
  ];
1190
+ var AgentSkillIdsList = 64 | 0;
1189
1191
  var AgentsList = [1, n2, _AL,
1190
1192
  0, () => exports.Agent$
1191
1193
  ];
@@ -349,7 +349,8 @@ const _reg = "region";
349
349
  const _rep = "reply";
350
350
  const _s = "smithy.ts.sdk.synthetic.wildix.wilma.agents";
351
351
  const _sC = "speechConfigured";
352
- const _sI = "snapshotId";
352
+ const _sI = "skillIds";
353
+ const _sIn = "snapshotId";
353
354
  const _sM = "startMessage";
354
355
  const _sT = "silenceTimeout";
355
356
  const _sV = "skillVersion";
@@ -577,8 +578,8 @@ export var AgentHangupPipeline$ = [3, n2, _AHPg,
577
578
  ];
578
579
  export var AgentInfo$ = [3, n2, _AI,
579
580
  0,
580
- [_i, _n, _st, _ch, _p, _ca, _sC, _as, _lV],
581
- [0, 0, 0, 64 | 0, 0, 0, 2, () => AssistantUiSettings$, 1], 4
581
+ [_i, _n, _st, _ch, _p, _ca, _sC, _sI, _as, _lV],
582
+ [0, 0, 0, 64 | 0, 0, 0, 2, 64 | 0, () => AssistantUiSettings$, 1], 4
582
583
  ];
583
584
  export var AgentKnowledgeBase$ = [3, n2, _AKB,
584
585
  0,
@@ -592,7 +593,7 @@ export var AgentSettings$ = [3, n2, _AS,
592
593
  ];
593
594
  export var AgentSnapshotSandboxOptions$ = [3, n2, _ASSO,
594
595
  0,
595
- [_sI, _ne, _aD, _siz],
596
+ [_sIn, _ne, _aD, _siz],
596
597
  [0, 0, 64 | 0, 0], 1
597
598
  ];
598
599
  export var AgentSqsEngine$ = [3, n2, _ASE,
@@ -1180,6 +1181,7 @@ var AgentGuardrailExamplesList = 64 | 0;
1180
1181
  var AgentsInfoList = [1, n2, _AIL,
1181
1182
  0, () => AgentInfo$
1182
1183
  ];
1184
+ var AgentSkillIdsList = 64 | 0;
1183
1185
  var AgentsList = [1, n2, _AL,
1184
1186
  0, () => Agent$
1185
1187
  ];
@@ -54,6 +54,9 @@ declare const ListAgentsNamesCommand_base: {
54
54
  * // "voice" || "chat" || "assistant" || "workflow",
55
55
  * // ],
56
56
  * // speechConfigured: true || false,
57
+ * // skillIds: [ // AgentSkillIdsList
58
+ * // "STRING_VALUE",
59
+ * // ],
57
60
  * // assistant: { // AssistantUiSettings
58
61
  * // welcome: { // AssistantWelcomeSettings
59
62
  * // title: "STRING_VALUE",
@@ -3377,6 +3377,11 @@ export interface AgentInfo {
3377
3377
  * @public
3378
3378
  */
3379
3379
  speechConfigured?: boolean | undefined;
3380
+ /**
3381
+ * Ids of the skills attached to this agent. Always active in this agent's sessions; user skill preferences cannot disable them.
3382
+ * @public
3383
+ */
3384
+ skillIds?: string[] | undefined;
3380
3385
  /**
3381
3386
  * 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.
3382
3387
  * @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.33",
4
+ "version": "1.0.35",
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
+ }