@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.
@@ -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.ZodUnion<readonly [z.ZodString, z.ZodObject<{
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>>;