16 agent tools, event handler for auto-linking, sync job every 15m. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
1.2 KiB
TypeScript
20 lines
1.2 KiB
TypeScript
import { z } from "zod";
|
|
export declare const executionWorkspaceStatusSchema: z.ZodEnum<["active", "idle", "in_review", "archived", "cleanup_failed"]>;
|
|
export declare const updateExecutionWorkspaceSchema: z.ZodObject<{
|
|
status: z.ZodOptional<z.ZodEnum<["active", "idle", "in_review", "archived", "cleanup_failed"]>>;
|
|
cleanupEligibleAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
cleanupReason: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
status?: "active" | "archived" | "idle" | "in_review" | "cleanup_failed" | undefined;
|
|
metadata?: Record<string, unknown> | null | undefined;
|
|
cleanupEligibleAt?: string | null | undefined;
|
|
cleanupReason?: string | null | undefined;
|
|
}, {
|
|
status?: "active" | "archived" | "idle" | "in_review" | "cleanup_failed" | undefined;
|
|
metadata?: Record<string, unknown> | null | undefined;
|
|
cleanupEligibleAt?: string | null | undefined;
|
|
cleanupReason?: string | null | undefined;
|
|
}>;
|
|
export type UpdateExecutionWorkspace = z.infer<typeof updateExecutionWorkspaceSchema>;
|
|
//# sourceMappingURL=execution-workspace.d.ts.map
|