@wildix/wim-tools-client 0.0.22 → 0.0.23

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.
@@ -44,6 +44,7 @@ declare const CreateToolCommand_base: {
44
44
  * { // ToolVariable
45
45
  * name: "STRING_VALUE", // required
46
46
  * type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
47
+ * optional: true || false, // required
47
48
  * },
48
49
  * ],
49
50
  * },
@@ -134,6 +135,7 @@ declare const CreateToolCommand_base: {
134
135
  * // { // ToolVariable
135
136
  * // name: "STRING_VALUE", // required
136
137
  * // type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
138
+ * // optional: true || false, // required
137
139
  * // },
138
140
  * // ],
139
141
  * // },
@@ -52,6 +52,7 @@ declare const DescribeToolsCommand_base: {
52
52
  * // { // ToolVariable
53
53
  * // name: "STRING_VALUE", // required
54
54
  * // type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
55
+ * // optional: true || false, // required
55
56
  * // },
56
57
  * // ],
57
58
  * // },
@@ -52,6 +52,7 @@ declare const GetToolCommand_base: {
52
52
  * // { // ToolVariable
53
53
  * // name: "STRING_VALUE", // required
54
54
  * // type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
55
+ * // optional: true || false, // required
55
56
  * // },
56
57
  * // ],
57
58
  * // },
@@ -52,6 +52,7 @@ declare const ListToolsCommand_base: {
52
52
  * // { // ToolVariable
53
53
  * // name: "STRING_VALUE", // required
54
54
  * // type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
55
+ * // optional: true || false, // required
55
56
  * // },
56
57
  * // ],
57
58
  * // },
@@ -45,6 +45,7 @@ declare const UpdateToolCommand_base: {
45
45
  * { // ToolVariable
46
46
  * name: "STRING_VALUE", // required
47
47
  * type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
48
+ * optional: true || false, // required
48
49
  * },
49
50
  * ],
50
51
  * },
@@ -135,6 +136,7 @@ declare const UpdateToolCommand_base: {
135
136
  * // { // ToolVariable
136
137
  * // name: "STRING_VALUE", // required
137
138
  * // type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
139
+ * // optional: true || false, // required
138
140
  * // },
139
141
  * // ],
140
142
  * // },
@@ -465,6 +465,11 @@ export interface ToolVariable {
465
465
  * @public
466
466
  */
467
467
  type: ToolVariableType;
468
+ /**
469
+ * Whether the variable is optional
470
+ * @public
471
+ */
472
+ optional: boolean;
468
473
  }
469
474
  /**
470
475
  * @public
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.22",
4
+ "version": "0.0.23",
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",