@rudderhq/shared 0.4.2-canary.0 → 0.4.2-canary.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/constants.d.ts +12 -0
  2. package/dist/constants.d.ts.map +1 -1
  3. package/dist/constants.js +6 -0
  4. package/dist/constants.js.map +1 -1
  5. package/dist/index.d.ts +3 -1
  6. package/dist/index.d.ts.map +1 -1
  7. package/dist/index.js +2 -1
  8. package/dist/index.js.map +1 -1
  9. package/dist/organization-skill-reference.d.ts +1 -1
  10. package/dist/organization-skill-reference.d.ts.map +1 -1
  11. package/dist/organization-skill-reference.js +0 -2
  12. package/dist/organization-skill-reference.js.map +1 -1
  13. package/dist/types/custom-integration.d.ts +68 -0
  14. package/dist/types/custom-integration.d.ts.map +1 -0
  15. package/dist/types/custom-integration.js +2 -0
  16. package/dist/types/custom-integration.js.map +1 -0
  17. package/dist/types/index.d.ts +1 -0
  18. package/dist/types/index.d.ts.map +1 -1
  19. package/dist/validators/automation.d.ts +12 -12
  20. package/dist/validators/budget.d.ts +2 -2
  21. package/dist/validators/calendar.d.ts +32 -32
  22. package/dist/validators/chat.d.ts +15 -15
  23. package/dist/validators/custom-integration.d.ts +135 -0
  24. package/dist/validators/custom-integration.d.ts.map +1 -0
  25. package/dist/validators/custom-integration.js +45 -0
  26. package/dist/validators/custom-integration.js.map +1 -0
  27. package/dist/validators/finance.d.ts +4 -4
  28. package/dist/validators/goal.d.ts +9 -9
  29. package/dist/validators/index.d.ts +1 -0
  30. package/dist/validators/index.d.ts.map +1 -1
  31. package/dist/validators/index.js +1 -0
  32. package/dist/validators/index.js.map +1 -1
  33. package/dist/validators/issue.d.ts +3 -3
  34. package/dist/validators/organization-portability.d.ts +91 -91
  35. package/dist/validators/organization-skill.d.ts +72 -72
  36. package/dist/validators/organization.d.ts +6 -6
  37. package/dist/validators/plugin.d.ts +86 -86
  38. package/dist/validators/project.d.ts +3 -3
  39. package/dist/validators/resource.d.ts +4 -4
  40. package/dist/validators/secret.d.ts +18 -18
  41. package/dist/validators/work-product.d.ts +4 -4
  42. package/package.json +1 -1
@@ -6,14 +6,14 @@ export declare const portabilityIncludeSchema: z.ZodObject<{
6
6
  issues: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
7
7
  skills: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
8
8
  }, "strip", z.ZodTypeAny, {
9
- issues?: boolean | undefined;
10
9
  organization?: boolean | undefined;
10
+ issues?: boolean | undefined;
11
11
  agents?: boolean | undefined;
12
12
  projects?: boolean | undefined;
13
13
  skills?: boolean | undefined;
14
14
  }, {
15
- issues?: boolean | undefined;
16
15
  organization?: boolean | undefined;
16
+ issues?: boolean | undefined;
17
17
  agents?: boolean | undefined;
18
18
  projects?: boolean | undefined;
19
19
  skills?: boolean | undefined;
@@ -64,16 +64,16 @@ export declare const portabilityOrganizationManifestEntrySchema: z.ZodObject<{
64
64
  logoPath: z.ZodNullable<z.ZodString>;
65
65
  requireBoardApprovalForNewAgents: z.ZodBoolean;
66
66
  }, "strip", z.ZodTypeAny, {
67
- name: string;
68
67
  description: string | null;
69
68
  path: string;
69
+ name: string;
70
70
  brandColor: string | null;
71
71
  logoPath: string | null;
72
72
  requireBoardApprovalForNewAgents: boolean;
73
73
  }, {
74
- name: string;
75
74
  description: string | null;
76
75
  path: string;
76
+ name: string;
77
77
  brandColor: string | null;
78
78
  logoPath: string | null;
79
79
  requireBoardApprovalForNewAgents: boolean;
@@ -105,15 +105,15 @@ export declare const portabilityAgentManifestEntrySchema: z.ZodObject<{
105
105
  budgetMonthlyCents: z.ZodNumber;
106
106
  metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
107
107
  }, "strip", z.ZodTypeAny, {
108
+ slug: string;
109
+ path: string;
108
110
  name: string;
109
111
  title: string | null;
110
- path: string;
111
112
  agentRuntimeType: string;
112
113
  skills: string[];
113
114
  metadata: Record<string, unknown> | null;
114
115
  icon: string | null;
115
116
  agentRuntimeConfig: Record<string, unknown>;
116
- slug: string;
117
117
  role: string;
118
118
  capabilities: string | null;
119
119
  reportsToSlug: string | null;
@@ -121,14 +121,14 @@ export declare const portabilityAgentManifestEntrySchema: z.ZodObject<{
121
121
  permissions: Record<string, unknown>;
122
122
  budgetMonthlyCents: number;
123
123
  }, {
124
+ slug: string;
125
+ path: string;
124
126
  name: string;
125
127
  title: string | null;
126
- path: string;
127
128
  agentRuntimeType: string;
128
129
  metadata: Record<string, unknown> | null;
129
130
  icon: string | null;
130
131
  agentRuntimeConfig: Record<string, unknown>;
131
- slug: string;
132
132
  role: string;
133
133
  capabilities: string | null;
134
134
  reportsToSlug: string | null;
@@ -160,12 +160,12 @@ export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
160
160
  path: string;
161
161
  }>, "many">>;
162
162
  }, "strip", z.ZodTypeAny, {
163
- name: string;
163
+ slug: string;
164
164
  description: string | null;
165
165
  path: string;
166
+ name: string;
166
167
  key: string;
167
168
  metadata: Record<string, unknown> | null;
168
- slug: string;
169
169
  sourceType: string;
170
170
  sourceLocator: string | null;
171
171
  sourceRef: string | null;
@@ -176,12 +176,12 @@ export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
176
176
  path: string;
177
177
  }[];
178
178
  }, {
179
- name: string;
179
+ slug: string;
180
180
  description: string | null;
181
181
  path: string;
182
+ name: string;
182
183
  key: string;
183
184
  metadata: Record<string, unknown> | null;
184
- slug: string;
185
185
  sourceType: string;
186
186
  sourceLocator: string | null;
187
187
  sourceRef: string | null;
@@ -242,12 +242,12 @@ 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
- status: string | null;
246
- name: string;
245
+ slug: string;
247
246
  description: string | null;
247
+ status: string | null;
248
248
  path: string;
249
+ name: string;
249
250
  metadata: Record<string, unknown> | null;
250
- slug: string;
251
251
  ownerAgentSlug: string | null;
252
252
  leadAgentSlug: string | null;
253
253
  targetDate: string | null;
@@ -267,12 +267,12 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
267
267
  isPrimary: boolean;
268
268
  }[];
269
269
  }, {
270
- status: string | null;
271
- name: string;
270
+ slug: string;
272
271
  description: string | null;
272
+ status: string | null;
273
273
  path: string;
274
+ name: string;
274
275
  metadata: Record<string, unknown> | null;
275
- slug: string;
276
276
  ownerAgentSlug: string | null;
277
277
  leadAgentSlug: string | null;
278
278
  targetDate: string | null;
@@ -455,18 +455,18 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
455
455
  replayWindowSec: number | null;
456
456
  }[];
457
457
  } | null;
458
+ slug: string;
459
+ description: string | null;
458
460
  status: string | null;
461
+ path: string;
459
462
  identifier: string | null;
460
463
  title: string;
461
- description: string | null;
462
464
  priority: string | null;
463
465
  billingCode: string | null;
464
466
  assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
465
467
  executionWorkspaceSettings: Record<string, unknown> | null;
466
468
  labelIds: string[];
467
- path: string;
468
469
  metadata: Record<string, unknown> | null;
469
- slug: string;
470
470
  projectSlug: string | null;
471
471
  projectWorkspaceKey: string | null;
472
472
  assigneeAgentSlug: string | null;
@@ -486,17 +486,17 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
486
486
  replayWindowSec: number | null;
487
487
  }[] | undefined;
488
488
  } | null;
489
+ slug: string;
490
+ description: string | null;
489
491
  status: string | null;
492
+ path: string;
490
493
  identifier: string | null;
491
494
  title: string;
492
- description: string | null;
493
495
  priority: string | null;
494
496
  billingCode: string | null;
495
497
  assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
496
498
  executionWorkspaceSettings: Record<string, unknown> | null;
497
- path: string;
498
499
  metadata: Record<string, unknown> | null;
499
- slug: string;
500
500
  projectSlug: string | null;
501
501
  projectWorkspaceKey: string | null;
502
502
  assigneeAgentSlug: string | null;
@@ -524,14 +524,14 @@ export declare const portabilityManifestSchema: z.ZodObject<{
524
524
  issues: z.ZodBoolean;
525
525
  skills: z.ZodBoolean;
526
526
  }, "strip", z.ZodTypeAny, {
527
- issues: boolean;
528
527
  organization: boolean;
528
+ issues: boolean;
529
529
  agents: boolean;
530
530
  projects: boolean;
531
531
  skills: boolean;
532
532
  }, {
533
- issues: boolean;
534
533
  organization: boolean;
534
+ issues: boolean;
535
535
  agents: boolean;
536
536
  projects: boolean;
537
537
  skills: boolean;
@@ -544,16 +544,16 @@ export declare const portabilityManifestSchema: z.ZodObject<{
544
544
  logoPath: z.ZodNullable<z.ZodString>;
545
545
  requireBoardApprovalForNewAgents: z.ZodBoolean;
546
546
  }, "strip", z.ZodTypeAny, {
547
- name: string;
548
547
  description: string | null;
549
548
  path: string;
549
+ name: string;
550
550
  brandColor: string | null;
551
551
  logoPath: string | null;
552
552
  requireBoardApprovalForNewAgents: boolean;
553
553
  }, {
554
- name: string;
555
554
  description: string | null;
556
555
  path: string;
556
+ name: string;
557
557
  brandColor: string | null;
558
558
  logoPath: string | null;
559
559
  requireBoardApprovalForNewAgents: boolean;
@@ -585,15 +585,15 @@ export declare const portabilityManifestSchema: z.ZodObject<{
585
585
  budgetMonthlyCents: z.ZodNumber;
586
586
  metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
587
587
  }, "strip", z.ZodTypeAny, {
588
+ slug: string;
589
+ path: string;
588
590
  name: string;
589
591
  title: string | null;
590
- path: string;
591
592
  agentRuntimeType: string;
592
593
  skills: string[];
593
594
  metadata: Record<string, unknown> | null;
594
595
  icon: string | null;
595
596
  agentRuntimeConfig: Record<string, unknown>;
596
- slug: string;
597
597
  role: string;
598
598
  capabilities: string | null;
599
599
  reportsToSlug: string | null;
@@ -601,14 +601,14 @@ export declare const portabilityManifestSchema: z.ZodObject<{
601
601
  permissions: Record<string, unknown>;
602
602
  budgetMonthlyCents: number;
603
603
  }, {
604
+ slug: string;
605
+ path: string;
604
606
  name: string;
605
607
  title: string | null;
606
- path: string;
607
608
  agentRuntimeType: string;
608
609
  metadata: Record<string, unknown> | null;
609
610
  icon: string | null;
610
611
  agentRuntimeConfig: Record<string, unknown>;
611
- slug: string;
612
612
  role: string;
613
613
  capabilities: string | null;
614
614
  reportsToSlug: string | null;
@@ -640,12 +640,12 @@ export declare const portabilityManifestSchema: z.ZodObject<{
640
640
  path: string;
641
641
  }>, "many">>;
642
642
  }, "strip", z.ZodTypeAny, {
643
- name: string;
643
+ slug: string;
644
644
  description: string | null;
645
645
  path: string;
646
+ name: string;
646
647
  key: string;
647
648
  metadata: Record<string, unknown> | null;
648
- slug: string;
649
649
  sourceType: string;
650
650
  sourceLocator: string | null;
651
651
  sourceRef: string | null;
@@ -656,12 +656,12 @@ export declare const portabilityManifestSchema: z.ZodObject<{
656
656
  path: string;
657
657
  }[];
658
658
  }, {
659
- name: string;
659
+ slug: string;
660
660
  description: string | null;
661
661
  path: string;
662
+ name: string;
662
663
  key: string;
663
664
  metadata: Record<string, unknown> | null;
664
- slug: string;
665
665
  sourceType: string;
666
666
  sourceLocator: string | null;
667
667
  sourceRef: string | null;
@@ -722,12 +722,12 @@ 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
- status: string | null;
726
- name: string;
725
+ slug: string;
727
726
  description: string | null;
727
+ status: string | null;
728
728
  path: string;
729
+ name: string;
729
730
  metadata: Record<string, unknown> | null;
730
- slug: string;
731
731
  ownerAgentSlug: string | null;
732
732
  leadAgentSlug: string | null;
733
733
  targetDate: string | null;
@@ -747,12 +747,12 @@ export declare const portabilityManifestSchema: z.ZodObject<{
747
747
  isPrimary: boolean;
748
748
  }[];
749
749
  }, {
750
- status: string | null;
751
- name: string;
750
+ slug: string;
752
751
  description: string | null;
752
+ status: string | null;
753
753
  path: string;
754
+ name: string;
754
755
  metadata: Record<string, unknown> | null;
755
- slug: string;
756
756
  ownerAgentSlug: string | null;
757
757
  leadAgentSlug: string | null;
758
758
  targetDate: string | null;
@@ -857,18 +857,18 @@ export declare const portabilityManifestSchema: z.ZodObject<{
857
857
  replayWindowSec: number | null;
858
858
  }[];
859
859
  } | null;
860
+ slug: string;
861
+ description: string | null;
860
862
  status: string | null;
863
+ path: string;
861
864
  identifier: string | null;
862
865
  title: string;
863
- description: string | null;
864
866
  priority: string | null;
865
867
  billingCode: string | null;
866
868
  assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
867
869
  executionWorkspaceSettings: Record<string, unknown> | null;
868
870
  labelIds: string[];
869
- path: string;
870
871
  metadata: Record<string, unknown> | null;
871
- slug: string;
872
872
  projectSlug: string | null;
873
873
  projectWorkspaceKey: string | null;
874
874
  assigneeAgentSlug: string | null;
@@ -888,17 +888,17 @@ export declare const portabilityManifestSchema: z.ZodObject<{
888
888
  replayWindowSec: number | null;
889
889
  }[] | undefined;
890
890
  } | null;
891
+ slug: string;
892
+ description: string | null;
891
893
  status: string | null;
894
+ path: string;
892
895
  identifier: string | null;
893
896
  title: string;
894
- description: string | null;
895
897
  priority: string | null;
896
898
  billingCode: string | null;
897
899
  assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
898
900
  executionWorkspaceSettings: Record<string, unknown> | null;
899
- path: string;
900
901
  metadata: Record<string, unknown> | null;
901
- slug: string;
902
902
  projectSlug: string | null;
903
903
  projectWorkspaceKey: string | null;
904
904
  assigneeAgentSlug: string | null;
@@ -932,6 +932,14 @@ export declare const portabilityManifestSchema: z.ZodObject<{
932
932
  portability: "portable" | "system_dependent";
933
933
  }>, "many">>;
934
934
  }, "strip", z.ZodTypeAny, {
935
+ organization: {
936
+ description: string | null;
937
+ path: string;
938
+ name: string;
939
+ brandColor: string | null;
940
+ logoPath: string | null;
941
+ requireBoardApprovalForNewAgents: boolean;
942
+ } | null;
935
943
  issues: {
936
944
  automation: {
937
945
  concurrencyPolicy: string | null;
@@ -946,46 +954,38 @@ export declare const portabilityManifestSchema: z.ZodObject<{
946
954
  replayWindowSec: number | null;
947
955
  }[];
948
956
  } | null;
957
+ slug: string;
958
+ description: string | null;
949
959
  status: string | null;
960
+ path: string;
950
961
  identifier: string | null;
951
962
  title: string;
952
- description: string | null;
953
963
  priority: string | null;
954
964
  billingCode: string | null;
955
965
  assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
956
966
  executionWorkspaceSettings: Record<string, unknown> | null;
957
967
  labelIds: string[];
958
- path: string;
959
968
  metadata: Record<string, unknown> | null;
960
- slug: string;
961
969
  projectSlug: string | null;
962
970
  projectWorkspaceKey: string | null;
963
971
  assigneeAgentSlug: string | null;
964
972
  recurring: boolean;
965
973
  legacyRecurrence: Record<string, unknown> | null;
966
974
  }[];
967
- organization: {
968
- name: string;
969
- description: string | null;
970
- path: string;
971
- brandColor: string | null;
972
- logoPath: string | null;
973
- requireBoardApprovalForNewAgents: boolean;
974
- } | null;
975
975
  sidebar: {
976
976
  agents: string[];
977
977
  projects: string[];
978
978
  } | null;
979
979
  agents: {
980
+ slug: string;
981
+ path: string;
980
982
  name: string;
981
983
  title: string | null;
982
- path: string;
983
984
  agentRuntimeType: string;
984
985
  skills: string[];
985
986
  metadata: Record<string, unknown> | null;
986
987
  icon: string | null;
987
988
  agentRuntimeConfig: Record<string, unknown>;
988
- slug: string;
989
989
  role: string;
990
990
  capabilities: string | null;
991
991
  reportsToSlug: string | null;
@@ -994,12 +994,12 @@ export declare const portabilityManifestSchema: z.ZodObject<{
994
994
  budgetMonthlyCents: number;
995
995
  }[];
996
996
  projects: {
997
- status: string | null;
998
- name: string;
997
+ slug: string;
999
998
  description: string | null;
999
+ status: string | null;
1000
1000
  path: string;
1001
+ name: string;
1001
1002
  metadata: Record<string, unknown> | null;
1002
- slug: string;
1003
1003
  ownerAgentSlug: string | null;
1004
1004
  leadAgentSlug: string | null;
1005
1005
  targetDate: string | null;
@@ -1020,19 +1020,19 @@ export declare const portabilityManifestSchema: z.ZodObject<{
1020
1020
  }[];
1021
1021
  }[];
1022
1022
  includes: {
1023
- issues: boolean;
1024
1023
  organization: boolean;
1024
+ issues: boolean;
1025
1025
  agents: boolean;
1026
1026
  projects: boolean;
1027
1027
  skills: boolean;
1028
1028
  };
1029
1029
  skills: {
1030
- name: string;
1030
+ slug: string;
1031
1031
  description: string | null;
1032
1032
  path: string;
1033
+ name: string;
1033
1034
  key: string;
1034
1035
  metadata: Record<string, unknown> | null;
1035
- slug: string;
1036
1036
  sourceType: string;
1037
1037
  sourceLocator: string | null;
1038
1038
  sourceRef: string | null;
@@ -1060,9 +1060,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
1060
1060
  }[];
1061
1061
  }, {
1062
1062
  organization: {
1063
- name: string;
1064
1063
  description: string | null;
1065
1064
  path: string;
1065
+ name: string;
1066
1066
  brandColor: string | null;
1067
1067
  logoPath: string | null;
1068
1068
  requireBoardApprovalForNewAgents: boolean;
@@ -1072,14 +1072,14 @@ export declare const portabilityManifestSchema: z.ZodObject<{
1072
1072
  projects?: string[] | undefined;
1073
1073
  } | null;
1074
1074
  agents: {
1075
+ slug: string;
1076
+ path: string;
1075
1077
  name: string;
1076
1078
  title: string | null;
1077
- path: string;
1078
1079
  agentRuntimeType: string;
1079
1080
  metadata: Record<string, unknown> | null;
1080
1081
  icon: string | null;
1081
1082
  agentRuntimeConfig: Record<string, unknown>;
1082
- slug: string;
1083
1083
  role: string;
1084
1084
  capabilities: string | null;
1085
1085
  reportsToSlug: string | null;
@@ -1089,8 +1089,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
1089
1089
  skills?: string[] | undefined;
1090
1090
  }[];
1091
1091
  includes: {
1092
- issues: boolean;
1093
1092
  organization: boolean;
1093
+ issues: boolean;
1094
1094
  agents: boolean;
1095
1095
  projects: boolean;
1096
1096
  skills: boolean;
@@ -1115,17 +1115,17 @@ export declare const portabilityManifestSchema: z.ZodObject<{
1115
1115
  replayWindowSec: number | null;
1116
1116
  }[] | undefined;
1117
1117
  } | null;
1118
+ slug: string;
1119
+ description: string | null;
1118
1120
  status: string | null;
1121
+ path: string;
1119
1122
  identifier: string | null;
1120
1123
  title: string;
1121
- description: string | null;
1122
1124
  priority: string | null;
1123
1125
  billingCode: string | null;
1124
1126
  assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
1125
1127
  executionWorkspaceSettings: Record<string, unknown> | null;
1126
- path: string;
1127
1128
  metadata: Record<string, unknown> | null;
1128
- slug: string;
1129
1129
  projectSlug: string | null;
1130
1130
  projectWorkspaceKey: string | null;
1131
1131
  assigneeAgentSlug: string | null;
@@ -1134,12 +1134,12 @@ export declare const portabilityManifestSchema: z.ZodObject<{
1134
1134
  recurring?: boolean | undefined;
1135
1135
  }[] | undefined;
1136
1136
  projects?: {
1137
- status: string | null;
1138
- name: string;
1137
+ slug: string;
1139
1138
  description: string | null;
1139
+ status: string | null;
1140
1140
  path: string;
1141
+ name: string;
1141
1142
  metadata: Record<string, unknown> | null;
1142
- slug: string;
1143
1143
  ownerAgentSlug: string | null;
1144
1144
  leadAgentSlug: string | null;
1145
1145
  targetDate: string | null;
@@ -1160,12 +1160,12 @@ export declare const portabilityManifestSchema: z.ZodObject<{
1160
1160
  }[] | undefined;
1161
1161
  }[] | undefined;
1162
1162
  skills?: {
1163
- name: string;
1163
+ slug: string;
1164
1164
  description: string | null;
1165
1165
  path: string;
1166
+ name: string;
1166
1167
  key: string;
1167
1168
  metadata: Record<string, unknown> | null;
1168
- slug: string;
1169
1169
  sourceType: string;
1170
1170
  sourceLocator: string | null;
1171
1171
  sourceRef: string | null;
@@ -1257,14 +1257,14 @@ export declare const organizationPortabilityExportSchema: z.ZodObject<{
1257
1257
  issues: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
1258
1258
  skills: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
1259
1259
  }, "strip", z.ZodTypeAny, {
1260
- issues?: boolean | undefined;
1261
1260
  organization?: boolean | undefined;
1261
+ issues?: boolean | undefined;
1262
1262
  agents?: boolean | undefined;
1263
1263
  projects?: boolean | undefined;
1264
1264
  skills?: boolean | undefined;
1265
1265
  }, {
1266
- issues?: boolean | undefined;
1267
1266
  organization?: boolean | undefined;
1267
+ issues?: boolean | undefined;
1268
1268
  agents?: boolean | undefined;
1269
1269
  projects?: boolean | undefined;
1270
1270
  skills?: boolean | undefined;
@@ -1292,8 +1292,8 @@ export declare const organizationPortabilityExportSchema: z.ZodObject<{
1292
1292
  projects?: string[] | undefined;
1293
1293
  skills?: string[] | undefined;
1294
1294
  include?: {
1295
- issues?: boolean | undefined;
1296
1295
  organization?: boolean | undefined;
1296
+ issues?: boolean | undefined;
1297
1297
  agents?: boolean | undefined;
1298
1298
  projects?: boolean | undefined;
1299
1299
  skills?: boolean | undefined;
@@ -1311,8 +1311,8 @@ export declare const organizationPortabilityExportSchema: z.ZodObject<{
1311
1311
  projects?: string[] | undefined;
1312
1312
  skills?: string[] | undefined;
1313
1313
  include?: {
1314
- issues?: boolean | undefined;
1315
1314
  organization?: boolean | undefined;
1315
+ issues?: boolean | undefined;
1316
1316
  agents?: boolean | undefined;
1317
1317
  projects?: boolean | undefined;
1318
1318
  skills?: boolean | undefined;
@@ -1376,14 +1376,14 @@ export declare const organizationPortabilityPreviewSchema: z.ZodObject<{
1376
1376
  issues: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
1377
1377
  skills: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
1378
1378
  }, "strip", z.ZodTypeAny, {
1379
- issues?: boolean | undefined;
1380
1379
  organization?: boolean | undefined;
1380
+ issues?: boolean | undefined;
1381
1381
  agents?: boolean | undefined;
1382
1382
  projects?: boolean | undefined;
1383
1383
  skills?: boolean | undefined;
1384
1384
  }, {
1385
- issues?: boolean | undefined;
1386
1385
  organization?: boolean | undefined;
1386
+ issues?: boolean | undefined;
1387
1387
  agents?: boolean | undefined;
1388
1388
  projects?: boolean | undefined;
1389
1389
  skills?: boolean | undefined;
@@ -1433,8 +1433,8 @@ export declare const organizationPortabilityPreviewSchema: z.ZodObject<{
1433
1433
  };
1434
1434
  agents?: string[] | "all" | undefined;
1435
1435
  include?: {
1436
- issues?: boolean | undefined;
1437
1436
  organization?: boolean | undefined;
1437
+ issues?: boolean | undefined;
1438
1438
  agents?: boolean | undefined;
1439
1439
  projects?: boolean | undefined;
1440
1440
  skills?: boolean | undefined;
@@ -1464,8 +1464,8 @@ export declare const organizationPortabilityPreviewSchema: z.ZodObject<{
1464
1464
  };
1465
1465
  agents?: string[] | "all" | undefined;
1466
1466
  include?: {
1467
- issues?: boolean | undefined;
1468
1467
  organization?: boolean | undefined;
1468
+ issues?: boolean | undefined;
1469
1469
  agents?: boolean | undefined;
1470
1470
  projects?: boolean | undefined;
1471
1471
  skills?: boolean | undefined;
@@ -1535,14 +1535,14 @@ export declare const organizationPortabilityImportSchema: z.ZodObject<{
1535
1535
  issues: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
1536
1536
  skills: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
1537
1537
  }, "strip", z.ZodTypeAny, {
1538
- issues?: boolean | undefined;
1539
1538
  organization?: boolean | undefined;
1539
+ issues?: boolean | undefined;
1540
1540
  agents?: boolean | undefined;
1541
1541
  projects?: boolean | undefined;
1542
1542
  skills?: boolean | undefined;
1543
1543
  }, {
1544
- issues?: boolean | undefined;
1545
1544
  organization?: boolean | undefined;
1545
+ issues?: boolean | undefined;
1546
1546
  agents?: boolean | undefined;
1547
1547
  projects?: boolean | undefined;
1548
1548
  skills?: boolean | undefined;
@@ -1603,8 +1603,8 @@ export declare const organizationPortabilityImportSchema: z.ZodObject<{
1603
1603
  };
1604
1604
  agents?: string[] | "all" | undefined;
1605
1605
  include?: {
1606
- issues?: boolean | undefined;
1607
1606
  organization?: boolean | undefined;
1607
+ issues?: boolean | undefined;
1608
1608
  agents?: boolean | undefined;
1609
1609
  projects?: boolean | undefined;
1610
1610
  skills?: boolean | undefined;
@@ -1638,8 +1638,8 @@ export declare const organizationPortabilityImportSchema: z.ZodObject<{
1638
1638
  };
1639
1639
  agents?: string[] | "all" | undefined;
1640
1640
  include?: {
1641
- issues?: boolean | undefined;
1642
1641
  organization?: boolean | undefined;
1642
+ issues?: boolean | undefined;
1643
1643
  agents?: boolean | undefined;
1644
1644
  projects?: boolean | undefined;
1645
1645
  skills?: boolean | undefined;