@rudderhq/shared 0.4.1 → 0.4.2-canary.1

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.
Files changed (42) hide show
  1. package/dist/constants.d.ts +12 -0
  2. package/dist/constants.d.ts.map +1 -1
  3. package/dist/constants.js +6 -0
  4. package/dist/constants.js.map +1 -1
  5. package/dist/index.d.ts +3 -1
  6. package/dist/index.d.ts.map +1 -1
  7. package/dist/index.js +2 -1
  8. package/dist/index.js.map +1 -1
  9. package/dist/organization-skill-reference.d.ts +1 -1
  10. package/dist/organization-skill-reference.d.ts.map +1 -1
  11. package/dist/organization-skill-reference.js +0 -2
  12. package/dist/organization-skill-reference.js.map +1 -1
  13. package/dist/types/custom-integration.d.ts +68 -0
  14. package/dist/types/custom-integration.d.ts.map +1 -0
  15. package/dist/types/custom-integration.js +2 -0
  16. package/dist/types/custom-integration.js.map +1 -0
  17. package/dist/types/index.d.ts +1 -0
  18. package/dist/types/index.d.ts.map +1 -1
  19. package/dist/validators/automation.d.ts +12 -12
  20. package/dist/validators/budget.d.ts +2 -2
  21. package/dist/validators/calendar.d.ts +32 -32
  22. package/dist/validators/chat.d.ts +15 -15
  23. package/dist/validators/custom-integration.d.ts +135 -0
  24. package/dist/validators/custom-integration.d.ts.map +1 -0
  25. package/dist/validators/custom-integration.js +45 -0
  26. package/dist/validators/custom-integration.js.map +1 -0
  27. package/dist/validators/finance.d.ts +4 -4
  28. package/dist/validators/goal.d.ts +9 -9
  29. package/dist/validators/index.d.ts +1 -0
  30. package/dist/validators/index.d.ts.map +1 -1
  31. package/dist/validators/index.js +1 -0
  32. package/dist/validators/index.js.map +1 -1
  33. package/dist/validators/issue.d.ts +3 -3
  34. package/dist/validators/organization-portability.d.ts +91 -91
  35. package/dist/validators/organization-skill.d.ts +72 -72
  36. package/dist/validators/organization.d.ts +6 -6
  37. package/dist/validators/plugin.d.ts +86 -86
  38. package/dist/validators/project.d.ts +3 -3
  39. package/dist/validators/resource.d.ts +4 -4
  40. package/dist/validators/secret.d.ts +18 -18
  41. package/dist/validators/work-product.d.ts +4 -4
  42. package/package.json +1 -1
@@ -16,13 +16,13 @@ export declare const pluginJobDeclarationSchema: z.ZodObject<{
16
16
  description: z.ZodOptional<z.ZodString>;
17
17
  schedule: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
18
18
  }, "strip", z.ZodTypeAny, {
19
- jobKey: string;
20
19
  displayName: string;
20
+ jobKey: string;
21
21
  schedule?: string | undefined;
22
22
  description?: string | undefined;
23
23
  }, {
24
- jobKey: string;
25
24
  displayName: string;
25
+ jobKey: string;
26
26
  schedule?: string | undefined;
27
27
  description?: string | undefined;
28
28
  }>;
@@ -60,14 +60,14 @@ export declare const pluginToolDeclarationSchema: z.ZodObject<{
60
60
  description: z.ZodString;
61
61
  parametersSchema: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, Record<string, unknown>>;
62
62
  }, "strip", z.ZodTypeAny, {
63
- name: string;
64
- description: string;
65
63
  displayName: string;
64
+ description: string;
65
+ name: string;
66
66
  parametersSchema: Record<string, unknown>;
67
67
  }, {
68
- name: string;
69
- description: string;
70
68
  displayName: string;
69
+ description: string;
70
+ name: string;
71
71
  parametersSchema: Record<string, unknown>;
72
72
  }>;
73
73
  export type PluginToolDeclarationInput = z.infer<typeof pluginToolDeclarationSchema>;
@@ -88,32 +88,32 @@ export declare const pluginUiSlotDeclarationSchema: z.ZodEffects<z.ZodObject<{
88
88
  order: z.ZodOptional<z.ZodNumber>;
89
89
  }, "strip", z.ZodTypeAny, {
90
90
  id: string;
91
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
92
91
  displayName: string;
92
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
93
93
  exportName: string;
94
94
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
95
95
  routePath?: string | undefined;
96
96
  order?: number | undefined;
97
97
  }, {
98
98
  id: string;
99
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
100
99
  displayName: string;
100
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
101
101
  exportName: string;
102
102
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
103
103
  routePath?: string | undefined;
104
104
  order?: number | undefined;
105
105
  }>, {
106
106
  id: string;
107
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
108
107
  displayName: string;
108
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
109
109
  exportName: string;
110
110
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
111
111
  routePath?: string | undefined;
112
112
  order?: number | undefined;
113
113
  }, {
114
114
  id: string;
115
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
116
115
  displayName: string;
116
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
117
117
  exportName: string;
118
118
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
119
119
  routePath?: string | undefined;
@@ -215,12 +215,12 @@ export declare const pluginLauncherDeclarationSchema: z.ZodEffects<z.ZodObject<{
215
215
  }>>;
216
216
  }, "strip", z.ZodTypeAny, {
217
217
  id: string;
218
+ displayName: string;
218
219
  action: {
219
220
  target: string;
220
221
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
221
222
  params?: Record<string, unknown> | undefined;
222
223
  };
223
- displayName: string;
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;
@@ -232,12 +232,12 @@ export declare const pluginLauncherDeclarationSchema: z.ZodEffects<z.ZodObject<{
232
232
  } | undefined;
233
233
  }, {
234
234
  id: string;
235
+ displayName: string;
235
236
  action: {
236
237
  target: string;
237
238
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
238
239
  params?: Record<string, unknown> | undefined;
239
240
  };
240
- displayName: string;
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;
@@ -249,12 +249,12 @@ export declare const pluginLauncherDeclarationSchema: z.ZodEffects<z.ZodObject<{
249
249
  } | undefined;
250
250
  }>, {
251
251
  id: string;
252
+ displayName: string;
252
253
  action: {
253
254
  target: string;
254
255
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
255
256
  params?: Record<string, unknown> | undefined;
256
257
  };
257
- displayName: string;
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;
@@ -266,12 +266,12 @@ export declare const pluginLauncherDeclarationSchema: z.ZodEffects<z.ZodObject<{
266
266
  } | undefined;
267
267
  }, {
268
268
  id: string;
269
+ displayName: string;
269
270
  action: {
270
271
  target: string;
271
272
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
272
273
  params?: Record<string, unknown> | undefined;
273
274
  };
274
- displayName: string;
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;
@@ -345,13 +345,13 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
345
345
  description: z.ZodOptional<z.ZodString>;
346
346
  schedule: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
347
347
  }, "strip", z.ZodTypeAny, {
348
- jobKey: string;
349
348
  displayName: string;
349
+ jobKey: string;
350
350
  schedule?: string | undefined;
351
351
  description?: string | undefined;
352
352
  }, {
353
- jobKey: string;
354
353
  displayName: string;
354
+ jobKey: string;
355
355
  schedule?: string | undefined;
356
356
  description?: string | undefined;
357
357
  }>, "many">>;
@@ -374,14 +374,14 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
374
374
  description: z.ZodString;
375
375
  parametersSchema: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, Record<string, unknown>>;
376
376
  }, "strip", z.ZodTypeAny, {
377
- name: string;
378
- description: string;
379
377
  displayName: string;
378
+ description: string;
379
+ name: string;
380
380
  parametersSchema: Record<string, unknown>;
381
381
  }, {
382
- name: string;
383
- description: string;
384
382
  displayName: string;
383
+ description: string;
384
+ name: string;
385
385
  parametersSchema: Record<string, unknown>;
386
386
  }>, "many">>;
387
387
  launchers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
@@ -431,12 +431,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
431
431
  }>>;
432
432
  }, "strip", z.ZodTypeAny, {
433
433
  id: string;
434
+ displayName: string;
434
435
  action: {
435
436
  target: string;
436
437
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
437
438
  params?: Record<string, unknown> | undefined;
438
439
  };
439
- displayName: string;
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;
@@ -448,12 +448,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
448
448
  } | undefined;
449
449
  }, {
450
450
  id: string;
451
+ displayName: string;
451
452
  action: {
452
453
  target: string;
453
454
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
454
455
  params?: Record<string, unknown> | undefined;
455
456
  };
456
- displayName: string;
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;
@@ -465,12 +465,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
465
465
  } | undefined;
466
466
  }>, {
467
467
  id: string;
468
+ displayName: string;
468
469
  action: {
469
470
  target: string;
470
471
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
471
472
  params?: Record<string, unknown> | undefined;
472
473
  };
473
- displayName: string;
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;
@@ -482,12 +482,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
482
482
  } | undefined;
483
483
  }, {
484
484
  id: string;
485
+ displayName: string;
485
486
  action: {
486
487
  target: string;
487
488
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
488
489
  params?: Record<string, unknown> | undefined;
489
490
  };
490
- displayName: string;
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;
@@ -509,32 +509,32 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
509
509
  order: z.ZodOptional<z.ZodNumber>;
510
510
  }, "strip", z.ZodTypeAny, {
511
511
  id: string;
512
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
513
512
  displayName: string;
513
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
514
514
  exportName: string;
515
515
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
516
516
  routePath?: string | undefined;
517
517
  order?: number | undefined;
518
518
  }, {
519
519
  id: string;
520
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
521
520
  displayName: string;
521
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
522
522
  exportName: string;
523
523
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
524
524
  routePath?: string | undefined;
525
525
  order?: number | undefined;
526
526
  }>, {
527
527
  id: string;
528
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
529
528
  displayName: string;
529
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
530
530
  exportName: string;
531
531
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
532
532
  routePath?: string | undefined;
533
533
  order?: number | undefined;
534
534
  }, {
535
535
  id: string;
536
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
537
536
  displayName: string;
537
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
538
538
  exportName: string;
539
539
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
540
540
  routePath?: string | undefined;
@@ -587,12 +587,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
587
587
  }>>;
588
588
  }, "strip", z.ZodTypeAny, {
589
589
  id: string;
590
+ displayName: string;
590
591
  action: {
591
592
  target: string;
592
593
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
593
594
  params?: Record<string, unknown> | undefined;
594
595
  };
595
- displayName: string;
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;
@@ -604,12 +604,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
604
604
  } | undefined;
605
605
  }, {
606
606
  id: string;
607
+ displayName: string;
607
608
  action: {
608
609
  target: string;
609
610
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
610
611
  params?: Record<string, unknown> | undefined;
611
612
  };
612
- displayName: string;
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;
@@ -621,12 +621,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
621
621
  } | undefined;
622
622
  }>, {
623
623
  id: string;
624
+ displayName: string;
624
625
  action: {
625
626
  target: string;
626
627
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
627
628
  params?: Record<string, unknown> | undefined;
628
629
  };
629
- displayName: string;
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;
@@ -638,12 +638,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
638
638
  } | undefined;
639
639
  }, {
640
640
  id: string;
641
+ displayName: string;
641
642
  action: {
642
643
  target: string;
643
644
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
644
645
  params?: Record<string, unknown> | undefined;
645
646
  };
646
- displayName: string;
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;
@@ -657,12 +657,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
657
657
  }, "strip", z.ZodTypeAny, {
658
658
  launchers?: {
659
659
  id: string;
660
+ displayName: string;
660
661
  action: {
661
662
  target: string;
662
663
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
663
664
  params?: Record<string, unknown> | undefined;
664
665
  };
665
- displayName: string;
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;
@@ -675,8 +675,8 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
675
675
  }[] | undefined;
676
676
  slots?: {
677
677
  id: string;
678
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
679
678
  displayName: string;
679
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
680
680
  exportName: string;
681
681
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
682
682
  routePath?: string | undefined;
@@ -685,12 +685,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
685
685
  }, {
686
686
  launchers?: {
687
687
  id: string;
688
+ displayName: string;
688
689
  action: {
689
690
  target: string;
690
691
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
691
692
  params?: Record<string, unknown> | undefined;
692
693
  };
693
- displayName: string;
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;
@@ -703,8 +703,8 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
703
703
  }[] | undefined;
704
704
  slots?: {
705
705
  id: string;
706
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
707
706
  displayName: string;
707
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
708
708
  exportName: string;
709
709
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
710
710
  routePath?: string | undefined;
@@ -713,10 +713,10 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
713
713
  }>>;
714
714
  }, "strip", z.ZodTypeAny, {
715
715
  id: string;
716
+ displayName: string;
716
717
  description: string;
717
718
  version: string;
718
719
  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
- displayName: string;
720
720
  apiVersion: 1;
721
721
  author: string;
722
722
  categories: ("automation" | "connector" | "workspace" | "ui")[];
@@ -727,12 +727,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
727
727
  ui?: {
728
728
  launchers?: {
729
729
  id: string;
730
+ displayName: string;
730
731
  action: {
731
732
  target: string;
732
733
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
733
734
  params?: Record<string, unknown> | undefined;
734
735
  };
735
- displayName: string;
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;
@@ -745,20 +745,26 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
745
745
  }[] | undefined;
746
746
  slots?: {
747
747
  id: string;
748
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
749
748
  displayName: string;
749
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
750
750
  exportName: string;
751
751
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
752
752
  routePath?: string | undefined;
753
753
  order?: number | undefined;
754
754
  }[] | undefined;
755
755
  } | undefined;
756
+ tools?: {
757
+ displayName: string;
758
+ description: string;
759
+ name: string;
760
+ parametersSchema: Record<string, unknown>;
761
+ }[] | undefined;
756
762
  minimumHostVersion?: string | undefined;
757
763
  minimumPaperclipVersion?: string | undefined;
758
764
  instanceConfigSchema?: Record<string, unknown> | undefined;
759
765
  jobs?: {
760
- jobKey: string;
761
766
  displayName: string;
767
+ jobKey: string;
762
768
  schedule?: string | undefined;
763
769
  description?: string | undefined;
764
770
  }[] | undefined;
@@ -767,20 +773,14 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
767
773
  endpointKey: string;
768
774
  description?: string | undefined;
769
775
  }[] | undefined;
770
- tools?: {
771
- name: string;
772
- description: string;
773
- displayName: string;
774
- parametersSchema: Record<string, unknown>;
775
- }[] | undefined;
776
776
  launchers?: {
777
777
  id: string;
778
+ displayName: string;
778
779
  action: {
779
780
  target: string;
780
781
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
781
782
  params?: Record<string, unknown> | undefined;
782
783
  };
783
- displayName: string;
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;
@@ -793,10 +793,10 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
793
793
  }[] | undefined;
794
794
  }, {
795
795
  id: string;
796
+ displayName: string;
796
797
  description: string;
797
798
  version: string;
798
799
  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
- displayName: string;
800
800
  apiVersion: 1;
801
801
  author: string;
802
802
  categories: ("automation" | "connector" | "workspace" | "ui")[];
@@ -807,12 +807,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
807
807
  ui?: {
808
808
  launchers?: {
809
809
  id: string;
810
+ displayName: string;
810
811
  action: {
811
812
  target: string;
812
813
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
813
814
  params?: Record<string, unknown> | undefined;
814
815
  };
815
- displayName: string;
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;
@@ -825,20 +825,26 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
825
825
  }[] | undefined;
826
826
  slots?: {
827
827
  id: string;
828
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
829
828
  displayName: string;
829
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
830
830
  exportName: string;
831
831
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
832
832
  routePath?: string | undefined;
833
833
  order?: number | undefined;
834
834
  }[] | undefined;
835
835
  } | undefined;
836
+ tools?: {
837
+ displayName: string;
838
+ description: string;
839
+ name: string;
840
+ parametersSchema: Record<string, unknown>;
841
+ }[] | undefined;
836
842
  minimumHostVersion?: string | undefined;
837
843
  minimumPaperclipVersion?: string | undefined;
838
844
  instanceConfigSchema?: Record<string, unknown> | undefined;
839
845
  jobs?: {
840
- jobKey: string;
841
846
  displayName: string;
847
+ jobKey: string;
842
848
  schedule?: string | undefined;
843
849
  description?: string | undefined;
844
850
  }[] | undefined;
@@ -847,20 +853,14 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
847
853
  endpointKey: string;
848
854
  description?: string | undefined;
849
855
  }[] | undefined;
850
- tools?: {
851
- name: string;
852
- description: string;
853
- displayName: string;
854
- parametersSchema: Record<string, unknown>;
855
- }[] | undefined;
856
856
  launchers?: {
857
857
  id: string;
858
+ displayName: string;
858
859
  action: {
859
860
  target: string;
860
861
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
861
862
  params?: Record<string, unknown> | undefined;
862
863
  };
863
- displayName: string;
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;
@@ -873,10 +873,10 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
873
873
  }[] | undefined;
874
874
  }>, {
875
875
  id: string;
876
+ displayName: string;
876
877
  description: string;
877
878
  version: string;
878
879
  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
- displayName: string;
880
880
  apiVersion: 1;
881
881
  author: string;
882
882
  categories: ("automation" | "connector" | "workspace" | "ui")[];
@@ -887,12 +887,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
887
887
  ui?: {
888
888
  launchers?: {
889
889
  id: string;
890
+ displayName: string;
890
891
  action: {
891
892
  target: string;
892
893
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
893
894
  params?: Record<string, unknown> | undefined;
894
895
  };
895
- displayName: string;
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;
@@ -905,20 +905,26 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
905
905
  }[] | undefined;
906
906
  slots?: {
907
907
  id: string;
908
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
909
908
  displayName: string;
909
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
910
910
  exportName: string;
911
911
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
912
912
  routePath?: string | undefined;
913
913
  order?: number | undefined;
914
914
  }[] | undefined;
915
915
  } | undefined;
916
+ tools?: {
917
+ displayName: string;
918
+ description: string;
919
+ name: string;
920
+ parametersSchema: Record<string, unknown>;
921
+ }[] | undefined;
916
922
  minimumHostVersion?: string | undefined;
917
923
  minimumPaperclipVersion?: string | undefined;
918
924
  instanceConfigSchema?: Record<string, unknown> | undefined;
919
925
  jobs?: {
920
- jobKey: string;
921
926
  displayName: string;
927
+ jobKey: string;
922
928
  schedule?: string | undefined;
923
929
  description?: string | undefined;
924
930
  }[] | undefined;
@@ -927,20 +933,14 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
927
933
  endpointKey: string;
928
934
  description?: string | undefined;
929
935
  }[] | undefined;
930
- tools?: {
931
- name: string;
932
- description: string;
933
- displayName: string;
934
- parametersSchema: Record<string, unknown>;
935
- }[] | undefined;
936
936
  launchers?: {
937
937
  id: string;
938
+ displayName: string;
938
939
  action: {
939
940
  target: string;
940
941
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
941
942
  params?: Record<string, unknown> | undefined;
942
943
  };
943
- displayName: string;
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;
@@ -953,10 +953,10 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
953
953
  }[] | undefined;
954
954
  }, {
955
955
  id: string;
956
+ displayName: string;
956
957
  description: string;
957
958
  version: string;
958
959
  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
- displayName: string;
960
960
  apiVersion: 1;
961
961
  author: string;
962
962
  categories: ("automation" | "connector" | "workspace" | "ui")[];
@@ -967,12 +967,12 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
967
967
  ui?: {
968
968
  launchers?: {
969
969
  id: string;
970
+ displayName: string;
970
971
  action: {
971
972
  target: string;
972
973
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
973
974
  params?: Record<string, unknown> | undefined;
974
975
  };
975
- displayName: string;
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;
@@ -985,20 +985,26 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
985
985
  }[] | undefined;
986
986
  slots?: {
987
987
  id: string;
988
- type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
989
988
  displayName: string;
989
+ type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
990
990
  exportName: string;
991
991
  entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
992
992
  routePath?: string | undefined;
993
993
  order?: number | undefined;
994
994
  }[] | undefined;
995
995
  } | undefined;
996
+ tools?: {
997
+ displayName: string;
998
+ description: string;
999
+ name: string;
1000
+ parametersSchema: Record<string, unknown>;
1001
+ }[] | undefined;
996
1002
  minimumHostVersion?: string | undefined;
997
1003
  minimumPaperclipVersion?: string | undefined;
998
1004
  instanceConfigSchema?: Record<string, unknown> | undefined;
999
1005
  jobs?: {
1000
- jobKey: string;
1001
1006
  displayName: string;
1007
+ jobKey: string;
1002
1008
  schedule?: string | undefined;
1003
1009
  description?: string | undefined;
1004
1010
  }[] | undefined;
@@ -1007,20 +1013,14 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
1007
1013
  endpointKey: string;
1008
1014
  description?: string | undefined;
1009
1015
  }[] | undefined;
1010
- tools?: {
1011
- name: string;
1012
- description: string;
1013
- displayName: string;
1014
- parametersSchema: Record<string, unknown>;
1015
- }[] | undefined;
1016
1016
  launchers?: {
1017
1017
  id: string;
1018
+ displayName: string;
1018
1019
  action: {
1019
1020
  target: string;
1020
1021
  type: "navigate" | "openModal" | "openDrawer" | "openPopover" | "performAction" | "deepLink";
1021
1022
  params?: Record<string, unknown> | undefined;
1022
1023
  };
1023
- displayName: string;
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;
@@ -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: "issue" | "agent" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace";
1120
+ scopeKind: "issue" | "organization" | "agent" | "project" | "goal" | "run" | "instance" | "project_workspace";
1121
1121
  stateKey: string;
1122
1122
  scopeId?: string | undefined;
1123
1123
  namespace?: string | undefined;
1124
1124
  }, {
1125
- scopeKind: "issue" | "agent" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace";
1125
+ scopeKind: "issue" | "organization" | "agent" | "project" | "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: "issue" | "agent" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace";
1142
+ scopeKind: "issue" | "organization" | "agent" | "project" | "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: "issue" | "agent" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace";
1148
+ scopeKind: "issue" | "organization" | "agent" | "project" | "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?: "issue" | "agent" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace" | undefined;
1166
+ scopeKind?: "issue" | "organization" | "agent" | "project" | "goal" | "run" | "instance" | "project_workspace" | undefined;
1167
1167
  }, {
1168
1168
  scopeId?: string | undefined;
1169
1169
  namespace?: string | undefined;
1170
- scopeKind?: "issue" | "agent" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace" | undefined;
1170
+ scopeKind?: "issue" | "organization" | "agent" | "project" | "goal" | "run" | "instance" | "project_workspace" | undefined;
1171
1171
  }>;
1172
1172
  export type ListPluginState = z.infer<typeof listPluginStateSchema>;
1173
1173
  //# sourceMappingURL=plugin.d.ts.map