@rudderhq/shared 0.7.2 → 0.7.3
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/computer-use.d.ts +325 -0
- package/dist/computer-use.d.ts.map +1 -0
- package/dist/computer-use.js +251 -0
- package/dist/computer-use.js.map +1 -0
- package/dist/computer-use.test.d.ts +2 -0
- package/dist/computer-use.test.d.ts.map +1 -0
- package/dist/computer-use.test.js +32 -0
- package/dist/computer-use.test.js.map +1 -0
- package/dist/constants.d.ts +2 -125
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +1 -301
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +7 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/project-mentions.d.ts +7 -0
- package/dist/project-mentions.d.ts.map +1 -1
- package/dist/project-mentions.js +34 -0
- package/dist/project-mentions.js.map +1 -1
- package/dist/project-mentions.test.js +6 -1
- package/dist/project-mentions.test.js.map +1 -1
- package/dist/types/app-builder.d.ts +1 -1
- package/dist/types/app-builder.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/instance.d.ts +2 -0
- package/dist/types/instance.d.ts.map +1 -1
- package/dist/types/issue.d.ts +1 -0
- package/dist/types/issue.d.ts.map +1 -1
- package/dist/types/organization-skill.d.ts +1 -0
- package/dist/types/organization-skill.d.ts.map +1 -1
- package/dist/types/plugin-v1.d.ts +158 -0
- package/dist/types/plugin-v1.d.ts.map +1 -0
- package/dist/types/plugin-v1.js +2 -0
- package/dist/types/plugin-v1.js.map +1 -0
- package/dist/validators/adapter-skills.d.ts +12 -12
- package/dist/validators/app-builder.d.ts +11 -11
- package/dist/validators/app-builder.d.ts.map +1 -1
- package/dist/validators/app-builder.js +13 -3
- package/dist/validators/app-builder.js.map +1 -1
- package/dist/validators/app-builder.test.js +25 -1
- package/dist/validators/app-builder.test.js.map +1 -1
- package/dist/validators/budget.d.ts +6 -6
- package/dist/validators/calendar.d.ts +3 -3
- package/dist/validators/chat.d.ts +18 -18
- package/dist/validators/finance.d.ts +4 -4
- package/dist/validators/index.d.ts +1 -1
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +1 -1
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/instance.d.ts +12 -0
- package/dist/validators/instance.d.ts.map +1 -1
- package/dist/validators/instance.js +2 -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/issue.d.ts +15 -2
- package/dist/validators/issue.d.ts.map +1 -1
- package/dist/validators/issue.js +3 -0
- package/dist/validators/issue.js.map +1 -1
- package/dist/validators/issue.test.d.ts +2 -0
- package/dist/validators/issue.test.d.ts.map +1 -0
- package/dist/validators/issue.test.js +15 -0
- package/dist/validators/issue.test.js.map +1 -0
- package/dist/validators/organization-portability.d.ts +82 -82
- package/dist/validators/organization-skill.d.ts +34 -34
- package/dist/validators/plugin-v1.d.ts +183 -0
- package/dist/validators/plugin-v1.d.ts.map +1 -0
- package/dist/validators/plugin-v1.js +47 -0
- package/dist/validators/plugin-v1.js.map +1 -0
- package/dist/validators/secret.d.ts +2 -2
- package/package.json +10 -1
- package/dist/types/plugin.d.ts +0 -419
- package/dist/types/plugin.d.ts.map +0 -1
- package/dist/types/plugin.js +0 -2
- package/dist/types/plugin.js.map +0 -1
- package/dist/validators/plugin.d.ts +0 -1173
- package/dist/validators/plugin.d.ts.map +0 -1
- package/dist/validators/plugin.js +0 -547
- package/dist/validators/plugin.js.map +0 -1
|
@@ -8,15 +8,15 @@ export declare const portabilityIncludeSchema: z.ZodObject<{
|
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
9
|
issues?: boolean | undefined;
|
|
10
10
|
organization?: boolean | undefined;
|
|
11
|
+
skills?: boolean | undefined;
|
|
11
12
|
agents?: boolean | undefined;
|
|
12
13
|
projects?: boolean | undefined;
|
|
13
|
-
skills?: boolean | undefined;
|
|
14
14
|
}, {
|
|
15
15
|
issues?: boolean | undefined;
|
|
16
16
|
organization?: boolean | undefined;
|
|
17
|
+
skills?: boolean | undefined;
|
|
17
18
|
agents?: boolean | undefined;
|
|
18
19
|
projects?: boolean | undefined;
|
|
19
|
-
skills?: boolean | undefined;
|
|
20
20
|
}>;
|
|
21
21
|
export declare const portabilityEnvInputSchema: z.ZodObject<{
|
|
22
22
|
key: z.ZodString;
|
|
@@ -28,16 +28,16 @@ export declare const portabilityEnvInputSchema: z.ZodObject<{
|
|
|
28
28
|
portability: z.ZodEnum<["portable", "system_dependent"]>;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
30
|
kind: "secret" | "plain";
|
|
31
|
-
description: string | null;
|
|
32
31
|
key: string;
|
|
32
|
+
description: string | null;
|
|
33
33
|
agentSlug: string | null;
|
|
34
34
|
requirement: "optional" | "required";
|
|
35
35
|
defaultValue: string | null;
|
|
36
36
|
portability: "portable" | "system_dependent";
|
|
37
37
|
}, {
|
|
38
38
|
kind: "secret" | "plain";
|
|
39
|
-
description: string | null;
|
|
40
39
|
key: string;
|
|
40
|
+
description: string | null;
|
|
41
41
|
agentSlug: string | null;
|
|
42
42
|
requirement: "optional" | "required";
|
|
43
43
|
defaultValue: string | null;
|
|
@@ -161,11 +161,11 @@ export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
|
|
|
161
161
|
}>, "many">>;
|
|
162
162
|
}, "strip", z.ZodTypeAny, {
|
|
163
163
|
path: string;
|
|
164
|
+
key: string;
|
|
164
165
|
name: string;
|
|
165
166
|
slug: string;
|
|
166
167
|
description: string | null;
|
|
167
168
|
metadata: Record<string, unknown> | null;
|
|
168
|
-
key: string;
|
|
169
169
|
sourceType: string;
|
|
170
170
|
sourceLocator: string | null;
|
|
171
171
|
sourceRef: string | null;
|
|
@@ -177,11 +177,11 @@ export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
|
|
|
177
177
|
}[];
|
|
178
178
|
}, {
|
|
179
179
|
path: string;
|
|
180
|
+
key: string;
|
|
180
181
|
name: string;
|
|
181
182
|
slug: string;
|
|
182
183
|
description: string | null;
|
|
183
184
|
metadata: Record<string, unknown> | null;
|
|
184
|
-
key: string;
|
|
185
185
|
sourceType: string;
|
|
186
186
|
sourceLocator: string | null;
|
|
187
187
|
sourceRef: string | null;
|
|
@@ -216,10 +216,10 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
216
216
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
217
217
|
isPrimary: z.ZodBoolean;
|
|
218
218
|
}, "strip", z.ZodTypeAny, {
|
|
219
|
+
key: string;
|
|
219
220
|
name: string;
|
|
220
221
|
metadata: Record<string, unknown> | null;
|
|
221
222
|
visibility: string | null;
|
|
222
|
-
key: string;
|
|
223
223
|
sourceType: string | null;
|
|
224
224
|
repoUrl: string | null;
|
|
225
225
|
repoRef: string | null;
|
|
@@ -228,10 +228,10 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
228
228
|
cleanupCommand: string | null;
|
|
229
229
|
isPrimary: boolean;
|
|
230
230
|
}, {
|
|
231
|
+
key: string;
|
|
231
232
|
name: string;
|
|
232
233
|
metadata: Record<string, unknown> | null;
|
|
233
234
|
visibility: string | null;
|
|
234
|
-
key: string;
|
|
235
235
|
sourceType: string | null;
|
|
236
236
|
repoUrl: string | null;
|
|
237
237
|
repoRef: string | null;
|
|
@@ -254,10 +254,10 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
254
254
|
targetDate: string | null;
|
|
255
255
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
256
256
|
workspaces: {
|
|
257
|
+
key: string;
|
|
257
258
|
name: string;
|
|
258
259
|
metadata: Record<string, unknown> | null;
|
|
259
260
|
visibility: string | null;
|
|
260
|
-
key: string;
|
|
261
261
|
sourceType: string | null;
|
|
262
262
|
repoUrl: string | null;
|
|
263
263
|
repoRef: string | null;
|
|
@@ -279,10 +279,10 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
279
279
|
targetDate: string | null;
|
|
280
280
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
281
281
|
workspaces?: {
|
|
282
|
+
key: string;
|
|
282
283
|
name: string;
|
|
283
284
|
metadata: Record<string, unknown> | null;
|
|
284
285
|
visibility: string | null;
|
|
285
|
-
key: string;
|
|
286
286
|
sourceType: string | null;
|
|
287
287
|
repoUrl: string | null;
|
|
288
288
|
repoRef: string | null;
|
|
@@ -526,15 +526,15 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
526
526
|
}, "strip", z.ZodTypeAny, {
|
|
527
527
|
issues: boolean;
|
|
528
528
|
organization: boolean;
|
|
529
|
+
skills: boolean;
|
|
529
530
|
agents: boolean;
|
|
530
531
|
projects: boolean;
|
|
531
|
-
skills: boolean;
|
|
532
532
|
}, {
|
|
533
533
|
issues: boolean;
|
|
534
534
|
organization: boolean;
|
|
535
|
+
skills: boolean;
|
|
535
536
|
agents: boolean;
|
|
536
537
|
projects: boolean;
|
|
537
|
-
skills: boolean;
|
|
538
538
|
}>;
|
|
539
539
|
organization: z.ZodNullable<z.ZodObject<{
|
|
540
540
|
path: z.ZodString;
|
|
@@ -641,11 +641,11 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
641
641
|
}>, "many">>;
|
|
642
642
|
}, "strip", z.ZodTypeAny, {
|
|
643
643
|
path: string;
|
|
644
|
+
key: string;
|
|
644
645
|
name: string;
|
|
645
646
|
slug: string;
|
|
646
647
|
description: string | null;
|
|
647
648
|
metadata: Record<string, unknown> | null;
|
|
648
|
-
key: string;
|
|
649
649
|
sourceType: string;
|
|
650
650
|
sourceLocator: string | null;
|
|
651
651
|
sourceRef: string | null;
|
|
@@ -657,11 +657,11 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
657
657
|
}[];
|
|
658
658
|
}, {
|
|
659
659
|
path: string;
|
|
660
|
+
key: string;
|
|
660
661
|
name: string;
|
|
661
662
|
slug: string;
|
|
662
663
|
description: string | null;
|
|
663
664
|
metadata: Record<string, unknown> | null;
|
|
664
|
-
key: string;
|
|
665
665
|
sourceType: string;
|
|
666
666
|
sourceLocator: string | null;
|
|
667
667
|
sourceRef: string | null;
|
|
@@ -696,10 +696,10 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
696
696
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
697
697
|
isPrimary: z.ZodBoolean;
|
|
698
698
|
}, "strip", z.ZodTypeAny, {
|
|
699
|
+
key: string;
|
|
699
700
|
name: string;
|
|
700
701
|
metadata: Record<string, unknown> | null;
|
|
701
702
|
visibility: string | null;
|
|
702
|
-
key: string;
|
|
703
703
|
sourceType: string | null;
|
|
704
704
|
repoUrl: string | null;
|
|
705
705
|
repoRef: string | null;
|
|
@@ -708,10 +708,10 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
708
708
|
cleanupCommand: string | null;
|
|
709
709
|
isPrimary: boolean;
|
|
710
710
|
}, {
|
|
711
|
+
key: string;
|
|
711
712
|
name: string;
|
|
712
713
|
metadata: Record<string, unknown> | null;
|
|
713
714
|
visibility: string | null;
|
|
714
|
-
key: string;
|
|
715
715
|
sourceType: string | null;
|
|
716
716
|
repoUrl: string | null;
|
|
717
717
|
repoRef: string | null;
|
|
@@ -734,10 +734,10 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
734
734
|
targetDate: string | null;
|
|
735
735
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
736
736
|
workspaces: {
|
|
737
|
+
key: string;
|
|
737
738
|
name: string;
|
|
738
739
|
metadata: Record<string, unknown> | null;
|
|
739
740
|
visibility: string | null;
|
|
740
|
-
key: string;
|
|
741
741
|
sourceType: string | null;
|
|
742
742
|
repoUrl: string | null;
|
|
743
743
|
repoRef: string | null;
|
|
@@ -759,10 +759,10 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
759
759
|
targetDate: string | null;
|
|
760
760
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
761
761
|
workspaces?: {
|
|
762
|
+
key: string;
|
|
762
763
|
name: string;
|
|
763
764
|
metadata: Record<string, unknown> | null;
|
|
764
765
|
visibility: string | null;
|
|
765
|
-
key: string;
|
|
766
766
|
sourceType: string | null;
|
|
767
767
|
repoUrl: string | null;
|
|
768
768
|
repoRef: string | null;
|
|
@@ -916,16 +916,16 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
916
916
|
portability: z.ZodEnum<["portable", "system_dependent"]>;
|
|
917
917
|
}, "strip", z.ZodTypeAny, {
|
|
918
918
|
kind: "secret" | "plain";
|
|
919
|
-
description: string | null;
|
|
920
919
|
key: string;
|
|
920
|
+
description: string | null;
|
|
921
921
|
agentSlug: string | null;
|
|
922
922
|
requirement: "optional" | "required";
|
|
923
923
|
defaultValue: string | null;
|
|
924
924
|
portability: "portable" | "system_dependent";
|
|
925
925
|
}, {
|
|
926
926
|
kind: "secret" | "plain";
|
|
927
|
-
description: string | null;
|
|
928
927
|
key: string;
|
|
928
|
+
description: string | null;
|
|
929
929
|
agentSlug: string | null;
|
|
930
930
|
requirement: "optional" | "required";
|
|
931
931
|
defaultValue: string | null;
|
|
@@ -935,9 +935,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
935
935
|
includes: {
|
|
936
936
|
issues: boolean;
|
|
937
937
|
organization: boolean;
|
|
938
|
+
skills: boolean;
|
|
938
939
|
agents: boolean;
|
|
939
940
|
projects: boolean;
|
|
940
|
-
skills: boolean;
|
|
941
941
|
};
|
|
942
942
|
source: {
|
|
943
943
|
orgId: string;
|
|
@@ -983,10 +983,23 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
983
983
|
requireBoardApprovalForNewAgents: boolean;
|
|
984
984
|
logoPath: string | null;
|
|
985
985
|
} | null;
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
986
|
+
skills: {
|
|
987
|
+
path: string;
|
|
988
|
+
key: string;
|
|
989
|
+
name: string;
|
|
990
|
+
slug: string;
|
|
991
|
+
description: string | null;
|
|
992
|
+
metadata: Record<string, unknown> | null;
|
|
993
|
+
sourceType: string;
|
|
994
|
+
sourceLocator: string | null;
|
|
995
|
+
sourceRef: string | null;
|
|
996
|
+
trustLevel: string | null;
|
|
997
|
+
compatibility: string | null;
|
|
998
|
+
fileInventory: {
|
|
999
|
+
path: string;
|
|
1000
|
+
kind: string;
|
|
1001
|
+
}[];
|
|
1002
|
+
}[];
|
|
990
1003
|
agents: {
|
|
991
1004
|
icon: string | null;
|
|
992
1005
|
title: string | null;
|
|
@@ -1017,10 +1030,10 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1017
1030
|
targetDate: string | null;
|
|
1018
1031
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
1019
1032
|
workspaces: {
|
|
1033
|
+
key: string;
|
|
1020
1034
|
name: string;
|
|
1021
1035
|
metadata: Record<string, unknown> | null;
|
|
1022
1036
|
visibility: string | null;
|
|
1023
|
-
key: string;
|
|
1024
1037
|
sourceType: string | null;
|
|
1025
1038
|
repoUrl: string | null;
|
|
1026
1039
|
repoRef: string | null;
|
|
@@ -1030,29 +1043,16 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1030
1043
|
isPrimary: boolean;
|
|
1031
1044
|
}[];
|
|
1032
1045
|
}[];
|
|
1033
|
-
skills: {
|
|
1034
|
-
path: string;
|
|
1035
|
-
name: string;
|
|
1036
|
-
slug: string;
|
|
1037
|
-
description: string | null;
|
|
1038
|
-
metadata: Record<string, unknown> | null;
|
|
1039
|
-
key: string;
|
|
1040
|
-
sourceType: string;
|
|
1041
|
-
sourceLocator: string | null;
|
|
1042
|
-
sourceRef: string | null;
|
|
1043
|
-
trustLevel: string | null;
|
|
1044
|
-
compatibility: string | null;
|
|
1045
|
-
fileInventory: {
|
|
1046
|
-
path: string;
|
|
1047
|
-
kind: string;
|
|
1048
|
-
}[];
|
|
1049
|
-
}[];
|
|
1050
1046
|
schemaVersion: number;
|
|
1051
1047
|
generatedAt: string;
|
|
1048
|
+
sidebar: {
|
|
1049
|
+
agents: string[];
|
|
1050
|
+
projects: string[];
|
|
1051
|
+
} | null;
|
|
1052
1052
|
envInputs: {
|
|
1053
1053
|
kind: "secret" | "plain";
|
|
1054
|
-
description: string | null;
|
|
1055
1054
|
key: string;
|
|
1055
|
+
description: string | null;
|
|
1056
1056
|
agentSlug: string | null;
|
|
1057
1057
|
requirement: "optional" | "required";
|
|
1058
1058
|
defaultValue: string | null;
|
|
@@ -1062,9 +1062,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1062
1062
|
includes: {
|
|
1063
1063
|
issues: boolean;
|
|
1064
1064
|
organization: boolean;
|
|
1065
|
+
skills: boolean;
|
|
1065
1066
|
agents: boolean;
|
|
1066
1067
|
projects: boolean;
|
|
1067
|
-
skills: boolean;
|
|
1068
1068
|
};
|
|
1069
1069
|
source: {
|
|
1070
1070
|
orgId: string;
|
|
@@ -1078,10 +1078,6 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1078
1078
|
requireBoardApprovalForNewAgents: boolean;
|
|
1079
1079
|
logoPath: string | null;
|
|
1080
1080
|
} | null;
|
|
1081
|
-
sidebar: {
|
|
1082
|
-
agents?: string[] | undefined;
|
|
1083
|
-
projects?: string[] | undefined;
|
|
1084
|
-
} | null;
|
|
1085
1081
|
agents: {
|
|
1086
1082
|
icon: string | null;
|
|
1087
1083
|
title: string | null;
|
|
@@ -1101,6 +1097,10 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1101
1097
|
}[];
|
|
1102
1098
|
schemaVersion: number;
|
|
1103
1099
|
generatedAt: string;
|
|
1100
|
+
sidebar: {
|
|
1101
|
+
agents?: string[] | undefined;
|
|
1102
|
+
projects?: string[] | undefined;
|
|
1103
|
+
} | null;
|
|
1104
1104
|
issues?: {
|
|
1105
1105
|
status: string | null;
|
|
1106
1106
|
title: string;
|
|
@@ -1133,6 +1133,23 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1133
1133
|
labelIds?: string[] | undefined;
|
|
1134
1134
|
recurring?: boolean | undefined;
|
|
1135
1135
|
}[] | undefined;
|
|
1136
|
+
skills?: {
|
|
1137
|
+
path: string;
|
|
1138
|
+
key: string;
|
|
1139
|
+
name: string;
|
|
1140
|
+
slug: string;
|
|
1141
|
+
description: string | null;
|
|
1142
|
+
metadata: Record<string, unknown> | null;
|
|
1143
|
+
sourceType: string;
|
|
1144
|
+
sourceLocator: string | null;
|
|
1145
|
+
sourceRef: string | null;
|
|
1146
|
+
trustLevel: string | null;
|
|
1147
|
+
compatibility: string | null;
|
|
1148
|
+
fileInventory?: {
|
|
1149
|
+
path: string;
|
|
1150
|
+
kind: string;
|
|
1151
|
+
}[] | undefined;
|
|
1152
|
+
}[] | undefined;
|
|
1136
1153
|
projects?: {
|
|
1137
1154
|
status: string | null;
|
|
1138
1155
|
color: string | null;
|
|
@@ -1146,10 +1163,10 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1146
1163
|
targetDate: string | null;
|
|
1147
1164
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
1148
1165
|
workspaces?: {
|
|
1166
|
+
key: string;
|
|
1149
1167
|
name: string;
|
|
1150
1168
|
metadata: Record<string, unknown> | null;
|
|
1151
1169
|
visibility: string | null;
|
|
1152
|
-
key: string;
|
|
1153
1170
|
sourceType: string | null;
|
|
1154
1171
|
repoUrl: string | null;
|
|
1155
1172
|
repoRef: string | null;
|
|
@@ -1159,27 +1176,10 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1159
1176
|
isPrimary: boolean;
|
|
1160
1177
|
}[] | undefined;
|
|
1161
1178
|
}[] | undefined;
|
|
1162
|
-
skills?: {
|
|
1163
|
-
path: string;
|
|
1164
|
-
name: string;
|
|
1165
|
-
slug: string;
|
|
1166
|
-
description: string | null;
|
|
1167
|
-
metadata: Record<string, unknown> | null;
|
|
1168
|
-
key: string;
|
|
1169
|
-
sourceType: string;
|
|
1170
|
-
sourceLocator: string | null;
|
|
1171
|
-
sourceRef: string | null;
|
|
1172
|
-
trustLevel: string | null;
|
|
1173
|
-
compatibility: string | null;
|
|
1174
|
-
fileInventory?: {
|
|
1175
|
-
path: string;
|
|
1176
|
-
kind: string;
|
|
1177
|
-
}[] | undefined;
|
|
1178
|
-
}[] | undefined;
|
|
1179
1179
|
envInputs?: {
|
|
1180
1180
|
kind: "secret" | "plain";
|
|
1181
|
-
description: string | null;
|
|
1182
1181
|
key: string;
|
|
1182
|
+
description: string | null;
|
|
1183
1183
|
agentSlug: string | null;
|
|
1184
1184
|
requirement: "optional" | "required";
|
|
1185
1185
|
defaultValue: string | null;
|
|
@@ -1262,15 +1262,15 @@ export declare const organizationPortabilityExportSchema: z.ZodObject<{
|
|
|
1262
1262
|
}, "strip", z.ZodTypeAny, {
|
|
1263
1263
|
issues?: boolean | undefined;
|
|
1264
1264
|
organization?: boolean | undefined;
|
|
1265
|
+
skills?: boolean | undefined;
|
|
1265
1266
|
agents?: boolean | undefined;
|
|
1266
1267
|
projects?: boolean | undefined;
|
|
1267
|
-
skills?: boolean | undefined;
|
|
1268
1268
|
}, {
|
|
1269
1269
|
issues?: boolean | undefined;
|
|
1270
1270
|
organization?: boolean | undefined;
|
|
1271
|
+
skills?: boolean | undefined;
|
|
1271
1272
|
agents?: boolean | undefined;
|
|
1272
1273
|
projects?: boolean | undefined;
|
|
1273
|
-
skills?: boolean | undefined;
|
|
1274
1274
|
}>>;
|
|
1275
1275
|
agents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1276
1276
|
skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1291,15 +1291,15 @@ export declare const organizationPortabilityExportSchema: z.ZodObject<{
|
|
|
1291
1291
|
}>>;
|
|
1292
1292
|
}, "strip", z.ZodTypeAny, {
|
|
1293
1293
|
issues?: string[] | undefined;
|
|
1294
|
+
skills?: string[] | undefined;
|
|
1294
1295
|
agents?: string[] | undefined;
|
|
1295
1296
|
projects?: string[] | undefined;
|
|
1296
|
-
skills?: string[] | undefined;
|
|
1297
1297
|
include?: {
|
|
1298
1298
|
issues?: boolean | undefined;
|
|
1299
1299
|
organization?: boolean | undefined;
|
|
1300
|
+
skills?: boolean | undefined;
|
|
1300
1301
|
agents?: boolean | undefined;
|
|
1301
1302
|
projects?: boolean | undefined;
|
|
1302
|
-
skills?: boolean | undefined;
|
|
1303
1303
|
} | undefined;
|
|
1304
1304
|
projectIssues?: string[] | undefined;
|
|
1305
1305
|
selectedFiles?: string[] | undefined;
|
|
@@ -1310,15 +1310,15 @@ export declare const organizationPortabilityExportSchema: z.ZodObject<{
|
|
|
1310
1310
|
} | undefined;
|
|
1311
1311
|
}, {
|
|
1312
1312
|
issues?: string[] | undefined;
|
|
1313
|
+
skills?: string[] | undefined;
|
|
1313
1314
|
agents?: string[] | undefined;
|
|
1314
1315
|
projects?: string[] | undefined;
|
|
1315
|
-
skills?: string[] | undefined;
|
|
1316
1316
|
include?: {
|
|
1317
1317
|
issues?: boolean | undefined;
|
|
1318
1318
|
organization?: boolean | undefined;
|
|
1319
|
+
skills?: boolean | undefined;
|
|
1319
1320
|
agents?: boolean | undefined;
|
|
1320
1321
|
projects?: boolean | undefined;
|
|
1321
|
-
skills?: boolean | undefined;
|
|
1322
1322
|
} | undefined;
|
|
1323
1323
|
projectIssues?: string[] | undefined;
|
|
1324
1324
|
selectedFiles?: string[] | undefined;
|
|
@@ -1381,15 +1381,15 @@ export declare const organizationPortabilityPreviewSchema: z.ZodObject<{
|
|
|
1381
1381
|
}, "strip", z.ZodTypeAny, {
|
|
1382
1382
|
issues?: boolean | undefined;
|
|
1383
1383
|
organization?: boolean | undefined;
|
|
1384
|
+
skills?: boolean | undefined;
|
|
1384
1385
|
agents?: boolean | undefined;
|
|
1385
1386
|
projects?: boolean | undefined;
|
|
1386
|
-
skills?: boolean | undefined;
|
|
1387
1387
|
}, {
|
|
1388
1388
|
issues?: boolean | undefined;
|
|
1389
1389
|
organization?: boolean | undefined;
|
|
1390
|
+
skills?: boolean | undefined;
|
|
1390
1391
|
agents?: boolean | undefined;
|
|
1391
1392
|
projects?: boolean | undefined;
|
|
1392
|
-
skills?: boolean | undefined;
|
|
1393
1393
|
}>>;
|
|
1394
1394
|
target: z.ZodDiscriminatedUnion<"mode", [z.ZodObject<{
|
|
1395
1395
|
mode: z.ZodLiteral<"new_organization">;
|
|
@@ -1442,9 +1442,9 @@ export declare const organizationPortabilityPreviewSchema: z.ZodObject<{
|
|
|
1442
1442
|
include?: {
|
|
1443
1443
|
issues?: boolean | undefined;
|
|
1444
1444
|
organization?: boolean | undefined;
|
|
1445
|
+
skills?: boolean | undefined;
|
|
1445
1446
|
agents?: boolean | undefined;
|
|
1446
1447
|
projects?: boolean | undefined;
|
|
1447
|
-
skills?: boolean | undefined;
|
|
1448
1448
|
} | undefined;
|
|
1449
1449
|
selectedFiles?: string[] | undefined;
|
|
1450
1450
|
collisionStrategy?: "rename" | "skip" | "replace" | undefined;
|
|
@@ -1474,9 +1474,9 @@ export declare const organizationPortabilityPreviewSchema: z.ZodObject<{
|
|
|
1474
1474
|
include?: {
|
|
1475
1475
|
issues?: boolean | undefined;
|
|
1476
1476
|
organization?: boolean | undefined;
|
|
1477
|
+
skills?: boolean | undefined;
|
|
1477
1478
|
agents?: boolean | undefined;
|
|
1478
1479
|
projects?: boolean | undefined;
|
|
1479
|
-
skills?: boolean | undefined;
|
|
1480
1480
|
} | undefined;
|
|
1481
1481
|
selectedFiles?: string[] | undefined;
|
|
1482
1482
|
collisionStrategy?: "rename" | "skip" | "replace" | undefined;
|
|
@@ -1545,15 +1545,15 @@ export declare const organizationPortabilityImportSchema: z.ZodObject<{
|
|
|
1545
1545
|
}, "strip", z.ZodTypeAny, {
|
|
1546
1546
|
issues?: boolean | undefined;
|
|
1547
1547
|
organization?: boolean | undefined;
|
|
1548
|
+
skills?: boolean | undefined;
|
|
1548
1549
|
agents?: boolean | undefined;
|
|
1549
1550
|
projects?: boolean | undefined;
|
|
1550
|
-
skills?: boolean | undefined;
|
|
1551
1551
|
}, {
|
|
1552
1552
|
issues?: boolean | undefined;
|
|
1553
1553
|
organization?: boolean | undefined;
|
|
1554
|
+
skills?: boolean | undefined;
|
|
1554
1555
|
agents?: boolean | undefined;
|
|
1555
1556
|
projects?: boolean | undefined;
|
|
1556
|
-
skills?: boolean | undefined;
|
|
1557
1557
|
}>>;
|
|
1558
1558
|
target: z.ZodDiscriminatedUnion<"mode", [z.ZodObject<{
|
|
1559
1559
|
mode: z.ZodLiteral<"new_organization">;
|
|
@@ -1617,9 +1617,9 @@ export declare const organizationPortabilityImportSchema: z.ZodObject<{
|
|
|
1617
1617
|
include?: {
|
|
1618
1618
|
issues?: boolean | undefined;
|
|
1619
1619
|
organization?: boolean | undefined;
|
|
1620
|
+
skills?: boolean | undefined;
|
|
1620
1621
|
agents?: boolean | undefined;
|
|
1621
1622
|
projects?: boolean | undefined;
|
|
1622
|
-
skills?: boolean | undefined;
|
|
1623
1623
|
} | undefined;
|
|
1624
1624
|
selectedFiles?: string[] | undefined;
|
|
1625
1625
|
collisionStrategy?: "rename" | "skip" | "replace" | undefined;
|
|
@@ -1653,9 +1653,9 @@ export declare const organizationPortabilityImportSchema: z.ZodObject<{
|
|
|
1653
1653
|
include?: {
|
|
1654
1654
|
issues?: boolean | undefined;
|
|
1655
1655
|
organization?: boolean | undefined;
|
|
1656
|
+
skills?: boolean | undefined;
|
|
1656
1657
|
agents?: boolean | undefined;
|
|
1657
1658
|
projects?: boolean | undefined;
|
|
1658
|
-
skills?: boolean | undefined;
|
|
1659
1659
|
} | undefined;
|
|
1660
1660
|
selectedFiles?: string[] | undefined;
|
|
1661
1661
|
collisionStrategy?: "rename" | "skip" | "replace" | undefined;
|