@paperclipai/shared 0.3.1 → 2026.3.17-canary.0
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/constants.d.ts +148 -3
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +352 -2
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/types/agent.d.ts +3 -1
- package/dist/types/agent.d.ts.map +1 -1
- package/dist/types/budget.d.ts +86 -0
- package/dist/types/budget.d.ts.map +1 -0
- package/dist/types/budget.js +2 -0
- package/dist/types/budget.js.map +1 -0
- package/dist/types/company.d.ts +5 -1
- package/dist/types/company.d.ts.map +1 -1
- package/dist/types/cost.d.ts +71 -0
- package/dist/types/cost.d.ts.map +1 -1
- package/dist/types/dashboard.d.ts +6 -0
- package/dist/types/dashboard.d.ts.map +1 -1
- package/dist/types/finance.d.ts +57 -0
- package/dist/types/finance.d.ts.map +1 -0
- package/dist/types/finance.js +2 -0
- package/dist/types/finance.js.map +1 -0
- package/dist/types/index.d.ts +11 -4
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/instance.d.ts +10 -0
- package/dist/types/instance.d.ts.map +1 -0
- package/dist/types/instance.js +2 -0
- package/dist/types/instance.js.map +1 -0
- package/dist/types/issue.d.ts +48 -1
- package/dist/types/issue.d.ts.map +1 -1
- package/dist/types/plugin.d.ts +419 -0
- package/dist/types/plugin.d.ts.map +1 -0
- package/dist/types/plugin.js +2 -0
- package/dist/types/plugin.js.map +1 -0
- package/dist/types/project.d.ts +26 -1
- package/dist/types/project.d.ts.map +1 -1
- package/dist/types/quota.d.ts +26 -0
- package/dist/types/quota.d.ts.map +1 -0
- package/dist/types/quota.js +2 -0
- package/dist/types/quota.js.map +1 -0
- package/dist/types/work-product.d.ts +27 -0
- package/dist/types/work-product.d.ts.map +1 -0
- package/dist/types/work-product.js +2 -0
- package/dist/types/work-product.js.map +1 -0
- package/dist/types/workspace-operation.d.ts +26 -0
- package/dist/types/workspace-operation.d.ts.map +1 -0
- package/dist/types/workspace-operation.js +2 -0
- package/dist/types/workspace-operation.js.map +1 -0
- package/dist/types/workspace-runtime.d.ts +35 -3
- package/dist/types/workspace-runtime.d.ts.map +1 -1
- package/dist/validators/access.d.ts +3 -3
- package/dist/validators/agent.d.ts +14 -11
- package/dist/validators/agent.d.ts.map +1 -1
- package/dist/validators/agent.js +1 -0
- package/dist/validators/agent.js.map +1 -1
- package/dist/validators/approval.d.ts +3 -3
- package/dist/validators/budget.d.ts +56 -0
- package/dist/validators/budget.d.ts.map +1 -0
- package/dist/validators/budget.js +27 -0
- package/dist/validators/budget.js.map +1 -0
- package/dist/validators/company-portability.d.ts +144 -144
- package/dist/validators/company.d.ts +3 -0
- package/dist/validators/company.d.ts.map +1 -1
- package/dist/validators/company.js +2 -0
- package/dist/validators/company.js.map +1 -1
- package/dist/validators/cost.d.ts +45 -1
- package/dist/validators/cost.d.ts.map +1 -1
- package/dist/validators/cost.js +9 -1
- package/dist/validators/cost.js.map +1 -1
- package/dist/validators/execution-workspace.d.ts +20 -0
- package/dist/validators/execution-workspace.d.ts.map +1 -0
- package/dist/validators/execution-workspace.js +15 -0
- package/dist/validators/execution-workspace.js.map +1 -0
- package/dist/validators/finance.d.ts +129 -0
- package/dist/validators/finance.d.ts.map +1 -0
- package/dist/validators/finance.js +32 -0
- package/dist/validators/finance.js.map +1 -0
- package/dist/validators/index.d.ts +7 -1
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +7 -1
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/instance.d.ts +18 -0
- package/dist/validators/instance.d.ts.map +1 -0
- package/dist/validators/instance.js +6 -0
- package/dist/validators/instance.js.map +1 -0
- package/dist/validators/issue.d.ts +76 -34
- package/dist/validators/issue.d.ts.map +1 -1
- package/dist/validators/issue.js +27 -2
- package/dist/validators/issue.js.map +1 -1
- package/dist/validators/plugin.d.ts +1173 -0
- package/dist/validators/plugin.d.ts.map +1 -0
- package/dist/validators/plugin.js +547 -0
- package/dist/validators/plugin.js.map +1 -0
- package/dist/validators/project.d.ts +188 -42
- package/dist/validators/project.d.ts.map +1 -1
- package/dist/validators/project.js +32 -7
- package/dist/validators/project.js.map +1 -1
- package/dist/validators/work-product.d.ts +105 -0
- package/dist/validators/work-product.d.ts.map +1 -0
- package/dist/validators/work-product.js +46 -0
- package/dist/validators/work-product.js.map +1 -0
- package/package.json +11 -1
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const issueExecutionWorkspaceSettingsSchema: z.ZodObject<{
|
|
3
|
-
mode: z.ZodOptional<z.ZodEnum<["inherit", "
|
|
3
|
+
mode: z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>;
|
|
4
4
|
workspaceStrategy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5
|
-
type: z.ZodOptional<z.ZodEnum<["project_primary", "git_worktree"]>>;
|
|
5
|
+
type: z.ZodOptional<z.ZodEnum<["project_primary", "git_worktree", "adapter_managed", "cloud_sandbox"]>>;
|
|
6
6
|
baseRef: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7
7
|
branchTemplate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8
8
|
worktreeParentDir: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9
9
|
provisionCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10
10
|
teardownCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11
11
|
}, "strict", z.ZodTypeAny, {
|
|
12
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
12
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
13
13
|
baseRef?: string | null | undefined;
|
|
14
14
|
branchTemplate?: string | null | undefined;
|
|
15
15
|
worktreeParentDir?: string | null | undefined;
|
|
16
16
|
provisionCommand?: string | null | undefined;
|
|
17
17
|
teardownCommand?: string | null | undefined;
|
|
18
18
|
}, {
|
|
19
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
19
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
20
20
|
baseRef?: string | null | undefined;
|
|
21
21
|
branchTemplate?: string | null | undefined;
|
|
22
22
|
worktreeParentDir?: string | null | undefined;
|
|
@@ -25,9 +25,9 @@ export declare const issueExecutionWorkspaceSettingsSchema: z.ZodObject<{
|
|
|
25
25
|
}>>>;
|
|
26
26
|
workspaceRuntime: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
27
27
|
}, "strict", z.ZodTypeAny, {
|
|
28
|
-
mode?: "
|
|
28
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
29
29
|
workspaceStrategy?: {
|
|
30
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
30
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
31
31
|
baseRef?: string | null | undefined;
|
|
32
32
|
branchTemplate?: string | null | undefined;
|
|
33
33
|
worktreeParentDir?: string | null | undefined;
|
|
@@ -36,9 +36,9 @@ export declare const issueExecutionWorkspaceSettingsSchema: z.ZodObject<{
|
|
|
36
36
|
} | null | undefined;
|
|
37
37
|
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
38
38
|
}, {
|
|
39
|
-
mode?: "
|
|
39
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
40
40
|
workspaceStrategy?: {
|
|
41
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
41
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
42
42
|
baseRef?: string | null | undefined;
|
|
43
43
|
branchTemplate?: string | null | undefined;
|
|
44
44
|
worktreeParentDir?: string | null | undefined;
|
|
@@ -59,6 +59,7 @@ export declare const issueAssigneeAdapterOverridesSchema: z.ZodObject<{
|
|
|
59
59
|
}>;
|
|
60
60
|
export declare const createIssueSchema: z.ZodObject<{
|
|
61
61
|
projectId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
62
|
+
projectWorkspaceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
62
63
|
goalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
63
64
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
64
65
|
title: z.ZodString;
|
|
@@ -79,24 +80,26 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
79
80
|
adapterConfig?: Record<string, unknown> | undefined;
|
|
80
81
|
useProjectWorkspace?: boolean | undefined;
|
|
81
82
|
}>>>;
|
|
83
|
+
executionWorkspaceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
84
|
+
executionWorkspacePreference: z.ZodNullable<z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>>;
|
|
82
85
|
executionWorkspaceSettings: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
83
|
-
mode: z.ZodOptional<z.ZodEnum<["inherit", "
|
|
86
|
+
mode: z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>;
|
|
84
87
|
workspaceStrategy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
85
|
-
type: z.ZodOptional<z.ZodEnum<["project_primary", "git_worktree"]>>;
|
|
88
|
+
type: z.ZodOptional<z.ZodEnum<["project_primary", "git_worktree", "adapter_managed", "cloud_sandbox"]>>;
|
|
86
89
|
baseRef: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
87
90
|
branchTemplate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
88
91
|
worktreeParentDir: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
89
92
|
provisionCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
90
93
|
teardownCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
91
94
|
}, "strict", z.ZodTypeAny, {
|
|
92
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
95
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
93
96
|
baseRef?: string | null | undefined;
|
|
94
97
|
branchTemplate?: string | null | undefined;
|
|
95
98
|
worktreeParentDir?: string | null | undefined;
|
|
96
99
|
provisionCommand?: string | null | undefined;
|
|
97
100
|
teardownCommand?: string | null | undefined;
|
|
98
101
|
}, {
|
|
99
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
102
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
100
103
|
baseRef?: string | null | undefined;
|
|
101
104
|
branchTemplate?: string | null | undefined;
|
|
102
105
|
worktreeParentDir?: string | null | undefined;
|
|
@@ -105,9 +108,9 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
105
108
|
}>>>;
|
|
106
109
|
workspaceRuntime: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
107
110
|
}, "strict", z.ZodTypeAny, {
|
|
108
|
-
mode?: "
|
|
111
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
109
112
|
workspaceStrategy?: {
|
|
110
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
113
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
111
114
|
baseRef?: string | null | undefined;
|
|
112
115
|
branchTemplate?: string | null | undefined;
|
|
113
116
|
worktreeParentDir?: string | null | undefined;
|
|
@@ -116,9 +119,9 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
116
119
|
} | null | undefined;
|
|
117
120
|
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
118
121
|
}, {
|
|
119
|
-
mode?: "
|
|
122
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
120
123
|
workspaceStrategy?: {
|
|
121
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
124
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
122
125
|
baseRef?: string | null | undefined;
|
|
123
126
|
branchTemplate?: string | null | undefined;
|
|
124
127
|
worktreeParentDir?: string | null | undefined;
|
|
@@ -136,6 +139,7 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
136
139
|
description?: string | null | undefined;
|
|
137
140
|
goalId?: string | null | undefined;
|
|
138
141
|
projectId?: string | null | undefined;
|
|
142
|
+
projectWorkspaceId?: string | null | undefined;
|
|
139
143
|
parentId?: string | null | undefined;
|
|
140
144
|
assigneeAgentId?: string | null | undefined;
|
|
141
145
|
assigneeUserId?: string | null | undefined;
|
|
@@ -144,10 +148,12 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
144
148
|
adapterConfig?: Record<string, unknown> | undefined;
|
|
145
149
|
useProjectWorkspace?: boolean | undefined;
|
|
146
150
|
} | null | undefined;
|
|
151
|
+
executionWorkspaceId?: string | null | undefined;
|
|
152
|
+
executionWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
|
|
147
153
|
executionWorkspaceSettings?: {
|
|
148
|
-
mode?: "
|
|
154
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
149
155
|
workspaceStrategy?: {
|
|
150
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
156
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
151
157
|
baseRef?: string | null | undefined;
|
|
152
158
|
branchTemplate?: string | null | undefined;
|
|
153
159
|
worktreeParentDir?: string | null | undefined;
|
|
@@ -163,6 +169,7 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
163
169
|
description?: string | null | undefined;
|
|
164
170
|
goalId?: string | null | undefined;
|
|
165
171
|
projectId?: string | null | undefined;
|
|
172
|
+
projectWorkspaceId?: string | null | undefined;
|
|
166
173
|
parentId?: string | null | undefined;
|
|
167
174
|
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
168
175
|
assigneeAgentId?: string | null | undefined;
|
|
@@ -173,10 +180,12 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
173
180
|
adapterConfig?: Record<string, unknown> | undefined;
|
|
174
181
|
useProjectWorkspace?: boolean | undefined;
|
|
175
182
|
} | null | undefined;
|
|
183
|
+
executionWorkspaceId?: string | null | undefined;
|
|
184
|
+
executionWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
|
|
176
185
|
executionWorkspaceSettings?: {
|
|
177
|
-
mode?: "
|
|
186
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
178
187
|
workspaceStrategy?: {
|
|
179
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
188
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
180
189
|
baseRef?: string | null | undefined;
|
|
181
190
|
branchTemplate?: string | null | undefined;
|
|
182
191
|
worktreeParentDir?: string | null | undefined;
|
|
@@ -201,6 +210,7 @@ export declare const createIssueLabelSchema: z.ZodObject<{
|
|
|
201
210
|
export type CreateIssueLabel = z.infer<typeof createIssueLabelSchema>;
|
|
202
211
|
export declare const updateIssueSchema: z.ZodObject<{
|
|
203
212
|
projectId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
213
|
+
projectWorkspaceId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
204
214
|
goalId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
205
215
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
206
216
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -221,24 +231,26 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
221
231
|
adapterConfig?: Record<string, unknown> | undefined;
|
|
222
232
|
useProjectWorkspace?: boolean | undefined;
|
|
223
233
|
}>>>>;
|
|
234
|
+
executionWorkspaceId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
235
|
+
executionWorkspacePreference: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>>>;
|
|
224
236
|
executionWorkspaceSettings: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
225
|
-
mode: z.ZodOptional<z.ZodEnum<["inherit", "
|
|
237
|
+
mode: z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>;
|
|
226
238
|
workspaceStrategy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
227
|
-
type: z.ZodOptional<z.ZodEnum<["project_primary", "git_worktree"]>>;
|
|
239
|
+
type: z.ZodOptional<z.ZodEnum<["project_primary", "git_worktree", "adapter_managed", "cloud_sandbox"]>>;
|
|
228
240
|
baseRef: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
229
241
|
branchTemplate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
230
242
|
worktreeParentDir: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
231
243
|
provisionCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
232
244
|
teardownCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
233
245
|
}, "strict", z.ZodTypeAny, {
|
|
234
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
246
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
235
247
|
baseRef?: string | null | undefined;
|
|
236
248
|
branchTemplate?: string | null | undefined;
|
|
237
249
|
worktreeParentDir?: string | null | undefined;
|
|
238
250
|
provisionCommand?: string | null | undefined;
|
|
239
251
|
teardownCommand?: string | null | undefined;
|
|
240
252
|
}, {
|
|
241
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
253
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
242
254
|
baseRef?: string | null | undefined;
|
|
243
255
|
branchTemplate?: string | null | undefined;
|
|
244
256
|
worktreeParentDir?: string | null | undefined;
|
|
@@ -247,9 +259,9 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
247
259
|
}>>>;
|
|
248
260
|
workspaceRuntime: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
249
261
|
}, "strict", z.ZodTypeAny, {
|
|
250
|
-
mode?: "
|
|
262
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
251
263
|
workspaceStrategy?: {
|
|
252
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
264
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
253
265
|
baseRef?: string | null | undefined;
|
|
254
266
|
branchTemplate?: string | null | undefined;
|
|
255
267
|
worktreeParentDir?: string | null | undefined;
|
|
@@ -258,9 +270,9 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
258
270
|
} | null | undefined;
|
|
259
271
|
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
260
272
|
}, {
|
|
261
|
-
mode?: "
|
|
273
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
262
274
|
workspaceStrategy?: {
|
|
263
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
275
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
264
276
|
baseRef?: string | null | undefined;
|
|
265
277
|
branchTemplate?: string | null | undefined;
|
|
266
278
|
worktreeParentDir?: string | null | undefined;
|
|
@@ -274,11 +286,13 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
274
286
|
comment: z.ZodOptional<z.ZodString>;
|
|
275
287
|
hiddenAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
276
288
|
}, "strip", z.ZodTypeAny, {
|
|
289
|
+
comment?: string | undefined;
|
|
277
290
|
status?: "backlog" | "todo" | "in_progress" | "in_review" | "done" | "blocked" | "cancelled" | undefined;
|
|
278
291
|
description?: string | null | undefined;
|
|
279
292
|
title?: string | undefined;
|
|
280
293
|
goalId?: string | null | undefined;
|
|
281
294
|
projectId?: string | null | undefined;
|
|
295
|
+
projectWorkspaceId?: string | null | undefined;
|
|
282
296
|
parentId?: string | null | undefined;
|
|
283
297
|
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
284
298
|
assigneeAgentId?: string | null | undefined;
|
|
@@ -289,10 +303,12 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
289
303
|
adapterConfig?: Record<string, unknown> | undefined;
|
|
290
304
|
useProjectWorkspace?: boolean | undefined;
|
|
291
305
|
} | null | undefined;
|
|
306
|
+
executionWorkspaceId?: string | null | undefined;
|
|
307
|
+
executionWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
|
|
292
308
|
executionWorkspaceSettings?: {
|
|
293
|
-
mode?: "
|
|
309
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
294
310
|
workspaceStrategy?: {
|
|
295
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
311
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
296
312
|
baseRef?: string | null | undefined;
|
|
297
313
|
branchTemplate?: string | null | undefined;
|
|
298
314
|
worktreeParentDir?: string | null | undefined;
|
|
@@ -302,14 +318,15 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
302
318
|
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
303
319
|
} | null | undefined;
|
|
304
320
|
labelIds?: string[] | undefined;
|
|
305
|
-
comment?: string | undefined;
|
|
306
321
|
hiddenAt?: string | null | undefined;
|
|
307
322
|
}, {
|
|
323
|
+
comment?: string | undefined;
|
|
308
324
|
status?: "backlog" | "todo" | "in_progress" | "in_review" | "done" | "blocked" | "cancelled" | undefined;
|
|
309
325
|
description?: string | null | undefined;
|
|
310
326
|
title?: string | undefined;
|
|
311
327
|
goalId?: string | null | undefined;
|
|
312
328
|
projectId?: string | null | undefined;
|
|
329
|
+
projectWorkspaceId?: string | null | undefined;
|
|
313
330
|
parentId?: string | null | undefined;
|
|
314
331
|
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
315
332
|
assigneeAgentId?: string | null | undefined;
|
|
@@ -320,10 +337,12 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
320
337
|
adapterConfig?: Record<string, unknown> | undefined;
|
|
321
338
|
useProjectWorkspace?: boolean | undefined;
|
|
322
339
|
} | null | undefined;
|
|
340
|
+
executionWorkspaceId?: string | null | undefined;
|
|
341
|
+
executionWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
|
|
323
342
|
executionWorkspaceSettings?: {
|
|
324
|
-
mode?: "
|
|
343
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
325
344
|
workspaceStrategy?: {
|
|
326
|
-
type?: "project_primary" | "git_worktree" | undefined;
|
|
345
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
327
346
|
baseRef?: string | null | undefined;
|
|
328
347
|
branchTemplate?: string | null | undefined;
|
|
329
348
|
worktreeParentDir?: string | null | undefined;
|
|
@@ -333,7 +352,6 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
333
352
|
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
334
353
|
} | null | undefined;
|
|
335
354
|
labelIds?: string[] | undefined;
|
|
336
|
-
comment?: string | undefined;
|
|
337
355
|
hiddenAt?: string | null | undefined;
|
|
338
356
|
}>;
|
|
339
357
|
export type UpdateIssue = z.infer<typeof updateIssueSchema>;
|
|
@@ -379,4 +397,28 @@ export declare const createIssueAttachmentMetadataSchema: z.ZodObject<{
|
|
|
379
397
|
issueCommentId?: string | null | undefined;
|
|
380
398
|
}>;
|
|
381
399
|
export type CreateIssueAttachmentMetadata = z.infer<typeof createIssueAttachmentMetadataSchema>;
|
|
400
|
+
export declare const ISSUE_DOCUMENT_FORMATS: readonly ["markdown"];
|
|
401
|
+
export declare const issueDocumentFormatSchema: z.ZodEnum<["markdown"]>;
|
|
402
|
+
export declare const issueDocumentKeySchema: z.ZodString;
|
|
403
|
+
export declare const upsertIssueDocumentSchema: z.ZodObject<{
|
|
404
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
405
|
+
format: z.ZodEnum<["markdown"]>;
|
|
406
|
+
body: z.ZodString;
|
|
407
|
+
changeSummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
408
|
+
baseRevisionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
409
|
+
}, "strip", z.ZodTypeAny, {
|
|
410
|
+
body: string;
|
|
411
|
+
format: "markdown";
|
|
412
|
+
title?: string | null | undefined;
|
|
413
|
+
changeSummary?: string | null | undefined;
|
|
414
|
+
baseRevisionId?: string | null | undefined;
|
|
415
|
+
}, {
|
|
416
|
+
body: string;
|
|
417
|
+
format: "markdown";
|
|
418
|
+
title?: string | null | undefined;
|
|
419
|
+
changeSummary?: string | null | undefined;
|
|
420
|
+
baseRevisionId?: string | null | undefined;
|
|
421
|
+
}>;
|
|
422
|
+
export type IssueDocumentFormat = z.infer<typeof issueDocumentFormatSchema>;
|
|
423
|
+
export type UpsertIssueDocument = z.infer<typeof upsertIssueDocumentSchema>;
|
|
382
424
|
//# sourceMappingURL=issue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"issue.d.ts","sourceRoot":"","sources":["../../src/validators/issue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAcxB,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMvC,CAAC;AAEZ,eAAO,MAAM,mCAAmC;;;;;;;;;EAKrC,CAAC;AAEZ,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"issue.d.ts","sourceRoot":"","sources":["../../src/validators/issue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAcxB,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMvC,CAAC;AAEZ,eAAO,MAAM,mCAAmC;;;;;;;;;EAKrC,CAAC;AAEZ,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyB5B,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,sBAAsB;;;;;;;;;EAGjC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG5B,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC5D,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAC;AAEpG,eAAO,MAAM,mBAAmB;;;;;;;;;EAG9B,CAAC;AAEH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;EAIhC,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE,eAAO,MAAM,uBAAuB;;;;;;EAElC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,eAAO,MAAM,mCAAmC;;;;;;EAE9C,CAAC;AAEH,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC;AAEhG,eAAO,MAAM,sBAAsB,uBAAwB,CAAC;AAE5D,eAAO,MAAM,yBAAyB,yBAAiC,CAAC;AAExE,eAAO,MAAM,sBAAsB,aAKyD,CAAC;AAE7F,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;EAMpC,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC"}
|
package/dist/validators/issue.js
CHANGED
|
@@ -2,7 +2,7 @@ import { z } from "zod";
|
|
|
2
2
|
import { ISSUE_PRIORITIES, ISSUE_STATUSES } from "../constants.js";
|
|
3
3
|
const executionWorkspaceStrategySchema = z
|
|
4
4
|
.object({
|
|
5
|
-
type: z.enum(["project_primary", "git_worktree"]).optional(),
|
|
5
|
+
type: z.enum(["project_primary", "git_worktree", "adapter_managed", "cloud_sandbox"]).optional(),
|
|
6
6
|
baseRef: z.string().optional().nullable(),
|
|
7
7
|
branchTemplate: z.string().optional().nullable(),
|
|
8
8
|
worktreeParentDir: z.string().optional().nullable(),
|
|
@@ -12,7 +12,7 @@ const executionWorkspaceStrategySchema = z
|
|
|
12
12
|
.strict();
|
|
13
13
|
export const issueExecutionWorkspaceSettingsSchema = z
|
|
14
14
|
.object({
|
|
15
|
-
mode: z.enum(["inherit", "
|
|
15
|
+
mode: z.enum(["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]).optional(),
|
|
16
16
|
workspaceStrategy: executionWorkspaceStrategySchema.optional().nullable(),
|
|
17
17
|
workspaceRuntime: z.record(z.unknown()).optional().nullable(),
|
|
18
18
|
})
|
|
@@ -25,6 +25,7 @@ export const issueAssigneeAdapterOverridesSchema = z
|
|
|
25
25
|
.strict();
|
|
26
26
|
export const createIssueSchema = z.object({
|
|
27
27
|
projectId: z.string().uuid().optional().nullable(),
|
|
28
|
+
projectWorkspaceId: z.string().uuid().optional().nullable(),
|
|
28
29
|
goalId: z.string().uuid().optional().nullable(),
|
|
29
30
|
parentId: z.string().uuid().optional().nullable(),
|
|
30
31
|
title: z.string().min(1),
|
|
@@ -36,6 +37,15 @@ export const createIssueSchema = z.object({
|
|
|
36
37
|
requestDepth: z.number().int().nonnegative().optional().default(0),
|
|
37
38
|
billingCode: z.string().optional().nullable(),
|
|
38
39
|
assigneeAdapterOverrides: issueAssigneeAdapterOverridesSchema.optional().nullable(),
|
|
40
|
+
executionWorkspaceId: z.string().uuid().optional().nullable(),
|
|
41
|
+
executionWorkspacePreference: z.enum([
|
|
42
|
+
"inherit",
|
|
43
|
+
"shared_workspace",
|
|
44
|
+
"isolated_workspace",
|
|
45
|
+
"operator_branch",
|
|
46
|
+
"reuse_existing",
|
|
47
|
+
"agent_default",
|
|
48
|
+
]).optional().nullable(),
|
|
39
49
|
executionWorkspaceSettings: issueExecutionWorkspaceSettingsSchema.optional().nullable(),
|
|
40
50
|
labelIds: z.array(z.string().uuid()).optional(),
|
|
41
51
|
});
|
|
@@ -62,4 +72,19 @@ export const linkIssueApprovalSchema = z.object({
|
|
|
62
72
|
export const createIssueAttachmentMetadataSchema = z.object({
|
|
63
73
|
issueCommentId: z.string().uuid().optional().nullable(),
|
|
64
74
|
});
|
|
75
|
+
export const ISSUE_DOCUMENT_FORMATS = ["markdown"];
|
|
76
|
+
export const issueDocumentFormatSchema = z.enum(ISSUE_DOCUMENT_FORMATS);
|
|
77
|
+
export const issueDocumentKeySchema = z
|
|
78
|
+
.string()
|
|
79
|
+
.trim()
|
|
80
|
+
.min(1)
|
|
81
|
+
.max(64)
|
|
82
|
+
.regex(/^[a-z0-9][a-z0-9_-]*$/, "Document key must be lowercase letters, numbers, _ or -");
|
|
83
|
+
export const upsertIssueDocumentSchema = z.object({
|
|
84
|
+
title: z.string().trim().max(200).nullable().optional(),
|
|
85
|
+
format: issueDocumentFormatSchema,
|
|
86
|
+
body: z.string().max(524288),
|
|
87
|
+
changeSummary: z.string().trim().max(500).nullable().optional(),
|
|
88
|
+
baseRevisionId: z.string().uuid().nullable().optional(),
|
|
89
|
+
});
|
|
65
90
|
//# sourceMappingURL=issue.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"issue.js","sourceRoot":"","sources":["../../src/validators/issue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAEnE,MAAM,gCAAgC,GAAG,CAAC;KACvC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,iBAAiB,EAAE,cAAc,CAAC,CAAC,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"issue.js","sourceRoot":"","sources":["../../src/validators/issue.ts"],"names":[],"mappings":"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"}
|