@rudderhq/shared 0.4.5 → 0.4.6-canary.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/chat-work-manifest.d.ts +12 -0
- package/dist/chat-work-manifest.d.ts.map +1 -0
- package/dist/chat-work-manifest.js +110 -0
- package/dist/chat-work-manifest.js.map +1 -0
- package/dist/chat-work-manifest.test.d.ts +2 -0
- package/dist/chat-work-manifest.test.d.ts.map +1 -0
- package/dist/chat-work-manifest.test.js +79 -0
- package/dist/chat-work-manifest.test.js.map +1 -0
- package/dist/config-schema.d.ts +8 -8
- package/dist/constants.d.ts +1 -1
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +8 -0
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/organization-skill-reference.d.ts +2 -1
- package/dist/organization-skill-reference.d.ts.map +1 -1
- package/dist/organization-skill-reference.js +4 -0
- package/dist/organization-skill-reference.js.map +1 -1
- package/dist/organization-skill-reference.test.js +13 -1
- package/dist/organization-skill-reference.test.js.map +1 -1
- package/dist/types/chat.d.ts +33 -0
- package/dist/types/chat.d.ts.map +1 -1
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/instance.d.ts +5 -0
- package/dist/types/instance.d.ts.map +1 -1
- package/dist/validators/agent-integration.d.ts +2 -2
- package/dist/validators/agent.d.ts +8 -8
- package/dist/validators/automation.d.ts +41 -41
- package/dist/validators/calendar.d.ts +19 -19
- package/dist/validators/chat.d.ts +57 -57
- package/dist/validators/cost.d.ts +4 -4
- package/dist/validators/custom-integration.d.ts +2 -2
- package/dist/validators/finance.d.ts +8 -8
- package/dist/validators/goal.d.ts +6 -6
- 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 +28 -2
- package/dist/validators/instance.d.ts.map +1 -1
- package/dist/validators/instance.js +13 -0
- package/dist/validators/instance.js.map +1 -1
- package/dist/validators/instance.test.js +32 -1
- package/dist/validators/instance.test.js.map +1 -1
- package/dist/validators/issue.d.ts +22 -22
- package/dist/validators/organization-portability.d.ts +120 -120
- package/dist/validators/organization-skill.d.ts +64 -64
- package/dist/validators/organization.d.ts +3 -3
- package/dist/validators/project.d.ts +39 -39
- package/dist/validators/resource.d.ts +20 -20
- package/dist/validators/work-product.d.ts +11 -11
- package/dist/website-icons.d.ts.map +1 -1
- package/dist/website-icons.js +13 -4
- package/dist/website-icons.js.map +1 -1
- package/dist/website-icons.test.js +6 -0
- package/dist/website-icons.test.js.map +1 -1
- package/package.json +1 -1
|
@@ -64,15 +64,15 @@ export declare const portabilityOrganizationManifestEntrySchema: z.ZodObject<{
|
|
|
64
64
|
logoPath: z.ZodNullable<z.ZodString>;
|
|
65
65
|
requireBoardApprovalForNewAgents: z.ZodBoolean;
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
|
-
description: string | null;
|
|
68
67
|
path: string;
|
|
68
|
+
description: string | null;
|
|
69
69
|
name: string;
|
|
70
70
|
brandColor: string | null;
|
|
71
71
|
logoPath: string | null;
|
|
72
72
|
requireBoardApprovalForNewAgents: boolean;
|
|
73
73
|
}, {
|
|
74
|
-
description: string | null;
|
|
75
74
|
path: string;
|
|
75
|
+
description: string | null;
|
|
76
76
|
name: string;
|
|
77
77
|
brandColor: string | null;
|
|
78
78
|
logoPath: string | null;
|
|
@@ -106,10 +106,10 @@ export declare const portabilityAgentManifestEntrySchema: z.ZodObject<{
|
|
|
106
106
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107
107
|
}, "strip", z.ZodTypeAny, {
|
|
108
108
|
icon: string | null;
|
|
109
|
-
|
|
109
|
+
title: string | null;
|
|
110
110
|
path: string;
|
|
111
|
+
slug: string;
|
|
111
112
|
name: string;
|
|
112
|
-
title: string | null;
|
|
113
113
|
agentRuntimeType: string;
|
|
114
114
|
skills: string[];
|
|
115
115
|
metadata: Record<string, unknown> | null;
|
|
@@ -122,10 +122,10 @@ export declare const portabilityAgentManifestEntrySchema: z.ZodObject<{
|
|
|
122
122
|
budgetMonthlyCents: number;
|
|
123
123
|
}, {
|
|
124
124
|
icon: string | null;
|
|
125
|
-
|
|
125
|
+
title: string | null;
|
|
126
126
|
path: string;
|
|
127
|
+
slug: string;
|
|
127
128
|
name: string;
|
|
128
|
-
title: string | null;
|
|
129
129
|
agentRuntimeType: string;
|
|
130
130
|
metadata: Record<string, unknown> | null;
|
|
131
131
|
agentRuntimeConfig: Record<string, unknown>;
|
|
@@ -153,16 +153,16 @@ export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
|
|
|
153
153
|
path: z.ZodString;
|
|
154
154
|
kind: z.ZodString;
|
|
155
155
|
}, "strip", z.ZodTypeAny, {
|
|
156
|
-
kind: string;
|
|
157
156
|
path: string;
|
|
158
|
-
}, {
|
|
159
157
|
kind: string;
|
|
158
|
+
}, {
|
|
160
159
|
path: string;
|
|
160
|
+
kind: string;
|
|
161
161
|
}>, "many">>;
|
|
162
162
|
}, "strip", z.ZodTypeAny, {
|
|
163
|
+
path: string;
|
|
163
164
|
slug: string;
|
|
164
165
|
description: string | null;
|
|
165
|
-
path: string;
|
|
166
166
|
name: string;
|
|
167
167
|
key: string;
|
|
168
168
|
metadata: Record<string, unknown> | null;
|
|
@@ -172,13 +172,13 @@ export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
|
|
|
172
172
|
trustLevel: string | null;
|
|
173
173
|
compatibility: string | null;
|
|
174
174
|
fileInventory: {
|
|
175
|
-
kind: string;
|
|
176
175
|
path: string;
|
|
176
|
+
kind: string;
|
|
177
177
|
}[];
|
|
178
178
|
}, {
|
|
179
|
+
path: string;
|
|
179
180
|
slug: string;
|
|
180
181
|
description: string | null;
|
|
181
|
-
path: string;
|
|
182
182
|
name: string;
|
|
183
183
|
key: string;
|
|
184
184
|
metadata: Record<string, unknown> | null;
|
|
@@ -188,8 +188,8 @@ export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
|
|
|
188
188
|
trustLevel: string | null;
|
|
189
189
|
compatibility: string | null;
|
|
190
190
|
fileInventory?: {
|
|
191
|
-
kind: string;
|
|
192
191
|
path: string;
|
|
192
|
+
kind: string;
|
|
193
193
|
}[] | undefined;
|
|
194
194
|
}>;
|
|
195
195
|
export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
@@ -242,16 +242,16 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
242
242
|
}>, "many">>;
|
|
243
243
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
244
244
|
}, "strip", z.ZodTypeAny, {
|
|
245
|
-
|
|
246
|
-
description: string | null;
|
|
245
|
+
color: string | null;
|
|
247
246
|
status: string | null;
|
|
248
247
|
path: string;
|
|
248
|
+
slug: string;
|
|
249
|
+
description: string | null;
|
|
249
250
|
name: string;
|
|
250
251
|
metadata: Record<string, unknown> | null;
|
|
251
252
|
ownerAgentSlug: string | null;
|
|
252
253
|
leadAgentSlug: string | null;
|
|
253
254
|
targetDate: string | null;
|
|
254
|
-
color: string | null;
|
|
255
255
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
256
256
|
workspaces: {
|
|
257
257
|
name: string;
|
|
@@ -267,16 +267,16 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
267
267
|
isPrimary: boolean;
|
|
268
268
|
}[];
|
|
269
269
|
}, {
|
|
270
|
-
|
|
271
|
-
description: string | null;
|
|
270
|
+
color: string | null;
|
|
272
271
|
status: string | null;
|
|
273
272
|
path: string;
|
|
273
|
+
slug: string;
|
|
274
|
+
description: string | null;
|
|
274
275
|
name: string;
|
|
275
276
|
metadata: Record<string, unknown> | null;
|
|
276
277
|
ownerAgentSlug: string | null;
|
|
277
278
|
leadAgentSlug: string | null;
|
|
278
279
|
targetDate: string | null;
|
|
279
|
-
color: string | null;
|
|
280
280
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
281
281
|
workspaces?: {
|
|
282
282
|
name: string;
|
|
@@ -442,6 +442,9 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
442
442
|
assigneeAgentRuntimeOverrides: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
443
443
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
444
444
|
}, "strip", z.ZodTypeAny, {
|
|
445
|
+
title: string;
|
|
446
|
+
status: string | null;
|
|
447
|
+
path: string;
|
|
445
448
|
automation: {
|
|
446
449
|
concurrencyPolicy: string | null;
|
|
447
450
|
catchUpPolicy: string | null;
|
|
@@ -457,10 +460,7 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
457
460
|
} | null;
|
|
458
461
|
slug: string;
|
|
459
462
|
description: string | null;
|
|
460
|
-
status: string | null;
|
|
461
|
-
path: string;
|
|
462
463
|
identifier: string | null;
|
|
463
|
-
title: string;
|
|
464
464
|
priority: string | null;
|
|
465
465
|
billingCode: string | null;
|
|
466
466
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
@@ -473,6 +473,9 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
473
473
|
recurring: boolean;
|
|
474
474
|
legacyRecurrence: Record<string, unknown> | null;
|
|
475
475
|
}, {
|
|
476
|
+
title: string;
|
|
477
|
+
status: string | null;
|
|
478
|
+
path: string;
|
|
476
479
|
automation: {
|
|
477
480
|
concurrencyPolicy: string | null;
|
|
478
481
|
catchUpPolicy: string | null;
|
|
@@ -488,10 +491,7 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
488
491
|
} | null;
|
|
489
492
|
slug: string;
|
|
490
493
|
description: string | null;
|
|
491
|
-
status: string | null;
|
|
492
|
-
path: string;
|
|
493
494
|
identifier: string | null;
|
|
494
|
-
title: string;
|
|
495
495
|
priority: string | null;
|
|
496
496
|
billingCode: string | null;
|
|
497
497
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
@@ -544,15 +544,15 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
544
544
|
logoPath: z.ZodNullable<z.ZodString>;
|
|
545
545
|
requireBoardApprovalForNewAgents: z.ZodBoolean;
|
|
546
546
|
}, "strip", z.ZodTypeAny, {
|
|
547
|
-
description: string | null;
|
|
548
547
|
path: string;
|
|
548
|
+
description: string | null;
|
|
549
549
|
name: string;
|
|
550
550
|
brandColor: string | null;
|
|
551
551
|
logoPath: string | null;
|
|
552
552
|
requireBoardApprovalForNewAgents: boolean;
|
|
553
553
|
}, {
|
|
554
|
-
description: string | null;
|
|
555
554
|
path: string;
|
|
555
|
+
description: string | null;
|
|
556
556
|
name: string;
|
|
557
557
|
brandColor: string | null;
|
|
558
558
|
logoPath: string | null;
|
|
@@ -586,10 +586,10 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
586
586
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
587
587
|
}, "strip", z.ZodTypeAny, {
|
|
588
588
|
icon: string | null;
|
|
589
|
-
|
|
589
|
+
title: string | null;
|
|
590
590
|
path: string;
|
|
591
|
+
slug: string;
|
|
591
592
|
name: string;
|
|
592
|
-
title: string | null;
|
|
593
593
|
agentRuntimeType: string;
|
|
594
594
|
skills: string[];
|
|
595
595
|
metadata: Record<string, unknown> | null;
|
|
@@ -602,10 +602,10 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
602
602
|
budgetMonthlyCents: number;
|
|
603
603
|
}, {
|
|
604
604
|
icon: string | null;
|
|
605
|
-
|
|
605
|
+
title: string | null;
|
|
606
606
|
path: string;
|
|
607
|
+
slug: string;
|
|
607
608
|
name: string;
|
|
608
|
-
title: string | null;
|
|
609
609
|
agentRuntimeType: string;
|
|
610
610
|
metadata: Record<string, unknown> | null;
|
|
611
611
|
agentRuntimeConfig: Record<string, unknown>;
|
|
@@ -633,16 +633,16 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
633
633
|
path: z.ZodString;
|
|
634
634
|
kind: z.ZodString;
|
|
635
635
|
}, "strip", z.ZodTypeAny, {
|
|
636
|
-
kind: string;
|
|
637
636
|
path: string;
|
|
638
|
-
}, {
|
|
639
637
|
kind: string;
|
|
638
|
+
}, {
|
|
640
639
|
path: string;
|
|
640
|
+
kind: string;
|
|
641
641
|
}>, "many">>;
|
|
642
642
|
}, "strip", z.ZodTypeAny, {
|
|
643
|
+
path: string;
|
|
643
644
|
slug: string;
|
|
644
645
|
description: string | null;
|
|
645
|
-
path: string;
|
|
646
646
|
name: string;
|
|
647
647
|
key: string;
|
|
648
648
|
metadata: Record<string, unknown> | null;
|
|
@@ -652,13 +652,13 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
652
652
|
trustLevel: string | null;
|
|
653
653
|
compatibility: string | null;
|
|
654
654
|
fileInventory: {
|
|
655
|
-
kind: string;
|
|
656
655
|
path: string;
|
|
656
|
+
kind: string;
|
|
657
657
|
}[];
|
|
658
658
|
}, {
|
|
659
|
+
path: string;
|
|
659
660
|
slug: string;
|
|
660
661
|
description: string | null;
|
|
661
|
-
path: string;
|
|
662
662
|
name: string;
|
|
663
663
|
key: string;
|
|
664
664
|
metadata: Record<string, unknown> | null;
|
|
@@ -668,8 +668,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
668
668
|
trustLevel: string | null;
|
|
669
669
|
compatibility: string | null;
|
|
670
670
|
fileInventory?: {
|
|
671
|
-
kind: string;
|
|
672
671
|
path: string;
|
|
672
|
+
kind: string;
|
|
673
673
|
}[] | undefined;
|
|
674
674
|
}>, "many">>;
|
|
675
675
|
projects: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
@@ -722,16 +722,16 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
722
722
|
}>, "many">>;
|
|
723
723
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
724
724
|
}, "strip", z.ZodTypeAny, {
|
|
725
|
-
|
|
726
|
-
description: string | null;
|
|
725
|
+
color: string | null;
|
|
727
726
|
status: string | null;
|
|
728
727
|
path: string;
|
|
728
|
+
slug: string;
|
|
729
|
+
description: string | null;
|
|
729
730
|
name: string;
|
|
730
731
|
metadata: Record<string, unknown> | null;
|
|
731
732
|
ownerAgentSlug: string | null;
|
|
732
733
|
leadAgentSlug: string | null;
|
|
733
734
|
targetDate: string | null;
|
|
734
|
-
color: string | null;
|
|
735
735
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
736
736
|
workspaces: {
|
|
737
737
|
name: string;
|
|
@@ -747,16 +747,16 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
747
747
|
isPrimary: boolean;
|
|
748
748
|
}[];
|
|
749
749
|
}, {
|
|
750
|
-
|
|
751
|
-
description: string | null;
|
|
750
|
+
color: string | null;
|
|
752
751
|
status: string | null;
|
|
753
752
|
path: string;
|
|
753
|
+
slug: string;
|
|
754
|
+
description: string | null;
|
|
754
755
|
name: string;
|
|
755
756
|
metadata: Record<string, unknown> | null;
|
|
756
757
|
ownerAgentSlug: string | null;
|
|
757
758
|
leadAgentSlug: string | null;
|
|
758
759
|
targetDate: string | null;
|
|
759
|
-
color: string | null;
|
|
760
760
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
761
761
|
workspaces?: {
|
|
762
762
|
name: string;
|
|
@@ -844,6 +844,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
844
844
|
assigneeAgentRuntimeOverrides: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
845
845
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
846
846
|
}, "strip", z.ZodTypeAny, {
|
|
847
|
+
title: string;
|
|
848
|
+
status: string | null;
|
|
849
|
+
path: string;
|
|
847
850
|
automation: {
|
|
848
851
|
concurrencyPolicy: string | null;
|
|
849
852
|
catchUpPolicy: string | null;
|
|
@@ -859,10 +862,7 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
859
862
|
} | null;
|
|
860
863
|
slug: string;
|
|
861
864
|
description: string | null;
|
|
862
|
-
status: string | null;
|
|
863
|
-
path: string;
|
|
864
865
|
identifier: string | null;
|
|
865
|
-
title: string;
|
|
866
866
|
priority: string | null;
|
|
867
867
|
billingCode: string | null;
|
|
868
868
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
@@ -875,6 +875,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
875
875
|
recurring: boolean;
|
|
876
876
|
legacyRecurrence: Record<string, unknown> | null;
|
|
877
877
|
}, {
|
|
878
|
+
title: string;
|
|
879
|
+
status: string | null;
|
|
880
|
+
path: string;
|
|
878
881
|
automation: {
|
|
879
882
|
concurrencyPolicy: string | null;
|
|
880
883
|
catchUpPolicy: string | null;
|
|
@@ -890,10 +893,7 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
890
893
|
} | null;
|
|
891
894
|
slug: string;
|
|
892
895
|
description: string | null;
|
|
893
|
-
status: string | null;
|
|
894
|
-
path: string;
|
|
895
896
|
identifier: string | null;
|
|
896
|
-
title: string;
|
|
897
897
|
priority: string | null;
|
|
898
898
|
billingCode: string | null;
|
|
899
899
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
@@ -932,15 +932,29 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
932
932
|
portability: "portable" | "system_dependent";
|
|
933
933
|
}>, "many">>;
|
|
934
934
|
}, "strip", z.ZodTypeAny, {
|
|
935
|
+
source: {
|
|
936
|
+
orgId: string;
|
|
937
|
+
organizationName: string;
|
|
938
|
+
} | null;
|
|
939
|
+
includes: {
|
|
940
|
+
organization: boolean;
|
|
941
|
+
issues: boolean;
|
|
942
|
+
agents: boolean;
|
|
943
|
+
projects: boolean;
|
|
944
|
+
skills: boolean;
|
|
945
|
+
};
|
|
935
946
|
organization: {
|
|
936
|
-
description: string | null;
|
|
937
947
|
path: string;
|
|
948
|
+
description: string | null;
|
|
938
949
|
name: string;
|
|
939
950
|
brandColor: string | null;
|
|
940
951
|
logoPath: string | null;
|
|
941
952
|
requireBoardApprovalForNewAgents: boolean;
|
|
942
953
|
} | null;
|
|
943
954
|
issues: {
|
|
955
|
+
title: string;
|
|
956
|
+
status: string | null;
|
|
957
|
+
path: string;
|
|
944
958
|
automation: {
|
|
945
959
|
concurrencyPolicy: string | null;
|
|
946
960
|
catchUpPolicy: string | null;
|
|
@@ -956,10 +970,7 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
956
970
|
} | null;
|
|
957
971
|
slug: string;
|
|
958
972
|
description: string | null;
|
|
959
|
-
status: string | null;
|
|
960
|
-
path: string;
|
|
961
973
|
identifier: string | null;
|
|
962
|
-
title: string;
|
|
963
974
|
priority: string | null;
|
|
964
975
|
billingCode: string | null;
|
|
965
976
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
@@ -978,10 +989,10 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
978
989
|
} | null;
|
|
979
990
|
agents: {
|
|
980
991
|
icon: string | null;
|
|
981
|
-
|
|
992
|
+
title: string | null;
|
|
982
993
|
path: string;
|
|
994
|
+
slug: string;
|
|
983
995
|
name: string;
|
|
984
|
-
title: string | null;
|
|
985
996
|
agentRuntimeType: string;
|
|
986
997
|
skills: string[];
|
|
987
998
|
metadata: Record<string, unknown> | null;
|
|
@@ -994,16 +1005,16 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
994
1005
|
budgetMonthlyCents: number;
|
|
995
1006
|
}[];
|
|
996
1007
|
projects: {
|
|
997
|
-
|
|
998
|
-
description: string | null;
|
|
1008
|
+
color: string | null;
|
|
999
1009
|
status: string | null;
|
|
1000
1010
|
path: string;
|
|
1011
|
+
slug: string;
|
|
1012
|
+
description: string | null;
|
|
1001
1013
|
name: string;
|
|
1002
1014
|
metadata: Record<string, unknown> | null;
|
|
1003
1015
|
ownerAgentSlug: string | null;
|
|
1004
1016
|
leadAgentSlug: string | null;
|
|
1005
1017
|
targetDate: string | null;
|
|
1006
|
-
color: string | null;
|
|
1007
1018
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
1008
1019
|
workspaces: {
|
|
1009
1020
|
name: string;
|
|
@@ -1019,17 +1030,10 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1019
1030
|
isPrimary: boolean;
|
|
1020
1031
|
}[];
|
|
1021
1032
|
}[];
|
|
1022
|
-
includes: {
|
|
1023
|
-
organization: boolean;
|
|
1024
|
-
issues: boolean;
|
|
1025
|
-
agents: boolean;
|
|
1026
|
-
projects: boolean;
|
|
1027
|
-
skills: boolean;
|
|
1028
|
-
};
|
|
1029
1033
|
skills: {
|
|
1034
|
+
path: string;
|
|
1030
1035
|
slug: string;
|
|
1031
1036
|
description: string | null;
|
|
1032
|
-
path: string;
|
|
1033
1037
|
name: string;
|
|
1034
1038
|
key: string;
|
|
1035
1039
|
metadata: Record<string, unknown> | null;
|
|
@@ -1039,16 +1043,12 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1039
1043
|
trustLevel: string | null;
|
|
1040
1044
|
compatibility: string | null;
|
|
1041
1045
|
fileInventory: {
|
|
1042
|
-
kind: string;
|
|
1043
1046
|
path: string;
|
|
1047
|
+
kind: string;
|
|
1044
1048
|
}[];
|
|
1045
1049
|
}[];
|
|
1046
1050
|
schemaVersion: number;
|
|
1047
1051
|
generatedAt: string;
|
|
1048
|
-
source: {
|
|
1049
|
-
orgId: string;
|
|
1050
|
-
organizationName: string;
|
|
1051
|
-
} | null;
|
|
1052
1052
|
envInputs: {
|
|
1053
1053
|
kind: "secret" | "plain";
|
|
1054
1054
|
description: string | null;
|
|
@@ -1059,9 +1059,20 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1059
1059
|
portability: "portable" | "system_dependent";
|
|
1060
1060
|
}[];
|
|
1061
1061
|
}, {
|
|
1062
|
+
source: {
|
|
1063
|
+
orgId: string;
|
|
1064
|
+
organizationName: string;
|
|
1065
|
+
} | null;
|
|
1066
|
+
includes: {
|
|
1067
|
+
organization: boolean;
|
|
1068
|
+
issues: boolean;
|
|
1069
|
+
agents: boolean;
|
|
1070
|
+
projects: boolean;
|
|
1071
|
+
skills: boolean;
|
|
1072
|
+
};
|
|
1062
1073
|
organization: {
|
|
1063
|
-
description: string | null;
|
|
1064
1074
|
path: string;
|
|
1075
|
+
description: string | null;
|
|
1065
1076
|
name: string;
|
|
1066
1077
|
brandColor: string | null;
|
|
1067
1078
|
logoPath: string | null;
|
|
@@ -1073,10 +1084,10 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1073
1084
|
} | null;
|
|
1074
1085
|
agents: {
|
|
1075
1086
|
icon: string | null;
|
|
1076
|
-
|
|
1087
|
+
title: string | null;
|
|
1077
1088
|
path: string;
|
|
1089
|
+
slug: string;
|
|
1078
1090
|
name: string;
|
|
1079
|
-
title: string | null;
|
|
1080
1091
|
agentRuntimeType: string;
|
|
1081
1092
|
metadata: Record<string, unknown> | null;
|
|
1082
1093
|
agentRuntimeConfig: Record<string, unknown>;
|
|
@@ -1088,20 +1099,12 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1088
1099
|
budgetMonthlyCents: number;
|
|
1089
1100
|
skills?: string[] | undefined;
|
|
1090
1101
|
}[];
|
|
1091
|
-
includes: {
|
|
1092
|
-
organization: boolean;
|
|
1093
|
-
issues: boolean;
|
|
1094
|
-
agents: boolean;
|
|
1095
|
-
projects: boolean;
|
|
1096
|
-
skills: boolean;
|
|
1097
|
-
};
|
|
1098
1102
|
schemaVersion: number;
|
|
1099
1103
|
generatedAt: string;
|
|
1100
|
-
source: {
|
|
1101
|
-
orgId: string;
|
|
1102
|
-
organizationName: string;
|
|
1103
|
-
} | null;
|
|
1104
1104
|
issues?: {
|
|
1105
|
+
title: string;
|
|
1106
|
+
status: string | null;
|
|
1107
|
+
path: string;
|
|
1105
1108
|
automation: {
|
|
1106
1109
|
concurrencyPolicy: string | null;
|
|
1107
1110
|
catchUpPolicy: string | null;
|
|
@@ -1117,10 +1120,7 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1117
1120
|
} | null;
|
|
1118
1121
|
slug: string;
|
|
1119
1122
|
description: string | null;
|
|
1120
|
-
status: string | null;
|
|
1121
|
-
path: string;
|
|
1122
1123
|
identifier: string | null;
|
|
1123
|
-
title: string;
|
|
1124
1124
|
priority: string | null;
|
|
1125
1125
|
billingCode: string | null;
|
|
1126
1126
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
@@ -1134,16 +1134,16 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1134
1134
|
recurring?: boolean | undefined;
|
|
1135
1135
|
}[] | undefined;
|
|
1136
1136
|
projects?: {
|
|
1137
|
-
|
|
1138
|
-
description: string | null;
|
|
1137
|
+
color: string | null;
|
|
1139
1138
|
status: string | null;
|
|
1140
1139
|
path: string;
|
|
1140
|
+
slug: string;
|
|
1141
|
+
description: string | null;
|
|
1141
1142
|
name: string;
|
|
1142
1143
|
metadata: Record<string, unknown> | null;
|
|
1143
1144
|
ownerAgentSlug: string | null;
|
|
1144
1145
|
leadAgentSlug: string | null;
|
|
1145
1146
|
targetDate: string | null;
|
|
1146
|
-
color: string | null;
|
|
1147
1147
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
1148
1148
|
workspaces?: {
|
|
1149
1149
|
name: string;
|
|
@@ -1160,9 +1160,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1160
1160
|
}[] | undefined;
|
|
1161
1161
|
}[] | undefined;
|
|
1162
1162
|
skills?: {
|
|
1163
|
+
path: string;
|
|
1163
1164
|
slug: string;
|
|
1164
1165
|
description: string | null;
|
|
1165
|
-
path: string;
|
|
1166
1166
|
name: string;
|
|
1167
1167
|
key: string;
|
|
1168
1168
|
metadata: Record<string, unknown> | null;
|
|
@@ -1172,8 +1172,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1172
1172
|
trustLevel: string | null;
|
|
1173
1173
|
compatibility: string | null;
|
|
1174
1174
|
fileInventory?: {
|
|
1175
|
-
kind: string;
|
|
1176
1175
|
path: string;
|
|
1176
|
+
kind: string;
|
|
1177
1177
|
}[] | undefined;
|
|
1178
1178
|
}[] | undefined;
|
|
1179
1179
|
envInputs?: {
|
|
@@ -1412,13 +1412,6 @@ export declare const organizationPortabilityPreviewSchema: z.ZodObject<{
|
|
|
1412
1412
|
nameOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1413
1413
|
selectedFiles: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1414
1414
|
}, "strip", z.ZodTypeAny, {
|
|
1415
|
-
target: {
|
|
1416
|
-
mode: "new_organization";
|
|
1417
|
-
newOrganizationName?: string | null | undefined;
|
|
1418
|
-
} | {
|
|
1419
|
-
orgId: string;
|
|
1420
|
-
mode: "existing_organization";
|
|
1421
|
-
};
|
|
1422
1415
|
source: {
|
|
1423
1416
|
type: "inline";
|
|
1424
1417
|
files: Record<string, string | {
|
|
@@ -1431,6 +1424,13 @@ export declare const organizationPortabilityPreviewSchema: z.ZodObject<{
|
|
|
1431
1424
|
url: string;
|
|
1432
1425
|
type: "github";
|
|
1433
1426
|
};
|
|
1427
|
+
target: {
|
|
1428
|
+
mode: "new_organization";
|
|
1429
|
+
newOrganizationName?: string | null | undefined;
|
|
1430
|
+
} | {
|
|
1431
|
+
orgId: string;
|
|
1432
|
+
mode: "existing_organization";
|
|
1433
|
+
};
|
|
1434
1434
|
agents?: string[] | "all" | undefined;
|
|
1435
1435
|
include?: {
|
|
1436
1436
|
organization?: boolean | undefined;
|
|
@@ -1443,13 +1443,6 @@ export declare const organizationPortabilityPreviewSchema: z.ZodObject<{
|
|
|
1443
1443
|
collisionStrategy?: "rename" | "skip" | "replace" | undefined;
|
|
1444
1444
|
nameOverrides?: Record<string, string> | undefined;
|
|
1445
1445
|
}, {
|
|
1446
|
-
target: {
|
|
1447
|
-
mode: "new_organization";
|
|
1448
|
-
newOrganizationName?: string | null | undefined;
|
|
1449
|
-
} | {
|
|
1450
|
-
orgId: string;
|
|
1451
|
-
mode: "existing_organization";
|
|
1452
|
-
};
|
|
1453
1446
|
source: {
|
|
1454
1447
|
type: "inline";
|
|
1455
1448
|
files: Record<string, string | {
|
|
@@ -1462,6 +1455,13 @@ export declare const organizationPortabilityPreviewSchema: z.ZodObject<{
|
|
|
1462
1455
|
url: string;
|
|
1463
1456
|
type: "github";
|
|
1464
1457
|
};
|
|
1458
|
+
target: {
|
|
1459
|
+
mode: "new_organization";
|
|
1460
|
+
newOrganizationName?: string | null | undefined;
|
|
1461
|
+
} | {
|
|
1462
|
+
orgId: string;
|
|
1463
|
+
mode: "existing_organization";
|
|
1464
|
+
};
|
|
1465
1465
|
agents?: string[] | "all" | undefined;
|
|
1466
1466
|
include?: {
|
|
1467
1467
|
organization?: boolean | undefined;
|
|
@@ -1582,13 +1582,6 @@ export declare const organizationPortabilityImportSchema: z.ZodObject<{
|
|
|
1582
1582
|
agentRuntimeConfig?: Record<string, unknown> | undefined;
|
|
1583
1583
|
}>>>;
|
|
1584
1584
|
}, "strip", z.ZodTypeAny, {
|
|
1585
|
-
target: {
|
|
1586
|
-
mode: "new_organization";
|
|
1587
|
-
newOrganizationName?: string | null | undefined;
|
|
1588
|
-
} | {
|
|
1589
|
-
orgId: string;
|
|
1590
|
-
mode: "existing_organization";
|
|
1591
|
-
};
|
|
1592
1585
|
source: {
|
|
1593
1586
|
type: "inline";
|
|
1594
1587
|
files: Record<string, string | {
|
|
@@ -1601,6 +1594,13 @@ export declare const organizationPortabilityImportSchema: z.ZodObject<{
|
|
|
1601
1594
|
url: string;
|
|
1602
1595
|
type: "github";
|
|
1603
1596
|
};
|
|
1597
|
+
target: {
|
|
1598
|
+
mode: "new_organization";
|
|
1599
|
+
newOrganizationName?: string | null | undefined;
|
|
1600
|
+
} | {
|
|
1601
|
+
orgId: string;
|
|
1602
|
+
mode: "existing_organization";
|
|
1603
|
+
};
|
|
1604
1604
|
agents?: string[] | "all" | undefined;
|
|
1605
1605
|
include?: {
|
|
1606
1606
|
organization?: boolean | undefined;
|
|
@@ -1617,13 +1617,6 @@ export declare const organizationPortabilityImportSchema: z.ZodObject<{
|
|
|
1617
1617
|
agentRuntimeConfig?: Record<string, unknown> | undefined;
|
|
1618
1618
|
}> | undefined;
|
|
1619
1619
|
}, {
|
|
1620
|
-
target: {
|
|
1621
|
-
mode: "new_organization";
|
|
1622
|
-
newOrganizationName?: string | null | undefined;
|
|
1623
|
-
} | {
|
|
1624
|
-
orgId: string;
|
|
1625
|
-
mode: "existing_organization";
|
|
1626
|
-
};
|
|
1627
1620
|
source: {
|
|
1628
1621
|
type: "inline";
|
|
1629
1622
|
files: Record<string, string | {
|
|
@@ -1636,6 +1629,13 @@ export declare const organizationPortabilityImportSchema: z.ZodObject<{
|
|
|
1636
1629
|
url: string;
|
|
1637
1630
|
type: "github";
|
|
1638
1631
|
};
|
|
1632
|
+
target: {
|
|
1633
|
+
mode: "new_organization";
|
|
1634
|
+
newOrganizationName?: string | null | undefined;
|
|
1635
|
+
} | {
|
|
1636
|
+
orgId: string;
|
|
1637
|
+
mode: "existing_organization";
|
|
1638
|
+
};
|
|
1639
1639
|
agents?: string[] | "all" | undefined;
|
|
1640
1640
|
include?: {
|
|
1641
1641
|
organization?: boolean | undefined;
|