@rudderhq/shared 0.3.4-canary.2 → 0.3.4-canary.21
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 +3 -0
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +19 -0
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/issue-activity.d.ts +1 -0
- package/dist/issue-activity.d.ts.map +1 -1
- package/dist/issue-activity.js +13 -1
- package/dist/issue-activity.js.map +1 -1
- package/dist/issue-activity.test.js +26 -0
- package/dist/issue-activity.test.js.map +1 -1
- package/dist/project-mentions.d.ts +13 -1
- package/dist/project-mentions.d.ts.map +1 -1
- package/dist/project-mentions.js +81 -5
- package/dist/project-mentions.js.map +1 -1
- package/dist/project-mentions.test.js +27 -1
- package/dist/project-mentions.test.js.map +1 -1
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/instance.d.ts +17 -0
- package/dist/types/instance.d.ts.map +1 -1
- package/dist/types/issue.d.ts +9 -1
- package/dist/types/issue.d.ts.map +1 -1
- package/dist/types/organization-portability.d.ts +1 -0
- package/dist/types/organization-portability.d.ts.map +1 -1
- package/dist/types/organization.d.ts +16 -0
- package/dist/types/organization.d.ts.map +1 -1
- package/dist/types/project.d.ts +2 -1
- package/dist/types/project.d.ts.map +1 -1
- package/dist/types/work-product.d.ts +2 -0
- package/dist/types/work-product.d.ts.map +1 -1
- package/dist/types/workspace-operation.d.ts +2 -0
- package/dist/types/workspace-operation.d.ts.map +1 -1
- package/dist/types/workspace-runtime.d.ts +38 -18
- package/dist/types/workspace-runtime.d.ts.map +1 -1
- package/dist/validators/execution-workspace.d.ts +22 -1
- package/dist/validators/execution-workspace.d.ts.map +1 -1
- package/dist/validators/execution-workspace.js +7 -3
- package/dist/validators/execution-workspace.js.map +1 -1
- package/dist/validators/index.d.ts +3 -3
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +3 -3
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/instance.d.ts +281 -0
- package/dist/validators/instance.d.ts.map +1 -1
- package/dist/validators/instance.js +38 -0
- package/dist/validators/instance.js.map +1 -1
- package/dist/validators/instance.test.js +41 -1
- package/dist/validators/instance.test.js.map +1 -1
- package/dist/validators/issue.d.ts +211 -1
- package/dist/validators/issue.d.ts.map +1 -1
- package/dist/validators/issue.js +19 -4
- package/dist/validators/issue.js.map +1 -1
- package/dist/validators/organization-portability.d.ts +16 -16
- package/dist/validators/organization-skill.d.ts +22 -22
- package/dist/validators/project.d.ts +6 -0
- package/dist/validators/project.d.ts.map +1 -1
- package/dist/validators/project.js +3 -1
- package/dist/validators/project.js.map +1 -1
- package/dist/validators/project.test.js +9 -0
- package/dist/validators/project.test.js.map +1 -1
- package/dist/validators/work-product.d.ts +7 -0
- package/dist/validators/work-product.d.ts.map +1 -1
- package/dist/validators/work-product.js +2 -0
- package/dist/validators/work-product.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,53 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
+
export declare const issueRunWorkspaceSettingsSchema: z.ZodObject<{
|
|
3
|
+
mode: z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>;
|
|
4
|
+
workspaceStrategy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5
|
+
type: z.ZodOptional<z.ZodEnum<["project_primary", "git_worktree", "adapter_managed", "cloud_sandbox"]>>;
|
|
6
|
+
baseRef: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7
|
+
branchTemplate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8
|
+
worktreeParentDir: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9
|
+
provisionCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10
|
+
teardownCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11
|
+
}, "strict", z.ZodTypeAny, {
|
|
12
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
13
|
+
baseRef?: string | null | undefined;
|
|
14
|
+
branchTemplate?: string | null | undefined;
|
|
15
|
+
worktreeParentDir?: string | null | undefined;
|
|
16
|
+
provisionCommand?: string | null | undefined;
|
|
17
|
+
teardownCommand?: string | null | undefined;
|
|
18
|
+
}, {
|
|
19
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
20
|
+
baseRef?: string | null | undefined;
|
|
21
|
+
branchTemplate?: string | null | undefined;
|
|
22
|
+
worktreeParentDir?: string | null | undefined;
|
|
23
|
+
provisionCommand?: string | null | undefined;
|
|
24
|
+
teardownCommand?: string | null | undefined;
|
|
25
|
+
}>>>;
|
|
26
|
+
workspaceRuntime: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
27
|
+
}, "strict", z.ZodTypeAny, {
|
|
28
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
29
|
+
workspaceStrategy?: {
|
|
30
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
31
|
+
baseRef?: string | null | undefined;
|
|
32
|
+
branchTemplate?: string | null | undefined;
|
|
33
|
+
worktreeParentDir?: string | null | undefined;
|
|
34
|
+
provisionCommand?: string | null | undefined;
|
|
35
|
+
teardownCommand?: string | null | undefined;
|
|
36
|
+
} | null | undefined;
|
|
37
|
+
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
38
|
+
}, {
|
|
39
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
40
|
+
workspaceStrategy?: {
|
|
41
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
42
|
+
baseRef?: string | null | undefined;
|
|
43
|
+
branchTemplate?: string | null | undefined;
|
|
44
|
+
worktreeParentDir?: string | null | undefined;
|
|
45
|
+
provisionCommand?: string | null | undefined;
|
|
46
|
+
teardownCommand?: string | null | undefined;
|
|
47
|
+
} | null | undefined;
|
|
48
|
+
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
49
|
+
}>;
|
|
50
|
+
/** @deprecated Use issueRunWorkspaceSettingsSchema. */
|
|
2
51
|
export declare const issueExecutionWorkspaceSettingsSchema: z.ZodObject<{
|
|
3
52
|
mode: z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>;
|
|
4
53
|
workspaceStrategy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -82,8 +131,61 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
82
131
|
agentRuntimeConfig?: Record<string, unknown> | undefined;
|
|
83
132
|
useProjectWorkspace?: boolean | undefined;
|
|
84
133
|
}>>>;
|
|
134
|
+
runWorkspaceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
135
|
+
runWorkspacePreference: z.ZodNullable<z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>>;
|
|
136
|
+
runWorkspaceSettings: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
137
|
+
mode: z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>;
|
|
138
|
+
workspaceStrategy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
139
|
+
type: z.ZodOptional<z.ZodEnum<["project_primary", "git_worktree", "adapter_managed", "cloud_sandbox"]>>;
|
|
140
|
+
baseRef: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
141
|
+
branchTemplate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
142
|
+
worktreeParentDir: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
143
|
+
provisionCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
144
|
+
teardownCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
145
|
+
}, "strict", z.ZodTypeAny, {
|
|
146
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
147
|
+
baseRef?: string | null | undefined;
|
|
148
|
+
branchTemplate?: string | null | undefined;
|
|
149
|
+
worktreeParentDir?: string | null | undefined;
|
|
150
|
+
provisionCommand?: string | null | undefined;
|
|
151
|
+
teardownCommand?: string | null | undefined;
|
|
152
|
+
}, {
|
|
153
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
154
|
+
baseRef?: string | null | undefined;
|
|
155
|
+
branchTemplate?: string | null | undefined;
|
|
156
|
+
worktreeParentDir?: string | null | undefined;
|
|
157
|
+
provisionCommand?: string | null | undefined;
|
|
158
|
+
teardownCommand?: string | null | undefined;
|
|
159
|
+
}>>>;
|
|
160
|
+
workspaceRuntime: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
161
|
+
}, "strict", z.ZodTypeAny, {
|
|
162
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
163
|
+
workspaceStrategy?: {
|
|
164
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
165
|
+
baseRef?: string | null | undefined;
|
|
166
|
+
branchTemplate?: string | null | undefined;
|
|
167
|
+
worktreeParentDir?: string | null | undefined;
|
|
168
|
+
provisionCommand?: string | null | undefined;
|
|
169
|
+
teardownCommand?: string | null | undefined;
|
|
170
|
+
} | null | undefined;
|
|
171
|
+
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
172
|
+
}, {
|
|
173
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
174
|
+
workspaceStrategy?: {
|
|
175
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
176
|
+
baseRef?: string | null | undefined;
|
|
177
|
+
branchTemplate?: string | null | undefined;
|
|
178
|
+
worktreeParentDir?: string | null | undefined;
|
|
179
|
+
provisionCommand?: string | null | undefined;
|
|
180
|
+
teardownCommand?: string | null | undefined;
|
|
181
|
+
} | null | undefined;
|
|
182
|
+
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
183
|
+
}>>>;
|
|
184
|
+
/** @deprecated Use runWorkspaceId. */
|
|
85
185
|
executionWorkspaceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
186
|
+
/** @deprecated Use runWorkspacePreference. */
|
|
86
187
|
executionWorkspacePreference: z.ZodNullable<z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>>;
|
|
188
|
+
/** @deprecated Use runWorkspaceSettings. */
|
|
87
189
|
executionWorkspaceSettings: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
88
190
|
mode: z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>;
|
|
89
191
|
workspaceStrategy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -152,6 +254,20 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
152
254
|
agentRuntimeConfig?: Record<string, unknown> | undefined;
|
|
153
255
|
useProjectWorkspace?: boolean | undefined;
|
|
154
256
|
} | null | undefined;
|
|
257
|
+
runWorkspaceId?: string | null | undefined;
|
|
258
|
+
runWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
|
|
259
|
+
runWorkspaceSettings?: {
|
|
260
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
261
|
+
workspaceStrategy?: {
|
|
262
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
263
|
+
baseRef?: string | null | undefined;
|
|
264
|
+
branchTemplate?: string | null | undefined;
|
|
265
|
+
worktreeParentDir?: string | null | undefined;
|
|
266
|
+
provisionCommand?: string | null | undefined;
|
|
267
|
+
teardownCommand?: string | null | undefined;
|
|
268
|
+
} | null | undefined;
|
|
269
|
+
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
270
|
+
} | null | undefined;
|
|
155
271
|
executionWorkspaceId?: string | null | undefined;
|
|
156
272
|
executionWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
|
|
157
273
|
executionWorkspaceSettings?: {
|
|
@@ -186,6 +302,20 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
186
302
|
agentRuntimeConfig?: Record<string, unknown> | undefined;
|
|
187
303
|
useProjectWorkspace?: boolean | undefined;
|
|
188
304
|
} | null | undefined;
|
|
305
|
+
runWorkspaceId?: string | null | undefined;
|
|
306
|
+
runWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
|
|
307
|
+
runWorkspaceSettings?: {
|
|
308
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
309
|
+
workspaceStrategy?: {
|
|
310
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
311
|
+
baseRef?: string | null | undefined;
|
|
312
|
+
branchTemplate?: string | null | undefined;
|
|
313
|
+
worktreeParentDir?: string | null | undefined;
|
|
314
|
+
provisionCommand?: string | null | undefined;
|
|
315
|
+
teardownCommand?: string | null | undefined;
|
|
316
|
+
} | null | undefined;
|
|
317
|
+
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
318
|
+
} | null | undefined;
|
|
189
319
|
executionWorkspaceId?: string | null | undefined;
|
|
190
320
|
executionWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
|
|
191
321
|
executionWorkspaceSettings?: {
|
|
@@ -256,6 +386,56 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
256
386
|
agentRuntimeConfig?: Record<string, unknown> | undefined;
|
|
257
387
|
useProjectWorkspace?: boolean | undefined;
|
|
258
388
|
}>>>>;
|
|
389
|
+
runWorkspaceId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
390
|
+
runWorkspacePreference: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>>>;
|
|
391
|
+
runWorkspaceSettings: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
392
|
+
mode: z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>;
|
|
393
|
+
workspaceStrategy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
394
|
+
type: z.ZodOptional<z.ZodEnum<["project_primary", "git_worktree", "adapter_managed", "cloud_sandbox"]>>;
|
|
395
|
+
baseRef: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
396
|
+
branchTemplate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
397
|
+
worktreeParentDir: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
398
|
+
provisionCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
399
|
+
teardownCommand: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
400
|
+
}, "strict", z.ZodTypeAny, {
|
|
401
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
402
|
+
baseRef?: string | null | undefined;
|
|
403
|
+
branchTemplate?: string | null | undefined;
|
|
404
|
+
worktreeParentDir?: string | null | undefined;
|
|
405
|
+
provisionCommand?: string | null | undefined;
|
|
406
|
+
teardownCommand?: string | null | undefined;
|
|
407
|
+
}, {
|
|
408
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
409
|
+
baseRef?: string | null | undefined;
|
|
410
|
+
branchTemplate?: string | null | undefined;
|
|
411
|
+
worktreeParentDir?: string | null | undefined;
|
|
412
|
+
provisionCommand?: string | null | undefined;
|
|
413
|
+
teardownCommand?: string | null | undefined;
|
|
414
|
+
}>>>;
|
|
415
|
+
workspaceRuntime: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
416
|
+
}, "strict", z.ZodTypeAny, {
|
|
417
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
418
|
+
workspaceStrategy?: {
|
|
419
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
420
|
+
baseRef?: string | null | undefined;
|
|
421
|
+
branchTemplate?: string | null | undefined;
|
|
422
|
+
worktreeParentDir?: string | null | undefined;
|
|
423
|
+
provisionCommand?: string | null | undefined;
|
|
424
|
+
teardownCommand?: string | null | undefined;
|
|
425
|
+
} | null | undefined;
|
|
426
|
+
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
427
|
+
}, {
|
|
428
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
429
|
+
workspaceStrategy?: {
|
|
430
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
431
|
+
baseRef?: string | null | undefined;
|
|
432
|
+
branchTemplate?: string | null | undefined;
|
|
433
|
+
worktreeParentDir?: string | null | undefined;
|
|
434
|
+
provisionCommand?: string | null | undefined;
|
|
435
|
+
teardownCommand?: string | null | undefined;
|
|
436
|
+
} | null | undefined;
|
|
437
|
+
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
438
|
+
}>>>>;
|
|
259
439
|
executionWorkspaceId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
260
440
|
executionWorkspacePreference: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodEnum<["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]>>>>;
|
|
261
441
|
executionWorkspaceSettings: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -332,6 +512,20 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
332
512
|
agentRuntimeConfig?: Record<string, unknown> | undefined;
|
|
333
513
|
useProjectWorkspace?: boolean | undefined;
|
|
334
514
|
} | null | undefined;
|
|
515
|
+
runWorkspaceId?: string | null | undefined;
|
|
516
|
+
runWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
|
|
517
|
+
runWorkspaceSettings?: {
|
|
518
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
519
|
+
workspaceStrategy?: {
|
|
520
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
521
|
+
baseRef?: string | null | undefined;
|
|
522
|
+
branchTemplate?: string | null | undefined;
|
|
523
|
+
worktreeParentDir?: string | null | undefined;
|
|
524
|
+
provisionCommand?: string | null | undefined;
|
|
525
|
+
teardownCommand?: string | null | undefined;
|
|
526
|
+
} | null | undefined;
|
|
527
|
+
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
528
|
+
} | null | undefined;
|
|
335
529
|
executionWorkspaceId?: string | null | undefined;
|
|
336
530
|
executionWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
|
|
337
531
|
executionWorkspaceSettings?: {
|
|
@@ -370,6 +564,20 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
370
564
|
agentRuntimeConfig?: Record<string, unknown> | undefined;
|
|
371
565
|
useProjectWorkspace?: boolean | undefined;
|
|
372
566
|
} | null | undefined;
|
|
567
|
+
runWorkspaceId?: string | null | undefined;
|
|
568
|
+
runWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
|
|
569
|
+
runWorkspaceSettings?: {
|
|
570
|
+
mode?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | undefined;
|
|
571
|
+
workspaceStrategy?: {
|
|
572
|
+
type?: "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox" | undefined;
|
|
573
|
+
baseRef?: string | null | undefined;
|
|
574
|
+
branchTemplate?: string | null | undefined;
|
|
575
|
+
worktreeParentDir?: string | null | undefined;
|
|
576
|
+
provisionCommand?: string | null | undefined;
|
|
577
|
+
teardownCommand?: string | null | undefined;
|
|
578
|
+
} | null | undefined;
|
|
579
|
+
workspaceRuntime?: Record<string, unknown> | null | undefined;
|
|
580
|
+
} | null | undefined;
|
|
373
581
|
executionWorkspaceId?: string | null | undefined;
|
|
374
582
|
executionWorkspacePreference?: "shared_workspace" | "isolated_workspace" | "operator_branch" | "inherit" | "reuse_existing" | "agent_default" | null | undefined;
|
|
375
583
|
executionWorkspaceSettings?: {
|
|
@@ -390,7 +598,9 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
390
598
|
reviewDecision?: "blocked" | "approve" | "request_changes" | "needs_followup" | undefined;
|
|
391
599
|
}>;
|
|
392
600
|
export type UpdateIssue = z.infer<typeof updateIssueSchema>;
|
|
393
|
-
export type
|
|
601
|
+
export type IssueRunWorkspaceSettings = z.infer<typeof issueRunWorkspaceSettingsSchema>;
|
|
602
|
+
/** @deprecated Use IssueRunWorkspaceSettings. */
|
|
603
|
+
export type IssueExecutionWorkspaceSettings = IssueRunWorkspaceSettings;
|
|
394
604
|
export declare const reorderIssueSchema: z.ZodEffects<z.ZodObject<{
|
|
395
605
|
issueId: z.ZodString;
|
|
396
606
|
targetStatus: z.ZodEnum<["backlog", "todo", "in_progress", "in_review", "done", "blocked", "cancelled"]>;
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"issue.d.ts","sourceRoot":"","sources":["../../src/validators/issue.ts"],"names":[],"mappings":"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"}
|
package/dist/validators/issue.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
import { ISSUE_PRIORITIES, ISSUE_STATUSES } from "../constants.js";
|
|
3
|
-
const
|
|
3
|
+
const runWorkspaceStrategySchema = z
|
|
4
4
|
.object({
|
|
5
5
|
type: z.enum(["project_primary", "git_worktree", "adapter_managed", "cloud_sandbox"]).optional(),
|
|
6
6
|
baseRef: z.string().optional().nullable(),
|
|
@@ -10,13 +10,15 @@ const executionWorkspaceStrategySchema = z
|
|
|
10
10
|
teardownCommand: z.string().optional().nullable(),
|
|
11
11
|
})
|
|
12
12
|
.strict();
|
|
13
|
-
export const
|
|
13
|
+
export const issueRunWorkspaceSettingsSchema = z
|
|
14
14
|
.object({
|
|
15
15
|
mode: z.enum(["inherit", "shared_workspace", "isolated_workspace", "operator_branch", "reuse_existing", "agent_default"]).optional(),
|
|
16
|
-
workspaceStrategy:
|
|
16
|
+
workspaceStrategy: runWorkspaceStrategySchema.optional().nullable(),
|
|
17
17
|
workspaceRuntime: z.record(z.unknown()).optional().nullable(),
|
|
18
18
|
})
|
|
19
19
|
.strict();
|
|
20
|
+
/** @deprecated Use issueRunWorkspaceSettingsSchema. */
|
|
21
|
+
export const issueExecutionWorkspaceSettingsSchema = issueRunWorkspaceSettingsSchema;
|
|
20
22
|
export const issueAssigneeAdapterOverridesSchema = z
|
|
21
23
|
.object({
|
|
22
24
|
agentRuntimeConfig: z.record(z.unknown()).optional(),
|
|
@@ -39,7 +41,19 @@ export const createIssueSchema = z.object({
|
|
|
39
41
|
requestDepth: z.number().int().nonnegative().optional().default(0),
|
|
40
42
|
billingCode: z.string().optional().nullable(),
|
|
41
43
|
assigneeAgentRuntimeOverrides: issueAssigneeAdapterOverridesSchema.optional().nullable(),
|
|
44
|
+
runWorkspaceId: z.string().uuid().optional().nullable(),
|
|
45
|
+
runWorkspacePreference: z.enum([
|
|
46
|
+
"inherit",
|
|
47
|
+
"shared_workspace",
|
|
48
|
+
"isolated_workspace",
|
|
49
|
+
"operator_branch",
|
|
50
|
+
"reuse_existing",
|
|
51
|
+
"agent_default",
|
|
52
|
+
]).optional().nullable(),
|
|
53
|
+
runWorkspaceSettings: issueRunWorkspaceSettingsSchema.optional().nullable(),
|
|
54
|
+
/** @deprecated Use runWorkspaceId. */
|
|
42
55
|
executionWorkspaceId: z.string().uuid().optional().nullable(),
|
|
56
|
+
/** @deprecated Use runWorkspacePreference. */
|
|
43
57
|
executionWorkspacePreference: z.enum([
|
|
44
58
|
"inherit",
|
|
45
59
|
"shared_workspace",
|
|
@@ -48,7 +62,8 @@ export const createIssueSchema = z.object({
|
|
|
48
62
|
"reuse_existing",
|
|
49
63
|
"agent_default",
|
|
50
64
|
]).optional().nullable(),
|
|
51
|
-
|
|
65
|
+
/** @deprecated Use runWorkspaceSettings. */
|
|
66
|
+
executionWorkspaceSettings: issueRunWorkspaceSettingsSchema.optional().nullable(),
|
|
52
67
|
labelIds: z.array(z.string().uuid()).optional(),
|
|
53
68
|
});
|
|
54
69
|
export const createIssueLabelSchema = z.object({
|
|
@@ -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,
|
|
1
|
+
{"version":3,"file":"issue.js","sourceRoot":"","sources":["../../src/validators/issue.ts"],"names":[],"mappings":"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"}
|
|
@@ -163,9 +163,9 @@ export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
|
|
|
163
163
|
path: string;
|
|
164
164
|
description: string | null;
|
|
165
165
|
name: string;
|
|
166
|
+
key: string;
|
|
166
167
|
sourceType: string;
|
|
167
168
|
metadata: Record<string, unknown> | null;
|
|
168
|
-
key: string;
|
|
169
169
|
slug: string;
|
|
170
170
|
sourceLocator: string | null;
|
|
171
171
|
sourceRef: string | null;
|
|
@@ -179,9 +179,9 @@ export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
|
|
|
179
179
|
path: string;
|
|
180
180
|
description: string | null;
|
|
181
181
|
name: string;
|
|
182
|
+
key: string;
|
|
182
183
|
sourceType: string;
|
|
183
184
|
metadata: Record<string, unknown> | null;
|
|
184
|
-
key: string;
|
|
185
185
|
slug: string;
|
|
186
186
|
sourceLocator: string | null;
|
|
187
187
|
sourceRef: string | null;
|
|
@@ -217,9 +217,9 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
217
217
|
isPrimary: z.ZodBoolean;
|
|
218
218
|
}, "strip", z.ZodTypeAny, {
|
|
219
219
|
name: string;
|
|
220
|
+
key: string;
|
|
220
221
|
sourceType: string | null;
|
|
221
222
|
metadata: Record<string, unknown> | null;
|
|
222
|
-
key: string;
|
|
223
223
|
repoUrl: string | null;
|
|
224
224
|
repoRef: string | null;
|
|
225
225
|
defaultRef: string | null;
|
|
@@ -229,9 +229,9 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
229
229
|
isPrimary: boolean;
|
|
230
230
|
}, {
|
|
231
231
|
name: string;
|
|
232
|
+
key: string;
|
|
232
233
|
sourceType: string | null;
|
|
233
234
|
metadata: Record<string, unknown> | null;
|
|
234
|
-
key: string;
|
|
235
235
|
repoUrl: string | null;
|
|
236
236
|
repoRef: string | null;
|
|
237
237
|
defaultRef: string | null;
|
|
@@ -255,9 +255,9 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
255
255
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
256
256
|
workspaces: {
|
|
257
257
|
name: string;
|
|
258
|
+
key: string;
|
|
258
259
|
sourceType: string | null;
|
|
259
260
|
metadata: Record<string, unknown> | null;
|
|
260
|
-
key: string;
|
|
261
261
|
repoUrl: string | null;
|
|
262
262
|
repoRef: string | null;
|
|
263
263
|
defaultRef: string | null;
|
|
@@ -280,9 +280,9 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
280
280
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
281
281
|
workspaces?: {
|
|
282
282
|
name: string;
|
|
283
|
+
key: string;
|
|
283
284
|
sourceType: string | null;
|
|
284
285
|
metadata: Record<string, unknown> | null;
|
|
285
|
-
key: string;
|
|
286
286
|
repoUrl: string | null;
|
|
287
287
|
repoRef: string | null;
|
|
288
288
|
defaultRef: string | null;
|
|
@@ -643,9 +643,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
643
643
|
path: string;
|
|
644
644
|
description: string | null;
|
|
645
645
|
name: string;
|
|
646
|
+
key: string;
|
|
646
647
|
sourceType: string;
|
|
647
648
|
metadata: Record<string, unknown> | null;
|
|
648
|
-
key: string;
|
|
649
649
|
slug: string;
|
|
650
650
|
sourceLocator: string | null;
|
|
651
651
|
sourceRef: string | null;
|
|
@@ -659,9 +659,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
659
659
|
path: string;
|
|
660
660
|
description: string | null;
|
|
661
661
|
name: string;
|
|
662
|
+
key: string;
|
|
662
663
|
sourceType: string;
|
|
663
664
|
metadata: Record<string, unknown> | null;
|
|
664
|
-
key: string;
|
|
665
665
|
slug: string;
|
|
666
666
|
sourceLocator: string | null;
|
|
667
667
|
sourceRef: string | null;
|
|
@@ -697,9 +697,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
697
697
|
isPrimary: z.ZodBoolean;
|
|
698
698
|
}, "strip", z.ZodTypeAny, {
|
|
699
699
|
name: string;
|
|
700
|
+
key: string;
|
|
700
701
|
sourceType: string | null;
|
|
701
702
|
metadata: Record<string, unknown> | null;
|
|
702
|
-
key: string;
|
|
703
703
|
repoUrl: string | null;
|
|
704
704
|
repoRef: string | null;
|
|
705
705
|
defaultRef: string | null;
|
|
@@ -709,9 +709,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
709
709
|
isPrimary: boolean;
|
|
710
710
|
}, {
|
|
711
711
|
name: string;
|
|
712
|
+
key: string;
|
|
712
713
|
sourceType: string | null;
|
|
713
714
|
metadata: Record<string, unknown> | null;
|
|
714
|
-
key: string;
|
|
715
715
|
repoUrl: string | null;
|
|
716
716
|
repoRef: string | null;
|
|
717
717
|
defaultRef: string | null;
|
|
@@ -735,9 +735,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
735
735
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
736
736
|
workspaces: {
|
|
737
737
|
name: string;
|
|
738
|
+
key: string;
|
|
738
739
|
sourceType: string | null;
|
|
739
740
|
metadata: Record<string, unknown> | null;
|
|
740
|
-
key: string;
|
|
741
741
|
repoUrl: string | null;
|
|
742
742
|
repoRef: string | null;
|
|
743
743
|
defaultRef: string | null;
|
|
@@ -760,9 +760,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
760
760
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
761
761
|
workspaces?: {
|
|
762
762
|
name: string;
|
|
763
|
+
key: string;
|
|
763
764
|
sourceType: string | null;
|
|
764
765
|
metadata: Record<string, unknown> | null;
|
|
765
|
-
key: string;
|
|
766
766
|
repoUrl: string | null;
|
|
767
767
|
repoRef: string | null;
|
|
768
768
|
defaultRef: string | null;
|
|
@@ -1007,9 +1007,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1007
1007
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
1008
1008
|
workspaces: {
|
|
1009
1009
|
name: string;
|
|
1010
|
+
key: string;
|
|
1010
1011
|
sourceType: string | null;
|
|
1011
1012
|
metadata: Record<string, unknown> | null;
|
|
1012
|
-
key: string;
|
|
1013
1013
|
repoUrl: string | null;
|
|
1014
1014
|
repoRef: string | null;
|
|
1015
1015
|
defaultRef: string | null;
|
|
@@ -1034,9 +1034,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1034
1034
|
path: string;
|
|
1035
1035
|
description: string | null;
|
|
1036
1036
|
name: string;
|
|
1037
|
+
key: string;
|
|
1037
1038
|
sourceType: string;
|
|
1038
1039
|
metadata: Record<string, unknown> | null;
|
|
1039
|
-
key: string;
|
|
1040
1040
|
slug: string;
|
|
1041
1041
|
sourceLocator: string | null;
|
|
1042
1042
|
sourceRef: string | null;
|
|
@@ -1147,9 +1147,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1147
1147
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
1148
1148
|
workspaces?: {
|
|
1149
1149
|
name: string;
|
|
1150
|
+
key: string;
|
|
1150
1151
|
sourceType: string | null;
|
|
1151
1152
|
metadata: Record<string, unknown> | null;
|
|
1152
|
-
key: string;
|
|
1153
1153
|
repoUrl: string | null;
|
|
1154
1154
|
repoRef: string | null;
|
|
1155
1155
|
defaultRef: string | null;
|
|
@@ -1163,9 +1163,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1163
1163
|
path: string;
|
|
1164
1164
|
description: string | null;
|
|
1165
1165
|
name: string;
|
|
1166
|
+
key: string;
|
|
1166
1167
|
sourceType: string;
|
|
1167
1168
|
metadata: Record<string, unknown> | null;
|
|
1168
|
-
key: string;
|
|
1169
1169
|
slug: string;
|
|
1170
1170
|
sourceLocator: string | null;
|
|
1171
1171
|
sourceRef: string | null;
|