Initial commit: Paperclip plugin for Legal AI integration
16 agent tools, event handler for auto-linking, sync job every 15m. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
20
node_modules/@paperclipai/shared/dist/validators/execution-workspace.d.ts
generated
vendored
Normal file
20
node_modules/@paperclipai/shared/dist/validators/execution-workspace.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
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
|
||||
Reference in New Issue
Block a user