@rudderhq/shared 0.2.0-canary.9 → 0.2.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 +1 -1
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +1 -1
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/adapter-skills.d.ts +10 -0
- package/dist/types/adapter-skills.d.ts.map +1 -1
- package/dist/types/chat.d.ts +2 -1
- package/dist/types/chat.d.ts.map +1 -1
- package/dist/types/cost.d.ts +19 -1
- package/dist/types/cost.d.ts.map +1 -1
- package/dist/types/index.d.ts +3 -3
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/issue.d.ts +15 -0
- package/dist/types/issue.d.ts.map +1 -1
- package/dist/types/messenger.d.ts +2 -0
- package/dist/types/messenger.d.ts.map +1 -1
- package/dist/types/organization.d.ts +3 -0
- package/dist/types/organization.d.ts.map +1 -1
- package/dist/validators/adapter-skills.d.ts +8 -0
- package/dist/validators/adapter-skills.d.ts.map +1 -1
- package/dist/validators/adapter-skills.js +3 -0
- package/dist/validators/adapter-skills.js.map +1 -1
- package/dist/validators/automation.d.ts +4 -4
- package/dist/validators/calendar.d.ts +8 -8
- package/dist/validators/chat.d.ts +13 -3
- package/dist/validators/chat.d.ts.map +1 -1
- package/dist/validators/chat.js +2 -0
- package/dist/validators/chat.js.map +1 -1
- package/dist/validators/finance.d.ts +4 -4
- package/dist/validators/goal.d.ts +4 -4
- package/dist/validators/index.d.ts +2 -2
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +2 -2
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/issue.d.ts +30 -4
- package/dist/validators/issue.d.ts.map +1 -1
- package/dist/validators/issue.js +9 -0
- package/dist/validators/issue.js.map +1 -1
- package/dist/validators/organization-portability.d.ts +6 -6
- package/dist/validators/organization-skill.d.ts +22 -22
- package/dist/validators/plugin.d.ts +4 -4
- package/dist/validators/project.d.ts +4 -4
- package/package.json +1 -1
|
@@ -138,6 +138,7 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
138
138
|
title: string;
|
|
139
139
|
priority: "critical" | "high" | "medium" | "low";
|
|
140
140
|
requestDepth: number;
|
|
141
|
+
description?: string | null | undefined;
|
|
141
142
|
assigneeAgentId?: string | null | undefined;
|
|
142
143
|
assigneeUserId?: string | null | undefined;
|
|
143
144
|
reviewerUserId?: string | null | undefined;
|
|
@@ -145,7 +146,6 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
145
146
|
projectWorkspaceId?: string | null | undefined;
|
|
146
147
|
goalId?: string | null | undefined;
|
|
147
148
|
parentId?: string | null | undefined;
|
|
148
|
-
description?: string | null | undefined;
|
|
149
149
|
reviewerAgentId?: string | null | undefined;
|
|
150
150
|
billingCode?: string | null | undefined;
|
|
151
151
|
assigneeAgentRuntimeOverrides?: {
|
|
@@ -170,6 +170,7 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
170
170
|
}, {
|
|
171
171
|
title: string;
|
|
172
172
|
status?: "backlog" | "todo" | "in_progress" | "in_review" | "done" | "blocked" | "cancelled" | undefined;
|
|
173
|
+
description?: string | null | undefined;
|
|
173
174
|
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
174
175
|
assigneeAgentId?: string | null | undefined;
|
|
175
176
|
assigneeUserId?: string | null | undefined;
|
|
@@ -178,7 +179,6 @@ export declare const createIssueSchema: z.ZodObject<{
|
|
|
178
179
|
projectWorkspaceId?: string | null | undefined;
|
|
179
180
|
goalId?: string | null | undefined;
|
|
180
181
|
parentId?: string | null | undefined;
|
|
181
|
-
description?: string | null | undefined;
|
|
182
182
|
reviewerAgentId?: string | null | undefined;
|
|
183
183
|
requestDepth?: number | undefined;
|
|
184
184
|
billingCode?: string | null | undefined;
|
|
@@ -311,10 +311,12 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
311
311
|
comment: z.ZodOptional<z.ZodString>;
|
|
312
312
|
reopen: z.ZodOptional<z.ZodBoolean>;
|
|
313
313
|
hiddenAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
314
|
+
reviewDecision: z.ZodOptional<z.ZodEnum<["approve", "request_changes", "needs_followup", "blocked"]>>;
|
|
314
315
|
}, "strip", z.ZodTypeAny, {
|
|
315
316
|
comment?: string | undefined;
|
|
316
317
|
status?: "backlog" | "todo" | "in_progress" | "in_review" | "done" | "blocked" | "cancelled" | undefined;
|
|
317
318
|
title?: string | undefined;
|
|
319
|
+
description?: string | null | undefined;
|
|
318
320
|
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
319
321
|
assigneeAgentId?: string | null | undefined;
|
|
320
322
|
assigneeUserId?: string | null | undefined;
|
|
@@ -323,7 +325,6 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
323
325
|
projectWorkspaceId?: string | null | undefined;
|
|
324
326
|
goalId?: string | null | undefined;
|
|
325
327
|
parentId?: string | null | undefined;
|
|
326
|
-
description?: string | null | undefined;
|
|
327
328
|
reviewerAgentId?: string | null | undefined;
|
|
328
329
|
requestDepth?: number | undefined;
|
|
329
330
|
billingCode?: string | null | undefined;
|
|
@@ -348,10 +349,12 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
348
349
|
hiddenAt?: string | null | undefined;
|
|
349
350
|
labelIds?: string[] | undefined;
|
|
350
351
|
reopen?: boolean | undefined;
|
|
352
|
+
reviewDecision?: "blocked" | "approve" | "request_changes" | "needs_followup" | undefined;
|
|
351
353
|
}, {
|
|
352
354
|
comment?: string | undefined;
|
|
353
355
|
status?: "backlog" | "todo" | "in_progress" | "in_review" | "done" | "blocked" | "cancelled" | undefined;
|
|
354
356
|
title?: string | undefined;
|
|
357
|
+
description?: string | null | undefined;
|
|
355
358
|
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
356
359
|
assigneeAgentId?: string | null | undefined;
|
|
357
360
|
assigneeUserId?: string | null | undefined;
|
|
@@ -360,7 +363,6 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
360
363
|
projectWorkspaceId?: string | null | undefined;
|
|
361
364
|
goalId?: string | null | undefined;
|
|
362
365
|
parentId?: string | null | undefined;
|
|
363
|
-
description?: string | null | undefined;
|
|
364
366
|
reviewerAgentId?: string | null | undefined;
|
|
365
367
|
requestDepth?: number | undefined;
|
|
366
368
|
billingCode?: string | null | undefined;
|
|
@@ -385,6 +387,7 @@ export declare const updateIssueSchema: z.ZodObject<{
|
|
|
385
387
|
hiddenAt?: string | null | undefined;
|
|
386
388
|
labelIds?: string[] | undefined;
|
|
387
389
|
reopen?: boolean | undefined;
|
|
390
|
+
reviewDecision?: "blocked" | "approve" | "request_changes" | "needs_followup" | undefined;
|
|
388
391
|
}>;
|
|
389
392
|
export type UpdateIssue = z.infer<typeof updateIssueSchema>;
|
|
390
393
|
export type IssueExecutionWorkspaceSettings = z.infer<typeof issueExecutionWorkspaceSettingsSchema>;
|
|
@@ -445,6 +448,29 @@ export declare const addIssueCommentSchema: z.ZodObject<{
|
|
|
445
448
|
interrupt?: boolean | undefined;
|
|
446
449
|
}>;
|
|
447
450
|
export type AddIssueComment = z.infer<typeof addIssueCommentSchema>;
|
|
451
|
+
export declare const reportIssueCommitSchema: z.ZodObject<{
|
|
452
|
+
sha: z.ZodString;
|
|
453
|
+
message: z.ZodString;
|
|
454
|
+
branch: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
455
|
+
repoPath: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
456
|
+
workspacePath: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
457
|
+
commitCount: z.ZodOptional<z.ZodNumber>;
|
|
458
|
+
}, "strip", z.ZodTypeAny, {
|
|
459
|
+
message: string;
|
|
460
|
+
sha: string;
|
|
461
|
+
branch?: string | null | undefined;
|
|
462
|
+
repoPath?: string | null | undefined;
|
|
463
|
+
workspacePath?: string | null | undefined;
|
|
464
|
+
commitCount?: number | undefined;
|
|
465
|
+
}, {
|
|
466
|
+
message: string;
|
|
467
|
+
sha: string;
|
|
468
|
+
branch?: string | null | undefined;
|
|
469
|
+
repoPath?: string | null | undefined;
|
|
470
|
+
workspacePath?: string | null | undefined;
|
|
471
|
+
commitCount?: number | undefined;
|
|
472
|
+
}>;
|
|
473
|
+
export type ReportIssueCommit = z.infer<typeof reportIssueCommitSchema>;
|
|
448
474
|
export declare const linkIssueApprovalSchema: z.ZodObject<{
|
|
449
475
|
approvalId: z.ZodString;
|
|
450
476
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2B5B,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,sBAAsB;;;;;;;;;;;;;;;EAKlC,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,iBAAiB
|
|
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
|
@@ -62,6 +62,7 @@ export const updateIssueSchema = createIssueSchema.partial().extend({
|
|
|
62
62
|
comment: z.string().min(1).optional(),
|
|
63
63
|
reopen: z.boolean().optional(),
|
|
64
64
|
hiddenAt: z.string().datetime().nullable().optional(),
|
|
65
|
+
reviewDecision: z.enum(["approve", "request_changes", "needs_followup", "blocked"]).optional(),
|
|
65
66
|
});
|
|
66
67
|
export const reorderIssueSchema = z
|
|
67
68
|
.object({
|
|
@@ -83,6 +84,14 @@ export const addIssueCommentSchema = z.object({
|
|
|
83
84
|
reopen: z.boolean().optional(),
|
|
84
85
|
interrupt: z.boolean().optional(),
|
|
85
86
|
});
|
|
87
|
+
export const reportIssueCommitSchema = z.object({
|
|
88
|
+
sha: z.string().trim().regex(/^[0-9a-f]{7,64}$/i, "Commit SHA must be 7 to 64 hexadecimal characters"),
|
|
89
|
+
message: z.string().trim().min(1).max(500),
|
|
90
|
+
branch: z.string().trim().min(1).max(255).optional().nullable(),
|
|
91
|
+
repoPath: z.string().trim().min(1).max(2048).optional().nullable(),
|
|
92
|
+
workspacePath: z.string().trim().min(1).max(2048).optional().nullable(),
|
|
93
|
+
commitCount: z.number().int().positive().max(1000).optional(),
|
|
94
|
+
});
|
|
86
95
|
export const linkIssueApprovalSchema = z.object({
|
|
87
96
|
approvalId: z.string().uuid(),
|
|
88
97
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"issue.js","sourceRoot":"","sources":["../../src/validators/issue.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"issue.js","sourceRoot":"","sources":["../../src/validators/issue.ts"],"names":[],"mappings":"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"}
|
|
@@ -459,8 +459,8 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
459
459
|
path: string;
|
|
460
460
|
identifier: string | null;
|
|
461
461
|
title: string;
|
|
462
|
-
priority: string | null;
|
|
463
462
|
description: string | null;
|
|
463
|
+
priority: string | null;
|
|
464
464
|
billingCode: string | null;
|
|
465
465
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
466
466
|
executionWorkspaceSettings: Record<string, unknown> | null;
|
|
@@ -490,8 +490,8 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
490
490
|
path: string;
|
|
491
491
|
identifier: string | null;
|
|
492
492
|
title: string;
|
|
493
|
-
priority: string | null;
|
|
494
493
|
description: string | null;
|
|
494
|
+
priority: string | null;
|
|
495
495
|
billingCode: string | null;
|
|
496
496
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
497
497
|
executionWorkspaceSettings: Record<string, unknown> | null;
|
|
@@ -861,8 +861,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
861
861
|
path: string;
|
|
862
862
|
identifier: string | null;
|
|
863
863
|
title: string;
|
|
864
|
-
priority: string | null;
|
|
865
864
|
description: string | null;
|
|
865
|
+
priority: string | null;
|
|
866
866
|
billingCode: string | null;
|
|
867
867
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
868
868
|
executionWorkspaceSettings: Record<string, unknown> | null;
|
|
@@ -892,8 +892,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
892
892
|
path: string;
|
|
893
893
|
identifier: string | null;
|
|
894
894
|
title: string;
|
|
895
|
-
priority: string | null;
|
|
896
895
|
description: string | null;
|
|
896
|
+
priority: string | null;
|
|
897
897
|
billingCode: string | null;
|
|
898
898
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
899
899
|
executionWorkspaceSettings: Record<string, unknown> | null;
|
|
@@ -950,8 +950,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
950
950
|
path: string;
|
|
951
951
|
identifier: string | null;
|
|
952
952
|
title: string;
|
|
953
|
-
priority: string | null;
|
|
954
953
|
description: string | null;
|
|
954
|
+
priority: string | null;
|
|
955
955
|
billingCode: string | null;
|
|
956
956
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
957
957
|
executionWorkspaceSettings: Record<string, unknown> | null;
|
|
@@ -1119,8 +1119,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1119
1119
|
path: string;
|
|
1120
1120
|
identifier: string | null;
|
|
1121
1121
|
title: string;
|
|
1122
|
-
priority: string | null;
|
|
1123
1122
|
description: string | null;
|
|
1123
|
+
priority: string | null;
|
|
1124
1124
|
billingCode: string | null;
|
|
1125
1125
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
1126
1126
|
executionWorkspaceSettings: Record<string, unknown> | null;
|
|
@@ -42,9 +42,9 @@ export declare const organizationSkillSchema: z.ZodObject<{
|
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
updatedAt: Date;
|
|
44
44
|
markdown: string;
|
|
45
|
+
description: string | null;
|
|
45
46
|
id: string;
|
|
46
47
|
orgId: string;
|
|
47
|
-
description: string | null;
|
|
48
48
|
createdAt: Date;
|
|
49
49
|
name: string;
|
|
50
50
|
metadata: Record<string, unknown> | null;
|
|
@@ -62,9 +62,9 @@ export declare const organizationSkillSchema: z.ZodObject<{
|
|
|
62
62
|
}, {
|
|
63
63
|
updatedAt: Date;
|
|
64
64
|
markdown: string;
|
|
65
|
+
description: string | null;
|
|
65
66
|
id: string;
|
|
66
67
|
orgId: string;
|
|
67
|
-
description: string | null;
|
|
68
68
|
createdAt: Date;
|
|
69
69
|
name: string;
|
|
70
70
|
metadata: Record<string, unknown> | null;
|
|
@@ -117,9 +117,9 @@ export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
|
117
117
|
}, "strip", z.ZodTypeAny, {
|
|
118
118
|
updatedAt: Date;
|
|
119
119
|
markdown: string;
|
|
120
|
+
description: string | null;
|
|
120
121
|
id: string;
|
|
121
122
|
orgId: string;
|
|
122
|
-
description: string | null;
|
|
123
123
|
createdAt: Date;
|
|
124
124
|
name: string;
|
|
125
125
|
metadata: Record<string, unknown> | null;
|
|
@@ -144,9 +144,9 @@ export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
|
144
144
|
}, {
|
|
145
145
|
updatedAt: Date;
|
|
146
146
|
markdown: string;
|
|
147
|
+
description: string | null;
|
|
147
148
|
id: string;
|
|
148
149
|
orgId: string;
|
|
149
|
-
description: string | null;
|
|
150
150
|
createdAt: Date;
|
|
151
151
|
name: string;
|
|
152
152
|
metadata: Record<string, unknown> | null;
|
|
@@ -250,9 +250,9 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
250
250
|
}, "strip", z.ZodTypeAny, {
|
|
251
251
|
updatedAt: Date;
|
|
252
252
|
markdown: string;
|
|
253
|
+
description: string | null;
|
|
253
254
|
id: string;
|
|
254
255
|
orgId: string;
|
|
255
|
-
description: string | null;
|
|
256
256
|
createdAt: Date;
|
|
257
257
|
name: string;
|
|
258
258
|
metadata: Record<string, unknown> | null;
|
|
@@ -285,9 +285,9 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
285
285
|
}, {
|
|
286
286
|
updatedAt: Date;
|
|
287
287
|
markdown: string;
|
|
288
|
+
description: string | null;
|
|
288
289
|
id: string;
|
|
289
290
|
orgId: string;
|
|
290
|
-
description: string | null;
|
|
291
291
|
createdAt: Date;
|
|
292
292
|
name: string;
|
|
293
293
|
metadata: Record<string, unknown> | null;
|
|
@@ -449,9 +449,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
449
449
|
}, "strip", z.ZodTypeAny, {
|
|
450
450
|
updatedAt: Date;
|
|
451
451
|
markdown: string;
|
|
452
|
+
description: string | null;
|
|
452
453
|
id: string;
|
|
453
454
|
orgId: string;
|
|
454
|
-
description: string | null;
|
|
455
455
|
createdAt: Date;
|
|
456
456
|
name: string;
|
|
457
457
|
metadata: Record<string, unknown> | null;
|
|
@@ -469,9 +469,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
469
469
|
}, {
|
|
470
470
|
updatedAt: Date;
|
|
471
471
|
markdown: string;
|
|
472
|
+
description: string | null;
|
|
472
473
|
id: string;
|
|
473
474
|
orgId: string;
|
|
474
|
-
description: string | null;
|
|
475
475
|
createdAt: Date;
|
|
476
476
|
name: string;
|
|
477
477
|
metadata: Record<string, unknown> | null;
|
|
@@ -516,9 +516,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
516
516
|
}, "strip", z.ZodTypeAny, {
|
|
517
517
|
updatedAt: Date;
|
|
518
518
|
markdown: string;
|
|
519
|
+
description: string | null;
|
|
519
520
|
id: string;
|
|
520
521
|
orgId: string;
|
|
521
|
-
description: string | null;
|
|
522
522
|
createdAt: Date;
|
|
523
523
|
name: string;
|
|
524
524
|
metadata: Record<string, unknown> | null;
|
|
@@ -536,9 +536,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
536
536
|
}, {
|
|
537
537
|
updatedAt: Date;
|
|
538
538
|
markdown: string;
|
|
539
|
+
description: string | null;
|
|
539
540
|
id: string;
|
|
540
541
|
orgId: string;
|
|
541
|
-
description: string | null;
|
|
542
542
|
createdAt: Date;
|
|
543
543
|
name: string;
|
|
544
544
|
metadata: Record<string, unknown> | null;
|
|
@@ -618,9 +618,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
618
618
|
imported: {
|
|
619
619
|
updatedAt: Date;
|
|
620
620
|
markdown: string;
|
|
621
|
+
description: string | null;
|
|
621
622
|
id: string;
|
|
622
623
|
orgId: string;
|
|
623
|
-
description: string | null;
|
|
624
624
|
createdAt: Date;
|
|
625
625
|
name: string;
|
|
626
626
|
metadata: Record<string, unknown> | null;
|
|
@@ -647,9 +647,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
647
647
|
updated: {
|
|
648
648
|
updatedAt: Date;
|
|
649
649
|
markdown: string;
|
|
650
|
+
description: string | null;
|
|
650
651
|
id: string;
|
|
651
652
|
orgId: string;
|
|
652
|
-
description: string | null;
|
|
653
653
|
createdAt: Date;
|
|
654
654
|
name: string;
|
|
655
655
|
metadata: Record<string, unknown> | null;
|
|
@@ -686,9 +686,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
686
686
|
imported: {
|
|
687
687
|
updatedAt: Date;
|
|
688
688
|
markdown: string;
|
|
689
|
+
description: string | null;
|
|
689
690
|
id: string;
|
|
690
691
|
orgId: string;
|
|
691
|
-
description: string | null;
|
|
692
692
|
createdAt: Date;
|
|
693
693
|
name: string;
|
|
694
694
|
metadata: Record<string, unknown> | null;
|
|
@@ -715,9 +715,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
715
715
|
updated: {
|
|
716
716
|
updatedAt: Date;
|
|
717
717
|
markdown: string;
|
|
718
|
+
description: string | null;
|
|
718
719
|
id: string;
|
|
719
720
|
orgId: string;
|
|
720
|
-
description: string | null;
|
|
721
721
|
createdAt: Date;
|
|
722
722
|
name: string;
|
|
723
723
|
metadata: Record<string, unknown> | null;
|
|
@@ -831,9 +831,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
831
831
|
}, "strip", z.ZodTypeAny, {
|
|
832
832
|
updatedAt: Date;
|
|
833
833
|
markdown: string;
|
|
834
|
+
description: string | null;
|
|
834
835
|
id: string;
|
|
835
836
|
orgId: string;
|
|
836
|
-
description: string | null;
|
|
837
837
|
createdAt: Date;
|
|
838
838
|
name: string;
|
|
839
839
|
metadata: Record<string, unknown> | null;
|
|
@@ -851,9 +851,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
851
851
|
}, {
|
|
852
852
|
updatedAt: Date;
|
|
853
853
|
markdown: string;
|
|
854
|
+
description: string | null;
|
|
854
855
|
id: string;
|
|
855
856
|
orgId: string;
|
|
856
|
-
description: string | null;
|
|
857
857
|
createdAt: Date;
|
|
858
858
|
name: string;
|
|
859
859
|
metadata: Record<string, unknown> | null;
|
|
@@ -898,9 +898,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
898
898
|
}, "strip", z.ZodTypeAny, {
|
|
899
899
|
updatedAt: Date;
|
|
900
900
|
markdown: string;
|
|
901
|
+
description: string | null;
|
|
901
902
|
id: string;
|
|
902
903
|
orgId: string;
|
|
903
|
-
description: string | null;
|
|
904
904
|
createdAt: Date;
|
|
905
905
|
name: string;
|
|
906
906
|
metadata: Record<string, unknown> | null;
|
|
@@ -918,9 +918,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
918
918
|
}, {
|
|
919
919
|
updatedAt: Date;
|
|
920
920
|
markdown: string;
|
|
921
|
+
description: string | null;
|
|
921
922
|
id: string;
|
|
922
923
|
orgId: string;
|
|
923
|
-
description: string | null;
|
|
924
924
|
createdAt: Date;
|
|
925
925
|
name: string;
|
|
926
926
|
metadata: Record<string, unknown> | null;
|
|
@@ -982,9 +982,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
982
982
|
imported: {
|
|
983
983
|
updatedAt: Date;
|
|
984
984
|
markdown: string;
|
|
985
|
+
description: string | null;
|
|
985
986
|
id: string;
|
|
986
987
|
orgId: string;
|
|
987
|
-
description: string | null;
|
|
988
988
|
createdAt: Date;
|
|
989
989
|
name: string;
|
|
990
990
|
metadata: Record<string, unknown> | null;
|
|
@@ -1008,9 +1008,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1008
1008
|
updated: {
|
|
1009
1009
|
updatedAt: Date;
|
|
1010
1010
|
markdown: string;
|
|
1011
|
+
description: string | null;
|
|
1011
1012
|
id: string;
|
|
1012
1013
|
orgId: string;
|
|
1013
|
-
description: string | null;
|
|
1014
1014
|
createdAt: Date;
|
|
1015
1015
|
name: string;
|
|
1016
1016
|
metadata: Record<string, unknown> | null;
|
|
@@ -1043,9 +1043,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1043
1043
|
imported: {
|
|
1044
1044
|
updatedAt: Date;
|
|
1045
1045
|
markdown: string;
|
|
1046
|
+
description: string | null;
|
|
1046
1047
|
id: string;
|
|
1047
1048
|
orgId: string;
|
|
1048
|
-
description: string | null;
|
|
1049
1049
|
createdAt: Date;
|
|
1050
1050
|
name: string;
|
|
1051
1051
|
metadata: Record<string, unknown> | null;
|
|
@@ -1069,9 +1069,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1069
1069
|
updated: {
|
|
1070
1070
|
updatedAt: Date;
|
|
1071
1071
|
markdown: string;
|
|
1072
|
+
description: string | null;
|
|
1072
1073
|
id: string;
|
|
1073
1074
|
orgId: string;
|
|
1074
|
-
description: string | null;
|
|
1075
1075
|
createdAt: Date;
|
|
1076
1076
|
name: string;
|
|
1077
1077
|
metadata: Record<string, unknown> | null;
|
|
@@ -713,8 +713,8 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
713
713
|
}>>;
|
|
714
714
|
}, "strip", z.ZodTypeAny, {
|
|
715
715
|
version: string;
|
|
716
|
-
id: string;
|
|
717
716
|
description: string;
|
|
717
|
+
id: string;
|
|
718
718
|
capabilities: ("organizations.read" | "projects.read" | "project.workspaces.read" | "issues.read" | "issue.comments.read" | "issue.documents.read" | "agents.read" | "goals.read" | "goals.create" | "goals.update" | "activity.read" | "costs.read" | "issues.create" | "issues.update" | "issue.comments.create" | "issue.documents.write" | "agents.pause" | "agents.resume" | "agents.invoke" | "agent.sessions.create" | "agent.sessions.list" | "agent.sessions.send" | "agent.sessions.close" | "activity.log.write" | "metrics.write" | "plugin.state.read" | "plugin.state.write" | "events.subscribe" | "events.emit" | "jobs.schedule" | "webhooks.receive" | "http.outbound" | "secrets.read-ref" | "agent.tools.register" | "instance.settings.register" | "ui.sidebar.register" | "ui.page.register" | "ui.detailTab.register" | "ui.dashboardWidget.register" | "ui.commentAnnotation.register" | "ui.action.register")[];
|
|
719
719
|
displayName: string;
|
|
720
720
|
apiVersion: 1;
|
|
@@ -793,8 +793,8 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
793
793
|
}[] | undefined;
|
|
794
794
|
}, {
|
|
795
795
|
version: string;
|
|
796
|
-
id: string;
|
|
797
796
|
description: string;
|
|
797
|
+
id: string;
|
|
798
798
|
capabilities: ("organizations.read" | "projects.read" | "project.workspaces.read" | "issues.read" | "issue.comments.read" | "issue.documents.read" | "agents.read" | "goals.read" | "goals.create" | "goals.update" | "activity.read" | "costs.read" | "issues.create" | "issues.update" | "issue.comments.create" | "issue.documents.write" | "agents.pause" | "agents.resume" | "agents.invoke" | "agent.sessions.create" | "agent.sessions.list" | "agent.sessions.send" | "agent.sessions.close" | "activity.log.write" | "metrics.write" | "plugin.state.read" | "plugin.state.write" | "events.subscribe" | "events.emit" | "jobs.schedule" | "webhooks.receive" | "http.outbound" | "secrets.read-ref" | "agent.tools.register" | "instance.settings.register" | "ui.sidebar.register" | "ui.page.register" | "ui.detailTab.register" | "ui.dashboardWidget.register" | "ui.commentAnnotation.register" | "ui.action.register")[];
|
|
799
799
|
displayName: string;
|
|
800
800
|
apiVersion: 1;
|
|
@@ -873,8 +873,8 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
873
873
|
}[] | undefined;
|
|
874
874
|
}>, {
|
|
875
875
|
version: string;
|
|
876
|
-
id: string;
|
|
877
876
|
description: string;
|
|
877
|
+
id: string;
|
|
878
878
|
capabilities: ("organizations.read" | "projects.read" | "project.workspaces.read" | "issues.read" | "issue.comments.read" | "issue.documents.read" | "agents.read" | "goals.read" | "goals.create" | "goals.update" | "activity.read" | "costs.read" | "issues.create" | "issues.update" | "issue.comments.create" | "issue.documents.write" | "agents.pause" | "agents.resume" | "agents.invoke" | "agent.sessions.create" | "agent.sessions.list" | "agent.sessions.send" | "agent.sessions.close" | "activity.log.write" | "metrics.write" | "plugin.state.read" | "plugin.state.write" | "events.subscribe" | "events.emit" | "jobs.schedule" | "webhooks.receive" | "http.outbound" | "secrets.read-ref" | "agent.tools.register" | "instance.settings.register" | "ui.sidebar.register" | "ui.page.register" | "ui.detailTab.register" | "ui.dashboardWidget.register" | "ui.commentAnnotation.register" | "ui.action.register")[];
|
|
879
879
|
displayName: string;
|
|
880
880
|
apiVersion: 1;
|
|
@@ -953,8 +953,8 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
953
953
|
}[] | undefined;
|
|
954
954
|
}, {
|
|
955
955
|
version: string;
|
|
956
|
-
id: string;
|
|
957
956
|
description: string;
|
|
957
|
+
id: string;
|
|
958
958
|
capabilities: ("organizations.read" | "projects.read" | "project.workspaces.read" | "issues.read" | "issue.comments.read" | "issue.documents.read" | "agents.read" | "goals.read" | "goals.create" | "goals.update" | "activity.read" | "costs.read" | "issues.create" | "issues.update" | "issue.comments.create" | "issue.documents.write" | "agents.pause" | "agents.resume" | "agents.invoke" | "agent.sessions.create" | "agent.sessions.list" | "agent.sessions.send" | "agent.sessions.close" | "activity.log.write" | "metrics.write" | "plugin.state.read" | "plugin.state.write" | "events.subscribe" | "events.emit" | "jobs.schedule" | "webhooks.receive" | "http.outbound" | "secrets.read-ref" | "agent.tools.register" | "instance.settings.register" | "ui.sidebar.register" | "ui.page.register" | "ui.detailTab.register" | "ui.dashboardWidget.register" | "ui.commentAnnotation.register" | "ui.action.register")[];
|
|
959
959
|
displayName: string;
|
|
960
960
|
apiVersion: 1;
|
|
@@ -320,8 +320,8 @@ export declare const createProjectSchema: z.ZodObject<{
|
|
|
320
320
|
}, "strip", z.ZodTypeAny, {
|
|
321
321
|
status: "backlog" | "in_progress" | "cancelled" | "planned" | "completed";
|
|
322
322
|
name: string;
|
|
323
|
-
goalId?: string | null | undefined;
|
|
324
323
|
description?: string | null | undefined;
|
|
324
|
+
goalId?: string | null | undefined;
|
|
325
325
|
targetDate?: string | null | undefined;
|
|
326
326
|
color?: string | null | undefined;
|
|
327
327
|
executionWorkspacePolicy?: {
|
|
@@ -365,8 +365,8 @@ export declare const createProjectSchema: z.ZodObject<{
|
|
|
365
365
|
}, {
|
|
366
366
|
name: string;
|
|
367
367
|
status?: "backlog" | "in_progress" | "cancelled" | "planned" | "completed" | undefined;
|
|
368
|
-
goalId?: string | null | undefined;
|
|
369
368
|
description?: string | null | undefined;
|
|
369
|
+
goalId?: string | null | undefined;
|
|
370
370
|
targetDate?: string | null | undefined;
|
|
371
371
|
color?: string | null | undefined;
|
|
372
372
|
executionWorkspacePolicy?: {
|
|
@@ -535,8 +535,8 @@ export declare const updateProjectSchema: z.ZodObject<{
|
|
|
535
535
|
archivedAt: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
536
536
|
}, "strip", z.ZodTypeAny, {
|
|
537
537
|
status?: "backlog" | "in_progress" | "cancelled" | "planned" | "completed" | undefined;
|
|
538
|
-
goalId?: string | null | undefined;
|
|
539
538
|
description?: string | null | undefined;
|
|
539
|
+
goalId?: string | null | undefined;
|
|
540
540
|
name?: string | undefined;
|
|
541
541
|
targetDate?: string | null | undefined;
|
|
542
542
|
color?: string | null | undefined;
|
|
@@ -580,8 +580,8 @@ export declare const updateProjectSchema: z.ZodObject<{
|
|
|
580
580
|
archivedAt?: string | null | undefined;
|
|
581
581
|
}, {
|
|
582
582
|
status?: "backlog" | "in_progress" | "cancelled" | "planned" | "completed" | undefined;
|
|
583
|
-
goalId?: string | null | undefined;
|
|
584
583
|
description?: string | null | undefined;
|
|
584
|
+
goalId?: string | null | undefined;
|
|
585
585
|
name?: string | undefined;
|
|
586
586
|
targetDate?: string | null | undefined;
|
|
587
587
|
color?: string | null | undefined;
|