@rudderhq/shared 0.3.6-canary.9 → 0.4.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/agent-run.d.ts +6 -0
- package/dist/agent-run.d.ts.map +1 -0
- package/dist/agent-run.js +96 -0
- package/dist/agent-run.js.map +1 -0
- package/dist/agent-run.test.d.ts +2 -0
- package/dist/agent-run.test.d.ts.map +1 -0
- package/dist/agent-run.test.js +196 -0
- package/dist/agent-run.test.js.map +1 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.d.ts.map +1 -1
- package/dist/api.js +1 -0
- package/dist/api.js.map +1 -1
- package/dist/config-schema.d.ts +37 -37
- package/dist/constants.d.ts +17 -9
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +30 -10
- 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/project-mentions.d.ts.map +1 -1
- package/dist/project-mentions.js +11 -5
- package/dist/project-mentions.js.map +1 -1
- package/dist/project-mentions.test.js +12 -12
- package/dist/project-mentions.test.js.map +1 -1
- package/dist/types/agent-integration.d.ts +13 -0
- package/dist/types/agent-integration.d.ts.map +1 -1
- package/dist/types/chat.d.ts +59 -1
- package/dist/types/chat.d.ts.map +1 -1
- package/dist/types/heartbeat.d.ts +24 -1
- package/dist/types/heartbeat.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/messenger.d.ts +1 -0
- package/dist/types/messenger.d.ts.map +1 -1
- package/dist/types/plugin.d.ts +8 -8
- package/dist/types/workspace-backup.d.ts +6 -0
- package/dist/types/workspace-backup.d.ts.map +1 -1
- package/dist/validators/adapter-skills.d.ts +2 -2
- package/dist/validators/agent-integration.d.ts +2 -2
- package/dist/validators/agent.d.ts +12 -4
- package/dist/validators/agent.d.ts.map +1 -1
- package/dist/validators/agent.js +8 -0
- package/dist/validators/agent.js.map +1 -1
- package/dist/validators/automation.d.ts +17 -9
- package/dist/validators/automation.d.ts.map +1 -1
- package/dist/validators/automation.js +8 -0
- package/dist/validators/automation.js.map +1 -1
- package/dist/validators/calendar.d.ts +20 -20
- package/dist/validators/chat.d.ts +226 -46
- package/dist/validators/chat.d.ts.map +1 -1
- package/dist/validators/chat.js +32 -0
- package/dist/validators/chat.js.map +1 -1
- package/dist/validators/cost.d.ts +8 -8
- package/dist/validators/finance.d.ts +12 -12
- package/dist/validators/index.d.ts +1 -1
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +1 -1
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/instance.d.ts +2 -2
- package/dist/validators/issue.d.ts +8 -0
- package/dist/validators/issue.d.ts.map +1 -1
- package/dist/validators/issue.js +8 -0
- package/dist/validators/issue.js.map +1 -1
- package/dist/validators/organization-portability.d.ts +76 -76
- package/dist/validators/organization-skill.d.ts +74 -74
- package/dist/validators/plugin.d.ts +67 -67
- package/dist/validators/plugin.js +12 -12
- package/dist/validators/plugin.js.map +1 -1
- package/dist/validators/secret.d.ts +14 -14
- package/dist/validators/work-product.d.ts +4 -4
- package/package.json +1 -1
|
@@ -7,7 +7,7 @@ import { z } from "zod";
|
|
|
7
7
|
* Used to validate `instanceConfigSchema` and `parametersSchema` fields in the
|
|
8
8
|
* plugin manifest without fully parsing JSON Schema.
|
|
9
9
|
*
|
|
10
|
-
* @see
|
|
10
|
+
* @see doc/engineering/PLUGIN_RUNTIME_CONTRACT.md — Manifest shape
|
|
11
11
|
*/
|
|
12
12
|
export declare const jsonSchemaSchema: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, Record<string, unknown>>;
|
|
13
13
|
export declare const pluginJobDeclarationSchema: z.ZodObject<{
|
|
@@ -31,7 +31,7 @@ export type PluginJobDeclarationInput = z.infer<typeof pluginJobDeclarationSchem
|
|
|
31
31
|
* Validates a {@link PluginWebhookDeclaration} — a webhook endpoint declared
|
|
32
32
|
* in the plugin manifest. Requires `endpointKey` and `displayName`.
|
|
33
33
|
*
|
|
34
|
-
* @see
|
|
34
|
+
* @see doc/engineering/PLUGIN_RUNTIME_CONTRACT.md — Webhooks
|
|
35
35
|
*/
|
|
36
36
|
export declare const pluginWebhookDeclarationSchema: z.ZodObject<{
|
|
37
37
|
endpointKey: z.ZodString;
|
|
@@ -52,7 +52,7 @@ export type PluginWebhookDeclarationInput = z.infer<typeof pluginWebhookDeclarat
|
|
|
52
52
|
* plugin. Requires `name`, `displayName`, `description`, and a valid
|
|
53
53
|
* `parametersSchema`. Requires the `agent.tools.register` capability.
|
|
54
54
|
*
|
|
55
|
-
* @see
|
|
55
|
+
* @see doc/engineering/PLUGIN_RUNTIME_CONTRACT.md — Agent Tools
|
|
56
56
|
*/
|
|
57
57
|
export declare const pluginToolDeclarationSchema: z.ZodObject<{
|
|
58
58
|
name: z.ZodString;
|
|
@@ -76,7 +76,7 @@ export type PluginToolDeclarationInput = z.infer<typeof pluginToolDeclarationSch
|
|
|
76
76
|
* fills with a React component. Includes `superRefine` checks for slot-specific
|
|
77
77
|
* requirements such as `entityTypes` for context-sensitive slots.
|
|
78
78
|
*
|
|
79
|
-
* @see
|
|
79
|
+
* @see doc/engineering/PLUGIN_RUNTIME_CONTRACT.md — UI Extension Model
|
|
80
80
|
*/
|
|
81
81
|
export declare const pluginUiSlotDeclarationSchema: z.ZodEffects<z.ZodObject<{
|
|
82
82
|
type: z.ZodEnum<["page", "detailTab", "taskDetailView", "dashboardWidget", "sidebar", "sidebarPanel", "projectSidebarItem", "globalToolbarButton", "toolbarButton", "contextMenuItem", "commentAnnotation", "commentContextMenuItem", "settingsPage"]>;
|
|
@@ -87,35 +87,35 @@ export declare const pluginUiSlotDeclarationSchema: z.ZodEffects<z.ZodObject<{
|
|
|
87
87
|
routePath: z.ZodOptional<z.ZodString>;
|
|
88
88
|
order: z.ZodOptional<z.ZodNumber>;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
91
90
|
id: string;
|
|
91
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
92
92
|
displayName: string;
|
|
93
93
|
exportName: string;
|
|
94
|
-
entityTypes?: ("
|
|
94
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
95
95
|
routePath?: string | undefined;
|
|
96
96
|
order?: number | undefined;
|
|
97
97
|
}, {
|
|
98
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
99
98
|
id: string;
|
|
99
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
100
100
|
displayName: string;
|
|
101
101
|
exportName: string;
|
|
102
|
-
entityTypes?: ("
|
|
102
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
103
103
|
routePath?: string | undefined;
|
|
104
104
|
order?: number | undefined;
|
|
105
105
|
}>, {
|
|
106
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
107
106
|
id: string;
|
|
107
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
108
108
|
displayName: string;
|
|
109
109
|
exportName: string;
|
|
110
|
-
entityTypes?: ("
|
|
110
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
111
111
|
routePath?: string | undefined;
|
|
112
112
|
order?: number | undefined;
|
|
113
113
|
}, {
|
|
114
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
115
114
|
id: string;
|
|
115
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
116
116
|
displayName: string;
|
|
117
117
|
exportName: string;
|
|
118
|
-
entityTypes?: ("
|
|
118
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
119
119
|
routePath?: string | undefined;
|
|
120
120
|
order?: number | undefined;
|
|
121
121
|
}>;
|
|
@@ -224,7 +224,7 @@ export declare const pluginLauncherDeclarationSchema: z.ZodEffects<z.ZodObject<{
|
|
|
224
224
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
225
225
|
description?: string | undefined;
|
|
226
226
|
exportName?: string | undefined;
|
|
227
|
-
entityTypes?: ("
|
|
227
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
228
228
|
order?: number | undefined;
|
|
229
229
|
render?: {
|
|
230
230
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -241,7 +241,7 @@ export declare const pluginLauncherDeclarationSchema: z.ZodEffects<z.ZodObject<{
|
|
|
241
241
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
242
242
|
description?: string | undefined;
|
|
243
243
|
exportName?: string | undefined;
|
|
244
|
-
entityTypes?: ("
|
|
244
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
245
245
|
order?: number | undefined;
|
|
246
246
|
render?: {
|
|
247
247
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -258,7 +258,7 @@ export declare const pluginLauncherDeclarationSchema: z.ZodEffects<z.ZodObject<{
|
|
|
258
258
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
259
259
|
description?: string | undefined;
|
|
260
260
|
exportName?: string | undefined;
|
|
261
|
-
entityTypes?: ("
|
|
261
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
262
262
|
order?: number | undefined;
|
|
263
263
|
render?: {
|
|
264
264
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -275,7 +275,7 @@ export declare const pluginLauncherDeclarationSchema: z.ZodEffects<z.ZodObject<{
|
|
|
275
275
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
276
276
|
description?: string | undefined;
|
|
277
277
|
exportName?: string | undefined;
|
|
278
|
-
entityTypes?: ("
|
|
278
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
279
279
|
order?: number | undefined;
|
|
280
280
|
render?: {
|
|
281
281
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -287,7 +287,7 @@ export type PluginLauncherDeclarationInput = z.infer<typeof pluginLauncherDeclar
|
|
|
287
287
|
* Zod schema for {@link PaperclipPluginManifestV1} — the complete runtime
|
|
288
288
|
* validator for plugin manifests read at install time.
|
|
289
289
|
*
|
|
290
|
-
* Field-level constraints (see
|
|
290
|
+
* Field-level constraints (see doc/engineering/PLUGIN_RUNTIME_CONTRACT.md for the normative rules):
|
|
291
291
|
*
|
|
292
292
|
* | Field | Type | Constraints |
|
|
293
293
|
* |--------------------------|------------|----------------------------------------------|
|
|
@@ -314,7 +314,7 @@ export type PluginLauncherDeclarationInput = z.infer<typeof pluginLauncherDeclar
|
|
|
314
314
|
* - duplicate `tools[].name` values are rejected
|
|
315
315
|
* - duplicate `ui.slots[].id` values are rejected
|
|
316
316
|
*
|
|
317
|
-
* @see
|
|
317
|
+
* @see doc/engineering/PLUGIN_RUNTIME_CONTRACT.md — Manifest shape
|
|
318
318
|
* @see {@link PaperclipPluginManifestV1} — the inferred TypeScript type
|
|
319
319
|
*/
|
|
320
320
|
export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
@@ -440,7 +440,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
440
440
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
441
441
|
description?: string | undefined;
|
|
442
442
|
exportName?: string | undefined;
|
|
443
|
-
entityTypes?: ("
|
|
443
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
444
444
|
order?: number | undefined;
|
|
445
445
|
render?: {
|
|
446
446
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -457,7 +457,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
457
457
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
458
458
|
description?: string | undefined;
|
|
459
459
|
exportName?: string | undefined;
|
|
460
|
-
entityTypes?: ("
|
|
460
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
461
461
|
order?: number | undefined;
|
|
462
462
|
render?: {
|
|
463
463
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -474,7 +474,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
474
474
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
475
475
|
description?: string | undefined;
|
|
476
476
|
exportName?: string | undefined;
|
|
477
|
-
entityTypes?: ("
|
|
477
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
478
478
|
order?: number | undefined;
|
|
479
479
|
render?: {
|
|
480
480
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -491,7 +491,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
491
491
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
492
492
|
description?: string | undefined;
|
|
493
493
|
exportName?: string | undefined;
|
|
494
|
-
entityTypes?: ("
|
|
494
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
495
495
|
order?: number | undefined;
|
|
496
496
|
render?: {
|
|
497
497
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -508,35 +508,35 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
508
508
|
routePath: z.ZodOptional<z.ZodString>;
|
|
509
509
|
order: z.ZodOptional<z.ZodNumber>;
|
|
510
510
|
}, "strip", z.ZodTypeAny, {
|
|
511
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
512
511
|
id: string;
|
|
512
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
513
513
|
displayName: string;
|
|
514
514
|
exportName: string;
|
|
515
|
-
entityTypes?: ("
|
|
515
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
516
516
|
routePath?: string | undefined;
|
|
517
517
|
order?: number | undefined;
|
|
518
518
|
}, {
|
|
519
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
520
519
|
id: string;
|
|
520
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
521
521
|
displayName: string;
|
|
522
522
|
exportName: string;
|
|
523
|
-
entityTypes?: ("
|
|
523
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
524
524
|
routePath?: string | undefined;
|
|
525
525
|
order?: number | undefined;
|
|
526
526
|
}>, {
|
|
527
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
528
527
|
id: string;
|
|
528
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
529
529
|
displayName: string;
|
|
530
530
|
exportName: string;
|
|
531
|
-
entityTypes?: ("
|
|
531
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
532
532
|
routePath?: string | undefined;
|
|
533
533
|
order?: number | undefined;
|
|
534
534
|
}, {
|
|
535
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
536
535
|
id: string;
|
|
536
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
537
537
|
displayName: string;
|
|
538
538
|
exportName: string;
|
|
539
|
-
entityTypes?: ("
|
|
539
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
540
540
|
routePath?: string | undefined;
|
|
541
541
|
order?: number | undefined;
|
|
542
542
|
}>, "many">>;
|
|
@@ -596,7 +596,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
596
596
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
597
597
|
description?: string | undefined;
|
|
598
598
|
exportName?: string | undefined;
|
|
599
|
-
entityTypes?: ("
|
|
599
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
600
600
|
order?: number | undefined;
|
|
601
601
|
render?: {
|
|
602
602
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -613,7 +613,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
613
613
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
614
614
|
description?: string | undefined;
|
|
615
615
|
exportName?: string | undefined;
|
|
616
|
-
entityTypes?: ("
|
|
616
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
617
617
|
order?: number | undefined;
|
|
618
618
|
render?: {
|
|
619
619
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -630,7 +630,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
630
630
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
631
631
|
description?: string | undefined;
|
|
632
632
|
exportName?: string | undefined;
|
|
633
|
-
entityTypes?: ("
|
|
633
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
634
634
|
order?: number | undefined;
|
|
635
635
|
render?: {
|
|
636
636
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -647,7 +647,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
647
647
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
648
648
|
description?: string | undefined;
|
|
649
649
|
exportName?: string | undefined;
|
|
650
|
-
entityTypes?: ("
|
|
650
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
651
651
|
order?: number | undefined;
|
|
652
652
|
render?: {
|
|
653
653
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -666,7 +666,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
666
666
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
667
667
|
description?: string | undefined;
|
|
668
668
|
exportName?: string | undefined;
|
|
669
|
-
entityTypes?: ("
|
|
669
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
670
670
|
order?: number | undefined;
|
|
671
671
|
render?: {
|
|
672
672
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -674,11 +674,11 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
674
674
|
} | undefined;
|
|
675
675
|
}[] | undefined;
|
|
676
676
|
slots?: {
|
|
677
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
678
677
|
id: string;
|
|
678
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
679
679
|
displayName: string;
|
|
680
680
|
exportName: string;
|
|
681
|
-
entityTypes?: ("
|
|
681
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
682
682
|
routePath?: string | undefined;
|
|
683
683
|
order?: number | undefined;
|
|
684
684
|
}[] | undefined;
|
|
@@ -694,7 +694,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
694
694
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
695
695
|
description?: string | undefined;
|
|
696
696
|
exportName?: string | undefined;
|
|
697
|
-
entityTypes?: ("
|
|
697
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
698
698
|
order?: number | undefined;
|
|
699
699
|
render?: {
|
|
700
700
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -702,19 +702,19 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
702
702
|
} | undefined;
|
|
703
703
|
}[] | undefined;
|
|
704
704
|
slots?: {
|
|
705
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
706
705
|
id: string;
|
|
706
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
707
707
|
displayName: string;
|
|
708
708
|
exportName: string;
|
|
709
|
-
entityTypes?: ("
|
|
709
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
710
710
|
routePath?: string | undefined;
|
|
711
711
|
order?: number | undefined;
|
|
712
712
|
}[] | undefined;
|
|
713
713
|
}>>;
|
|
714
714
|
}, "strip", z.ZodTypeAny, {
|
|
715
|
-
version: string;
|
|
716
715
|
id: string;
|
|
717
716
|
description: string;
|
|
717
|
+
version: string;
|
|
718
718
|
capabilities: ("organizations.read" | "projects.read" | "project.workspaces.read" | "issues.read" | "issue.comments.read" | "agents.read" | "goals.read" | "goals.create" | "goals.update" | "activity.read" | "costs.read" | "issues.create" | "issues.update" | "issue.comments.create" | "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;
|
|
@@ -736,7 +736,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
736
736
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
737
737
|
description?: string | undefined;
|
|
738
738
|
exportName?: string | undefined;
|
|
739
|
-
entityTypes?: ("
|
|
739
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
740
740
|
order?: number | undefined;
|
|
741
741
|
render?: {
|
|
742
742
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -744,11 +744,11 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
744
744
|
} | undefined;
|
|
745
745
|
}[] | undefined;
|
|
746
746
|
slots?: {
|
|
747
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
748
747
|
id: string;
|
|
748
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
749
749
|
displayName: string;
|
|
750
750
|
exportName: string;
|
|
751
|
-
entityTypes?: ("
|
|
751
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
752
752
|
routePath?: string | undefined;
|
|
753
753
|
order?: number | undefined;
|
|
754
754
|
}[] | undefined;
|
|
@@ -784,7 +784,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
784
784
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
785
785
|
description?: string | undefined;
|
|
786
786
|
exportName?: string | undefined;
|
|
787
|
-
entityTypes?: ("
|
|
787
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
788
788
|
order?: number | undefined;
|
|
789
789
|
render?: {
|
|
790
790
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -792,9 +792,9 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
792
792
|
} | undefined;
|
|
793
793
|
}[] | undefined;
|
|
794
794
|
}, {
|
|
795
|
-
version: string;
|
|
796
795
|
id: string;
|
|
797
796
|
description: string;
|
|
797
|
+
version: string;
|
|
798
798
|
capabilities: ("organizations.read" | "projects.read" | "project.workspaces.read" | "issues.read" | "issue.comments.read" | "agents.read" | "goals.read" | "goals.create" | "goals.update" | "activity.read" | "costs.read" | "issues.create" | "issues.update" | "issue.comments.create" | "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;
|
|
@@ -816,7 +816,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
816
816
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
817
817
|
description?: string | undefined;
|
|
818
818
|
exportName?: string | undefined;
|
|
819
|
-
entityTypes?: ("
|
|
819
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
820
820
|
order?: number | undefined;
|
|
821
821
|
render?: {
|
|
822
822
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -824,11 +824,11 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
824
824
|
} | undefined;
|
|
825
825
|
}[] | undefined;
|
|
826
826
|
slots?: {
|
|
827
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
828
827
|
id: string;
|
|
828
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
829
829
|
displayName: string;
|
|
830
830
|
exportName: string;
|
|
831
|
-
entityTypes?: ("
|
|
831
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
832
832
|
routePath?: string | undefined;
|
|
833
833
|
order?: number | undefined;
|
|
834
834
|
}[] | undefined;
|
|
@@ -864,7 +864,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
864
864
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
865
865
|
description?: string | undefined;
|
|
866
866
|
exportName?: string | undefined;
|
|
867
|
-
entityTypes?: ("
|
|
867
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
868
868
|
order?: number | undefined;
|
|
869
869
|
render?: {
|
|
870
870
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -872,9 +872,9 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
872
872
|
} | undefined;
|
|
873
873
|
}[] | undefined;
|
|
874
874
|
}>, {
|
|
875
|
-
version: string;
|
|
876
875
|
id: string;
|
|
877
876
|
description: string;
|
|
877
|
+
version: string;
|
|
878
878
|
capabilities: ("organizations.read" | "projects.read" | "project.workspaces.read" | "issues.read" | "issue.comments.read" | "agents.read" | "goals.read" | "goals.create" | "goals.update" | "activity.read" | "costs.read" | "issues.create" | "issues.update" | "issue.comments.create" | "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;
|
|
@@ -896,7 +896,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
896
896
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
897
897
|
description?: string | undefined;
|
|
898
898
|
exportName?: string | undefined;
|
|
899
|
-
entityTypes?: ("
|
|
899
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
900
900
|
order?: number | undefined;
|
|
901
901
|
render?: {
|
|
902
902
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -904,11 +904,11 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
904
904
|
} | undefined;
|
|
905
905
|
}[] | undefined;
|
|
906
906
|
slots?: {
|
|
907
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
908
907
|
id: string;
|
|
908
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
909
909
|
displayName: string;
|
|
910
910
|
exportName: string;
|
|
911
|
-
entityTypes?: ("
|
|
911
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
912
912
|
routePath?: string | undefined;
|
|
913
913
|
order?: number | undefined;
|
|
914
914
|
}[] | undefined;
|
|
@@ -944,7 +944,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
944
944
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
945
945
|
description?: string | undefined;
|
|
946
946
|
exportName?: string | undefined;
|
|
947
|
-
entityTypes?: ("
|
|
947
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
948
948
|
order?: number | undefined;
|
|
949
949
|
render?: {
|
|
950
950
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -952,9 +952,9 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
952
952
|
} | undefined;
|
|
953
953
|
}[] | undefined;
|
|
954
954
|
}, {
|
|
955
|
-
version: string;
|
|
956
955
|
id: string;
|
|
957
956
|
description: string;
|
|
957
|
+
version: string;
|
|
958
958
|
capabilities: ("organizations.read" | "projects.read" | "project.workspaces.read" | "issues.read" | "issue.comments.read" | "agents.read" | "goals.read" | "goals.create" | "goals.update" | "activity.read" | "costs.read" | "issues.create" | "issues.update" | "issue.comments.create" | "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;
|
|
@@ -976,7 +976,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
976
976
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
977
977
|
description?: string | undefined;
|
|
978
978
|
exportName?: string | undefined;
|
|
979
|
-
entityTypes?: ("
|
|
979
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
980
980
|
order?: number | undefined;
|
|
981
981
|
render?: {
|
|
982
982
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -984,11 +984,11 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
984
984
|
} | undefined;
|
|
985
985
|
}[] | undefined;
|
|
986
986
|
slots?: {
|
|
987
|
-
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
988
987
|
id: string;
|
|
988
|
+
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
989
989
|
displayName: string;
|
|
990
990
|
exportName: string;
|
|
991
|
-
entityTypes?: ("
|
|
991
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
992
992
|
routePath?: string | undefined;
|
|
993
993
|
order?: number | undefined;
|
|
994
994
|
}[] | undefined;
|
|
@@ -1024,7 +1024,7 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
1024
1024
|
placementZone: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
1025
1025
|
description?: string | undefined;
|
|
1026
1026
|
exportName?: string | undefined;
|
|
1027
|
-
entityTypes?: ("
|
|
1027
|
+
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
1028
1028
|
order?: number | undefined;
|
|
1029
1029
|
render?: {
|
|
1030
1030
|
environment: "external" | "hostInline" | "hostOverlay" | "hostRoute" | "iframe";
|
|
@@ -1109,7 +1109,7 @@ export type UninstallPlugin = z.infer<typeof uninstallPluginSchema>;
|
|
|
1109
1109
|
* state is stored. Used by the `ctx.state.get()`, `ctx.state.set()`, and
|
|
1110
1110
|
* `ctx.state.delete()` SDK methods.
|
|
1111
1111
|
*
|
|
1112
|
-
* @see
|
|
1112
|
+
* @see doc/engineering/PLUGIN_RUNTIME_CONTRACT.md `plugin_state`
|
|
1113
1113
|
*/
|
|
1114
1114
|
export declare const pluginStateScopeKeySchema: z.ZodObject<{
|
|
1115
1115
|
scopeKind: z.ZodEnum<["instance", "organization", "project", "project_workspace", "agent", "issue", "goal", "run"]>;
|
|
@@ -1117,12 +1117,12 @@ export declare const pluginStateScopeKeySchema: z.ZodObject<{
|
|
|
1117
1117
|
namespace: z.ZodOptional<z.ZodString>;
|
|
1118
1118
|
stateKey: z.ZodString;
|
|
1119
1119
|
}, "strip", z.ZodTypeAny, {
|
|
1120
|
-
scopeKind: "
|
|
1120
|
+
scopeKind: "issue" | "agent" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace";
|
|
1121
1121
|
stateKey: string;
|
|
1122
1122
|
scopeId?: string | undefined;
|
|
1123
1123
|
namespace?: string | undefined;
|
|
1124
1124
|
}, {
|
|
1125
|
-
scopeKind: "
|
|
1125
|
+
scopeKind: "issue" | "agent" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace";
|
|
1126
1126
|
stateKey: string;
|
|
1127
1127
|
scopeId?: string | undefined;
|
|
1128
1128
|
namespace?: string | undefined;
|
|
@@ -1139,13 +1139,13 @@ export declare const setPluginStateSchema: z.ZodObject<{
|
|
|
1139
1139
|
/** JSON-serializable value to store. */
|
|
1140
1140
|
value: z.ZodUnknown;
|
|
1141
1141
|
}, "strip", z.ZodTypeAny, {
|
|
1142
|
-
scopeKind: "
|
|
1142
|
+
scopeKind: "issue" | "agent" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace";
|
|
1143
1143
|
stateKey: string;
|
|
1144
1144
|
value?: unknown;
|
|
1145
1145
|
scopeId?: string | undefined;
|
|
1146
1146
|
namespace?: string | undefined;
|
|
1147
1147
|
}, {
|
|
1148
|
-
scopeKind: "
|
|
1148
|
+
scopeKind: "issue" | "agent" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace";
|
|
1149
1149
|
stateKey: string;
|
|
1150
1150
|
value?: unknown;
|
|
1151
1151
|
scopeId?: string | undefined;
|
|
@@ -1163,11 +1163,11 @@ export declare const listPluginStateSchema: z.ZodObject<{
|
|
|
1163
1163
|
}, "strip", z.ZodTypeAny, {
|
|
1164
1164
|
scopeId?: string | undefined;
|
|
1165
1165
|
namespace?: string | undefined;
|
|
1166
|
-
scopeKind?: "
|
|
1166
|
+
scopeKind?: "issue" | "agent" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace" | undefined;
|
|
1167
1167
|
}, {
|
|
1168
1168
|
scopeId?: string | undefined;
|
|
1169
1169
|
namespace?: string | undefined;
|
|
1170
|
-
scopeKind?: "
|
|
1170
|
+
scopeKind?: "issue" | "agent" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace" | undefined;
|
|
1171
1171
|
}>;
|
|
1172
1172
|
export type ListPluginState = z.infer<typeof listPluginStateSchema>;
|
|
1173
1173
|
//# sourceMappingURL=plugin.d.ts.map
|