@rudderhq/shared 0.3.6-canary.2 → 0.3.6-canary.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/dist/agent-run.d.ts +4 -0
  2. package/dist/agent-run.d.ts.map +1 -0
  3. package/dist/agent-run.js +90 -0
  4. package/dist/agent-run.js.map +1 -0
  5. package/dist/agent-run.test.d.ts +2 -0
  6. package/dist/agent-run.test.d.ts.map +1 -0
  7. package/dist/agent-run.test.js +111 -0
  8. package/dist/agent-run.test.js.map +1 -0
  9. package/dist/api.d.ts +1 -0
  10. package/dist/api.d.ts.map +1 -1
  11. package/dist/api.js +1 -0
  12. package/dist/api.js.map +1 -1
  13. package/dist/config-schema.d.ts +37 -37
  14. package/dist/constants.d.ts +4 -0
  15. package/dist/constants.d.ts.map +1 -1
  16. package/dist/constants.js +16 -0
  17. package/dist/constants.js.map +1 -1
  18. package/dist/index.d.ts +6 -4
  19. package/dist/index.d.ts.map +1 -1
  20. package/dist/index.js +5 -3
  21. package/dist/index.js.map +1 -1
  22. package/dist/project-mentions.d.ts +8 -0
  23. package/dist/project-mentions.d.ts.map +1 -1
  24. package/dist/project-mentions.js +41 -0
  25. package/dist/project-mentions.js.map +1 -1
  26. package/dist/project-mentions.test.js +12 -1
  27. package/dist/project-mentions.test.js.map +1 -1
  28. package/dist/short-refs.d.ts +10 -0
  29. package/dist/short-refs.d.ts.map +1 -0
  30. package/dist/short-refs.js +34 -0
  31. package/dist/short-refs.js.map +1 -0
  32. package/dist/short-refs.test.d.ts +2 -0
  33. package/dist/short-refs.test.d.ts.map +1 -0
  34. package/dist/short-refs.test.js +23 -0
  35. package/dist/short-refs.test.js.map +1 -0
  36. package/dist/types/agent-integration.d.ts +9 -0
  37. package/dist/types/agent-integration.d.ts.map +1 -1
  38. package/dist/types/agent.d.ts +3 -0
  39. package/dist/types/agent.d.ts.map +1 -1
  40. package/dist/types/chat.d.ts +53 -1
  41. package/dist/types/chat.d.ts.map +1 -1
  42. package/dist/types/heartbeat.d.ts +24 -1
  43. package/dist/types/heartbeat.d.ts.map +1 -1
  44. package/dist/types/index.d.ts +3 -3
  45. package/dist/types/index.d.ts.map +1 -1
  46. package/dist/types/issue.d.ts +1 -0
  47. package/dist/types/issue.d.ts.map +1 -1
  48. package/dist/types/messenger.d.ts +1 -0
  49. package/dist/types/messenger.d.ts.map +1 -1
  50. package/dist/validators/adapter-skills.d.ts +2 -2
  51. package/dist/validators/agent-integration.d.ts +60 -3
  52. package/dist/validators/agent-integration.d.ts.map +1 -1
  53. package/dist/validators/agent-integration.js +7 -0
  54. package/dist/validators/agent-integration.js.map +1 -1
  55. package/dist/validators/agent.d.ts +4 -4
  56. package/dist/validators/automation.d.ts +9 -9
  57. package/dist/validators/calendar.d.ts +20 -20
  58. package/dist/validators/chat.d.ts +227 -46
  59. package/dist/validators/chat.d.ts.map +1 -1
  60. package/dist/validators/chat.js +30 -0
  61. package/dist/validators/chat.js.map +1 -1
  62. package/dist/validators/cost.d.ts +8 -8
  63. package/dist/validators/finance.d.ts +12 -12
  64. package/dist/validators/index.d.ts +2 -2
  65. package/dist/validators/index.d.ts.map +1 -1
  66. package/dist/validators/index.js +2 -2
  67. package/dist/validators/index.js.map +1 -1
  68. package/dist/validators/instance.d.ts +2 -2
  69. package/dist/validators/organization-portability.d.ts +76 -76
  70. package/dist/validators/organization-skill.d.ts +74 -74
  71. package/dist/validators/plugin.d.ts +60 -60
  72. package/dist/validators/secret.d.ts +14 -14
  73. package/dist/validators/work-product.d.ts +4 -4
  74. package/package.json +1 -1
@@ -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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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";
@@ -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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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?: ("agent" | "issue" | "project" | "goal" | "run" | "comment")[] | undefined;
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";
@@ -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: "agent" | "issue" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace";
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: "agent" | "issue" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace";
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: "agent" | "issue" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace";
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: "agent" | "issue" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace";
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?: "agent" | "issue" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace" | undefined;
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?: "agent" | "issue" | "project" | "organization" | "goal" | "run" | "instance" | "project_workspace" | undefined;
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
@@ -3,67 +3,67 @@ export declare const envBindingPlainSchema: z.ZodObject<{
3
3
  type: z.ZodLiteral<"plain">;
4
4
  value: z.ZodString;
5
5
  }, "strip", z.ZodTypeAny, {
6
- value: string;
7
6
  type: "plain";
8
- }, {
9
7
  value: string;
8
+ }, {
10
9
  type: "plain";
10
+ value: string;
11
11
  }>;
12
12
  export declare const envBindingSecretRefSchema: z.ZodObject<{
13
13
  type: z.ZodLiteral<"secret_ref">;
14
14
  secretId: z.ZodString;
15
15
  version: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"latest">, z.ZodNumber]>>;
16
16
  }, "strip", z.ZodTypeAny, {
17
- type: "secret_ref";
18
17
  secretId: string;
18
+ type: "secret_ref";
19
19
  version?: number | "latest" | undefined;
20
20
  }, {
21
- type: "secret_ref";
22
21
  secretId: string;
22
+ type: "secret_ref";
23
23
  version?: number | "latest" | undefined;
24
24
  }>;
25
25
  export declare const envBindingSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
26
26
  type: z.ZodLiteral<"plain">;
27
27
  value: z.ZodString;
28
28
  }, "strip", z.ZodTypeAny, {
29
- value: string;
30
29
  type: "plain";
31
- }, {
32
30
  value: string;
31
+ }, {
33
32
  type: "plain";
33
+ value: string;
34
34
  }>, z.ZodObject<{
35
35
  type: z.ZodLiteral<"secret_ref">;
36
36
  secretId: z.ZodString;
37
37
  version: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"latest">, z.ZodNumber]>>;
38
38
  }, "strip", z.ZodTypeAny, {
39
- type: "secret_ref";
40
39
  secretId: string;
40
+ type: "secret_ref";
41
41
  version?: number | "latest" | undefined;
42
42
  }, {
43
- type: "secret_ref";
44
43
  secretId: string;
44
+ type: "secret_ref";
45
45
  version?: number | "latest" | undefined;
46
46
  }>]>;
47
47
  export declare const envConfigSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
48
48
  type: z.ZodLiteral<"plain">;
49
49
  value: z.ZodString;
50
50
  }, "strip", z.ZodTypeAny, {
51
- value: string;
52
51
  type: "plain";
53
- }, {
54
52
  value: string;
53
+ }, {
55
54
  type: "plain";
55
+ value: string;
56
56
  }>, z.ZodObject<{
57
57
  type: z.ZodLiteral<"secret_ref">;
58
58
  secretId: z.ZodString;
59
59
  version: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"latest">, z.ZodNumber]>>;
60
60
  }, "strip", z.ZodTypeAny, {
61
- type: "secret_ref";
62
61
  secretId: string;
62
+ type: "secret_ref";
63
63
  version?: number | "latest" | undefined;
64
64
  }, {
65
- type: "secret_ref";
66
65
  secretId: string;
66
+ type: "secret_ref";
67
67
  version?: number | "latest" | undefined;
68
68
  }>]>>;
69
69
  export declare const createSecretSchema: z.ZodObject<{
@@ -73,14 +73,14 @@ export declare const createSecretSchema: z.ZodObject<{
73
73
  description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
74
74
  externalRef: z.ZodNullable<z.ZodOptional<z.ZodString>>;
75
75
  }, "strip", z.ZodTypeAny, {
76
- value: string;
77
76
  name: string;
77
+ value: string;
78
78
  provider?: "local_encrypted" | "aws_secrets_manager" | "gcp_secret_manager" | "vault" | undefined;
79
79
  description?: string | null | undefined;
80
80
  externalRef?: string | null | undefined;
81
81
  }, {
82
- value: string;
83
82
  name: string;
83
+ value: string;
84
84
  provider?: "local_encrypted" | "aws_secrets_manager" | "gcp_secret_manager" | "vault" | undefined;
85
85
  description?: string | null | undefined;
86
86
  externalRef?: string | null | undefined;
@@ -21,9 +21,9 @@ export declare const createIssueWorkProductSchema: z.ZodObject<{
21
21
  metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
22
22
  createdByRunId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23
23
  }, "strip", z.ZodTypeAny, {
24
+ provider: string;
24
25
  status: "active" | "archived" | "failed" | "approved" | "ready_for_review" | "changes_requested" | "merged" | "closed" | "draft";
25
26
  type: "preview_url" | "runtime_service" | "pull_request" | "branch" | "commit" | "artifact" | "document";
26
- provider: string;
27
27
  title: string;
28
28
  isPrimary: boolean;
29
29
  reviewState: "approved" | "none" | "changes_requested" | "needs_board_review";
@@ -38,8 +38,8 @@ export declare const createIssueWorkProductSchema: z.ZodObject<{
38
38
  externalId?: string | null | undefined;
39
39
  createdByRunId?: string | null | undefined;
40
40
  }, {
41
- type: "preview_url" | "runtime_service" | "pull_request" | "branch" | "commit" | "artifact" | "document";
42
41
  provider: string;
42
+ type: "preview_url" | "runtime_service" | "pull_request" | "branch" | "commit" | "artifact" | "document";
43
43
  title: string;
44
44
  url?: string | null | undefined;
45
45
  status?: "active" | "archived" | "failed" | "approved" | "ready_for_review" | "changes_requested" | "merged" | "closed" | "draft" | undefined;
@@ -75,9 +75,9 @@ export declare const updateIssueWorkProductSchema: z.ZodObject<{
75
75
  createdByRunId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
76
76
  }, "strip", z.ZodTypeAny, {
77
77
  url?: string | null | undefined;
78
+ provider?: string | undefined;
78
79
  status?: "active" | "archived" | "failed" | "approved" | "ready_for_review" | "changes_requested" | "merged" | "closed" | "draft" | undefined;
79
80
  type?: "preview_url" | "runtime_service" | "pull_request" | "branch" | "commit" | "artifact" | "document" | undefined;
80
- provider?: string | undefined;
81
81
  title?: string | undefined;
82
82
  projectId?: string | null | undefined;
83
83
  runWorkspaceId?: string | null | undefined;
@@ -92,9 +92,9 @@ export declare const updateIssueWorkProductSchema: z.ZodObject<{
92
92
  createdByRunId?: string | null | undefined;
93
93
  }, {
94
94
  url?: string | null | undefined;
95
+ provider?: string | undefined;
95
96
  status?: "active" | "archived" | "failed" | "approved" | "ready_for_review" | "changes_requested" | "merged" | "closed" | "draft" | undefined;
96
97
  type?: "preview_url" | "runtime_service" | "pull_request" | "branch" | "commit" | "artifact" | "document" | undefined;
97
- provider?: string | undefined;
98
98
  title?: string | undefined;
99
99
  projectId?: string | null | undefined;
100
100
  runWorkspaceId?: string | null | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rudderhq/shared",
3
- "version": "0.3.6-canary.2",
3
+ "version": "0.3.6-canary.21",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "homepage": "https://github.com/Undertone0809/rudder",
6
6
  "bugs": {