@rudderhq/shared 0.4.6-canary.8 → 0.5.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/agent-run.d.ts +3 -0
- package/dist/agent-run.d.ts.map +1 -1
- package/dist/agent-run.js +60 -8
- package/dist/agent-run.js.map +1 -1
- package/dist/agent-run.test.js +74 -1
- package/dist/agent-run.test.js.map +1 -1
- package/dist/browser-shortcuts.d.ts +16 -0
- package/dist/browser-shortcuts.d.ts.map +1 -0
- package/dist/browser-shortcuts.js +49 -0
- package/dist/browser-shortcuts.js.map +1 -0
- package/dist/browser-shortcuts.test.d.ts +2 -0
- package/dist/browser-shortcuts.test.d.ts.map +1 -0
- package/dist/browser-shortcuts.test.js +37 -0
- package/dist/browser-shortcuts.test.js.map +1 -0
- package/dist/chat-inline-visuals.d.ts +35 -0
- package/dist/chat-inline-visuals.d.ts.map +1 -0
- package/dist/chat-inline-visuals.js +167 -0
- package/dist/chat-inline-visuals.js.map +1 -0
- package/dist/chat-inline-visuals.test.d.ts +2 -0
- package/dist/chat-inline-visuals.test.d.ts.map +1 -0
- package/dist/chat-inline-visuals.test.js +112 -0
- package/dist/chat-inline-visuals.test.js.map +1 -0
- package/dist/chat-work-manifest.d.ts +1 -1
- package/dist/chat-work-manifest.d.ts.map +1 -1
- package/dist/chat-work-manifest.js +110 -2
- package/dist/chat-work-manifest.js.map +1 -1
- package/dist/chat-work-manifest.test.js +54 -0
- package/dist/chat-work-manifest.test.js.map +1 -1
- package/dist/constants.d.ts +4 -0
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +2 -0
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +8 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -4
- package/dist/index.js.map +1 -1
- package/dist/organization-skill-reference.d.ts +4 -1
- package/dist/organization-skill-reference.d.ts.map +1 -1
- package/dist/organization-skill-reference.js +29 -7
- package/dist/organization-skill-reference.js.map +1 -1
- package/dist/organization-skill-reference.test.js +17 -2
- package/dist/organization-skill-reference.test.js.map +1 -1
- package/dist/types/chat.d.ts +158 -5
- package/dist/types/chat.d.ts.map +1 -1
- package/dist/types/cost.d.ts +2 -0
- package/dist/types/cost.d.ts.map +1 -1
- package/dist/types/heartbeat.d.ts +10 -0
- package/dist/types/heartbeat.d.ts.map +1 -1
- package/dist/types/index.d.ts +4 -3
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/organization.d.ts +13 -1
- package/dist/types/organization.d.ts.map +1 -1
- package/dist/types/run-intelligence.d.ts +89 -0
- package/dist/types/run-intelligence.d.ts.map +1 -0
- package/dist/types/run-intelligence.js +2 -0
- package/dist/types/run-intelligence.js.map +1 -0
- package/dist/validators/adapter-skills.d.ts +6 -6
- package/dist/validators/agent.d.ts +12 -12
- package/dist/validators/approval.d.ts +2 -2
- package/dist/validators/automation.d.ts +60 -60
- package/dist/validators/budget.d.ts +4 -4
- package/dist/validators/calendar.d.ts +16 -16
- package/dist/validators/chat.d.ts +213 -72
- package/dist/validators/chat.d.ts.map +1 -1
- package/dist/validators/chat.js +170 -0
- package/dist/validators/chat.js.map +1 -1
- package/dist/validators/chat.test.js +71 -1
- package/dist/validators/chat.test.js.map +1 -1
- package/dist/validators/cost.d.ts +4 -4
- package/dist/validators/finance.d.ts +8 -8
- package/dist/validators/goal.d.ts +3 -3
- package/dist/validators/index.d.ts +2 -2
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +2 -2
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/issue.d.ts +20 -20
- package/dist/validators/organization-portability.d.ts +96 -96
- package/dist/validators/organization-skill.d.ts +48 -48
- package/dist/validators/organization.d.ts +18 -0
- package/dist/validators/organization.d.ts.map +1 -1
- package/dist/validators/organization.js +7 -0
- package/dist/validators/organization.js.map +1 -1
- package/dist/validators/plugin.d.ts +2 -2
- package/dist/validators/project.d.ts +19 -19
- package/dist/validators/resource.d.ts +12 -12
- package/dist/validators/work-product.d.ts +12 -12
- package/dist/website-icons.d.ts +1 -0
- package/dist/website-icons.d.ts.map +1 -1
- package/dist/website-icons.js +1 -1
- package/dist/website-icons.js.map +1 -1
- package/dist/website-icons.test.js +4 -1
- package/dist/website-icons.test.js.map +1 -1
- package/package.json +1 -1
|
@@ -47,9 +47,9 @@ export declare const organizationSkillSchema: z.ZodObject<{
|
|
|
47
47
|
createdAt: Date;
|
|
48
48
|
updatedAt: Date;
|
|
49
49
|
name: string;
|
|
50
|
+
metadata: Record<string, unknown> | null;
|
|
50
51
|
markdown: string;
|
|
51
52
|
key: string;
|
|
52
|
-
metadata: Record<string, unknown> | null;
|
|
53
53
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
54
54
|
sourceLocator: string | null;
|
|
55
55
|
sourceRef: string | null;
|
|
@@ -67,9 +67,9 @@ export declare const organizationSkillSchema: z.ZodObject<{
|
|
|
67
67
|
createdAt: Date;
|
|
68
68
|
updatedAt: Date;
|
|
69
69
|
name: string;
|
|
70
|
+
metadata: Record<string, unknown> | null;
|
|
70
71
|
markdown: string;
|
|
71
72
|
key: string;
|
|
72
|
-
metadata: Record<string, unknown> | null;
|
|
73
73
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
74
74
|
sourceLocator: string | null;
|
|
75
75
|
sourceRef: string | null;
|
|
@@ -122,11 +122,11 @@ export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
|
122
122
|
createdAt: Date;
|
|
123
123
|
updatedAt: Date;
|
|
124
124
|
name: string;
|
|
125
|
+
metadata: Record<string, unknown> | null;
|
|
125
126
|
markdown: string;
|
|
126
127
|
key: string;
|
|
127
128
|
sourcePath: string | null;
|
|
128
129
|
workspaceEditPath: string | null;
|
|
129
|
-
metadata: Record<string, unknown> | null;
|
|
130
130
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
131
131
|
sourceLocator: string | null;
|
|
132
132
|
sourceRef: string | null;
|
|
@@ -149,11 +149,11 @@ export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
|
149
149
|
createdAt: Date;
|
|
150
150
|
updatedAt: Date;
|
|
151
151
|
name: string;
|
|
152
|
+
metadata: Record<string, unknown> | null;
|
|
152
153
|
markdown: string;
|
|
153
154
|
key: string;
|
|
154
155
|
sourcePath: string | null;
|
|
155
156
|
workspaceEditPath: string | null;
|
|
156
|
-
metadata: Record<string, unknown> | null;
|
|
157
157
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
158
158
|
sourceLocator: string | null;
|
|
159
159
|
sourceRef: string | null;
|
|
@@ -255,11 +255,11 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
255
255
|
createdAt: Date;
|
|
256
256
|
updatedAt: Date;
|
|
257
257
|
name: string;
|
|
258
|
+
metadata: Record<string, unknown> | null;
|
|
258
259
|
markdown: string;
|
|
259
260
|
key: string;
|
|
260
261
|
sourcePath: string | null;
|
|
261
262
|
workspaceEditPath: string | null;
|
|
262
|
-
metadata: Record<string, unknown> | null;
|
|
263
263
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
264
264
|
sourceLocator: string | null;
|
|
265
265
|
sourceRef: string | null;
|
|
@@ -290,11 +290,11 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
290
290
|
createdAt: Date;
|
|
291
291
|
updatedAt: Date;
|
|
292
292
|
name: string;
|
|
293
|
+
metadata: Record<string, unknown> | null;
|
|
293
294
|
markdown: string;
|
|
294
295
|
key: string;
|
|
295
296
|
sourcePath: string | null;
|
|
296
297
|
workspaceEditPath: string | null;
|
|
297
|
-
metadata: Record<string, unknown> | null;
|
|
298
298
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
299
299
|
sourceLocator: string | null;
|
|
300
300
|
sourceRef: string | null;
|
|
@@ -326,15 +326,15 @@ export declare const organizationSkillUpdateStatusSchema: z.ZodObject<{
|
|
|
326
326
|
latestRef: z.ZodNullable<z.ZodString>;
|
|
327
327
|
hasUpdate: z.ZodBoolean;
|
|
328
328
|
}, "strip", z.ZodTypeAny, {
|
|
329
|
-
supported: boolean;
|
|
330
329
|
reason: string | null;
|
|
330
|
+
supported: boolean;
|
|
331
331
|
trackingRef: string | null;
|
|
332
332
|
currentRef: string | null;
|
|
333
333
|
latestRef: string | null;
|
|
334
334
|
hasUpdate: boolean;
|
|
335
335
|
}, {
|
|
336
|
-
supported: boolean;
|
|
337
336
|
reason: string | null;
|
|
337
|
+
supported: boolean;
|
|
338
338
|
trackingRef: string | null;
|
|
339
339
|
currentRef: string | null;
|
|
340
340
|
latestRef: string | null;
|
|
@@ -365,16 +365,16 @@ export declare const organizationSkillProjectScanSkippedSchema: z.ZodObject<{
|
|
|
365
365
|
path: z.ZodNullable<z.ZodString>;
|
|
366
366
|
reason: z.ZodString;
|
|
367
367
|
}, "strip", z.ZodTypeAny, {
|
|
368
|
+
reason: string;
|
|
368
369
|
projectId: string;
|
|
369
370
|
path: string | null;
|
|
370
|
-
reason: string;
|
|
371
371
|
projectName: string;
|
|
372
372
|
workspaceId: string | null;
|
|
373
373
|
workspaceName: string | null;
|
|
374
374
|
}, {
|
|
375
|
+
reason: string;
|
|
375
376
|
projectId: string;
|
|
376
377
|
path: string | null;
|
|
377
|
-
reason: string;
|
|
378
378
|
projectName: string;
|
|
379
379
|
workspaceId: string | null;
|
|
380
380
|
workspaceName: string | null;
|
|
@@ -392,11 +392,11 @@ export declare const organizationSkillProjectScanConflictSchema: z.ZodObject<{
|
|
|
392
392
|
existingSourceLocator: z.ZodNullable<z.ZodString>;
|
|
393
393
|
reason: z.ZodString;
|
|
394
394
|
}, "strip", z.ZodTypeAny, {
|
|
395
|
+
reason: string;
|
|
395
396
|
projectId: string;
|
|
396
397
|
path: string;
|
|
397
398
|
slug: string;
|
|
398
399
|
key: string;
|
|
399
|
-
reason: string;
|
|
400
400
|
projectName: string;
|
|
401
401
|
workspaceId: string;
|
|
402
402
|
workspaceName: string;
|
|
@@ -404,11 +404,11 @@ export declare const organizationSkillProjectScanConflictSchema: z.ZodObject<{
|
|
|
404
404
|
existingSkillKey: string;
|
|
405
405
|
existingSourceLocator: string | null;
|
|
406
406
|
}, {
|
|
407
|
+
reason: string;
|
|
407
408
|
projectId: string;
|
|
408
409
|
path: string;
|
|
409
410
|
slug: string;
|
|
410
411
|
key: string;
|
|
411
|
-
reason: string;
|
|
412
412
|
projectName: string;
|
|
413
413
|
workspaceId: string;
|
|
414
414
|
workspaceName: string;
|
|
@@ -454,9 +454,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
454
454
|
createdAt: Date;
|
|
455
455
|
updatedAt: Date;
|
|
456
456
|
name: string;
|
|
457
|
+
metadata: Record<string, unknown> | null;
|
|
457
458
|
markdown: string;
|
|
458
459
|
key: string;
|
|
459
|
-
metadata: Record<string, unknown> | null;
|
|
460
460
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
461
461
|
sourceLocator: string | null;
|
|
462
462
|
sourceRef: string | null;
|
|
@@ -474,9 +474,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
474
474
|
createdAt: Date;
|
|
475
475
|
updatedAt: Date;
|
|
476
476
|
name: string;
|
|
477
|
+
metadata: Record<string, unknown> | null;
|
|
477
478
|
markdown: string;
|
|
478
479
|
key: string;
|
|
479
|
-
metadata: Record<string, unknown> | null;
|
|
480
480
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
481
481
|
sourceLocator: string | null;
|
|
482
482
|
sourceRef: string | null;
|
|
@@ -521,9 +521,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
521
521
|
createdAt: Date;
|
|
522
522
|
updatedAt: Date;
|
|
523
523
|
name: string;
|
|
524
|
+
metadata: Record<string, unknown> | null;
|
|
524
525
|
markdown: string;
|
|
525
526
|
key: string;
|
|
526
|
-
metadata: Record<string, unknown> | null;
|
|
527
527
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
528
528
|
sourceLocator: string | null;
|
|
529
529
|
sourceRef: string | null;
|
|
@@ -541,9 +541,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
541
541
|
createdAt: Date;
|
|
542
542
|
updatedAt: Date;
|
|
543
543
|
name: string;
|
|
544
|
+
metadata: Record<string, unknown> | null;
|
|
544
545
|
markdown: string;
|
|
545
546
|
key: string;
|
|
546
|
-
metadata: Record<string, unknown> | null;
|
|
547
547
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
548
548
|
sourceLocator: string | null;
|
|
549
549
|
sourceRef: string | null;
|
|
@@ -562,16 +562,16 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
562
562
|
path: z.ZodNullable<z.ZodString>;
|
|
563
563
|
reason: z.ZodString;
|
|
564
564
|
}, "strip", z.ZodTypeAny, {
|
|
565
|
+
reason: string;
|
|
565
566
|
projectId: string;
|
|
566
567
|
path: string | null;
|
|
567
|
-
reason: string;
|
|
568
568
|
projectName: string;
|
|
569
569
|
workspaceId: string | null;
|
|
570
570
|
workspaceName: string | null;
|
|
571
571
|
}, {
|
|
572
|
+
reason: string;
|
|
572
573
|
projectId: string;
|
|
573
574
|
path: string | null;
|
|
574
|
-
reason: string;
|
|
575
575
|
projectName: string;
|
|
576
576
|
workspaceId: string | null;
|
|
577
577
|
workspaceName: string | null;
|
|
@@ -589,11 +589,11 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
589
589
|
existingSourceLocator: z.ZodNullable<z.ZodString>;
|
|
590
590
|
reason: z.ZodString;
|
|
591
591
|
}, "strip", z.ZodTypeAny, {
|
|
592
|
+
reason: string;
|
|
592
593
|
projectId: string;
|
|
593
594
|
path: string;
|
|
594
595
|
slug: string;
|
|
595
596
|
key: string;
|
|
596
|
-
reason: string;
|
|
597
597
|
projectName: string;
|
|
598
598
|
workspaceId: string;
|
|
599
599
|
workspaceName: string;
|
|
@@ -601,11 +601,11 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
601
601
|
existingSkillKey: string;
|
|
602
602
|
existingSourceLocator: string | null;
|
|
603
603
|
}, {
|
|
604
|
+
reason: string;
|
|
604
605
|
projectId: string;
|
|
605
606
|
path: string;
|
|
606
607
|
slug: string;
|
|
607
608
|
key: string;
|
|
608
|
-
reason: string;
|
|
609
609
|
projectName: string;
|
|
610
610
|
workspaceId: string;
|
|
611
611
|
workspaceName: string;
|
|
@@ -623,9 +623,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
623
623
|
createdAt: Date;
|
|
624
624
|
updatedAt: Date;
|
|
625
625
|
name: string;
|
|
626
|
+
metadata: Record<string, unknown> | null;
|
|
626
627
|
markdown: string;
|
|
627
628
|
key: string;
|
|
628
|
-
metadata: Record<string, unknown> | null;
|
|
629
629
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
630
630
|
sourceLocator: string | null;
|
|
631
631
|
sourceRef: string | null;
|
|
@@ -637,9 +637,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
637
637
|
}[];
|
|
638
638
|
}[];
|
|
639
639
|
skipped: {
|
|
640
|
+
reason: string;
|
|
640
641
|
projectId: string;
|
|
641
642
|
path: string | null;
|
|
642
|
-
reason: string;
|
|
643
643
|
projectName: string;
|
|
644
644
|
workspaceId: string | null;
|
|
645
645
|
workspaceName: string | null;
|
|
@@ -652,9 +652,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
652
652
|
createdAt: Date;
|
|
653
653
|
updatedAt: Date;
|
|
654
654
|
name: string;
|
|
655
|
+
metadata: Record<string, unknown> | null;
|
|
655
656
|
markdown: string;
|
|
656
657
|
key: string;
|
|
657
|
-
metadata: Record<string, unknown> | null;
|
|
658
658
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
659
659
|
sourceLocator: string | null;
|
|
660
660
|
sourceRef: string | null;
|
|
@@ -670,11 +670,11 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
670
670
|
scannedWorkspaces: number;
|
|
671
671
|
discovered: number;
|
|
672
672
|
conflicts: {
|
|
673
|
+
reason: string;
|
|
673
674
|
projectId: string;
|
|
674
675
|
path: string;
|
|
675
676
|
slug: string;
|
|
676
677
|
key: string;
|
|
677
|
-
reason: string;
|
|
678
678
|
projectName: string;
|
|
679
679
|
workspaceId: string;
|
|
680
680
|
workspaceName: string;
|
|
@@ -691,9 +691,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
691
691
|
createdAt: Date;
|
|
692
692
|
updatedAt: Date;
|
|
693
693
|
name: string;
|
|
694
|
+
metadata: Record<string, unknown> | null;
|
|
694
695
|
markdown: string;
|
|
695
696
|
key: string;
|
|
696
|
-
metadata: Record<string, unknown> | null;
|
|
697
697
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
698
698
|
sourceLocator: string | null;
|
|
699
699
|
sourceRef: string | null;
|
|
@@ -705,9 +705,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
705
705
|
}[] | undefined;
|
|
706
706
|
}[];
|
|
707
707
|
skipped: {
|
|
708
|
+
reason: string;
|
|
708
709
|
projectId: string;
|
|
709
710
|
path: string | null;
|
|
710
|
-
reason: string;
|
|
711
711
|
projectName: string;
|
|
712
712
|
workspaceId: string | null;
|
|
713
713
|
workspaceName: string | null;
|
|
@@ -720,9 +720,9 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
720
720
|
createdAt: Date;
|
|
721
721
|
updatedAt: Date;
|
|
722
722
|
name: string;
|
|
723
|
+
metadata: Record<string, unknown> | null;
|
|
723
724
|
markdown: string;
|
|
724
725
|
key: string;
|
|
725
|
-
metadata: Record<string, unknown> | null;
|
|
726
726
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
727
727
|
sourceLocator: string | null;
|
|
728
728
|
sourceRef: string | null;
|
|
@@ -738,11 +738,11 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
738
738
|
scannedWorkspaces: number;
|
|
739
739
|
discovered: number;
|
|
740
740
|
conflicts: {
|
|
741
|
+
reason: string;
|
|
741
742
|
projectId: string;
|
|
742
743
|
path: string;
|
|
743
744
|
slug: string;
|
|
744
745
|
key: string;
|
|
745
|
-
reason: string;
|
|
746
746
|
projectName: string;
|
|
747
747
|
workspaceId: string;
|
|
748
748
|
workspaceName: string;
|
|
@@ -763,12 +763,12 @@ export declare const organizationSkillLocalScanSkippedSchema: z.ZodObject<{
|
|
|
763
763
|
path: z.ZodNullable<z.ZodString>;
|
|
764
764
|
reason: z.ZodString;
|
|
765
765
|
}, "strip", z.ZodTypeAny, {
|
|
766
|
-
path: string | null;
|
|
767
766
|
reason: string;
|
|
767
|
+
path: string | null;
|
|
768
768
|
root: string;
|
|
769
769
|
}, {
|
|
770
|
-
path: string | null;
|
|
771
770
|
reason: string;
|
|
771
|
+
path: string | null;
|
|
772
772
|
root: string;
|
|
773
773
|
}>;
|
|
774
774
|
export declare const organizationSkillLocalScanConflictSchema: z.ZodObject<{
|
|
@@ -781,19 +781,19 @@ export declare const organizationSkillLocalScanConflictSchema: z.ZodObject<{
|
|
|
781
781
|
existingSourceLocator: z.ZodNullable<z.ZodString>;
|
|
782
782
|
reason: z.ZodString;
|
|
783
783
|
}, "strip", z.ZodTypeAny, {
|
|
784
|
+
reason: string;
|
|
784
785
|
path: string;
|
|
785
786
|
slug: string;
|
|
786
787
|
key: string;
|
|
787
|
-
reason: string;
|
|
788
788
|
existingSkillId: string;
|
|
789
789
|
existingSkillKey: string;
|
|
790
790
|
existingSourceLocator: string | null;
|
|
791
791
|
root: string;
|
|
792
792
|
}, {
|
|
793
|
+
reason: string;
|
|
793
794
|
path: string;
|
|
794
795
|
slug: string;
|
|
795
796
|
key: string;
|
|
796
|
-
reason: string;
|
|
797
797
|
existingSkillId: string;
|
|
798
798
|
existingSkillKey: string;
|
|
799
799
|
existingSourceLocator: string | null;
|
|
@@ -836,9 +836,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
836
836
|
createdAt: Date;
|
|
837
837
|
updatedAt: Date;
|
|
838
838
|
name: string;
|
|
839
|
+
metadata: Record<string, unknown> | null;
|
|
839
840
|
markdown: string;
|
|
840
841
|
key: string;
|
|
841
|
-
metadata: Record<string, unknown> | null;
|
|
842
842
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
843
843
|
sourceLocator: string | null;
|
|
844
844
|
sourceRef: string | null;
|
|
@@ -856,9 +856,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
856
856
|
createdAt: Date;
|
|
857
857
|
updatedAt: Date;
|
|
858
858
|
name: string;
|
|
859
|
+
metadata: Record<string, unknown> | null;
|
|
859
860
|
markdown: string;
|
|
860
861
|
key: string;
|
|
861
|
-
metadata: Record<string, unknown> | null;
|
|
862
862
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
863
863
|
sourceLocator: string | null;
|
|
864
864
|
sourceRef: string | null;
|
|
@@ -903,9 +903,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
903
903
|
createdAt: Date;
|
|
904
904
|
updatedAt: Date;
|
|
905
905
|
name: string;
|
|
906
|
+
metadata: Record<string, unknown> | null;
|
|
906
907
|
markdown: string;
|
|
907
908
|
key: string;
|
|
908
|
-
metadata: Record<string, unknown> | null;
|
|
909
909
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
910
910
|
sourceLocator: string | null;
|
|
911
911
|
sourceRef: string | null;
|
|
@@ -923,9 +923,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
923
923
|
createdAt: Date;
|
|
924
924
|
updatedAt: Date;
|
|
925
925
|
name: string;
|
|
926
|
+
metadata: Record<string, unknown> | null;
|
|
926
927
|
markdown: string;
|
|
927
928
|
key: string;
|
|
928
|
-
metadata: Record<string, unknown> | null;
|
|
929
929
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
930
930
|
sourceLocator: string | null;
|
|
931
931
|
sourceRef: string | null;
|
|
@@ -941,12 +941,12 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
941
941
|
path: z.ZodNullable<z.ZodString>;
|
|
942
942
|
reason: z.ZodString;
|
|
943
943
|
}, "strip", z.ZodTypeAny, {
|
|
944
|
-
path: string | null;
|
|
945
944
|
reason: string;
|
|
945
|
+
path: string | null;
|
|
946
946
|
root: string;
|
|
947
947
|
}, {
|
|
948
|
-
path: string | null;
|
|
949
948
|
reason: string;
|
|
949
|
+
path: string | null;
|
|
950
950
|
root: string;
|
|
951
951
|
}>, "many">;
|
|
952
952
|
conflicts: z.ZodArray<z.ZodObject<{
|
|
@@ -959,19 +959,19 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
959
959
|
existingSourceLocator: z.ZodNullable<z.ZodString>;
|
|
960
960
|
reason: z.ZodString;
|
|
961
961
|
}, "strip", z.ZodTypeAny, {
|
|
962
|
+
reason: string;
|
|
962
963
|
path: string;
|
|
963
964
|
slug: string;
|
|
964
965
|
key: string;
|
|
965
|
-
reason: string;
|
|
966
966
|
existingSkillId: string;
|
|
967
967
|
existingSkillKey: string;
|
|
968
968
|
existingSourceLocator: string | null;
|
|
969
969
|
root: string;
|
|
970
970
|
}, {
|
|
971
|
+
reason: string;
|
|
971
972
|
path: string;
|
|
972
973
|
slug: string;
|
|
973
974
|
key: string;
|
|
974
|
-
reason: string;
|
|
975
975
|
existingSkillId: string;
|
|
976
976
|
existingSkillKey: string;
|
|
977
977
|
existingSourceLocator: string | null;
|
|
@@ -987,9 +987,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
987
987
|
createdAt: Date;
|
|
988
988
|
updatedAt: Date;
|
|
989
989
|
name: string;
|
|
990
|
+
metadata: Record<string, unknown> | null;
|
|
990
991
|
markdown: string;
|
|
991
992
|
key: string;
|
|
992
|
-
metadata: Record<string, unknown> | null;
|
|
993
993
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
994
994
|
sourceLocator: string | null;
|
|
995
995
|
sourceRef: string | null;
|
|
@@ -1001,8 +1001,8 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1001
1001
|
}[];
|
|
1002
1002
|
}[];
|
|
1003
1003
|
skipped: {
|
|
1004
|
-
path: string | null;
|
|
1005
1004
|
reason: string;
|
|
1005
|
+
path: string | null;
|
|
1006
1006
|
root: string;
|
|
1007
1007
|
}[];
|
|
1008
1008
|
updated: {
|
|
@@ -1013,9 +1013,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1013
1013
|
createdAt: Date;
|
|
1014
1014
|
updatedAt: Date;
|
|
1015
1015
|
name: string;
|
|
1016
|
+
metadata: Record<string, unknown> | null;
|
|
1016
1017
|
markdown: string;
|
|
1017
1018
|
key: string;
|
|
1018
|
-
metadata: Record<string, unknown> | null;
|
|
1019
1019
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
1020
1020
|
sourceLocator: string | null;
|
|
1021
1021
|
sourceRef: string | null;
|
|
@@ -1029,10 +1029,10 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1029
1029
|
warnings: string[];
|
|
1030
1030
|
discovered: number;
|
|
1031
1031
|
conflicts: {
|
|
1032
|
+
reason: string;
|
|
1032
1033
|
path: string;
|
|
1033
1034
|
slug: string;
|
|
1034
1035
|
key: string;
|
|
1035
|
-
reason: string;
|
|
1036
1036
|
existingSkillId: string;
|
|
1037
1037
|
existingSkillKey: string;
|
|
1038
1038
|
existingSourceLocator: string | null;
|
|
@@ -1048,9 +1048,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1048
1048
|
createdAt: Date;
|
|
1049
1049
|
updatedAt: Date;
|
|
1050
1050
|
name: string;
|
|
1051
|
+
metadata: Record<string, unknown> | null;
|
|
1051
1052
|
markdown: string;
|
|
1052
1053
|
key: string;
|
|
1053
|
-
metadata: Record<string, unknown> | null;
|
|
1054
1054
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
1055
1055
|
sourceLocator: string | null;
|
|
1056
1056
|
sourceRef: string | null;
|
|
@@ -1062,8 +1062,8 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1062
1062
|
}[] | undefined;
|
|
1063
1063
|
}[];
|
|
1064
1064
|
skipped: {
|
|
1065
|
-
path: string | null;
|
|
1066
1065
|
reason: string;
|
|
1066
|
+
path: string | null;
|
|
1067
1067
|
root: string;
|
|
1068
1068
|
}[];
|
|
1069
1069
|
updated: {
|
|
@@ -1074,9 +1074,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1074
1074
|
createdAt: Date;
|
|
1075
1075
|
updatedAt: Date;
|
|
1076
1076
|
name: string;
|
|
1077
|
+
metadata: Record<string, unknown> | null;
|
|
1077
1078
|
markdown: string;
|
|
1078
1079
|
key: string;
|
|
1079
|
-
metadata: Record<string, unknown> | null;
|
|
1080
1080
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
1081
1081
|
sourceLocator: string | null;
|
|
1082
1082
|
sourceRef: string | null;
|
|
@@ -1090,10 +1090,10 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1090
1090
|
warnings: string[];
|
|
1091
1091
|
discovered: number;
|
|
1092
1092
|
conflicts: {
|
|
1093
|
+
reason: string;
|
|
1093
1094
|
path: string;
|
|
1094
1095
|
slug: string;
|
|
1095
1096
|
key: string;
|
|
1096
|
-
reason: string;
|
|
1097
1097
|
existingSkillId: string;
|
|
1098
1098
|
existingSkillKey: string;
|
|
1099
1099
|
existingSourceLocator: string | null;
|
|
@@ -91,12 +91,30 @@ export declare const updateOrganizationBrandingSchema: z.ZodEffects<z.ZodObject<
|
|
|
91
91
|
export type UpdateOrganizationBranding = z.infer<typeof updateOrganizationBrandingSchema>;
|
|
92
92
|
export declare const updateOrganizationWorkspaceFileSchema: z.ZodObject<{
|
|
93
93
|
content: z.ZodString;
|
|
94
|
+
expectedContent: z.ZodOptional<z.ZodString>;
|
|
94
95
|
}, "strip", z.ZodTypeAny, {
|
|
95
96
|
content: string;
|
|
97
|
+
expectedContent?: string | undefined;
|
|
96
98
|
}, {
|
|
97
99
|
content: string;
|
|
100
|
+
expectedContent?: string | undefined;
|
|
98
101
|
}>;
|
|
99
102
|
export type UpdateOrganizationWorkspaceFile = z.infer<typeof updateOrganizationWorkspaceFileSchema>;
|
|
103
|
+
export declare const workspaceWebPreviewNetworkModeSchema: z.ZodEnum<["offline", "connected"]>;
|
|
104
|
+
export declare const createOrganizationWorkspaceWebPreviewSessionSchema: z.ZodObject<{
|
|
105
|
+
entryPath: z.ZodString;
|
|
106
|
+
networkMode: z.ZodEnum<["offline", "connected"]>;
|
|
107
|
+
htmlContent: z.ZodOptional<z.ZodString>;
|
|
108
|
+
}, "strip", z.ZodTypeAny, {
|
|
109
|
+
entryPath: string;
|
|
110
|
+
networkMode: "offline" | "connected";
|
|
111
|
+
htmlContent?: string | undefined;
|
|
112
|
+
}, {
|
|
113
|
+
entryPath: string;
|
|
114
|
+
networkMode: "offline" | "connected";
|
|
115
|
+
htmlContent?: string | undefined;
|
|
116
|
+
}>;
|
|
117
|
+
export type CreateOrganizationWorkspaceWebPreviewSession = z.infer<typeof createOrganizationWorkspaceWebPreviewSessionSchema>;
|
|
100
118
|
export declare const createOrganizationWorkspaceFileSchema: z.ZodObject<{
|
|
101
119
|
filePath: z.ZodString;
|
|
102
120
|
content: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organization.d.ts","sourceRoot":"","sources":["../../src/validators/organization.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB,eAAO,MAAM,0BAA0B,yEAOnC,CAAC;AAEL,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;EAQnC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASjC,CAAC;AAEL,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;EAe1C,CAAC;AAEJ,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AAE1F,eAAO,MAAM,qCAAqC
|
|
1
|
+
{"version":3,"file":"organization.d.ts","sourceRoot":"","sources":["../../src/validators/organization.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB,eAAO,MAAM,0BAA0B,yEAOnC,CAAC;AAEL,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;EAQnC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASjC,CAAC;AAEL,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;EAe1C,CAAC;AAEJ,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AAE1F,eAAO,MAAM,qCAAqC;;;;;;;;;EAGhD,CAAC;AAEH,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAC;AAEpG,eAAO,MAAM,oCAAoC,qCAAmC,CAAC;AAErF,eAAO,MAAM,kDAAkD;;;;;;;;;;;;EAI7D,CAAC;AAEH,MAAM,MAAM,4CAA4C,GAAG,CAAC,CAAC,KAAK,CAChE,OAAO,kDAAkD,CAC1D,CAAC;AAEF,eAAO,MAAM,qCAAqC;;;;;;;;;EAGhD,CAAC;AAEH,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAC;AAEpG,eAAO,MAAM,0CAA0C;;;;;;EAErD,CAAC;AAEH,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0CAA0C,CAAC,CAAC;AAE9G,eAAO,MAAM,sCAAsC;;;;;;EAEjD,CAAC;AAEH,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sCAAsC,CAAC,CAAC;AAEtG,eAAO,MAAM,oCAAoC;;;;;;EAE/C,CAAC;AAEH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oCAAoC,CAAC,CAAC;AAElG,eAAO,MAAM,oCAAoC;;;;;;EAE/C,CAAC;AAEH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oCAAoC,CAAC,CAAC"}
|
|
@@ -44,6 +44,13 @@ export const updateOrganizationBrandingSchema = z
|
|
|
44
44
|
|| value.logoAssetId !== undefined, "At least one branding field must be provided");
|
|
45
45
|
export const updateOrganizationWorkspaceFileSchema = z.object({
|
|
46
46
|
content: z.string(),
|
|
47
|
+
expectedContent: z.string().optional(),
|
|
48
|
+
});
|
|
49
|
+
export const workspaceWebPreviewNetworkModeSchema = z.enum(["offline", "connected"]);
|
|
50
|
+
export const createOrganizationWorkspaceWebPreviewSessionSchema = z.object({
|
|
51
|
+
entryPath: z.string().trim().min(1).max(1000),
|
|
52
|
+
networkMode: workspaceWebPreviewNetworkModeSchema,
|
|
53
|
+
htmlContent: z.string().optional(),
|
|
47
54
|
});
|
|
48
55
|
export const createOrganizationWorkspaceFileSchema = z.object({
|
|
49
56
|
filePath: z.string().trim().min(1).max(1000),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organization.js","sourceRoot":"","sources":["../../src/validators/organization.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"organization.js","sourceRoot":"","sources":["../../src/validators/organization.ts"],"names":[],"mappings":"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"}
|
|
@@ -1088,10 +1088,10 @@ export declare const updatePluginStatusSchema: z.ZodObject<{
|
|
|
1088
1088
|
status: z.ZodEnum<["installed", "ready", "disabled", "error", "upgrade_pending", "uninstalled"]>;
|
|
1089
1089
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1090
1090
|
}, "strip", z.ZodTypeAny, {
|
|
1091
|
-
status: "
|
|
1091
|
+
status: "ready" | "disabled" | "error" | "installed" | "upgrade_pending" | "uninstalled";
|
|
1092
1092
|
lastError?: string | null | undefined;
|
|
1093
1093
|
}, {
|
|
1094
|
-
status: "
|
|
1094
|
+
status: "ready" | "disabled" | "error" | "installed" | "upgrade_pending" | "uninstalled";
|
|
1095
1095
|
lastError?: string | null | undefined;
|
|
1096
1096
|
}>;
|
|
1097
1097
|
export type UpdatePluginStatus = z.infer<typeof updatePluginStatusSchema>;
|