@rudderhq/shared 0.6.6-canary.8 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent-run.d.ts +4 -0
- package/dist/agent-run.d.ts.map +1 -1
- package/dist/agent-run.js.map +1 -1
- package/dist/chat-subagents.d.ts +2 -1
- package/dist/chat-subagents.d.ts.map +1 -1
- package/dist/chat-subagents.js +5 -2
- package/dist/chat-subagents.js.map +1 -1
- package/dist/chat-subagents.test.js +33 -0
- package/dist/chat-subagents.test.js.map +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +1 -1
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +5 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/organization-skill-reference.d.ts +2 -2
- package/dist/organization-skill-reference.d.ts.map +1 -1
- package/dist/organization-skill-reference.js +9 -2
- package/dist/organization-skill-reference.js.map +1 -1
- package/dist/organization-skill-reference.test.js +7 -4
- package/dist/organization-skill-reference.test.js.map +1 -1
- package/dist/types/ai-search.d.ts +17 -0
- package/dist/types/ai-search.d.ts.map +1 -0
- package/dist/types/ai-search.js +2 -0
- package/dist/types/ai-search.js.map +1 -0
- package/dist/types/app-builder.d.ts +24 -0
- package/dist/types/app-builder.d.ts.map +1 -0
- package/dist/types/app-builder.js +2 -0
- package/dist/types/app-builder.js.map +1 -0
- package/dist/types/automation.d.ts +2 -0
- package/dist/types/automation.d.ts.map +1 -1
- package/dist/types/budget.d.ts +0 -1
- package/dist/types/budget.d.ts.map +1 -1
- package/dist/types/chat.d.ts +68 -4
- package/dist/types/chat.d.ts.map +1 -1
- package/dist/types/dashboard.d.ts +0 -1
- package/dist/types/dashboard.d.ts.map +1 -1
- package/dist/types/index.d.ts +3 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/instance.d.ts +1 -0
- package/dist/types/instance.d.ts.map +1 -1
- package/dist/validators/ai-search.d.ts +14 -0
- package/dist/validators/ai-search.d.ts.map +1 -0
- package/dist/validators/ai-search.js +14 -0
- package/dist/validators/ai-search.js.map +1 -0
- package/dist/validators/app-builder.d.ts +76 -0
- package/dist/validators/app-builder.d.ts.map +1 -0
- package/dist/validators/app-builder.js +53 -0
- package/dist/validators/app-builder.js.map +1 -0
- package/dist/validators/app-builder.test.d.ts +2 -0
- package/dist/validators/app-builder.test.d.ts.map +1 -0
- package/dist/validators/app-builder.test.js +77 -0
- package/dist/validators/app-builder.test.js.map +1 -0
- package/dist/validators/automation.d.ts +84 -0
- package/dist/validators/automation.d.ts.map +1 -1
- package/dist/validators/automation.js +2 -0
- package/dist/validators/automation.js.map +1 -1
- package/dist/validators/budget.d.ts +3 -3
- package/dist/validators/calendar.d.ts +6 -6
- package/dist/validators/chat-inline-annotations.test.js +80 -2
- package/dist/validators/chat-inline-annotations.test.js.map +1 -1
- package/dist/validators/chat.d.ts +5075 -1044
- package/dist/validators/chat.d.ts.map +1 -1
- package/dist/validators/chat.js +102 -15
- package/dist/validators/chat.js.map +1 -1
- package/dist/validators/index.d.ts +3 -1
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +3 -1
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/instance.d.ts +6 -0
- package/dist/validators/instance.d.ts.map +1 -1
- package/dist/validators/instance.js +1 -0
- package/dist/validators/instance.js.map +1 -1
- package/dist/validators/instance.test.js +1 -0
- package/dist/validators/instance.test.js.map +1 -1
- package/dist/validators/mcp.d.ts +18 -18
- package/dist/validators/messenger.d.ts +16 -16
- package/dist/validators/organization-portability.d.ts +24 -24
- package/dist/validators/organization-skill.d.ts +48 -48
- package/dist/validators/organization.d.ts +6 -6
- package/dist/validators/plugin.d.ts +22 -22
- package/dist/validators/project.d.ts +2 -2
- package/dist/validators/resource.d.ts +4 -4
- package/dist/validators/secret.d.ts +4 -4
- package/package.json +1 -1
|
@@ -40,15 +40,15 @@ export declare const organizationSkillSchema: z.ZodObject<{
|
|
|
40
40
|
createdAt: z.ZodDate;
|
|
41
41
|
updatedAt: z.ZodDate;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
|
+
markdown: string;
|
|
43
44
|
id: string;
|
|
44
45
|
updatedAt: Date;
|
|
46
|
+
name: string;
|
|
45
47
|
orgId: string;
|
|
46
48
|
slug: string;
|
|
47
49
|
description: string | null;
|
|
48
50
|
createdAt: Date;
|
|
49
|
-
name: string;
|
|
50
51
|
metadata: Record<string, unknown> | null;
|
|
51
|
-
markdown: string;
|
|
52
52
|
key: string;
|
|
53
53
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
54
54
|
sourceLocator: string | null;
|
|
@@ -60,15 +60,15 @@ export declare const organizationSkillSchema: z.ZodObject<{
|
|
|
60
60
|
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
61
61
|
}[];
|
|
62
62
|
}, {
|
|
63
|
+
markdown: string;
|
|
63
64
|
id: string;
|
|
64
65
|
updatedAt: Date;
|
|
66
|
+
name: string;
|
|
65
67
|
orgId: string;
|
|
66
68
|
slug: string;
|
|
67
69
|
description: string | null;
|
|
68
70
|
createdAt: Date;
|
|
69
|
-
name: string;
|
|
70
71
|
metadata: Record<string, unknown> | null;
|
|
71
|
-
markdown: string;
|
|
72
72
|
key: string;
|
|
73
73
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
74
74
|
sourceLocator: string | null;
|
|
@@ -115,15 +115,15 @@ export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
|
115
115
|
sourcePath: z.ZodNullable<z.ZodString>;
|
|
116
116
|
workspaceEditPath: z.ZodNullable<z.ZodString>;
|
|
117
117
|
}, "strip", z.ZodTypeAny, {
|
|
118
|
+
markdown: string;
|
|
118
119
|
id: string;
|
|
119
120
|
updatedAt: Date;
|
|
121
|
+
name: string;
|
|
120
122
|
orgId: string;
|
|
121
123
|
slug: string;
|
|
122
124
|
description: string | null;
|
|
123
125
|
createdAt: Date;
|
|
124
|
-
name: string;
|
|
125
126
|
metadata: Record<string, unknown> | null;
|
|
126
|
-
markdown: string;
|
|
127
127
|
key: string;
|
|
128
128
|
sourcePath: string | null;
|
|
129
129
|
workspaceEditPath: string | null;
|
|
@@ -142,15 +142,15 @@ export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
|
142
142
|
sourceLabel: string | null;
|
|
143
143
|
sourceBadge: "url" | "rudder" | "github" | "catalog" | "skills_sh" | "community" | "local";
|
|
144
144
|
}, {
|
|
145
|
+
markdown: string;
|
|
145
146
|
id: string;
|
|
146
147
|
updatedAt: Date;
|
|
148
|
+
name: string;
|
|
147
149
|
orgId: string;
|
|
148
150
|
slug: string;
|
|
149
151
|
description: string | null;
|
|
150
152
|
createdAt: Date;
|
|
151
|
-
name: string;
|
|
152
153
|
metadata: Record<string, unknown> | null;
|
|
153
|
-
markdown: string;
|
|
154
154
|
key: string;
|
|
155
155
|
sourcePath: string | null;
|
|
156
156
|
workspaceEditPath: string | null;
|
|
@@ -248,15 +248,15 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
248
248
|
sourcePath: z.ZodNullable<z.ZodString>;
|
|
249
249
|
workspaceEditPath: z.ZodNullable<z.ZodString>;
|
|
250
250
|
}, "strip", z.ZodTypeAny, {
|
|
251
|
+
markdown: string;
|
|
251
252
|
id: string;
|
|
252
253
|
updatedAt: Date;
|
|
254
|
+
name: string;
|
|
253
255
|
orgId: string;
|
|
254
256
|
slug: string;
|
|
255
257
|
description: string | null;
|
|
256
258
|
createdAt: Date;
|
|
257
|
-
name: string;
|
|
258
259
|
metadata: Record<string, unknown> | null;
|
|
259
|
-
markdown: string;
|
|
260
260
|
key: string;
|
|
261
261
|
sourcePath: string | null;
|
|
262
262
|
workspaceEditPath: string | null;
|
|
@@ -283,15 +283,15 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
283
283
|
actualState: string | null;
|
|
284
284
|
}[];
|
|
285
285
|
}, {
|
|
286
|
+
markdown: string;
|
|
286
287
|
id: string;
|
|
287
288
|
updatedAt: Date;
|
|
289
|
+
name: string;
|
|
288
290
|
orgId: string;
|
|
289
291
|
slug: string;
|
|
290
292
|
description: string | null;
|
|
291
293
|
createdAt: Date;
|
|
292
|
-
name: string;
|
|
293
294
|
metadata: Record<string, unknown> | null;
|
|
294
|
-
markdown: string;
|
|
295
295
|
key: string;
|
|
296
296
|
sourcePath: string | null;
|
|
297
297
|
workspaceEditPath: string | null;
|
|
@@ -447,15 +447,15 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
447
447
|
createdAt: z.ZodDate;
|
|
448
448
|
updatedAt: z.ZodDate;
|
|
449
449
|
}, "strip", z.ZodTypeAny, {
|
|
450
|
+
markdown: string;
|
|
450
451
|
id: string;
|
|
451
452
|
updatedAt: Date;
|
|
453
|
+
name: string;
|
|
452
454
|
orgId: string;
|
|
453
455
|
slug: string;
|
|
454
456
|
description: string | null;
|
|
455
457
|
createdAt: Date;
|
|
456
|
-
name: string;
|
|
457
458
|
metadata: Record<string, unknown> | null;
|
|
458
|
-
markdown: string;
|
|
459
459
|
key: string;
|
|
460
460
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
461
461
|
sourceLocator: string | null;
|
|
@@ -467,15 +467,15 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
467
467
|
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
468
468
|
}[];
|
|
469
469
|
}, {
|
|
470
|
+
markdown: string;
|
|
470
471
|
id: string;
|
|
471
472
|
updatedAt: Date;
|
|
473
|
+
name: string;
|
|
472
474
|
orgId: string;
|
|
473
475
|
slug: string;
|
|
474
476
|
description: string | null;
|
|
475
477
|
createdAt: Date;
|
|
476
|
-
name: string;
|
|
477
478
|
metadata: Record<string, unknown> | null;
|
|
478
|
-
markdown: string;
|
|
479
479
|
key: string;
|
|
480
480
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
481
481
|
sourceLocator: string | null;
|
|
@@ -514,15 +514,15 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
514
514
|
createdAt: z.ZodDate;
|
|
515
515
|
updatedAt: z.ZodDate;
|
|
516
516
|
}, "strip", z.ZodTypeAny, {
|
|
517
|
+
markdown: string;
|
|
517
518
|
id: string;
|
|
518
519
|
updatedAt: Date;
|
|
520
|
+
name: string;
|
|
519
521
|
orgId: string;
|
|
520
522
|
slug: string;
|
|
521
523
|
description: string | null;
|
|
522
524
|
createdAt: Date;
|
|
523
|
-
name: string;
|
|
524
525
|
metadata: Record<string, unknown> | null;
|
|
525
|
-
markdown: string;
|
|
526
526
|
key: string;
|
|
527
527
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
528
528
|
sourceLocator: string | null;
|
|
@@ -534,15 +534,15 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
534
534
|
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
535
535
|
}[];
|
|
536
536
|
}, {
|
|
537
|
+
markdown: string;
|
|
537
538
|
id: string;
|
|
538
539
|
updatedAt: Date;
|
|
540
|
+
name: string;
|
|
539
541
|
orgId: string;
|
|
540
542
|
slug: string;
|
|
541
543
|
description: string | null;
|
|
542
544
|
createdAt: Date;
|
|
543
|
-
name: string;
|
|
544
545
|
metadata: Record<string, unknown> | null;
|
|
545
|
-
markdown: string;
|
|
546
546
|
key: string;
|
|
547
547
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
548
548
|
sourceLocator: string | null;
|
|
@@ -616,15 +616,15 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
616
616
|
warnings: z.ZodArray<z.ZodString, "many">;
|
|
617
617
|
}, "strip", z.ZodTypeAny, {
|
|
618
618
|
imported: {
|
|
619
|
+
markdown: string;
|
|
619
620
|
id: string;
|
|
620
621
|
updatedAt: Date;
|
|
622
|
+
name: string;
|
|
621
623
|
orgId: string;
|
|
622
624
|
slug: string;
|
|
623
625
|
description: string | null;
|
|
624
626
|
createdAt: Date;
|
|
625
|
-
name: string;
|
|
626
627
|
metadata: Record<string, unknown> | null;
|
|
627
|
-
markdown: string;
|
|
628
628
|
key: string;
|
|
629
629
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
630
630
|
sourceLocator: string | null;
|
|
@@ -645,15 +645,15 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
645
645
|
workspaceName: string | null;
|
|
646
646
|
}[];
|
|
647
647
|
updated: {
|
|
648
|
+
markdown: string;
|
|
648
649
|
id: string;
|
|
649
650
|
updatedAt: Date;
|
|
651
|
+
name: string;
|
|
650
652
|
orgId: string;
|
|
651
653
|
slug: string;
|
|
652
654
|
description: string | null;
|
|
653
655
|
createdAt: Date;
|
|
654
|
-
name: string;
|
|
655
656
|
metadata: Record<string, unknown> | null;
|
|
656
|
-
markdown: string;
|
|
657
657
|
key: string;
|
|
658
658
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
659
659
|
sourceLocator: string | null;
|
|
@@ -684,15 +684,15 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
684
684
|
}[];
|
|
685
685
|
}, {
|
|
686
686
|
imported: {
|
|
687
|
+
markdown: string;
|
|
687
688
|
id: string;
|
|
688
689
|
updatedAt: Date;
|
|
690
|
+
name: string;
|
|
689
691
|
orgId: string;
|
|
690
692
|
slug: string;
|
|
691
693
|
description: string | null;
|
|
692
694
|
createdAt: Date;
|
|
693
|
-
name: string;
|
|
694
695
|
metadata: Record<string, unknown> | null;
|
|
695
|
-
markdown: string;
|
|
696
696
|
key: string;
|
|
697
697
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
698
698
|
sourceLocator: string | null;
|
|
@@ -713,15 +713,15 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
713
713
|
workspaceName: string | null;
|
|
714
714
|
}[];
|
|
715
715
|
updated: {
|
|
716
|
+
markdown: string;
|
|
716
717
|
id: string;
|
|
717
718
|
updatedAt: Date;
|
|
719
|
+
name: string;
|
|
718
720
|
orgId: string;
|
|
719
721
|
slug: string;
|
|
720
722
|
description: string | null;
|
|
721
723
|
createdAt: Date;
|
|
722
|
-
name: string;
|
|
723
724
|
metadata: Record<string, unknown> | null;
|
|
724
|
-
markdown: string;
|
|
725
725
|
key: string;
|
|
726
726
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
727
727
|
sourceLocator: string | null;
|
|
@@ -829,15 +829,15 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
829
829
|
createdAt: z.ZodDate;
|
|
830
830
|
updatedAt: z.ZodDate;
|
|
831
831
|
}, "strip", z.ZodTypeAny, {
|
|
832
|
+
markdown: string;
|
|
832
833
|
id: string;
|
|
833
834
|
updatedAt: Date;
|
|
835
|
+
name: string;
|
|
834
836
|
orgId: string;
|
|
835
837
|
slug: string;
|
|
836
838
|
description: string | null;
|
|
837
839
|
createdAt: Date;
|
|
838
|
-
name: string;
|
|
839
840
|
metadata: Record<string, unknown> | null;
|
|
840
|
-
markdown: string;
|
|
841
841
|
key: string;
|
|
842
842
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
843
843
|
sourceLocator: string | null;
|
|
@@ -849,15 +849,15 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
849
849
|
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
850
850
|
}[];
|
|
851
851
|
}, {
|
|
852
|
+
markdown: string;
|
|
852
853
|
id: string;
|
|
853
854
|
updatedAt: Date;
|
|
855
|
+
name: string;
|
|
854
856
|
orgId: string;
|
|
855
857
|
slug: string;
|
|
856
858
|
description: string | null;
|
|
857
859
|
createdAt: Date;
|
|
858
|
-
name: string;
|
|
859
860
|
metadata: Record<string, unknown> | null;
|
|
860
|
-
markdown: string;
|
|
861
861
|
key: string;
|
|
862
862
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
863
863
|
sourceLocator: string | null;
|
|
@@ -896,15 +896,15 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
896
896
|
createdAt: z.ZodDate;
|
|
897
897
|
updatedAt: z.ZodDate;
|
|
898
898
|
}, "strip", z.ZodTypeAny, {
|
|
899
|
+
markdown: string;
|
|
899
900
|
id: string;
|
|
900
901
|
updatedAt: Date;
|
|
902
|
+
name: string;
|
|
901
903
|
orgId: string;
|
|
902
904
|
slug: string;
|
|
903
905
|
description: string | null;
|
|
904
906
|
createdAt: Date;
|
|
905
|
-
name: string;
|
|
906
907
|
metadata: Record<string, unknown> | null;
|
|
907
|
-
markdown: string;
|
|
908
908
|
key: string;
|
|
909
909
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
910
910
|
sourceLocator: string | null;
|
|
@@ -916,15 +916,15 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
916
916
|
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
917
917
|
}[];
|
|
918
918
|
}, {
|
|
919
|
+
markdown: string;
|
|
919
920
|
id: string;
|
|
920
921
|
updatedAt: Date;
|
|
922
|
+
name: string;
|
|
921
923
|
orgId: string;
|
|
922
924
|
slug: string;
|
|
923
925
|
description: string | null;
|
|
924
926
|
createdAt: Date;
|
|
925
|
-
name: string;
|
|
926
927
|
metadata: Record<string, unknown> | null;
|
|
927
|
-
markdown: string;
|
|
928
928
|
key: string;
|
|
929
929
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
930
930
|
sourceLocator: string | null;
|
|
@@ -980,15 +980,15 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
980
980
|
warnings: z.ZodArray<z.ZodString, "many">;
|
|
981
981
|
}, "strip", z.ZodTypeAny, {
|
|
982
982
|
imported: {
|
|
983
|
+
markdown: string;
|
|
983
984
|
id: string;
|
|
984
985
|
updatedAt: Date;
|
|
986
|
+
name: string;
|
|
985
987
|
orgId: string;
|
|
986
988
|
slug: string;
|
|
987
989
|
description: string | null;
|
|
988
990
|
createdAt: Date;
|
|
989
|
-
name: string;
|
|
990
991
|
metadata: Record<string, unknown> | null;
|
|
991
|
-
markdown: string;
|
|
992
992
|
key: string;
|
|
993
993
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
994
994
|
sourceLocator: string | null;
|
|
@@ -1006,15 +1006,15 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1006
1006
|
root: string;
|
|
1007
1007
|
}[];
|
|
1008
1008
|
updated: {
|
|
1009
|
+
markdown: string;
|
|
1009
1010
|
id: string;
|
|
1010
1011
|
updatedAt: Date;
|
|
1012
|
+
name: string;
|
|
1011
1013
|
orgId: string;
|
|
1012
1014
|
slug: string;
|
|
1013
1015
|
description: string | null;
|
|
1014
1016
|
createdAt: Date;
|
|
1015
|
-
name: string;
|
|
1016
1017
|
metadata: Record<string, unknown> | null;
|
|
1017
|
-
markdown: string;
|
|
1018
1018
|
key: string;
|
|
1019
1019
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
1020
1020
|
sourceLocator: string | null;
|
|
@@ -1041,15 +1041,15 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1041
1041
|
scannedRoots: number;
|
|
1042
1042
|
}, {
|
|
1043
1043
|
imported: {
|
|
1044
|
+
markdown: string;
|
|
1044
1045
|
id: string;
|
|
1045
1046
|
updatedAt: Date;
|
|
1047
|
+
name: string;
|
|
1046
1048
|
orgId: string;
|
|
1047
1049
|
slug: string;
|
|
1048
1050
|
description: string | null;
|
|
1049
1051
|
createdAt: Date;
|
|
1050
|
-
name: string;
|
|
1051
1052
|
metadata: Record<string, unknown> | null;
|
|
1052
|
-
markdown: string;
|
|
1053
1053
|
key: string;
|
|
1054
1054
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
1055
1055
|
sourceLocator: string | null;
|
|
@@ -1067,15 +1067,15 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1067
1067
|
root: string;
|
|
1068
1068
|
}[];
|
|
1069
1069
|
updated: {
|
|
1070
|
+
markdown: string;
|
|
1070
1071
|
id: string;
|
|
1071
1072
|
updatedAt: Date;
|
|
1073
|
+
name: string;
|
|
1072
1074
|
orgId: string;
|
|
1073
1075
|
slug: string;
|
|
1074
1076
|
description: string | null;
|
|
1075
1077
|
createdAt: Date;
|
|
1076
|
-
name: string;
|
|
1077
1078
|
metadata: Record<string, unknown> | null;
|
|
1078
|
-
markdown: string;
|
|
1079
1079
|
key: string;
|
|
1080
1080
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
1081
1081
|
sourceLocator: string | null;
|
|
@@ -1108,14 +1108,14 @@ export declare const organizationSkillCreateSchema: z.ZodObject<{
|
|
|
1108
1108
|
markdown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1109
1109
|
}, "strip", z.ZodTypeAny, {
|
|
1110
1110
|
name: string;
|
|
1111
|
+
markdown?: string | null | undefined;
|
|
1111
1112
|
slug?: string | null | undefined;
|
|
1112
1113
|
description?: string | null | undefined;
|
|
1113
|
-
markdown?: string | null | undefined;
|
|
1114
1114
|
}, {
|
|
1115
1115
|
name: string;
|
|
1116
|
+
markdown?: string | null | undefined;
|
|
1116
1117
|
slug?: string | null | undefined;
|
|
1117
1118
|
description?: string | null | undefined;
|
|
1118
|
-
markdown?: string | null | undefined;
|
|
1119
1119
|
}>;
|
|
1120
1120
|
export declare const organizationSkillFileDetailSchema: z.ZodObject<{
|
|
1121
1121
|
skillId: z.ZodString;
|
|
@@ -1127,16 +1127,16 @@ export declare const organizationSkillFileDetailSchema: z.ZodObject<{
|
|
|
1127
1127
|
editable: z.ZodBoolean;
|
|
1128
1128
|
}, "strip", z.ZodTypeAny, {
|
|
1129
1129
|
path: string;
|
|
1130
|
-
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
1131
1130
|
markdown: boolean;
|
|
1131
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
1132
1132
|
content: string;
|
|
1133
1133
|
editable: boolean;
|
|
1134
1134
|
skillId: string;
|
|
1135
1135
|
language: string | null;
|
|
1136
1136
|
}, {
|
|
1137
1137
|
path: string;
|
|
1138
|
-
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
1139
1138
|
markdown: boolean;
|
|
1139
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
1140
1140
|
content: string;
|
|
1141
1141
|
editable: boolean;
|
|
1142
1142
|
skillId: string;
|
|
@@ -40,8 +40,8 @@ export declare const updateOrganizationSchema: z.ZodObject<{
|
|
|
40
40
|
logoAssetId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41
41
|
}, "strip", z.ZodTypeAny, {
|
|
42
42
|
status?: "active" | "paused" | "archived" | undefined;
|
|
43
|
-
description?: string | null | undefined;
|
|
44
43
|
name?: string | undefined;
|
|
44
|
+
description?: string | null | undefined;
|
|
45
45
|
budgetMonthlyCents?: number | undefined;
|
|
46
46
|
spentMonthlyCents?: number | undefined;
|
|
47
47
|
issuePrefix?: string | undefined;
|
|
@@ -51,8 +51,8 @@ export declare const updateOrganizationSchema: z.ZodObject<{
|
|
|
51
51
|
logoAssetId?: string | null | undefined;
|
|
52
52
|
}, {
|
|
53
53
|
status?: "active" | "paused" | "archived" | undefined;
|
|
54
|
-
description?: string | null | undefined;
|
|
55
54
|
name?: string | undefined;
|
|
55
|
+
description?: string | null | undefined;
|
|
56
56
|
budgetMonthlyCents?: number | undefined;
|
|
57
57
|
spentMonthlyCents?: number | undefined;
|
|
58
58
|
issuePrefix?: string | undefined;
|
|
@@ -68,23 +68,23 @@ export declare const updateOrganizationBrandingSchema: z.ZodEffects<z.ZodObject<
|
|
|
68
68
|
brandColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
69
69
|
logoAssetId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
70
70
|
}, "strict", z.ZodTypeAny, {
|
|
71
|
-
description?: string | null | undefined;
|
|
72
71
|
name?: string | undefined;
|
|
72
|
+
description?: string | null | undefined;
|
|
73
73
|
brandColor?: string | null | undefined;
|
|
74
74
|
logoAssetId?: string | null | undefined;
|
|
75
75
|
}, {
|
|
76
|
-
description?: string | null | undefined;
|
|
77
76
|
name?: string | undefined;
|
|
77
|
+
description?: string | null | undefined;
|
|
78
78
|
brandColor?: string | null | undefined;
|
|
79
79
|
logoAssetId?: string | null | undefined;
|
|
80
80
|
}>, {
|
|
81
|
-
description?: string | null | undefined;
|
|
82
81
|
name?: string | undefined;
|
|
82
|
+
description?: string | null | undefined;
|
|
83
83
|
brandColor?: string | null | undefined;
|
|
84
84
|
logoAssetId?: string | null | undefined;
|
|
85
85
|
}, {
|
|
86
|
-
description?: string | null | undefined;
|
|
87
86
|
name?: string | undefined;
|
|
87
|
+
description?: string | null | undefined;
|
|
88
88
|
brandColor?: string | null | undefined;
|
|
89
89
|
logoAssetId?: string | null | undefined;
|
|
90
90
|
}>;
|
|
@@ -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;
|
|
63
64
|
displayName: string;
|
|
64
65
|
description: string;
|
|
65
|
-
name: string;
|
|
66
66
|
parametersSchema: Record<string, unknown>;
|
|
67
67
|
}, {
|
|
68
|
+
name: string;
|
|
68
69
|
displayName: string;
|
|
69
70
|
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
|
-
displayName: string;
|
|
92
91
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
92
|
+
displayName: string;
|
|
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
|
-
displayName: string;
|
|
100
99
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
100
|
+
displayName: string;
|
|
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
|
-
displayName: string;
|
|
108
107
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
108
|
+
displayName: string;
|
|
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
|
-
displayName: string;
|
|
116
115
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
116
|
+
displayName: string;
|
|
117
117
|
exportName: string;
|
|
118
118
|
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
119
119
|
routePath?: string | undefined;
|
|
@@ -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;
|
|
377
378
|
displayName: string;
|
|
378
379
|
description: string;
|
|
379
|
-
name: string;
|
|
380
380
|
parametersSchema: Record<string, unknown>;
|
|
381
381
|
}, {
|
|
382
|
+
name: string;
|
|
382
383
|
displayName: string;
|
|
383
384
|
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<{
|
|
@@ -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
|
-
displayName: string;
|
|
513
512
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
513
|
+
displayName: string;
|
|
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
|
-
displayName: string;
|
|
521
520
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
521
|
+
displayName: string;
|
|
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
|
-
displayName: string;
|
|
529
528
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
529
|
+
displayName: string;
|
|
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
|
-
displayName: string;
|
|
537
536
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
537
|
+
displayName: string;
|
|
538
538
|
exportName: string;
|
|
539
539
|
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
540
540
|
routePath?: 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
|
-
displayName: string;
|
|
679
678
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
679
|
+
displayName: string;
|
|
680
680
|
exportName: string;
|
|
681
681
|
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
682
682
|
routePath?: 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
|
-
displayName: string;
|
|
707
706
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
707
|
+
displayName: string;
|
|
708
708
|
exportName: string;
|
|
709
709
|
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
710
710
|
routePath?: string | undefined;
|
|
@@ -745,8 +745,8 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
745
745
|
}[] | undefined;
|
|
746
746
|
slots?: {
|
|
747
747
|
id: string;
|
|
748
|
-
displayName: string;
|
|
749
748
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
749
|
+
displayName: string;
|
|
750
750
|
exportName: string;
|
|
751
751
|
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
752
752
|
routePath?: string | undefined;
|
|
@@ -754,9 +754,9 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
754
754
|
}[] | undefined;
|
|
755
755
|
} | undefined;
|
|
756
756
|
tools?: {
|
|
757
|
+
name: string;
|
|
757
758
|
displayName: string;
|
|
758
759
|
description: string;
|
|
759
|
-
name: string;
|
|
760
760
|
parametersSchema: Record<string, unknown>;
|
|
761
761
|
}[] | undefined;
|
|
762
762
|
minimumHostVersion?: string | undefined;
|
|
@@ -825,8 +825,8 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
825
825
|
}[] | undefined;
|
|
826
826
|
slots?: {
|
|
827
827
|
id: string;
|
|
828
|
-
displayName: string;
|
|
829
828
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
829
|
+
displayName: string;
|
|
830
830
|
exportName: string;
|
|
831
831
|
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
832
832
|
routePath?: string | undefined;
|
|
@@ -834,9 +834,9 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
834
834
|
}[] | undefined;
|
|
835
835
|
} | undefined;
|
|
836
836
|
tools?: {
|
|
837
|
+
name: string;
|
|
837
838
|
displayName: string;
|
|
838
839
|
description: string;
|
|
839
|
-
name: string;
|
|
840
840
|
parametersSchema: Record<string, unknown>;
|
|
841
841
|
}[] | undefined;
|
|
842
842
|
minimumHostVersion?: string | undefined;
|
|
@@ -905,8 +905,8 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
905
905
|
}[] | undefined;
|
|
906
906
|
slots?: {
|
|
907
907
|
id: string;
|
|
908
|
-
displayName: string;
|
|
909
908
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
909
|
+
displayName: string;
|
|
910
910
|
exportName: string;
|
|
911
911
|
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
912
912
|
routePath?: string | undefined;
|
|
@@ -914,9 +914,9 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
914
914
|
}[] | undefined;
|
|
915
915
|
} | undefined;
|
|
916
916
|
tools?: {
|
|
917
|
+
name: string;
|
|
917
918
|
displayName: string;
|
|
918
919
|
description: string;
|
|
919
|
-
name: string;
|
|
920
920
|
parametersSchema: Record<string, unknown>;
|
|
921
921
|
}[] | undefined;
|
|
922
922
|
minimumHostVersion?: string | undefined;
|
|
@@ -985,8 +985,8 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
985
985
|
}[] | undefined;
|
|
986
986
|
slots?: {
|
|
987
987
|
id: string;
|
|
988
|
-
displayName: string;
|
|
989
988
|
type: "page" | "detailTab" | "taskDetailView" | "dashboardWidget" | "sidebar" | "sidebarPanel" | "projectSidebarItem" | "globalToolbarButton" | "toolbarButton" | "contextMenuItem" | "commentAnnotation" | "commentContextMenuItem" | "settingsPage";
|
|
989
|
+
displayName: string;
|
|
990
990
|
exportName: string;
|
|
991
991
|
entityTypes?: ("issue" | "agent" | "project" | "goal" | "run" | "comment")[] | undefined;
|
|
992
992
|
routePath?: string | undefined;
|
|
@@ -994,9 +994,9 @@ export declare const pluginManifestV1Schema: z.ZodEffects<z.ZodObject<{
|
|
|
994
994
|
}[] | undefined;
|
|
995
995
|
} | undefined;
|
|
996
996
|
tools?: {
|
|
997
|
+
name: string;
|
|
997
998
|
displayName: string;
|
|
998
999
|
description: string;
|
|
999
|
-
name: string;
|
|
1000
1000
|
parametersSchema: Record<string, unknown>;
|
|
1001
1001
|
}[] | undefined;
|
|
1002
1002
|
minimumHostVersion?: string | undefined;
|