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:
2026-04-04 08:03:43 +00:00
commit 587a2a76ca
1183 changed files with 629235 additions and 0 deletions

View File

@@ -0,0 +1,427 @@
import { z } from "zod";
export declare const issueExecutionWorkspaceSettingsSchema: z.ZodObject<{
mode: z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>;
workspaceStrategy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
type: z.ZodOptional<z.ZodEnum<["project_primary", "git_worktree", "adapter_managed", "cloud_sandbox"]>>;
baseRef: z.ZodNullable<z.ZodOptional<z.ZodString>>;
branchTemplate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
worktreeParentDir: z.ZodNullable<z.ZodOptional<z.ZodString>>;
provisionCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
teardownCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
}, "strict", z.ZodTypeAny, {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
}, {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
}>>>;
workspaceRuntime: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
}, "strict", z.ZodTypeAny, {
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
workspaceStrategy?: {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
} | null | undefined;
workspaceRuntime?: Record<string, unknown> | null | undefined;
}, {
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
workspaceStrategy?: {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
} | null | undefined;
workspaceRuntime?: Record<string, unknown> | null | undefined;
}>;
export declare const issueAssigneeAdapterOverridesSchema: z.ZodObject<{
adapterConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
useProjectWorkspace: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
adapterConfig?: Record<string, unknown> | undefined;
useProjectWorkspace?: boolean | undefined;
}, {
adapterConfig?: Record<string, unknown> | undefined;
useProjectWorkspace?: boolean | undefined;
}>;
export declare const createIssueSchema: z.ZodObject<{
projectId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
projectWorkspaceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
goalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
parentId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
title: z.ZodString;
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<["backlog", "todo", "in_progress", "in_review", "done", "blocked", "cancelled"]>>>;
priority: z.ZodDefault<z.ZodOptional<z.ZodEnum<["critical", "high", "medium", "low"]>>>;
assigneeAgentId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
assigneeUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
requestDepth: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
billingCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
assigneeAdapterOverrides: z.ZodNullable<z.ZodOptional<z.ZodObject<{
adapterConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
useProjectWorkspace: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
adapterConfig?: Record<string, unknown> | undefined;
useProjectWorkspace?: boolean | undefined;
}, {
adapterConfig?: Record<string, unknown> | undefined;
useProjectWorkspace?: boolean | undefined;
}>>>;
executionWorkspaceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
executionWorkspacePreference: z.ZodNullable<z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>>;
executionWorkspaceSettings: z.ZodNullable<z.ZodOptional<z.ZodObject<{
mode: z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>;
workspaceStrategy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
type: z.ZodOptional<z.ZodEnum<["project_primary", "git_worktree", "adapter_managed", "cloud_sandbox"]>>;
baseRef: z.ZodNullable<z.ZodOptional<z.ZodString>>;
branchTemplate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
worktreeParentDir: z.ZodNullable<z.ZodOptional<z.ZodString>>;
provisionCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
teardownCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
}, "strict", z.ZodTypeAny, {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
}, {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
}>>>;
workspaceRuntime: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
}, "strict", z.ZodTypeAny, {
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
workspaceStrategy?: {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
} | null | undefined;
workspaceRuntime?: Record<string, unknown> | null | undefined;
}, {
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
workspaceStrategy?: {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
} | null | undefined;
workspaceRuntime?: Record<string, unknown> | null | undefined;
}>>>;
labelIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
}, "strip", z.ZodTypeAny, {
status: "backlog" | "todo" | "in_progress" | "in_review" | "done" | "blocked" | "cancelled";
title: string;
priority: "critical" | "high" | "medium" | "low";
requestDepth: number;
description?: string | null | undefined;
projectId?: string | null | undefined;
labelIds?: string[] | undefined;
billingCode?: string | null | undefined;
executionWorkspaceSettings?: {
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
workspaceStrategy?: {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
} | null | undefined;
workspaceRuntime?: Record<string, unknown> | null | undefined;
} | null | undefined;
assigneeAdapterOverrides?: {
adapterConfig?: Record<string, unknown> | undefined;
useProjectWorkspace?: boolean | undefined;
} | null | undefined;
goalId?: string | null | undefined;
projectWorkspaceId?: string | null | undefined;
parentId?: string | null | undefined;
assigneeAgentId?: string | null | undefined;
assigneeUserId?: string | null | undefined;
executionWorkspaceId?: string | null | undefined;
executionWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
}, {
title: string;
status?: "backlog" | "todo" | "in_progress" | "in_review" | "done" | "blocked" | "cancelled" | undefined;
description?: string | null | undefined;
projectId?: string | null | undefined;
priority?: "critical" | "high" | "medium" | "low" | undefined;
labelIds?: string[] | undefined;
billingCode?: string | null | undefined;
executionWorkspaceSettings?: {
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
workspaceStrategy?: {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
} | null | undefined;
workspaceRuntime?: Record<string, unknown> | null | undefined;
} | null | undefined;
assigneeAdapterOverrides?: {
adapterConfig?: Record<string, unknown> | undefined;
useProjectWorkspace?: boolean | undefined;
} | null | undefined;
goalId?: string | null | undefined;
projectWorkspaceId?: string | null | undefined;
parentId?: string | null | undefined;
assigneeAgentId?: string | null | undefined;
assigneeUserId?: string | null | undefined;
requestDepth?: number | undefined;
executionWorkspaceId?: string | null | undefined;
executionWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
}>;
export type CreateIssue = z.infer<typeof createIssueSchema>;
export declare const createIssueLabelSchema: z.ZodObject<{
name: z.ZodString;
color: z.ZodString;
}, "strip", z.ZodTypeAny, {
name: string;
color: string;
}, {
name: string;
color: string;
}>;
export type CreateIssueLabel = z.infer<typeof createIssueLabelSchema>;
export declare const updateIssueSchema: z.ZodObject<{
projectId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
projectWorkspaceId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
goalId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
parentId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
title: z.ZodOptional<z.ZodString>;
description: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
status: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodEnum<["backlog", "todo", "in_progress", "in_review", "done", "blocked", "cancelled"]>>>>;
priority: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodEnum<["critical", "high", "medium", "low"]>>>>;
assigneeAgentId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
assigneeUserId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
requestDepth: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNumber>>>;
billingCode: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
assigneeAdapterOverrides: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
adapterConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
useProjectWorkspace: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
adapterConfig?: Record<string, unknown> | undefined;
useProjectWorkspace?: boolean | undefined;
}, {
adapterConfig?: Record<string, unknown> | undefined;
useProjectWorkspace?: boolean | undefined;
}>>>>;
executionWorkspaceId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
executionWorkspacePreference: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>>>;
executionWorkspaceSettings: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
mode: z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>;
workspaceStrategy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
type: z.ZodOptional<z.ZodEnum<["project_primary", "git_worktree", "adapter_managed", "cloud_sandbox"]>>;
baseRef: z.ZodNullable<z.ZodOptional<z.ZodString>>;
branchTemplate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
worktreeParentDir: z.ZodNullable<z.ZodOptional<z.ZodString>>;
provisionCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
teardownCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
}, "strict", z.ZodTypeAny, {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
}, {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
}>>>;
workspaceRuntime: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
}, "strict", z.ZodTypeAny, {
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
workspaceStrategy?: {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
} | null | undefined;
workspaceRuntime?: Record<string, unknown> | null | undefined;
}, {
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
workspaceStrategy?: {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
} | null | undefined;
workspaceRuntime?: Record<string, unknown> | null | undefined;
}>>>>;
labelIds: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
} & {
comment: z.ZodOptional<z.ZodString>;
reopen: z.ZodOptional<z.ZodBoolean>;
hiddenAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
}, "strip", z.ZodTypeAny, {
comment?: string | undefined;
status?: "backlog" | "todo" | "in_progress" | "in_review" | "done" | "blocked" | "cancelled" | undefined;
description?: string | null | undefined;
projectId?: string | null | undefined;
title?: string | undefined;
priority?: "critical" | "high" | "medium" | "low" | undefined;
labelIds?: string[] | undefined;
billingCode?: string | null | undefined;
executionWorkspaceSettings?: {
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
workspaceStrategy?: {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
} | null | undefined;
workspaceRuntime?: Record<string, unknown> | null | undefined;
} | null | undefined;
assigneeAdapterOverrides?: {
adapterConfig?: Record<string, unknown> | undefined;
useProjectWorkspace?: boolean | undefined;
} | null | undefined;
goalId?: string | null | undefined;
projectWorkspaceId?: string | null | undefined;
parentId?: string | null | undefined;
assigneeAgentId?: string | null | undefined;
assigneeUserId?: string | null | undefined;
requestDepth?: number | undefined;
executionWorkspaceId?: string | null | undefined;
executionWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
reopen?: boolean | undefined;
hiddenAt?: string | null | undefined;
}, {
comment?: string | undefined;
status?: "backlog" | "todo" | "in_progress" | "in_review" | "done" | "blocked" | "cancelled" | undefined;
description?: string | null | undefined;
projectId?: string | null | undefined;
title?: string | undefined;
priority?: "critical" | "high" | "medium" | "low" | undefined;
labelIds?: string[] | undefined;
billingCode?: string | null | undefined;
executionWorkspaceSettings?: {
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
workspaceStrategy?: {
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
baseRef?: string | null | undefined;
branchTemplate?: string | null | undefined;
worktreeParentDir?: string | null | undefined;
provisionCommand?: string | null | undefined;
teardownCommand?: string | null | undefined;
} | null | undefined;
workspaceRuntime?: Record<string, unknown> | null | undefined;
} | null | undefined;
assigneeAdapterOverrides?: {
adapterConfig?: Record<string, unknown> | undefined;
useProjectWorkspace?: boolean | undefined;
} | null | undefined;
goalId?: string | null | undefined;
projectWorkspaceId?: string | null | undefined;
parentId?: string | null | undefined;
assigneeAgentId?: string | null | undefined;
assigneeUserId?: string | null | undefined;
requestDepth?: number | undefined;
executionWorkspaceId?: string | null | undefined;
executionWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
reopen?: boolean | undefined;
hiddenAt?: string | null | undefined;
}>;
export type UpdateIssue = z.infer<typeof updateIssueSchema>;
export type IssueExecutionWorkspaceSettings = z.infer<typeof issueExecutionWorkspaceSettingsSchema>;
export declare const checkoutIssueSchema: z.ZodObject<{
agentId: z.ZodString;
expectedStatuses: z.ZodArray<z.ZodEnum<["backlog", "todo", "in_progress", "in_review", "done", "blocked", "cancelled"]>, "atleastone">;
}, "strip", z.ZodTypeAny, {
agentId: string;
expectedStatuses: ["backlog" | "todo" | "in_progress" | "in_review" | "done" | "blocked" | "cancelled", ...("backlog" | "todo" | "in_progress" | "in_review" | "done" | "blocked" | "cancelled")[]];
}, {
agentId: string;
expectedStatuses: ["backlog" | "todo" | "in_progress" | "in_review" | "done" | "blocked" | "cancelled", ...("backlog" | "todo" | "in_progress" | "in_review" | "done" | "blocked" | "cancelled")[]];
}>;
export type CheckoutIssue = z.infer<typeof checkoutIssueSchema>;
export declare const addIssueCommentSchema: z.ZodObject<{
body: z.ZodString;
reopen: z.ZodOptional<z.ZodBoolean>;
interrupt: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
body: string;
reopen?: boolean | undefined;
interrupt?: boolean | undefined;
}, {
body: string;
reopen?: boolean | undefined;
interrupt?: boolean | undefined;
}>;
export type AddIssueComment = z.infer<typeof addIssueCommentSchema>;
export declare const linkIssueApprovalSchema: z.ZodObject<{
approvalId: z.ZodString;
}, "strip", z.ZodTypeAny, {
approvalId: string;
}, {
approvalId: string;
}>;
export type LinkIssueApproval = z.infer<typeof linkIssueApprovalSchema>;
export declare const createIssueAttachmentMetadataSchema: z.ZodObject<{
issueCommentId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
}, "strip", z.ZodTypeAny, {
issueCommentId?: string | null | undefined;
}, {
issueCommentId?: string | null | undefined;
}>;
export type CreateIssueAttachmentMetadata = z.infer<typeof createIssueAttachmentMetadataSchema>;
export declare const ISSUE_DOCUMENT_FORMATS: readonly ["markdown"];
export declare const issueDocumentFormatSchema: z.ZodEnum<["markdown"]>;
export declare const issueDocumentKeySchema: z.ZodString;
export declare const upsertIssueDocumentSchema: z.ZodObject<{
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
format: z.ZodEnum<["markdown"]>;
body: z.ZodString;
changeSummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
baseRevisionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
}, "strip", z.ZodTypeAny, {
body: string;
format: "markdown";
title?: string | null | undefined;
changeSummary?: string | null | undefined;
baseRevisionId?: string | null | undefined;
}, {
body: string;
format: "markdown";
title?: string | null | undefined;
changeSummary?: string | null | undefined;
baseRevisionId?: string | null | undefined;
}>;
export type IssueDocumentFormat = z.infer<typeof issueDocumentFormatSchema>;
export type UpsertIssueDocument = z.infer<typeof upsertIssueDocumentSchema>;
//# sourceMappingURL=issue.d.ts.map