@wildix/wim-wilma-client 0.0.6 → 0.0.7

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.
@@ -51,7 +51,9 @@ declare const CreateAgentCommand_base: {
51
51
  * guided: { // AgentToolVariableGuidedHandler
52
52
  * description: "STRING_VALUE", // required
53
53
  * },
54
- * predefined: {},
54
+ * predefined: { // AgentToolVariablePredefinedHandler
55
+ * description: "STRING_VALUE", // required
56
+ * },
55
57
  * },
56
58
  * },
57
59
  * ],
@@ -90,7 +92,9 @@ declare const CreateAgentCommand_base: {
90
92
  * // guided: { // AgentToolVariableGuidedHandler
91
93
  * // description: "STRING_VALUE", // required
92
94
  * // },
93
- * // predefined: {},
95
+ * // predefined: { // AgentToolVariablePredefinedHandler
96
+ * // description: "STRING_VALUE", // required
97
+ * // },
94
98
  * // },
95
99
  * // },
96
100
  * // ],
@@ -58,7 +58,9 @@ declare const GetAgentCommand_base: {
58
58
  * // guided: { // AgentToolVariableGuidedHandler
59
59
  * // description: "STRING_VALUE", // required
60
60
  * // },
61
- * // predefined: {},
61
+ * // predefined: { // AgentToolVariablePredefinedHandler
62
+ * // description: "STRING_VALUE", // required
63
+ * // },
62
64
  * // },
63
65
  * // },
64
66
  * // ],
@@ -58,7 +58,9 @@ declare const ListAgentsCommand_base: {
58
58
  * // guided: { // AgentToolVariableGuidedHandler
59
59
  * // description: "STRING_VALUE", // required
60
60
  * // },
61
- * // predefined: {},
61
+ * // predefined: { // AgentToolVariablePredefinedHandler
62
+ * // description: "STRING_VALUE", // required
63
+ * // },
62
64
  * // },
63
65
  * // },
64
66
  * // ],
@@ -51,7 +51,9 @@ declare const UpdateAgentCommand_base: {
51
51
  * guided: { // AgentToolVariableGuidedHandler
52
52
  * description: "STRING_VALUE", // required
53
53
  * },
54
- * predefined: {},
54
+ * predefined: { // AgentToolVariablePredefinedHandler
55
+ * description: "STRING_VALUE", // required
56
+ * },
55
57
  * },
56
58
  * },
57
59
  * ],
@@ -91,7 +93,9 @@ declare const UpdateAgentCommand_base: {
91
93
  * // guided: { // AgentToolVariableGuidedHandler
92
94
  * // description: "STRING_VALUE", // required
93
95
  * // },
94
- * // predefined: {},
96
+ * // predefined: { // AgentToolVariablePredefinedHandler
97
+ * // description: "STRING_VALUE", // required
98
+ * // },
95
99
  * // },
96
100
  * // },
97
101
  * // ],
@@ -55,6 +55,7 @@ export interface AgentToolVariableGuidedHandler {
55
55
  * @public
56
56
  */
57
57
  export interface AgentToolVariablePredefinedHandler {
58
+ description: string;
58
59
  }
59
60
  /**
60
61
  * @public
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.6",
4
+ "version": "0.0.7",
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",