@hydra-acp/cli 0.1.77 → 0.1.79
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/cli.js +292 -276
- package/dist/index.d.ts +5 -0
- package/dist/index.js +56 -56
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -185,6 +185,7 @@ declare const HydraConfig: z.ZodObject<{
|
|
|
185
185
|
mouse: z.ZodDefault<z.ZodBoolean>;
|
|
186
186
|
inAppSelection: z.ZodOptional<z.ZodBoolean>;
|
|
187
187
|
selectionClipboard: z.ZodDefault<z.ZodEnum<["primary", "clipboard", "both"]>>;
|
|
188
|
+
openFileCommand: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
188
189
|
logMaxBytes: z.ZodDefault<z.ZodNumber>;
|
|
189
190
|
cwdColumnMaxWidth: z.ZodDefault<z.ZodNumber>;
|
|
190
191
|
progressIndicator: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -216,6 +217,7 @@ declare const HydraConfig: z.ZodObject<{
|
|
|
216
217
|
maxPlanItems: number;
|
|
217
218
|
showFileUpdates: "diff" | "none" | "edit";
|
|
218
219
|
inAppSelection?: boolean | undefined;
|
|
220
|
+
openFileCommand?: string | string[] | undefined;
|
|
219
221
|
sessionColumns?: ["agent" | "model" | "cwd" | "session" | "upstream" | "state" | "age" | "title" | "host" | "cost", ...("agent" | "model" | "cwd" | "session" | "upstream" | "state" | "age" | "title" | "host" | "cost")[]] | undefined;
|
|
220
222
|
}, {
|
|
221
223
|
repaintThrottleMs?: number | undefined;
|
|
@@ -223,6 +225,7 @@ declare const HydraConfig: z.ZodObject<{
|
|
|
223
225
|
mouse?: boolean | undefined;
|
|
224
226
|
inAppSelection?: boolean | undefined;
|
|
225
227
|
selectionClipboard?: "primary" | "clipboard" | "both" | undefined;
|
|
228
|
+
openFileCommand?: string | string[] | undefined;
|
|
226
229
|
logMaxBytes?: number | undefined;
|
|
227
230
|
cwdColumnMaxWidth?: number | undefined;
|
|
228
231
|
progressIndicator?: boolean | undefined;
|
|
@@ -256,6 +259,7 @@ declare const HydraConfig: z.ZodObject<{
|
|
|
256
259
|
maxPlanItems: number;
|
|
257
260
|
showFileUpdates: "diff" | "none" | "edit";
|
|
258
261
|
inAppSelection?: boolean | undefined;
|
|
262
|
+
openFileCommand?: string | string[] | undefined;
|
|
259
263
|
sessionColumns?: ["agent" | "model" | "cwd" | "session" | "upstream" | "state" | "age" | "title" | "host" | "cost", ...("agent" | "model" | "cwd" | "session" | "upstream" | "state" | "age" | "title" | "host" | "cost")[]] | undefined;
|
|
260
264
|
};
|
|
261
265
|
daemon: {
|
|
@@ -318,6 +322,7 @@ declare const HydraConfig: z.ZodObject<{
|
|
|
318
322
|
mouse?: boolean | undefined;
|
|
319
323
|
inAppSelection?: boolean | undefined;
|
|
320
324
|
selectionClipboard?: "primary" | "clipboard" | "both" | undefined;
|
|
325
|
+
openFileCommand?: string | string[] | undefined;
|
|
321
326
|
logMaxBytes?: number | undefined;
|
|
322
327
|
cwdColumnMaxWidth?: number | undefined;
|
|
323
328
|
progressIndicator?: boolean | undefined;
|