@rudderhq/shared 0.6.5 → 0.6.6-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.
- package/dist/auth-runtime-policy.test.d.ts +2 -0
- package/dist/auth-runtime-policy.test.d.ts.map +1 -0
- package/dist/auth-runtime-policy.test.js +11 -0
- package/dist/auth-runtime-policy.test.js.map +1 -0
- 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/constants.d.ts +6 -0
- 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 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- 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/index.d.ts +1 -0
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +1 -0
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/local-account-auth.d.ts +95 -0
- package/dist/validators/local-account-auth.d.ts.map +1 -0
- package/dist/validators/local-account-auth.js +21 -0
- package/dist/validators/local-account-auth.js.map +1 -0
- package/dist/validators/mcp.d.ts +48 -48
- package/dist/validators/organization-portability.d.ts +26 -26
- package/dist/validators/organization-skill.d.ts +22 -22
- package/dist/validators/work-product.d.ts +8 -8
- package/package.json +1 -1
|
@@ -31,7 +31,7 @@ export declare const portabilityEnvInputSchema: z.ZodObject<{
|
|
|
31
31
|
description: string | null;
|
|
32
32
|
key: string;
|
|
33
33
|
agentSlug: string | null;
|
|
34
|
-
requirement: "
|
|
34
|
+
requirement: "optional" | "required";
|
|
35
35
|
defaultValue: string | null;
|
|
36
36
|
portability: "portable" | "system_dependent";
|
|
37
37
|
}, {
|
|
@@ -39,7 +39,7 @@ export declare const portabilityEnvInputSchema: z.ZodObject<{
|
|
|
39
39
|
description: string | null;
|
|
40
40
|
key: string;
|
|
41
41
|
agentSlug: string | null;
|
|
42
|
-
requirement: "
|
|
42
|
+
requirement: "optional" | "required";
|
|
43
43
|
defaultValue: string | null;
|
|
44
44
|
portability: "portable" | "system_dependent";
|
|
45
45
|
}>;
|
|
@@ -301,17 +301,17 @@ export declare const portabilityIssueAutomationTriggerManifestEntrySchema: z.Zod
|
|
|
301
301
|
signingMode: z.ZodNullable<z.ZodString>;
|
|
302
302
|
replayWindowSec: z.ZodNullable<z.ZodNumber>;
|
|
303
303
|
}, "strip", z.ZodTypeAny, {
|
|
304
|
+
label: string | null;
|
|
304
305
|
kind: string;
|
|
305
306
|
enabled: boolean;
|
|
306
|
-
label: string | null;
|
|
307
307
|
cronExpression: string | null;
|
|
308
308
|
timezone: string | null;
|
|
309
309
|
signingMode: string | null;
|
|
310
310
|
replayWindowSec: number | null;
|
|
311
311
|
}, {
|
|
312
|
+
label: string | null;
|
|
312
313
|
kind: string;
|
|
313
314
|
enabled: boolean;
|
|
314
|
-
label: string | null;
|
|
315
315
|
cronExpression: string | null;
|
|
316
316
|
timezone: string | null;
|
|
317
317
|
signingMode: string | null;
|
|
@@ -329,17 +329,17 @@ export declare const portabilityIssueAutomationManifestEntrySchema: z.ZodObject<
|
|
|
329
329
|
signingMode: z.ZodNullable<z.ZodString>;
|
|
330
330
|
replayWindowSec: z.ZodNullable<z.ZodNumber>;
|
|
331
331
|
}, "strip", z.ZodTypeAny, {
|
|
332
|
+
label: string | null;
|
|
332
333
|
kind: string;
|
|
333
334
|
enabled: boolean;
|
|
334
|
-
label: string | null;
|
|
335
335
|
cronExpression: string | null;
|
|
336
336
|
timezone: string | null;
|
|
337
337
|
signingMode: string | null;
|
|
338
338
|
replayWindowSec: number | null;
|
|
339
339
|
}, {
|
|
340
|
+
label: string | null;
|
|
340
341
|
kind: string;
|
|
341
342
|
enabled: boolean;
|
|
342
|
-
label: string | null;
|
|
343
343
|
cronExpression: string | null;
|
|
344
344
|
timezone: string | null;
|
|
345
345
|
signingMode: string | null;
|
|
@@ -349,9 +349,9 @@ export declare const portabilityIssueAutomationManifestEntrySchema: z.ZodObject<
|
|
|
349
349
|
concurrencyPolicy: string | null;
|
|
350
350
|
catchUpPolicy: string | null;
|
|
351
351
|
triggers: {
|
|
352
|
+
label: string | null;
|
|
352
353
|
kind: string;
|
|
353
354
|
enabled: boolean;
|
|
354
|
-
label: string | null;
|
|
355
355
|
cronExpression: string | null;
|
|
356
356
|
timezone: string | null;
|
|
357
357
|
signingMode: string | null;
|
|
@@ -361,9 +361,9 @@ export declare const portabilityIssueAutomationManifestEntrySchema: z.ZodObject<
|
|
|
361
361
|
concurrencyPolicy: string | null;
|
|
362
362
|
catchUpPolicy: string | null;
|
|
363
363
|
triggers?: {
|
|
364
|
+
label: string | null;
|
|
364
365
|
kind: string;
|
|
365
366
|
enabled: boolean;
|
|
366
|
-
label: string | null;
|
|
367
367
|
cronExpression: string | null;
|
|
368
368
|
timezone: string | null;
|
|
369
369
|
signingMode: string | null;
|
|
@@ -392,17 +392,17 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
392
392
|
signingMode: z.ZodNullable<z.ZodString>;
|
|
393
393
|
replayWindowSec: z.ZodNullable<z.ZodNumber>;
|
|
394
394
|
}, "strip", z.ZodTypeAny, {
|
|
395
|
+
label: string | null;
|
|
395
396
|
kind: string;
|
|
396
397
|
enabled: boolean;
|
|
397
|
-
label: string | null;
|
|
398
398
|
cronExpression: string | null;
|
|
399
399
|
timezone: string | null;
|
|
400
400
|
signingMode: string | null;
|
|
401
401
|
replayWindowSec: number | null;
|
|
402
402
|
}, {
|
|
403
|
+
label: string | null;
|
|
403
404
|
kind: string;
|
|
404
405
|
enabled: boolean;
|
|
405
|
-
label: string | null;
|
|
406
406
|
cronExpression: string | null;
|
|
407
407
|
timezone: string | null;
|
|
408
408
|
signingMode: string | null;
|
|
@@ -412,9 +412,9 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
412
412
|
concurrencyPolicy: string | null;
|
|
413
413
|
catchUpPolicy: string | null;
|
|
414
414
|
triggers: {
|
|
415
|
+
label: string | null;
|
|
415
416
|
kind: string;
|
|
416
417
|
enabled: boolean;
|
|
417
|
-
label: string | null;
|
|
418
418
|
cronExpression: string | null;
|
|
419
419
|
timezone: string | null;
|
|
420
420
|
signingMode: string | null;
|
|
@@ -424,9 +424,9 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
424
424
|
concurrencyPolicy: string | null;
|
|
425
425
|
catchUpPolicy: string | null;
|
|
426
426
|
triggers?: {
|
|
427
|
+
label: string | null;
|
|
427
428
|
kind: string;
|
|
428
429
|
enabled: boolean;
|
|
429
|
-
label: string | null;
|
|
430
430
|
cronExpression: string | null;
|
|
431
431
|
timezone: string | null;
|
|
432
432
|
signingMode: string | null;
|
|
@@ -449,9 +449,9 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
449
449
|
concurrencyPolicy: string | null;
|
|
450
450
|
catchUpPolicy: string | null;
|
|
451
451
|
triggers: {
|
|
452
|
+
label: string | null;
|
|
452
453
|
kind: string;
|
|
453
454
|
enabled: boolean;
|
|
454
|
-
label: string | null;
|
|
455
455
|
cronExpression: string | null;
|
|
456
456
|
timezone: string | null;
|
|
457
457
|
signingMode: string | null;
|
|
@@ -480,9 +480,9 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
480
480
|
concurrencyPolicy: string | null;
|
|
481
481
|
catchUpPolicy: string | null;
|
|
482
482
|
triggers?: {
|
|
483
|
+
label: string | null;
|
|
483
484
|
kind: string;
|
|
484
485
|
enabled: boolean;
|
|
485
|
-
label: string | null;
|
|
486
486
|
cronExpression: string | null;
|
|
487
487
|
timezone: string | null;
|
|
488
488
|
signingMode: string | null;
|
|
@@ -794,17 +794,17 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
794
794
|
signingMode: z.ZodNullable<z.ZodString>;
|
|
795
795
|
replayWindowSec: z.ZodNullable<z.ZodNumber>;
|
|
796
796
|
}, "strip", z.ZodTypeAny, {
|
|
797
|
+
label: string | null;
|
|
797
798
|
kind: string;
|
|
798
799
|
enabled: boolean;
|
|
799
|
-
label: string | null;
|
|
800
800
|
cronExpression: string | null;
|
|
801
801
|
timezone: string | null;
|
|
802
802
|
signingMode: string | null;
|
|
803
803
|
replayWindowSec: number | null;
|
|
804
804
|
}, {
|
|
805
|
+
label: string | null;
|
|
805
806
|
kind: string;
|
|
806
807
|
enabled: boolean;
|
|
807
|
-
label: string | null;
|
|
808
808
|
cronExpression: string | null;
|
|
809
809
|
timezone: string | null;
|
|
810
810
|
signingMode: string | null;
|
|
@@ -814,9 +814,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
814
814
|
concurrencyPolicy: string | null;
|
|
815
815
|
catchUpPolicy: string | null;
|
|
816
816
|
triggers: {
|
|
817
|
+
label: string | null;
|
|
817
818
|
kind: string;
|
|
818
819
|
enabled: boolean;
|
|
819
|
-
label: string | null;
|
|
820
820
|
cronExpression: string | null;
|
|
821
821
|
timezone: string | null;
|
|
822
822
|
signingMode: string | null;
|
|
@@ -826,9 +826,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
826
826
|
concurrencyPolicy: string | null;
|
|
827
827
|
catchUpPolicy: string | null;
|
|
828
828
|
triggers?: {
|
|
829
|
+
label: string | null;
|
|
829
830
|
kind: string;
|
|
830
831
|
enabled: boolean;
|
|
831
|
-
label: string | null;
|
|
832
832
|
cronExpression: string | null;
|
|
833
833
|
timezone: string | null;
|
|
834
834
|
signingMode: string | null;
|
|
@@ -851,9 +851,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
851
851
|
concurrencyPolicy: string | null;
|
|
852
852
|
catchUpPolicy: string | null;
|
|
853
853
|
triggers: {
|
|
854
|
+
label: string | null;
|
|
854
855
|
kind: string;
|
|
855
856
|
enabled: boolean;
|
|
856
|
-
label: string | null;
|
|
857
857
|
cronExpression: string | null;
|
|
858
858
|
timezone: string | null;
|
|
859
859
|
signingMode: string | null;
|
|
@@ -882,9 +882,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
882
882
|
concurrencyPolicy: string | null;
|
|
883
883
|
catchUpPolicy: string | null;
|
|
884
884
|
triggers?: {
|
|
885
|
+
label: string | null;
|
|
885
886
|
kind: string;
|
|
886
887
|
enabled: boolean;
|
|
887
|
-
label: string | null;
|
|
888
888
|
cronExpression: string | null;
|
|
889
889
|
timezone: string | null;
|
|
890
890
|
signingMode: string | null;
|
|
@@ -919,7 +919,7 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
919
919
|
description: string | null;
|
|
920
920
|
key: string;
|
|
921
921
|
agentSlug: string | null;
|
|
922
|
-
requirement: "
|
|
922
|
+
requirement: "optional" | "required";
|
|
923
923
|
defaultValue: string | null;
|
|
924
924
|
portability: "portable" | "system_dependent";
|
|
925
925
|
}, {
|
|
@@ -927,7 +927,7 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
927
927
|
description: string | null;
|
|
928
928
|
key: string;
|
|
929
929
|
agentSlug: string | null;
|
|
930
|
-
requirement: "
|
|
930
|
+
requirement: "optional" | "required";
|
|
931
931
|
defaultValue: string | null;
|
|
932
932
|
portability: "portable" | "system_dependent";
|
|
933
933
|
}>, "many">>;
|
|
@@ -951,9 +951,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
951
951
|
concurrencyPolicy: string | null;
|
|
952
952
|
catchUpPolicy: string | null;
|
|
953
953
|
triggers: {
|
|
954
|
+
label: string | null;
|
|
954
955
|
kind: string;
|
|
955
956
|
enabled: boolean;
|
|
956
|
-
label: string | null;
|
|
957
957
|
cronExpression: string | null;
|
|
958
958
|
timezone: string | null;
|
|
959
959
|
signingMode: string | null;
|
|
@@ -1054,7 +1054,7 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1054
1054
|
description: string | null;
|
|
1055
1055
|
key: string;
|
|
1056
1056
|
agentSlug: string | null;
|
|
1057
|
-
requirement: "
|
|
1057
|
+
requirement: "optional" | "required";
|
|
1058
1058
|
defaultValue: string | null;
|
|
1059
1059
|
portability: "portable" | "system_dependent";
|
|
1060
1060
|
}[];
|
|
@@ -1109,9 +1109,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1109
1109
|
concurrencyPolicy: string | null;
|
|
1110
1110
|
catchUpPolicy: string | null;
|
|
1111
1111
|
triggers?: {
|
|
1112
|
+
label: string | null;
|
|
1112
1113
|
kind: string;
|
|
1113
1114
|
enabled: boolean;
|
|
1114
|
-
label: string | null;
|
|
1115
1115
|
cronExpression: string | null;
|
|
1116
1116
|
timezone: string | null;
|
|
1117
1117
|
signingMode: string | null;
|
|
@@ -1181,7 +1181,7 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1181
1181
|
description: string | null;
|
|
1182
1182
|
key: string;
|
|
1183
1183
|
agentSlug: string | null;
|
|
1184
|
-
requirement: "
|
|
1184
|
+
requirement: "optional" | "required";
|
|
1185
1185
|
defaultValue: string | null;
|
|
1186
1186
|
portability: "portable" | "system_dependent";
|
|
1187
1187
|
}[] | undefined;
|
|
@@ -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;
|