@wildix/wim-tools-client 0.0.13 → 0.0.14

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.
@@ -45,7 +45,6 @@ declare const CreateToolCommand_base: {
45
45
  * { // ToolVariable
46
46
  * name: "STRING_VALUE", // required
47
47
  * type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
48
- * description: "STRING_VALUE", // required
49
48
  * required: true || false,
50
49
  * },
51
50
  * ],
@@ -152,7 +151,6 @@ declare const CreateToolCommand_base: {
152
151
  * // { // ToolVariable
153
152
  * // name: "STRING_VALUE", // required
154
153
  * // type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
155
- * // description: "STRING_VALUE", // required
156
154
  * // required: true || false,
157
155
  * // },
158
156
  * // ],
@@ -53,7 +53,6 @@ declare const DescribeToolsCommand_base: {
53
53
  * // { // ToolVariable
54
54
  * // name: "STRING_VALUE", // required
55
55
  * // type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
56
- * // description: "STRING_VALUE", // required
57
56
  * // required: true || false,
58
57
  * // },
59
58
  * // ],
@@ -53,7 +53,6 @@ declare const GetToolCommand_base: {
53
53
  * // { // ToolVariable
54
54
  * // name: "STRING_VALUE", // required
55
55
  * // type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
56
- * // description: "STRING_VALUE", // required
57
56
  * // required: true || false,
58
57
  * // },
59
58
  * // ],
@@ -53,7 +53,6 @@ declare const ListToolsCommand_base: {
53
53
  * // { // ToolVariable
54
54
  * // name: "STRING_VALUE", // required
55
55
  * // type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
56
- * // description: "STRING_VALUE", // required
57
56
  * // required: true || false,
58
57
  * // },
59
58
  * // ],
@@ -46,7 +46,6 @@ declare const UpdateToolCommand_base: {
46
46
  * { // ToolVariable
47
47
  * name: "STRING_VALUE", // required
48
48
  * type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
49
- * description: "STRING_VALUE", // required
50
49
  * required: true || false,
51
50
  * },
52
51
  * ],
@@ -153,7 +152,6 @@ declare const UpdateToolCommand_base: {
153
152
  * // { // ToolVariable
154
153
  * // name: "STRING_VALUE", // required
155
154
  * // type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
156
- * // description: "STRING_VALUE", // required
157
155
  * // required: true || false,
158
156
  * // },
159
157
  * // ],
@@ -363,7 +363,6 @@ export type ToolVariableType = typeof ToolVariableType[keyof typeof ToolVariable
363
363
  export interface ToolVariable {
364
364
  name: string;
365
365
  type: ToolVariableType;
366
- description: string;
367
366
  required?: boolean | undefined;
368
367
  }
369
368
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wim-tools-client",
3
3
  "description": "@wildix/wim-tools-client client",
4
- "version": "0.0.13",
4
+ "version": "0.0.14",
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",