@rudderhq/shared 0.6.5 → 0.6.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-subagents.d.ts +14 -0
- package/dist/chat-subagents.d.ts.map +1 -0
- package/dist/chat-subagents.js +234 -0
- package/dist/chat-subagents.js.map +1 -0
- package/dist/chat-subagents.test.d.ts +2 -0
- package/dist/chat-subagents.test.d.ts.map +1 -0
- package/dist/chat-subagents.test.js +214 -0
- package/dist/chat-subagents.test.js.map +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/types/chat.d.ts +24 -0
- package/dist/types/chat.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/validators/adapter-skills.d.ts +2 -2
- package/dist/validators/automation.d.ts +21 -21
- package/dist/validators/chat.d.ts +346 -346
- package/dist/validators/cost.d.ts +4 -4
- package/dist/validators/custom-integration.d.ts +4 -4
- package/dist/validators/finance.d.ts +4 -4
- package/dist/validators/mcp.d.ts +22 -22
- package/dist/validators/organization-portability.d.ts +20 -20
- package/dist/validators/organization-skill.d.ts +22 -22
- package/dist/validators/work-product.d.ts +8 -8
- package/package.json +1 -1
|
@@ -41,11 +41,11 @@ export declare const organizationSkillSchema: z.ZodObject<{
|
|
|
41
41
|
updatedAt: z.ZodDate;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
id: string;
|
|
44
|
+
updatedAt: Date;
|
|
44
45
|
orgId: string;
|
|
45
46
|
slug: string;
|
|
46
47
|
description: string | null;
|
|
47
48
|
createdAt: Date;
|
|
48
|
-
updatedAt: Date;
|
|
49
49
|
name: string;
|
|
50
50
|
metadata: Record<string, unknown> | null;
|
|
51
51
|
markdown: string;
|
|
@@ -61,11 +61,11 @@ export declare const organizationSkillSchema: z.ZodObject<{
|
|
|
61
61
|
}[];
|
|
62
62
|
}, {
|
|
63
63
|
id: string;
|
|
64
|
+
updatedAt: Date;
|
|
64
65
|
orgId: string;
|
|
65
66
|
slug: string;
|
|
66
67
|
description: string | null;
|
|
67
68
|
createdAt: Date;
|
|
68
|
-
updatedAt: Date;
|
|
69
69
|
name: string;
|
|
70
70
|
metadata: Record<string, unknown> | null;
|
|
71
71
|
markdown: string;
|
|
@@ -116,11 +116,11 @@ export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
|
116
116
|
workspaceEditPath: z.ZodNullable<z.ZodString>;
|
|
117
117
|
}, "strip", z.ZodTypeAny, {
|
|
118
118
|
id: string;
|
|
119
|
+
updatedAt: Date;
|
|
119
120
|
orgId: string;
|
|
120
121
|
slug: string;
|
|
121
122
|
description: string | null;
|
|
122
123
|
createdAt: Date;
|
|
123
|
-
updatedAt: Date;
|
|
124
124
|
name: string;
|
|
125
125
|
metadata: Record<string, unknown> | null;
|
|
126
126
|
markdown: string;
|
|
@@ -143,11 +143,11 @@ export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
|
143
143
|
sourceBadge: "url" | "rudder" | "github" | "catalog" | "skills_sh" | "community" | "local";
|
|
144
144
|
}, {
|
|
145
145
|
id: string;
|
|
146
|
+
updatedAt: Date;
|
|
146
147
|
orgId: string;
|
|
147
148
|
slug: string;
|
|
148
149
|
description: string | null;
|
|
149
150
|
createdAt: Date;
|
|
150
|
-
updatedAt: Date;
|
|
151
151
|
name: string;
|
|
152
152
|
metadata: Record<string, unknown> | null;
|
|
153
153
|
markdown: string;
|
|
@@ -249,11 +249,11 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
249
249
|
workspaceEditPath: z.ZodNullable<z.ZodString>;
|
|
250
250
|
}, "strip", z.ZodTypeAny, {
|
|
251
251
|
id: string;
|
|
252
|
+
updatedAt: Date;
|
|
252
253
|
orgId: string;
|
|
253
254
|
slug: string;
|
|
254
255
|
description: string | null;
|
|
255
256
|
createdAt: Date;
|
|
256
|
-
updatedAt: Date;
|
|
257
257
|
name: string;
|
|
258
258
|
metadata: Record<string, unknown> | null;
|
|
259
259
|
markdown: string;
|
|
@@ -284,11 +284,11 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
284
284
|
}[];
|
|
285
285
|
}, {
|
|
286
286
|
id: string;
|
|
287
|
+
updatedAt: Date;
|
|
287
288
|
orgId: string;
|
|
288
289
|
slug: string;
|
|
289
290
|
description: string | null;
|
|
290
291
|
createdAt: Date;
|
|
291
|
-
updatedAt: Date;
|
|
292
292
|
name: string;
|
|
293
293
|
metadata: Record<string, unknown> | null;
|
|
294
294
|
markdown: string;
|
|
@@ -448,11 +448,11 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
448
448
|
updatedAt: z.ZodDate;
|
|
449
449
|
}, "strip", z.ZodTypeAny, {
|
|
450
450
|
id: string;
|
|
451
|
+
updatedAt: Date;
|
|
451
452
|
orgId: string;
|
|
452
453
|
slug: string;
|
|
453
454
|
description: string | null;
|
|
454
455
|
createdAt: Date;
|
|
455
|
-
updatedAt: Date;
|
|
456
456
|
name: string;
|
|
457
457
|
metadata: Record<string, unknown> | null;
|
|
458
458
|
markdown: string;
|
|
@@ -468,11 +468,11 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
468
468
|
}[];
|
|
469
469
|
}, {
|
|
470
470
|
id: string;
|
|
471
|
+
updatedAt: Date;
|
|
471
472
|
orgId: string;
|
|
472
473
|
slug: string;
|
|
473
474
|
description: string | null;
|
|
474
475
|
createdAt: Date;
|
|
475
|
-
updatedAt: Date;
|
|
476
476
|
name: string;
|
|
477
477
|
metadata: Record<string, unknown> | null;
|
|
478
478
|
markdown: string;
|
|
@@ -515,11 +515,11 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
515
515
|
updatedAt: z.ZodDate;
|
|
516
516
|
}, "strip", z.ZodTypeAny, {
|
|
517
517
|
id: string;
|
|
518
|
+
updatedAt: Date;
|
|
518
519
|
orgId: string;
|
|
519
520
|
slug: string;
|
|
520
521
|
description: string | null;
|
|
521
522
|
createdAt: Date;
|
|
522
|
-
updatedAt: Date;
|
|
523
523
|
name: string;
|
|
524
524
|
metadata: Record<string, unknown> | null;
|
|
525
525
|
markdown: string;
|
|
@@ -535,11 +535,11 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
535
535
|
}[];
|
|
536
536
|
}, {
|
|
537
537
|
id: string;
|
|
538
|
+
updatedAt: Date;
|
|
538
539
|
orgId: string;
|
|
539
540
|
slug: string;
|
|
540
541
|
description: string | null;
|
|
541
542
|
createdAt: Date;
|
|
542
|
-
updatedAt: Date;
|
|
543
543
|
name: string;
|
|
544
544
|
metadata: Record<string, unknown> | null;
|
|
545
545
|
markdown: string;
|
|
@@ -617,11 +617,11 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
617
617
|
}, "strip", z.ZodTypeAny, {
|
|
618
618
|
imported: {
|
|
619
619
|
id: string;
|
|
620
|
+
updatedAt: Date;
|
|
620
621
|
orgId: string;
|
|
621
622
|
slug: string;
|
|
622
623
|
description: string | null;
|
|
623
624
|
createdAt: Date;
|
|
624
|
-
updatedAt: Date;
|
|
625
625
|
name: string;
|
|
626
626
|
metadata: Record<string, unknown> | null;
|
|
627
627
|
markdown: string;
|
|
@@ -646,11 +646,11 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
646
646
|
}[];
|
|
647
647
|
updated: {
|
|
648
648
|
id: string;
|
|
649
|
+
updatedAt: Date;
|
|
649
650
|
orgId: string;
|
|
650
651
|
slug: string;
|
|
651
652
|
description: string | null;
|
|
652
653
|
createdAt: Date;
|
|
653
|
-
updatedAt: Date;
|
|
654
654
|
name: string;
|
|
655
655
|
metadata: Record<string, unknown> | null;
|
|
656
656
|
markdown: string;
|
|
@@ -685,11 +685,11 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
685
685
|
}, {
|
|
686
686
|
imported: {
|
|
687
687
|
id: string;
|
|
688
|
+
updatedAt: Date;
|
|
688
689
|
orgId: string;
|
|
689
690
|
slug: string;
|
|
690
691
|
description: string | null;
|
|
691
692
|
createdAt: Date;
|
|
692
|
-
updatedAt: Date;
|
|
693
693
|
name: string;
|
|
694
694
|
metadata: Record<string, unknown> | null;
|
|
695
695
|
markdown: string;
|
|
@@ -714,11 +714,11 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
714
714
|
}[];
|
|
715
715
|
updated: {
|
|
716
716
|
id: string;
|
|
717
|
+
updatedAt: Date;
|
|
717
718
|
orgId: string;
|
|
718
719
|
slug: string;
|
|
719
720
|
description: string | null;
|
|
720
721
|
createdAt: Date;
|
|
721
|
-
updatedAt: Date;
|
|
722
722
|
name: string;
|
|
723
723
|
metadata: Record<string, unknown> | null;
|
|
724
724
|
markdown: string;
|
|
@@ -830,11 +830,11 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
830
830
|
updatedAt: z.ZodDate;
|
|
831
831
|
}, "strip", z.ZodTypeAny, {
|
|
832
832
|
id: string;
|
|
833
|
+
updatedAt: Date;
|
|
833
834
|
orgId: string;
|
|
834
835
|
slug: string;
|
|
835
836
|
description: string | null;
|
|
836
837
|
createdAt: Date;
|
|
837
|
-
updatedAt: Date;
|
|
838
838
|
name: string;
|
|
839
839
|
metadata: Record<string, unknown> | null;
|
|
840
840
|
markdown: string;
|
|
@@ -850,11 +850,11 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
850
850
|
}[];
|
|
851
851
|
}, {
|
|
852
852
|
id: string;
|
|
853
|
+
updatedAt: Date;
|
|
853
854
|
orgId: string;
|
|
854
855
|
slug: string;
|
|
855
856
|
description: string | null;
|
|
856
857
|
createdAt: Date;
|
|
857
|
-
updatedAt: Date;
|
|
858
858
|
name: string;
|
|
859
859
|
metadata: Record<string, unknown> | null;
|
|
860
860
|
markdown: string;
|
|
@@ -897,11 +897,11 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
897
897
|
updatedAt: z.ZodDate;
|
|
898
898
|
}, "strip", z.ZodTypeAny, {
|
|
899
899
|
id: string;
|
|
900
|
+
updatedAt: Date;
|
|
900
901
|
orgId: string;
|
|
901
902
|
slug: string;
|
|
902
903
|
description: string | null;
|
|
903
904
|
createdAt: Date;
|
|
904
|
-
updatedAt: Date;
|
|
905
905
|
name: string;
|
|
906
906
|
metadata: Record<string, unknown> | null;
|
|
907
907
|
markdown: string;
|
|
@@ -917,11 +917,11 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
917
917
|
}[];
|
|
918
918
|
}, {
|
|
919
919
|
id: string;
|
|
920
|
+
updatedAt: Date;
|
|
920
921
|
orgId: string;
|
|
921
922
|
slug: string;
|
|
922
923
|
description: string | null;
|
|
923
924
|
createdAt: Date;
|
|
924
|
-
updatedAt: Date;
|
|
925
925
|
name: string;
|
|
926
926
|
metadata: Record<string, unknown> | null;
|
|
927
927
|
markdown: string;
|
|
@@ -981,11 +981,11 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
981
981
|
}, "strip", z.ZodTypeAny, {
|
|
982
982
|
imported: {
|
|
983
983
|
id: string;
|
|
984
|
+
updatedAt: Date;
|
|
984
985
|
orgId: string;
|
|
985
986
|
slug: string;
|
|
986
987
|
description: string | null;
|
|
987
988
|
createdAt: Date;
|
|
988
|
-
updatedAt: Date;
|
|
989
989
|
name: string;
|
|
990
990
|
metadata: Record<string, unknown> | null;
|
|
991
991
|
markdown: string;
|
|
@@ -1007,11 +1007,11 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1007
1007
|
}[];
|
|
1008
1008
|
updated: {
|
|
1009
1009
|
id: string;
|
|
1010
|
+
updatedAt: Date;
|
|
1010
1011
|
orgId: string;
|
|
1011
1012
|
slug: string;
|
|
1012
1013
|
description: string | null;
|
|
1013
1014
|
createdAt: Date;
|
|
1014
|
-
updatedAt: Date;
|
|
1015
1015
|
name: string;
|
|
1016
1016
|
metadata: Record<string, unknown> | null;
|
|
1017
1017
|
markdown: string;
|
|
@@ -1042,11 +1042,11 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1042
1042
|
}, {
|
|
1043
1043
|
imported: {
|
|
1044
1044
|
id: string;
|
|
1045
|
+
updatedAt: Date;
|
|
1045
1046
|
orgId: string;
|
|
1046
1047
|
slug: string;
|
|
1047
1048
|
description: string | null;
|
|
1048
1049
|
createdAt: Date;
|
|
1049
|
-
updatedAt: Date;
|
|
1050
1050
|
name: string;
|
|
1051
1051
|
metadata: Record<string, unknown> | null;
|
|
1052
1052
|
markdown: string;
|
|
@@ -1068,11 +1068,11 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1068
1068
|
}[];
|
|
1069
1069
|
updated: {
|
|
1070
1070
|
id: string;
|
|
1071
|
+
updatedAt: Date;
|
|
1071
1072
|
orgId: string;
|
|
1072
1073
|
slug: string;
|
|
1073
1074
|
description: string | null;
|
|
1074
1075
|
createdAt: Date;
|
|
1075
|
-
updatedAt: Date;
|
|
1076
1076
|
name: string;
|
|
1077
1077
|
metadata: Record<string, unknown> | null;
|
|
1078
1078
|
markdown: string;
|
|
@@ -21,7 +21,7 @@ export declare const createIssueWorkProductSchema: z.ZodObject<{
|
|
|
21
21
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22
22
|
createdByRunId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
|
-
status: "active" | "archived" | "draft" | "failed" | "approved" | "
|
|
24
|
+
status: "active" | "archived" | "draft" | "failed" | "approved" | "closed" | "ready_for_review" | "changes_requested" | "merged";
|
|
25
25
|
title: string;
|
|
26
26
|
type: "preview_url" | "runtime_service" | "pull_request" | "branch" | "commit" | "artifact" | "document";
|
|
27
27
|
provider: string;
|
|
@@ -30,8 +30,8 @@ export declare const createIssueWorkProductSchema: z.ZodObject<{
|
|
|
30
30
|
healthStatus: "unknown" | "healthy" | "unhealthy";
|
|
31
31
|
projectId?: string | null | undefined;
|
|
32
32
|
url?: string | null | undefined;
|
|
33
|
-
metadata?: Record<string, unknown> | null | undefined;
|
|
34
33
|
summary?: string | null | undefined;
|
|
34
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
35
35
|
runWorkspaceId?: string | null | undefined;
|
|
36
36
|
executionWorkspaceId?: string | null | undefined;
|
|
37
37
|
runtimeServiceId?: string | null | undefined;
|
|
@@ -41,11 +41,11 @@ export declare const createIssueWorkProductSchema: z.ZodObject<{
|
|
|
41
41
|
title: string;
|
|
42
42
|
type: "preview_url" | "runtime_service" | "pull_request" | "branch" | "commit" | "artifact" | "document";
|
|
43
43
|
provider: string;
|
|
44
|
-
status?: "active" | "archived" | "draft" | "failed" | "approved" | "
|
|
44
|
+
status?: "active" | "archived" | "draft" | "failed" | "approved" | "closed" | "ready_for_review" | "changes_requested" | "merged" | undefined;
|
|
45
45
|
projectId?: string | null | undefined;
|
|
46
46
|
url?: string | null | undefined;
|
|
47
|
-
metadata?: Record<string, unknown> | null | undefined;
|
|
48
47
|
summary?: string | null | undefined;
|
|
48
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
49
49
|
runWorkspaceId?: string | null | undefined;
|
|
50
50
|
executionWorkspaceId?: string | null | undefined;
|
|
51
51
|
isPrimary?: boolean | undefined;
|
|
@@ -74,14 +74,14 @@ export declare const updateIssueWorkProductSchema: z.ZodObject<{
|
|
|
74
74
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
75
75
|
createdByRunId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
76
76
|
}, "strip", z.ZodTypeAny, {
|
|
77
|
-
status?: "active" | "archived" | "draft" | "failed" | "approved" | "
|
|
77
|
+
status?: "active" | "archived" | "draft" | "failed" | "approved" | "closed" | "ready_for_review" | "changes_requested" | "merged" | undefined;
|
|
78
78
|
projectId?: string | null | undefined;
|
|
79
79
|
title?: string | undefined;
|
|
80
80
|
url?: string | null | undefined;
|
|
81
|
+
summary?: string | null | undefined;
|
|
81
82
|
type?: "preview_url" | "runtime_service" | "pull_request" | "branch" | "commit" | "artifact" | "document" | undefined;
|
|
82
83
|
provider?: string | undefined;
|
|
83
84
|
metadata?: Record<string, unknown> | null | undefined;
|
|
84
|
-
summary?: string | null | undefined;
|
|
85
85
|
runWorkspaceId?: string | null | undefined;
|
|
86
86
|
executionWorkspaceId?: string | null | undefined;
|
|
87
87
|
isPrimary?: boolean | undefined;
|
|
@@ -91,14 +91,14 @@ export declare const updateIssueWorkProductSchema: z.ZodObject<{
|
|
|
91
91
|
healthStatus?: "unknown" | "healthy" | "unhealthy" | undefined;
|
|
92
92
|
createdByRunId?: string | null | undefined;
|
|
93
93
|
}, {
|
|
94
|
-
status?: "active" | "archived" | "draft" | "failed" | "approved" | "
|
|
94
|
+
status?: "active" | "archived" | "draft" | "failed" | "approved" | "closed" | "ready_for_review" | "changes_requested" | "merged" | undefined;
|
|
95
95
|
projectId?: string | null | undefined;
|
|
96
96
|
title?: string | undefined;
|
|
97
97
|
url?: string | null | undefined;
|
|
98
|
+
summary?: string | null | undefined;
|
|
98
99
|
type?: "preview_url" | "runtime_service" | "pull_request" | "branch" | "commit" | "artifact" | "document" | undefined;
|
|
99
100
|
provider?: string | undefined;
|
|
100
101
|
metadata?: Record<string, unknown> | null | undefined;
|
|
101
|
-
summary?: string | null | undefined;
|
|
102
102
|
runWorkspaceId?: string | null | undefined;
|
|
103
103
|
executionWorkspaceId?: string | null | undefined;
|
|
104
104
|
isPrimary?: boolean | undefined;
|