@wildix/wim-wilma-client 0.0.5 → 0.0.6

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.
@@ -18,6 +18,7 @@ const se_CreateAgentCommand = async (input, context) => {
18
18
  let body;
19
19
  body = JSON.stringify((0, smithy_client_1.take)(input, {
20
20
  'capabilities': _ => (0, smithy_client_1._json)(_),
21
+ 'category': [],
21
22
  'instructions': [],
22
23
  'model': [],
23
24
  'name': [],
@@ -259,6 +260,7 @@ const se_UpdateAgentCommand = async (input, context) => {
259
260
  let body;
260
261
  body = JSON.stringify((0, smithy_client_1.take)(input, {
261
262
  'capabilities': _ => (0, smithy_client_1._json)(_),
263
+ 'category': [],
262
264
  'instructions': [],
263
265
  'model': [],
264
266
  'name': [],
@@ -15,6 +15,7 @@ export const se_CreateAgentCommand = async (input, context) => {
15
15
  let body;
16
16
  body = JSON.stringify(take(input, {
17
17
  'capabilities': _ => _json(_),
18
+ 'category': [],
18
19
  'instructions': [],
19
20
  'model': [],
20
21
  'name': [],
@@ -243,6 +244,7 @@ export const se_UpdateAgentCommand = async (input, context) => {
243
244
  let body;
244
245
  body = JSON.stringify(take(input, {
245
246
  'capabilities': _ => _json(_),
247
+ 'category': [],
246
248
  'instructions': [],
247
249
  'model': [],
248
250
  'name': [],
@@ -38,6 +38,7 @@ declare const CreateAgentCommand_base: {
38
38
  * name: "STRING_VALUE", // required
39
39
  * model: "STRING_VALUE",
40
40
  * instructions: "STRING_VALUE", // required
41
+ * category: "STRING_VALUE",
41
42
  * capabilities: [ // AgentCapabilitiesList
42
43
  * { // AgentCapability Union: only one key present
43
44
  * tool: { // AgentTool
@@ -76,6 +77,7 @@ declare const CreateAgentCommand_base: {
76
77
  * // name: "STRING_VALUE", // required
77
78
  * // model: "STRING_VALUE",
78
79
  * // instructions: "STRING_VALUE", // required
80
+ * // category: "STRING_VALUE",
79
81
  * // capabilities: [ // AgentCapabilitiesList
80
82
  * // { // AgentCapability Union: only one key present
81
83
  * // tool: { // AgentTool
@@ -45,6 +45,7 @@ declare const GetAgentCommand_base: {
45
45
  * // name: "STRING_VALUE", // required
46
46
  * // model: "STRING_VALUE",
47
47
  * // instructions: "STRING_VALUE", // required
48
+ * // category: "STRING_VALUE",
48
49
  * // capabilities: [ // AgentCapabilitiesList
49
50
  * // { // AgentCapability Union: only one key present
50
51
  * // tool: { // AgentTool
@@ -45,6 +45,7 @@ declare const ListAgentsCommand_base: {
45
45
  * // name: "STRING_VALUE", // required
46
46
  * // model: "STRING_VALUE",
47
47
  * // instructions: "STRING_VALUE", // required
48
+ * // category: "STRING_VALUE",
48
49
  * // capabilities: [ // AgentCapabilitiesList
49
50
  * // { // AgentCapability Union: only one key present
50
51
  * // tool: { // AgentTool
@@ -45,6 +45,7 @@ declare const ListAgentsNamesCommand_base: {
45
45
  * // id: "STRING_VALUE", // required
46
46
  * // name: "STRING_VALUE", // required
47
47
  * // model: "STRING_VALUE",
48
+ * // category: "STRING_VALUE",
48
49
  * // },
49
50
  * // ],
50
51
  * // };
@@ -38,6 +38,7 @@ declare const UpdateAgentCommand_base: {
38
38
  * name: "STRING_VALUE", // required
39
39
  * model: "STRING_VALUE",
40
40
  * instructions: "STRING_VALUE", // required
41
+ * category: "STRING_VALUE",
41
42
  * capabilities: [ // AgentCapabilitiesList
42
43
  * { // AgentCapability Union: only one key present
43
44
  * tool: { // AgentTool
@@ -77,6 +78,7 @@ declare const UpdateAgentCommand_base: {
77
78
  * // name: "STRING_VALUE", // required
78
79
  * // model: "STRING_VALUE",
79
80
  * // instructions: "STRING_VALUE", // required
81
+ * // category: "STRING_VALUE",
80
82
  * // capabilities: [ // AgentCapabilitiesList
81
83
  * // { // AgentCapability Union: only one key present
82
84
  * // tool: { // AgentTool
@@ -188,6 +188,11 @@ export interface Agent {
188
188
  */
189
189
  model?: string | undefined;
190
190
  instructions: string;
191
+ /**
192
+ * Category of the agent, e.g.: 'Support'
193
+ * @public
194
+ */
195
+ category?: string | undefined;
191
196
  capabilities?: (AgentCapability)[] | undefined;
192
197
  variables?: (AgentVariable)[] | undefined;
193
198
  id: string;
@@ -230,6 +235,11 @@ export interface AgentInfo {
230
235
  * @public
231
236
  */
232
237
  model?: string | undefined;
238
+ /**
239
+ * Category of the agent, e.g.: 'Support'
240
+ * @public
241
+ */
242
+ category?: string | undefined;
233
243
  }
234
244
  /**
235
245
  * @public
@@ -284,6 +294,11 @@ export interface CreateAgentInput {
284
294
  */
285
295
  model?: string | undefined;
286
296
  instructions: string;
297
+ /**
298
+ * Category of the agent, e.g.: 'Support'
299
+ * @public
300
+ */
301
+ category?: string | undefined;
287
302
  capabilities?: (AgentCapability)[] | undefined;
288
303
  variables?: (AgentVariable)[] | undefined;
289
304
  company?: string | undefined;
@@ -541,6 +556,11 @@ export interface UpdateAgentInput {
541
556
  */
542
557
  model?: string | undefined;
543
558
  instructions: string;
559
+ /**
560
+ * Category of the agent, e.g.: 'Support'
561
+ * @public
562
+ */
563
+ category?: string | undefined;
544
564
  capabilities?: (AgentCapability)[] | undefined;
545
565
  variables?: (AgentVariable)[] | undefined;
546
566
  company?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wim-wilma-client",
3
3
  "description": "@wildix/wim-wilma-client client",
4
- "version": "0.0.5",
4
+ "version": "0.0.6",
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",