@rudderhq/shared 0.3.4-canary.9 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants.d.ts +2 -2
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +27 -5
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +14 -14
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/dist/organization-skill-reference.test.js +3 -3
- package/dist/organization-skill-reference.test.js.map +1 -1
- package/dist/project-mentions.d.ts +2 -1
- package/dist/project-mentions.d.ts.map +1 -1
- package/dist/project-mentions.js +26 -129
- package/dist/project-mentions.js.map +1 -1
- package/dist/project-mentions.test.js +54 -40
- package/dist/project-mentions.test.js.map +1 -1
- package/dist/types/agent.d.ts +1 -1
- package/dist/types/agent.d.ts.map +1 -1
- package/dist/types/heartbeat.d.ts +1 -1
- package/dist/types/index.d.ts +30 -30
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/instance.d.ts +17 -0
- package/dist/types/instance.d.ts.map +1 -1
- package/dist/types/issue.d.ts +1 -41
- package/dist/types/issue.d.ts.map +1 -1
- package/dist/types/messenger.d.ts +4 -4
- package/dist/types/messenger.d.ts.map +1 -1
- package/dist/types/organization.d.ts +1 -2
- package/dist/types/organization.d.ts.map +1 -1
- package/dist/types/plugin.d.ts +1 -1
- package/dist/types/plugin.d.ts.map +1 -1
- package/dist/types/project.d.ts +1 -1
- package/dist/types/project.d.ts.map +1 -1
- package/dist/validators/adapter-skills.d.ts +20 -20
- package/dist/validators/agent.d.ts +28 -28
- package/dist/validators/agent.js +2 -2
- package/dist/validators/agent.js.map +1 -1
- package/dist/validators/automation.d.ts +86 -4
- package/dist/validators/automation.d.ts.map +1 -1
- package/dist/validators/automation.js +16 -7
- package/dist/validators/automation.js.map +1 -1
- package/dist/validators/automation.test.js +20 -0
- package/dist/validators/automation.test.js.map +1 -1
- package/dist/validators/calendar.d.ts +32 -32
- package/dist/validators/chat.d.ts +40 -2
- package/dist/validators/chat.d.ts.map +1 -1
- package/dist/validators/chat.js +5 -1
- package/dist/validators/chat.js.map +1 -1
- package/dist/validators/chat.test.js +18 -3
- package/dist/validators/chat.test.js.map +1 -1
- package/dist/validators/finance.d.ts +4 -4
- package/dist/validators/goal.d.ts +4 -4
- package/dist/validators/index.d.ts +25 -25
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +25 -25
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/instance.d.ts +281 -0
- package/dist/validators/instance.d.ts.map +1 -1
- package/dist/validators/instance.js +38 -0
- package/dist/validators/instance.js.map +1 -1
- package/dist/validators/instance.test.js +41 -1
- package/dist/validators/instance.test.js.map +1 -1
- package/dist/validators/issue.d.ts +0 -22
- package/dist/validators/issue.d.ts.map +1 -1
- package/dist/validators/issue.js +0 -13
- package/dist/validators/issue.js.map +1 -1
- package/dist/validators/organization-intelligence-profile.js +1 -1
- package/dist/validators/organization-intelligence-profile.js.map +1 -1
- package/dist/validators/organization-portability.d.ts +89 -89
- package/dist/validators/organization-skill.d.ts +150 -150
- package/dist/validators/organization.d.ts +12 -12
- package/dist/validators/plugin.d.ts +17 -17
- package/dist/validators/plugin.js +1 -1
- package/dist/validators/plugin.js.map +1 -1
- package/dist/validators/project.d.ts +26 -26
- package/dist/validators/project.test.js +2 -2
- package/dist/validators/project.test.js.map +1 -1
- package/dist/validators/resource.d.ts +20 -20
- package/dist/validators/secret.d.ts +2 -2
- package/package.json +1 -1
|
@@ -27,7 +27,7 @@ export declare const portabilityEnvInputSchema: z.ZodObject<{
|
|
|
27
27
|
defaultValue: z.ZodNullable<z.ZodString>;
|
|
28
28
|
portability: z.ZodEnum<["portable", "system_dependent"]>;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
-
kind: "
|
|
30
|
+
kind: "secret" | "plain";
|
|
31
31
|
description: string | null;
|
|
32
32
|
key: string;
|
|
33
33
|
agentSlug: string | null;
|
|
@@ -35,7 +35,7 @@ export declare const portabilityEnvInputSchema: z.ZodObject<{
|
|
|
35
35
|
defaultValue: string | null;
|
|
36
36
|
portability: "portable" | "system_dependent";
|
|
37
37
|
}, {
|
|
38
|
-
kind: "
|
|
38
|
+
kind: "secret" | "plain";
|
|
39
39
|
description: string | null;
|
|
40
40
|
key: string;
|
|
41
41
|
agentSlug: string | null;
|
|
@@ -65,18 +65,18 @@ export declare const portabilityOrganizationManifestEntrySchema: z.ZodObject<{
|
|
|
65
65
|
requireBoardApprovalForNewAgents: z.ZodBoolean;
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
67
|
path: string;
|
|
68
|
-
description: string | null;
|
|
69
68
|
name: string;
|
|
69
|
+
description: string | null;
|
|
70
70
|
brandColor: string | null;
|
|
71
|
-
requireBoardApprovalForNewAgents: boolean;
|
|
72
71
|
logoPath: string | null;
|
|
72
|
+
requireBoardApprovalForNewAgents: boolean;
|
|
73
73
|
}, {
|
|
74
74
|
path: string;
|
|
75
|
-
description: string | null;
|
|
76
75
|
name: string;
|
|
76
|
+
description: string | null;
|
|
77
77
|
brandColor: string | null;
|
|
78
|
-
requireBoardApprovalForNewAgents: boolean;
|
|
79
78
|
logoPath: string | null;
|
|
79
|
+
requireBoardApprovalForNewAgents: boolean;
|
|
80
80
|
}>;
|
|
81
81
|
export declare const portabilitySidebarOrderSchema: z.ZodObject<{
|
|
82
82
|
agents: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -106,35 +106,35 @@ export declare const portabilityAgentManifestEntrySchema: z.ZodObject<{
|
|
|
106
106
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107
107
|
}, "strip", z.ZodTypeAny, {
|
|
108
108
|
path: string;
|
|
109
|
-
title: string | null;
|
|
110
109
|
name: string;
|
|
111
|
-
|
|
110
|
+
title: string | null;
|
|
112
111
|
agentRuntimeType: string;
|
|
113
|
-
|
|
112
|
+
skills: string[];
|
|
114
113
|
metadata: Record<string, unknown> | null;
|
|
115
|
-
|
|
114
|
+
agentRuntimeConfig: Record<string, unknown>;
|
|
116
115
|
slug: string;
|
|
117
|
-
|
|
116
|
+
role: string;
|
|
118
117
|
icon: string | null;
|
|
119
118
|
capabilities: string | null;
|
|
120
119
|
reportsToSlug: string | null;
|
|
121
120
|
runtimeConfig: Record<string, unknown>;
|
|
122
121
|
permissions: Record<string, unknown>;
|
|
122
|
+
budgetMonthlyCents: number;
|
|
123
123
|
}, {
|
|
124
124
|
path: string;
|
|
125
|
-
title: string | null;
|
|
126
125
|
name: string;
|
|
127
|
-
|
|
126
|
+
title: string | null;
|
|
128
127
|
agentRuntimeType: string;
|
|
129
|
-
agentRuntimeConfig: Record<string, unknown>;
|
|
130
128
|
metadata: Record<string, unknown> | null;
|
|
131
|
-
|
|
129
|
+
agentRuntimeConfig: Record<string, unknown>;
|
|
132
130
|
slug: string;
|
|
131
|
+
role: string;
|
|
133
132
|
icon: string | null;
|
|
134
133
|
capabilities: string | null;
|
|
135
134
|
reportsToSlug: string | null;
|
|
136
135
|
runtimeConfig: Record<string, unknown>;
|
|
137
136
|
permissions: Record<string, unknown>;
|
|
137
|
+
budgetMonthlyCents: number;
|
|
138
138
|
skills?: string[] | undefined;
|
|
139
139
|
}>;
|
|
140
140
|
export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
|
|
@@ -161,12 +161,12 @@ export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
|
|
|
161
161
|
}>, "many">>;
|
|
162
162
|
}, "strip", z.ZodTypeAny, {
|
|
163
163
|
path: string;
|
|
164
|
-
description: string | null;
|
|
165
164
|
name: string;
|
|
166
|
-
|
|
167
|
-
metadata: Record<string, unknown> | null;
|
|
165
|
+
description: string | null;
|
|
168
166
|
key: string;
|
|
167
|
+
metadata: Record<string, unknown> | null;
|
|
169
168
|
slug: string;
|
|
169
|
+
sourceType: string;
|
|
170
170
|
sourceLocator: string | null;
|
|
171
171
|
sourceRef: string | null;
|
|
172
172
|
trustLevel: string | null;
|
|
@@ -177,12 +177,12 @@ export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
|
|
|
177
177
|
}[];
|
|
178
178
|
}, {
|
|
179
179
|
path: string;
|
|
180
|
-
description: string | null;
|
|
181
180
|
name: string;
|
|
182
|
-
|
|
183
|
-
metadata: Record<string, unknown> | null;
|
|
181
|
+
description: string | null;
|
|
184
182
|
key: string;
|
|
183
|
+
metadata: Record<string, unknown> | null;
|
|
185
184
|
slug: string;
|
|
185
|
+
sourceType: string;
|
|
186
186
|
sourceLocator: string | null;
|
|
187
187
|
sourceRef: string | null;
|
|
188
188
|
trustLevel: string | null;
|
|
@@ -217,9 +217,9 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
217
217
|
isPrimary: z.ZodBoolean;
|
|
218
218
|
}, "strip", z.ZodTypeAny, {
|
|
219
219
|
name: string;
|
|
220
|
-
sourceType: string | null;
|
|
221
|
-
metadata: Record<string, unknown> | null;
|
|
222
220
|
key: string;
|
|
221
|
+
metadata: Record<string, unknown> | null;
|
|
222
|
+
sourceType: string | null;
|
|
223
223
|
repoUrl: string | null;
|
|
224
224
|
repoRef: string | null;
|
|
225
225
|
defaultRef: string | null;
|
|
@@ -229,9 +229,9 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
229
229
|
isPrimary: boolean;
|
|
230
230
|
}, {
|
|
231
231
|
name: string;
|
|
232
|
-
sourceType: string | null;
|
|
233
|
-
metadata: Record<string, unknown> | null;
|
|
234
232
|
key: string;
|
|
233
|
+
metadata: Record<string, unknown> | null;
|
|
234
|
+
sourceType: string | null;
|
|
235
235
|
repoUrl: string | null;
|
|
236
236
|
repoRef: string | null;
|
|
237
237
|
defaultRef: string | null;
|
|
@@ -244,8 +244,8 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
244
244
|
}, "strip", z.ZodTypeAny, {
|
|
245
245
|
status: string | null;
|
|
246
246
|
path: string;
|
|
247
|
-
description: string | null;
|
|
248
247
|
name: string;
|
|
248
|
+
description: string | null;
|
|
249
249
|
metadata: Record<string, unknown> | null;
|
|
250
250
|
slug: string;
|
|
251
251
|
ownerAgentSlug: string | null;
|
|
@@ -255,9 +255,9 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
255
255
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
256
256
|
workspaces: {
|
|
257
257
|
name: string;
|
|
258
|
-
sourceType: string | null;
|
|
259
|
-
metadata: Record<string, unknown> | null;
|
|
260
258
|
key: string;
|
|
259
|
+
metadata: Record<string, unknown> | null;
|
|
260
|
+
sourceType: string | null;
|
|
261
261
|
repoUrl: string | null;
|
|
262
262
|
repoRef: string | null;
|
|
263
263
|
defaultRef: string | null;
|
|
@@ -269,8 +269,8 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
269
269
|
}, {
|
|
270
270
|
status: string | null;
|
|
271
271
|
path: string;
|
|
272
|
-
description: string | null;
|
|
273
272
|
name: string;
|
|
273
|
+
description: string | null;
|
|
274
274
|
metadata: Record<string, unknown> | null;
|
|
275
275
|
slug: string;
|
|
276
276
|
ownerAgentSlug: string | null;
|
|
@@ -280,9 +280,9 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
280
280
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
281
281
|
workspaces?: {
|
|
282
282
|
name: string;
|
|
283
|
-
sourceType: string | null;
|
|
284
|
-
metadata: Record<string, unknown> | null;
|
|
285
283
|
key: string;
|
|
284
|
+
metadata: Record<string, unknown> | null;
|
|
285
|
+
sourceType: string | null;
|
|
286
286
|
repoUrl: string | null;
|
|
287
287
|
repoRef: string | null;
|
|
288
288
|
defaultRef: string | null;
|
|
@@ -545,18 +545,18 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
545
545
|
requireBoardApprovalForNewAgents: z.ZodBoolean;
|
|
546
546
|
}, "strip", z.ZodTypeAny, {
|
|
547
547
|
path: string;
|
|
548
|
-
description: string | null;
|
|
549
548
|
name: string;
|
|
549
|
+
description: string | null;
|
|
550
550
|
brandColor: string | null;
|
|
551
|
-
requireBoardApprovalForNewAgents: boolean;
|
|
552
551
|
logoPath: string | null;
|
|
552
|
+
requireBoardApprovalForNewAgents: boolean;
|
|
553
553
|
}, {
|
|
554
554
|
path: string;
|
|
555
|
-
description: string | null;
|
|
556
555
|
name: string;
|
|
556
|
+
description: string | null;
|
|
557
557
|
brandColor: string | null;
|
|
558
|
-
requireBoardApprovalForNewAgents: boolean;
|
|
559
558
|
logoPath: string | null;
|
|
559
|
+
requireBoardApprovalForNewAgents: boolean;
|
|
560
560
|
}>>;
|
|
561
561
|
sidebar: z.ZodNullable<z.ZodObject<{
|
|
562
562
|
agents: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -586,35 +586,35 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
586
586
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
587
587
|
}, "strip", z.ZodTypeAny, {
|
|
588
588
|
path: string;
|
|
589
|
-
title: string | null;
|
|
590
589
|
name: string;
|
|
591
|
-
|
|
590
|
+
title: string | null;
|
|
592
591
|
agentRuntimeType: string;
|
|
593
|
-
|
|
592
|
+
skills: string[];
|
|
594
593
|
metadata: Record<string, unknown> | null;
|
|
595
|
-
|
|
594
|
+
agentRuntimeConfig: Record<string, unknown>;
|
|
596
595
|
slug: string;
|
|
597
|
-
|
|
596
|
+
role: string;
|
|
598
597
|
icon: string | null;
|
|
599
598
|
capabilities: string | null;
|
|
600
599
|
reportsToSlug: string | null;
|
|
601
600
|
runtimeConfig: Record<string, unknown>;
|
|
602
601
|
permissions: Record<string, unknown>;
|
|
602
|
+
budgetMonthlyCents: number;
|
|
603
603
|
}, {
|
|
604
604
|
path: string;
|
|
605
|
-
title: string | null;
|
|
606
605
|
name: string;
|
|
607
|
-
|
|
606
|
+
title: string | null;
|
|
608
607
|
agentRuntimeType: string;
|
|
609
|
-
agentRuntimeConfig: Record<string, unknown>;
|
|
610
608
|
metadata: Record<string, unknown> | null;
|
|
611
|
-
|
|
609
|
+
agentRuntimeConfig: Record<string, unknown>;
|
|
612
610
|
slug: string;
|
|
611
|
+
role: string;
|
|
613
612
|
icon: string | null;
|
|
614
613
|
capabilities: string | null;
|
|
615
614
|
reportsToSlug: string | null;
|
|
616
615
|
runtimeConfig: Record<string, unknown>;
|
|
617
616
|
permissions: Record<string, unknown>;
|
|
617
|
+
budgetMonthlyCents: number;
|
|
618
618
|
skills?: string[] | undefined;
|
|
619
619
|
}>, "many">;
|
|
620
620
|
skills: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
@@ -641,12 +641,12 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
641
641
|
}>, "many">>;
|
|
642
642
|
}, "strip", z.ZodTypeAny, {
|
|
643
643
|
path: string;
|
|
644
|
-
description: string | null;
|
|
645
644
|
name: string;
|
|
646
|
-
|
|
647
|
-
metadata: Record<string, unknown> | null;
|
|
645
|
+
description: string | null;
|
|
648
646
|
key: string;
|
|
647
|
+
metadata: Record<string, unknown> | null;
|
|
649
648
|
slug: string;
|
|
649
|
+
sourceType: string;
|
|
650
650
|
sourceLocator: string | null;
|
|
651
651
|
sourceRef: string | null;
|
|
652
652
|
trustLevel: string | null;
|
|
@@ -657,12 +657,12 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
657
657
|
}[];
|
|
658
658
|
}, {
|
|
659
659
|
path: string;
|
|
660
|
-
description: string | null;
|
|
661
660
|
name: string;
|
|
662
|
-
|
|
663
|
-
metadata: Record<string, unknown> | null;
|
|
661
|
+
description: string | null;
|
|
664
662
|
key: string;
|
|
663
|
+
metadata: Record<string, unknown> | null;
|
|
665
664
|
slug: string;
|
|
665
|
+
sourceType: string;
|
|
666
666
|
sourceLocator: string | null;
|
|
667
667
|
sourceRef: string | null;
|
|
668
668
|
trustLevel: string | null;
|
|
@@ -697,9 +697,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
697
697
|
isPrimary: z.ZodBoolean;
|
|
698
698
|
}, "strip", z.ZodTypeAny, {
|
|
699
699
|
name: string;
|
|
700
|
-
sourceType: string | null;
|
|
701
|
-
metadata: Record<string, unknown> | null;
|
|
702
700
|
key: string;
|
|
701
|
+
metadata: Record<string, unknown> | null;
|
|
702
|
+
sourceType: string | null;
|
|
703
703
|
repoUrl: string | null;
|
|
704
704
|
repoRef: string | null;
|
|
705
705
|
defaultRef: string | null;
|
|
@@ -709,9 +709,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
709
709
|
isPrimary: boolean;
|
|
710
710
|
}, {
|
|
711
711
|
name: string;
|
|
712
|
-
sourceType: string | null;
|
|
713
|
-
metadata: Record<string, unknown> | null;
|
|
714
712
|
key: string;
|
|
713
|
+
metadata: Record<string, unknown> | null;
|
|
714
|
+
sourceType: string | null;
|
|
715
715
|
repoUrl: string | null;
|
|
716
716
|
repoRef: string | null;
|
|
717
717
|
defaultRef: string | null;
|
|
@@ -724,8 +724,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
724
724
|
}, "strip", z.ZodTypeAny, {
|
|
725
725
|
status: string | null;
|
|
726
726
|
path: string;
|
|
727
|
-
description: string | null;
|
|
728
727
|
name: string;
|
|
728
|
+
description: string | null;
|
|
729
729
|
metadata: Record<string, unknown> | null;
|
|
730
730
|
slug: string;
|
|
731
731
|
ownerAgentSlug: string | null;
|
|
@@ -735,9 +735,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
735
735
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
736
736
|
workspaces: {
|
|
737
737
|
name: string;
|
|
738
|
-
sourceType: string | null;
|
|
739
|
-
metadata: Record<string, unknown> | null;
|
|
740
738
|
key: string;
|
|
739
|
+
metadata: Record<string, unknown> | null;
|
|
740
|
+
sourceType: string | null;
|
|
741
741
|
repoUrl: string | null;
|
|
742
742
|
repoRef: string | null;
|
|
743
743
|
defaultRef: string | null;
|
|
@@ -749,8 +749,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
749
749
|
}, {
|
|
750
750
|
status: string | null;
|
|
751
751
|
path: string;
|
|
752
|
-
description: string | null;
|
|
753
752
|
name: string;
|
|
753
|
+
description: string | null;
|
|
754
754
|
metadata: Record<string, unknown> | null;
|
|
755
755
|
slug: string;
|
|
756
756
|
ownerAgentSlug: string | null;
|
|
@@ -760,9 +760,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
760
760
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
761
761
|
workspaces?: {
|
|
762
762
|
name: string;
|
|
763
|
-
sourceType: string | null;
|
|
764
|
-
metadata: Record<string, unknown> | null;
|
|
765
763
|
key: string;
|
|
764
|
+
metadata: Record<string, unknown> | null;
|
|
765
|
+
sourceType: string | null;
|
|
766
766
|
repoUrl: string | null;
|
|
767
767
|
repoRef: string | null;
|
|
768
768
|
defaultRef: string | null;
|
|
@@ -915,7 +915,7 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
915
915
|
defaultValue: z.ZodNullable<z.ZodString>;
|
|
916
916
|
portability: z.ZodEnum<["portable", "system_dependent"]>;
|
|
917
917
|
}, "strip", z.ZodTypeAny, {
|
|
918
|
-
kind: "
|
|
918
|
+
kind: "secret" | "plain";
|
|
919
919
|
description: string | null;
|
|
920
920
|
key: string;
|
|
921
921
|
agentSlug: string | null;
|
|
@@ -923,7 +923,7 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
923
923
|
defaultValue: string | null;
|
|
924
924
|
portability: "portable" | "system_dependent";
|
|
925
925
|
}, {
|
|
926
|
-
kind: "
|
|
926
|
+
kind: "secret" | "plain";
|
|
927
927
|
description: string | null;
|
|
928
928
|
key: string;
|
|
929
929
|
agentSlug: string | null;
|
|
@@ -966,11 +966,11 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
966
966
|
}[];
|
|
967
967
|
organization: {
|
|
968
968
|
path: string;
|
|
969
|
-
description: string | null;
|
|
970
969
|
name: string;
|
|
970
|
+
description: string | null;
|
|
971
971
|
brandColor: string | null;
|
|
972
|
-
requireBoardApprovalForNewAgents: boolean;
|
|
973
972
|
logoPath: string | null;
|
|
973
|
+
requireBoardApprovalForNewAgents: boolean;
|
|
974
974
|
} | null;
|
|
975
975
|
sidebar: {
|
|
976
976
|
agents: string[];
|
|
@@ -978,26 +978,26 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
978
978
|
} | null;
|
|
979
979
|
agents: {
|
|
980
980
|
path: string;
|
|
981
|
-
title: string | null;
|
|
982
981
|
name: string;
|
|
983
|
-
|
|
982
|
+
title: string | null;
|
|
984
983
|
agentRuntimeType: string;
|
|
985
|
-
|
|
984
|
+
skills: string[];
|
|
986
985
|
metadata: Record<string, unknown> | null;
|
|
987
|
-
|
|
986
|
+
agentRuntimeConfig: Record<string, unknown>;
|
|
988
987
|
slug: string;
|
|
989
|
-
|
|
988
|
+
role: string;
|
|
990
989
|
icon: string | null;
|
|
991
990
|
capabilities: string | null;
|
|
992
991
|
reportsToSlug: string | null;
|
|
993
992
|
runtimeConfig: Record<string, unknown>;
|
|
994
993
|
permissions: Record<string, unknown>;
|
|
994
|
+
budgetMonthlyCents: number;
|
|
995
995
|
}[];
|
|
996
996
|
projects: {
|
|
997
997
|
status: string | null;
|
|
998
998
|
path: string;
|
|
999
|
-
description: string | null;
|
|
1000
999
|
name: string;
|
|
1000
|
+
description: string | null;
|
|
1001
1001
|
metadata: Record<string, unknown> | null;
|
|
1002
1002
|
slug: string;
|
|
1003
1003
|
ownerAgentSlug: string | null;
|
|
@@ -1007,9 +1007,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1007
1007
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
1008
1008
|
workspaces: {
|
|
1009
1009
|
name: string;
|
|
1010
|
-
sourceType: string | null;
|
|
1011
|
-
metadata: Record<string, unknown> | null;
|
|
1012
1010
|
key: string;
|
|
1011
|
+
metadata: Record<string, unknown> | null;
|
|
1012
|
+
sourceType: string | null;
|
|
1013
1013
|
repoUrl: string | null;
|
|
1014
1014
|
repoRef: string | null;
|
|
1015
1015
|
defaultRef: string | null;
|
|
@@ -1032,12 +1032,12 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1032
1032
|
} | null;
|
|
1033
1033
|
skills: {
|
|
1034
1034
|
path: string;
|
|
1035
|
-
description: string | null;
|
|
1036
1035
|
name: string;
|
|
1037
|
-
|
|
1038
|
-
metadata: Record<string, unknown> | null;
|
|
1036
|
+
description: string | null;
|
|
1039
1037
|
key: string;
|
|
1038
|
+
metadata: Record<string, unknown> | null;
|
|
1040
1039
|
slug: string;
|
|
1040
|
+
sourceType: string;
|
|
1041
1041
|
sourceLocator: string | null;
|
|
1042
1042
|
sourceRef: string | null;
|
|
1043
1043
|
trustLevel: string | null;
|
|
@@ -1050,7 +1050,7 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1050
1050
|
schemaVersion: number;
|
|
1051
1051
|
generatedAt: string;
|
|
1052
1052
|
envInputs: {
|
|
1053
|
-
kind: "
|
|
1053
|
+
kind: "secret" | "plain";
|
|
1054
1054
|
description: string | null;
|
|
1055
1055
|
key: string;
|
|
1056
1056
|
agentSlug: string | null;
|
|
@@ -1061,11 +1061,11 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1061
1061
|
}, {
|
|
1062
1062
|
organization: {
|
|
1063
1063
|
path: string;
|
|
1064
|
-
description: string | null;
|
|
1065
1064
|
name: string;
|
|
1065
|
+
description: string | null;
|
|
1066
1066
|
brandColor: string | null;
|
|
1067
|
-
requireBoardApprovalForNewAgents: boolean;
|
|
1068
1067
|
logoPath: string | null;
|
|
1068
|
+
requireBoardApprovalForNewAgents: boolean;
|
|
1069
1069
|
} | null;
|
|
1070
1070
|
sidebar: {
|
|
1071
1071
|
agents?: string[] | undefined;
|
|
@@ -1073,19 +1073,19 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1073
1073
|
} | null;
|
|
1074
1074
|
agents: {
|
|
1075
1075
|
path: string;
|
|
1076
|
-
title: string | null;
|
|
1077
1076
|
name: string;
|
|
1078
|
-
|
|
1077
|
+
title: string | null;
|
|
1079
1078
|
agentRuntimeType: string;
|
|
1080
|
-
agentRuntimeConfig: Record<string, unknown>;
|
|
1081
1079
|
metadata: Record<string, unknown> | null;
|
|
1082
|
-
|
|
1080
|
+
agentRuntimeConfig: Record<string, unknown>;
|
|
1083
1081
|
slug: string;
|
|
1082
|
+
role: string;
|
|
1084
1083
|
icon: string | null;
|
|
1085
1084
|
capabilities: string | null;
|
|
1086
1085
|
reportsToSlug: string | null;
|
|
1087
1086
|
runtimeConfig: Record<string, unknown>;
|
|
1088
1087
|
permissions: Record<string, unknown>;
|
|
1088
|
+
budgetMonthlyCents: number;
|
|
1089
1089
|
skills?: string[] | undefined;
|
|
1090
1090
|
}[];
|
|
1091
1091
|
includes: {
|
|
@@ -1136,8 +1136,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1136
1136
|
projects?: {
|
|
1137
1137
|
status: string | null;
|
|
1138
1138
|
path: string;
|
|
1139
|
-
description: string | null;
|
|
1140
1139
|
name: string;
|
|
1140
|
+
description: string | null;
|
|
1141
1141
|
metadata: Record<string, unknown> | null;
|
|
1142
1142
|
slug: string;
|
|
1143
1143
|
ownerAgentSlug: string | null;
|
|
@@ -1147,9 +1147,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1147
1147
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
1148
1148
|
workspaces?: {
|
|
1149
1149
|
name: string;
|
|
1150
|
-
sourceType: string | null;
|
|
1151
|
-
metadata: Record<string, unknown> | null;
|
|
1152
1150
|
key: string;
|
|
1151
|
+
metadata: Record<string, unknown> | null;
|
|
1152
|
+
sourceType: string | null;
|
|
1153
1153
|
repoUrl: string | null;
|
|
1154
1154
|
repoRef: string | null;
|
|
1155
1155
|
defaultRef: string | null;
|
|
@@ -1161,12 +1161,12 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1161
1161
|
}[] | undefined;
|
|
1162
1162
|
skills?: {
|
|
1163
1163
|
path: string;
|
|
1164
|
-
description: string | null;
|
|
1165
1164
|
name: string;
|
|
1166
|
-
|
|
1167
|
-
metadata: Record<string, unknown> | null;
|
|
1165
|
+
description: string | null;
|
|
1168
1166
|
key: string;
|
|
1167
|
+
metadata: Record<string, unknown> | null;
|
|
1169
1168
|
slug: string;
|
|
1169
|
+
sourceType: string;
|
|
1170
1170
|
sourceLocator: string | null;
|
|
1171
1171
|
sourceRef: string | null;
|
|
1172
1172
|
trustLevel: string | null;
|
|
@@ -1177,7 +1177,7 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1177
1177
|
}[] | undefined;
|
|
1178
1178
|
}[] | undefined;
|
|
1179
1179
|
envInputs?: {
|
|
1180
|
-
kind: "
|
|
1180
|
+
kind: "secret" | "plain";
|
|
1181
1181
|
description: string | null;
|
|
1182
1182
|
key: string;
|
|
1183
1183
|
agentSlug: string | null;
|