@hydra-acp/cli 0.1.93 → 0.1.94
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 +315 -305
- package/dist/index.d.ts +4 -3
- package/dist/index.js +49 -48
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1814,7 +1814,7 @@ declare const SessionListEntry: z.ZodObject<{
|
|
|
1814
1814
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
1815
1815
|
updatedAt: z.ZodString;
|
|
1816
1816
|
attachedClients: z.ZodNumber;
|
|
1817
|
-
status: z.ZodDefault<z.ZodEnum<["
|
|
1817
|
+
status: z.ZodDefault<z.ZodEnum<["warm", "cold"]>>;
|
|
1818
1818
|
busy: z.ZodDefault<z.ZodBoolean>;
|
|
1819
1819
|
awaitingInput: z.ZodDefault<z.ZodBoolean>;
|
|
1820
1820
|
compactionState: z.ZodOptional<z.ZodAny>;
|
|
@@ -1823,7 +1823,7 @@ declare const SessionListEntry: z.ZodObject<{
|
|
|
1823
1823
|
}, "strip", z.ZodTypeAny, {
|
|
1824
1824
|
sessionId: string;
|
|
1825
1825
|
cwd: string;
|
|
1826
|
-
status: "
|
|
1826
|
+
status: "warm" | "cold";
|
|
1827
1827
|
updatedAt: string;
|
|
1828
1828
|
attachedClients: number;
|
|
1829
1829
|
busy: boolean;
|
|
@@ -1857,7 +1857,7 @@ declare const SessionListEntry: z.ZodObject<{
|
|
|
1857
1857
|
cwd: string;
|
|
1858
1858
|
updatedAt: string;
|
|
1859
1859
|
attachedClients: number;
|
|
1860
|
-
status?: "
|
|
1860
|
+
status?: "warm" | "cold" | undefined;
|
|
1861
1861
|
title?: string | undefined;
|
|
1862
1862
|
_meta?: Record<string, unknown> | undefined;
|
|
1863
1863
|
upstreamSessionId?: string | undefined;
|
|
@@ -2118,6 +2118,7 @@ declare class AgentInstance {
|
|
|
2118
2118
|
private constructor();
|
|
2119
2119
|
private writeLog;
|
|
2120
2120
|
private formatFailure;
|
|
2121
|
+
stderrTailText(): string;
|
|
2121
2122
|
static spawn(opts: AgentInstanceOptions): AgentInstance;
|
|
2122
2123
|
onExit(handler: (code: number | null, signal: NodeJS.Signals | null) => void): void;
|
|
2123
2124
|
isAlive(): boolean;
|