@hydra-acp/cli 0.1.88 → 0.1.90
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 +332 -327
- package/dist/index.d.ts +10 -10
- package/dist/index.js +78 -78
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -2364,11 +2364,11 @@ declare const CompactionState: z.ZodObject<{
|
|
|
2364
2364
|
upstreamSessionId: z.ZodString;
|
|
2365
2365
|
pid: z.ZodNumber;
|
|
2366
2366
|
}, "strip", z.ZodTypeAny, {
|
|
2367
|
-
upstreamSessionId: string;
|
|
2368
2367
|
pid: number;
|
|
2369
|
-
}, {
|
|
2370
2368
|
upstreamSessionId: string;
|
|
2369
|
+
}, {
|
|
2371
2370
|
pid: number;
|
|
2371
|
+
upstreamSessionId: string;
|
|
2372
2372
|
}>>;
|
|
2373
2373
|
}, "strip", z.ZodTypeAny, {
|
|
2374
2374
|
status: "requested" | "running" | "swap_pending" | "swap_deferred" | "failed";
|
|
@@ -2377,8 +2377,8 @@ declare const CompactionState: z.ZodObject<{
|
|
|
2377
2377
|
attempts?: number | undefined;
|
|
2378
2378
|
lastError?: string | undefined;
|
|
2379
2379
|
worker?: {
|
|
2380
|
-
upstreamSessionId: string;
|
|
2381
2380
|
pid: number;
|
|
2381
|
+
upstreamSessionId: string;
|
|
2382
2382
|
} | undefined;
|
|
2383
2383
|
}, {
|
|
2384
2384
|
status: "requested" | "running" | "swap_pending" | "swap_deferred" | "failed";
|
|
@@ -2387,8 +2387,8 @@ declare const CompactionState: z.ZodObject<{
|
|
|
2387
2387
|
attempts?: number | undefined;
|
|
2388
2388
|
lastError?: string | undefined;
|
|
2389
2389
|
worker?: {
|
|
2390
|
-
upstreamSessionId: string;
|
|
2391
2390
|
pid: number;
|
|
2391
|
+
upstreamSessionId: string;
|
|
2392
2392
|
} | undefined;
|
|
2393
2393
|
}>;
|
|
2394
2394
|
type CompactionState = z.infer<typeof CompactionState>;
|
|
@@ -2494,11 +2494,11 @@ declare const SessionRecord: z.ZodObject<{
|
|
|
2494
2494
|
upstreamSessionId: z.ZodString;
|
|
2495
2495
|
pid: z.ZodNumber;
|
|
2496
2496
|
}, "strip", z.ZodTypeAny, {
|
|
2497
|
-
upstreamSessionId: string;
|
|
2498
2497
|
pid: number;
|
|
2499
|
-
}, {
|
|
2500
2498
|
upstreamSessionId: string;
|
|
2499
|
+
}, {
|
|
2501
2500
|
pid: number;
|
|
2501
|
+
upstreamSessionId: string;
|
|
2502
2502
|
}>>;
|
|
2503
2503
|
}, "strip", z.ZodTypeAny, {
|
|
2504
2504
|
status: "requested" | "running" | "swap_pending" | "swap_deferred" | "failed";
|
|
@@ -2507,8 +2507,8 @@ declare const SessionRecord: z.ZodObject<{
|
|
|
2507
2507
|
attempts?: number | undefined;
|
|
2508
2508
|
lastError?: string | undefined;
|
|
2509
2509
|
worker?: {
|
|
2510
|
-
upstreamSessionId: string;
|
|
2511
2510
|
pid: number;
|
|
2511
|
+
upstreamSessionId: string;
|
|
2512
2512
|
} | undefined;
|
|
2513
2513
|
}, {
|
|
2514
2514
|
status: "requested" | "running" | "swap_pending" | "swap_deferred" | "failed";
|
|
@@ -2517,8 +2517,8 @@ declare const SessionRecord: z.ZodObject<{
|
|
|
2517
2517
|
attempts?: number | undefined;
|
|
2518
2518
|
lastError?: string | undefined;
|
|
2519
2519
|
worker?: {
|
|
2520
|
-
upstreamSessionId: string;
|
|
2521
2520
|
pid: number;
|
|
2521
|
+
upstreamSessionId: string;
|
|
2522
2522
|
} | undefined;
|
|
2523
2523
|
}>>;
|
|
2524
2524
|
rollbackBreadcrumb: z.ZodOptional<z.ZodObject<{
|
|
@@ -2657,8 +2657,8 @@ declare const SessionRecord: z.ZodObject<{
|
|
|
2657
2657
|
attempts?: number | undefined;
|
|
2658
2658
|
lastError?: string | undefined;
|
|
2659
2659
|
worker?: {
|
|
2660
|
-
upstreamSessionId: string;
|
|
2661
2660
|
pid: number;
|
|
2661
|
+
upstreamSessionId: string;
|
|
2662
2662
|
} | undefined;
|
|
2663
2663
|
} | undefined;
|
|
2664
2664
|
currentMode?: string | undefined;
|
|
@@ -2733,8 +2733,8 @@ declare const SessionRecord: z.ZodObject<{
|
|
|
2733
2733
|
attempts?: number | undefined;
|
|
2734
2734
|
lastError?: string | undefined;
|
|
2735
2735
|
worker?: {
|
|
2736
|
-
upstreamSessionId: string;
|
|
2737
2736
|
pid: number;
|
|
2737
|
+
upstreamSessionId: string;
|
|
2738
2738
|
} | undefined;
|
|
2739
2739
|
} | undefined;
|
|
2740
2740
|
currentMode?: string | undefined;
|