@cline/core 0.0.54-nightly.1782962319 → 0.0.55
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.
- package/dist/extensions/tools/schemas.d.ts +3 -11
- package/dist/hub/daemon/entry.js +132 -132
- package/dist/hub/index.js +127 -127
- package/dist/index.d.ts +2 -1
- package/dist/index.js +109 -109
- package/dist/services/global-settings.d.ts +14 -0
- package/dist/services/telemetry/index.js +1 -1
- package/dist/types.d.ts +2 -1
- package/package.json +4 -4
|
@@ -97,23 +97,15 @@ export declare const StructuredCommandEntrySchema: z.ZodUnion<readonly [z.ZodStr
|
|
|
97
97
|
command: z.ZodString;
|
|
98
98
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
99
99
|
}, z.core.$strip>]>;
|
|
100
|
-
/**
|
|
101
|
-
* Schema for run_commands tool input.
|
|
102
|
-
*
|
|
103
|
-
* Supports both shell strings and direct structured `{ command, args }` entries
|
|
104
|
-
* on every platform. Plain strings are interpreted by the active shell;
|
|
105
|
-
* structured entries bypass shell parsing and execute the command directly.
|
|
106
|
-
*/
|
|
107
100
|
export declare const RunCommandsInputSchema: z.ZodObject<{
|
|
108
|
-
commands: z.ZodArray<z.
|
|
109
|
-
command: z.ZodString;
|
|
110
|
-
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
111
|
-
}, z.core.$strip>]>>;
|
|
101
|
+
commands: z.ZodArray<z.ZodString>;
|
|
112
102
|
}, z.core.$strip>;
|
|
113
103
|
/**
|
|
114
104
|
* Union schema for run_commands tool input. More flexible.
|
|
115
105
|
*/
|
|
116
106
|
export declare const RunCommandsInputUnionSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
107
|
+
commands: z.ZodArray<z.ZodString>;
|
|
108
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
117
109
|
commands: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
118
110
|
command: z.ZodString;
|
|
119
111
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|