@rudderhq/shared 0.4.2-canary.0 → 0.4.2-canary.2
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/constants.d.ts +12 -0
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +6 -0
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/organization-skill-reference.d.ts +1 -1
- package/dist/organization-skill-reference.d.ts.map +1 -1
- package/dist/organization-skill-reference.js +0 -2
- package/dist/organization-skill-reference.js.map +1 -1
- package/dist/types/custom-integration.d.ts +68 -0
- package/dist/types/custom-integration.d.ts.map +1 -0
- package/dist/types/custom-integration.js +2 -0
- package/dist/types/custom-integration.js.map +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/validators/automation.d.ts +12 -12
- package/dist/validators/budget.d.ts +2 -2
- package/dist/validators/calendar.d.ts +32 -32
- package/dist/validators/chat.d.ts +15 -15
- package/dist/validators/custom-integration.d.ts +135 -0
- package/dist/validators/custom-integration.d.ts.map +1 -0
- package/dist/validators/custom-integration.js +45 -0
- package/dist/validators/custom-integration.js.map +1 -0
- package/dist/validators/finance.d.ts +4 -4
- package/dist/validators/goal.d.ts +9 -9
- 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/issue.d.ts +3 -3
- package/dist/validators/organization-portability.d.ts +91 -91
- package/dist/validators/organization-skill.d.ts +72 -72
- package/dist/validators/organization.d.ts +6 -6
- package/dist/validators/plugin.d.ts +86 -86
- package/dist/validators/project.d.ts +3 -3
- package/dist/validators/resource.d.ts +4 -4
- package/dist/validators/secret.d.ts +18 -18
- package/dist/validators/work-product.d.ts +4 -4
- package/package.json +1 -1
|
@@ -42,14 +42,14 @@ export declare const organizationSkillSchema: z.ZodObject<{
|
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
id: string;
|
|
44
44
|
orgId: string;
|
|
45
|
+
slug: string;
|
|
46
|
+
description: string | null;
|
|
45
47
|
createdAt: Date;
|
|
46
48
|
updatedAt: Date;
|
|
47
49
|
name: string;
|
|
48
|
-
description: string | null;
|
|
49
50
|
markdown: string;
|
|
50
51
|
key: string;
|
|
51
52
|
metadata: Record<string, unknown> | null;
|
|
52
|
-
slug: string;
|
|
53
53
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
54
54
|
sourceLocator: string | null;
|
|
55
55
|
sourceRef: string | null;
|
|
@@ -62,14 +62,14 @@ export declare const organizationSkillSchema: z.ZodObject<{
|
|
|
62
62
|
}, {
|
|
63
63
|
id: string;
|
|
64
64
|
orgId: string;
|
|
65
|
+
slug: string;
|
|
66
|
+
description: string | null;
|
|
65
67
|
createdAt: Date;
|
|
66
68
|
updatedAt: Date;
|
|
67
69
|
name: string;
|
|
68
|
-
description: string | null;
|
|
69
70
|
markdown: string;
|
|
70
71
|
key: string;
|
|
71
72
|
metadata: Record<string, unknown> | null;
|
|
72
|
-
slug: string;
|
|
73
73
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
74
74
|
sourceLocator: string | null;
|
|
75
75
|
sourceRef: string | null;
|
|
@@ -117,16 +117,16 @@ export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
|
117
117
|
}, "strip", z.ZodTypeAny, {
|
|
118
118
|
id: string;
|
|
119
119
|
orgId: string;
|
|
120
|
+
slug: string;
|
|
121
|
+
description: string | null;
|
|
120
122
|
createdAt: Date;
|
|
121
123
|
updatedAt: Date;
|
|
122
124
|
name: string;
|
|
123
|
-
description: string | null;
|
|
124
125
|
markdown: string;
|
|
125
126
|
key: string;
|
|
126
127
|
sourcePath: string | null;
|
|
127
128
|
workspaceEditPath: string | null;
|
|
128
129
|
metadata: Record<string, unknown> | null;
|
|
129
|
-
slug: string;
|
|
130
130
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
131
131
|
sourceLocator: string | null;
|
|
132
132
|
sourceRef: string | null;
|
|
@@ -144,16 +144,16 @@ export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
|
144
144
|
}, {
|
|
145
145
|
id: string;
|
|
146
146
|
orgId: string;
|
|
147
|
+
slug: string;
|
|
148
|
+
description: string | null;
|
|
147
149
|
createdAt: Date;
|
|
148
150
|
updatedAt: Date;
|
|
149
151
|
name: string;
|
|
150
|
-
description: string | null;
|
|
151
152
|
markdown: string;
|
|
152
153
|
key: string;
|
|
153
154
|
sourcePath: string | null;
|
|
154
155
|
workspaceEditPath: string | null;
|
|
155
156
|
metadata: Record<string, unknown> | null;
|
|
156
|
-
slug: string;
|
|
157
157
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
158
158
|
sourceLocator: string | null;
|
|
159
159
|
sourceRef: string | null;
|
|
@@ -250,16 +250,16 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
250
250
|
}, "strip", z.ZodTypeAny, {
|
|
251
251
|
id: string;
|
|
252
252
|
orgId: string;
|
|
253
|
+
slug: string;
|
|
254
|
+
description: string | null;
|
|
253
255
|
createdAt: Date;
|
|
254
256
|
updatedAt: Date;
|
|
255
257
|
name: string;
|
|
256
|
-
description: string | null;
|
|
257
258
|
markdown: string;
|
|
258
259
|
key: string;
|
|
259
260
|
sourcePath: string | null;
|
|
260
261
|
workspaceEditPath: string | null;
|
|
261
262
|
metadata: Record<string, unknown> | null;
|
|
262
|
-
slug: string;
|
|
263
263
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
264
264
|
sourceLocator: string | null;
|
|
265
265
|
sourceRef: string | null;
|
|
@@ -285,16 +285,16 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
285
285
|
}, {
|
|
286
286
|
id: string;
|
|
287
287
|
orgId: string;
|
|
288
|
+
slug: string;
|
|
289
|
+
description: string | null;
|
|
288
290
|
createdAt: Date;
|
|
289
291
|
updatedAt: Date;
|
|
290
292
|
name: string;
|
|
291
|
-
description: string | null;
|
|
292
293
|
markdown: string;
|
|
293
294
|
key: string;
|
|
294
295
|
sourcePath: string | null;
|
|
295
296
|
workspaceEditPath: string | null;
|
|
296
297
|
metadata: Record<string, unknown> | null;
|
|
297
|
-
slug: string;
|
|
298
298
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
299
299
|
sourceLocator: string | null;
|
|
300
300
|
sourceRef: string | null;
|
|
@@ -365,15 +365,15 @@ export declare const organizationSkillProjectScanSkippedSchema: z.ZodObject<{
|
|
|
365
365
|
path: z.ZodNullable<z.ZodString>;
|
|
366
366
|
reason: z.ZodString;
|
|
367
367
|
}, "strip", z.ZodTypeAny, {
|
|
368
|
-
projectId: string;
|
|
369
368
|
path: string | null;
|
|
369
|
+
projectId: string;
|
|
370
370
|
reason: string;
|
|
371
371
|
projectName: string;
|
|
372
372
|
workspaceId: string | null;
|
|
373
373
|
workspaceName: string | null;
|
|
374
374
|
}, {
|
|
375
|
-
projectId: string;
|
|
376
375
|
path: string | null;
|
|
376
|
+
projectId: string;
|
|
377
377
|
reason: string;
|
|
378
378
|
projectName: string;
|
|
379
379
|
workspaceId: string | null;
|
|
@@ -392,10 +392,10 @@ export declare const organizationSkillProjectScanConflictSchema: z.ZodObject<{
|
|
|
392
392
|
existingSourceLocator: z.ZodNullable<z.ZodString>;
|
|
393
393
|
reason: z.ZodString;
|
|
394
394
|
}, "strip", z.ZodTypeAny, {
|
|
395
|
-
|
|
395
|
+
slug: string;
|
|
396
396
|
path: string;
|
|
397
|
+
projectId: string;
|
|
397
398
|
key: string;
|
|
398
|
-
slug: string;
|
|
399
399
|
reason: string;
|
|
400
400
|
projectName: string;
|
|
401
401
|
workspaceId: string;
|
|
@@ -404,10 +404,10 @@ export declare const organizationSkillProjectScanConflictSchema: z.ZodObject<{
|
|
|
404
404
|
existingSkillKey: string;
|
|
405
405
|
existingSourceLocator: string | null;
|
|
406
406
|
}, {
|
|
407
|
-
|
|
407
|
+
slug: string;
|
|
408
408
|
path: string;
|
|
409
|
+
projectId: string;
|
|
409
410
|
key: string;
|
|
410
|
-
slug: string;
|
|
411
411
|
reason: string;
|
|
412
412
|
projectName: string;
|
|
413
413
|
workspaceId: string;
|
|
@@ -449,14 +449,14 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
449
449
|
}, "strip", z.ZodTypeAny, {
|
|
450
450
|
id: string;
|
|
451
451
|
orgId: string;
|
|
452
|
+
slug: string;
|
|
453
|
+
description: string | null;
|
|
452
454
|
createdAt: Date;
|
|
453
455
|
updatedAt: Date;
|
|
454
456
|
name: string;
|
|
455
|
-
description: string | null;
|
|
456
457
|
markdown: string;
|
|
457
458
|
key: string;
|
|
458
459
|
metadata: Record<string, unknown> | null;
|
|
459
|
-
slug: string;
|
|
460
460
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
461
461
|
sourceLocator: string | null;
|
|
462
462
|
sourceRef: string | null;
|
|
@@ -469,14 +469,14 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
469
469
|
}, {
|
|
470
470
|
id: string;
|
|
471
471
|
orgId: string;
|
|
472
|
+
slug: string;
|
|
473
|
+
description: string | null;
|
|
472
474
|
createdAt: Date;
|
|
473
475
|
updatedAt: Date;
|
|
474
476
|
name: string;
|
|
475
|
-
description: string | null;
|
|
476
477
|
markdown: string;
|
|
477
478
|
key: string;
|
|
478
479
|
metadata: Record<string, unknown> | null;
|
|
479
|
-
slug: string;
|
|
480
480
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
481
481
|
sourceLocator: string | null;
|
|
482
482
|
sourceRef: string | null;
|
|
@@ -516,14 +516,14 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
516
516
|
}, "strip", z.ZodTypeAny, {
|
|
517
517
|
id: string;
|
|
518
518
|
orgId: string;
|
|
519
|
+
slug: string;
|
|
520
|
+
description: string | null;
|
|
519
521
|
createdAt: Date;
|
|
520
522
|
updatedAt: Date;
|
|
521
523
|
name: string;
|
|
522
|
-
description: string | null;
|
|
523
524
|
markdown: string;
|
|
524
525
|
key: string;
|
|
525
526
|
metadata: Record<string, unknown> | null;
|
|
526
|
-
slug: string;
|
|
527
527
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
528
528
|
sourceLocator: string | null;
|
|
529
529
|
sourceRef: string | null;
|
|
@@ -536,14 +536,14 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
536
536
|
}, {
|
|
537
537
|
id: string;
|
|
538
538
|
orgId: string;
|
|
539
|
+
slug: string;
|
|
540
|
+
description: string | null;
|
|
539
541
|
createdAt: Date;
|
|
540
542
|
updatedAt: Date;
|
|
541
543
|
name: string;
|
|
542
|
-
description: string | null;
|
|
543
544
|
markdown: string;
|
|
544
545
|
key: string;
|
|
545
546
|
metadata: Record<string, unknown> | null;
|
|
546
|
-
slug: string;
|
|
547
547
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
548
548
|
sourceLocator: string | null;
|
|
549
549
|
sourceRef: string | null;
|
|
@@ -562,15 +562,15 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
562
562
|
path: z.ZodNullable<z.ZodString>;
|
|
563
563
|
reason: z.ZodString;
|
|
564
564
|
}, "strip", z.ZodTypeAny, {
|
|
565
|
-
projectId: string;
|
|
566
565
|
path: string | null;
|
|
566
|
+
projectId: string;
|
|
567
567
|
reason: string;
|
|
568
568
|
projectName: string;
|
|
569
569
|
workspaceId: string | null;
|
|
570
570
|
workspaceName: string | null;
|
|
571
571
|
}, {
|
|
572
|
-
projectId: string;
|
|
573
572
|
path: string | null;
|
|
573
|
+
projectId: string;
|
|
574
574
|
reason: string;
|
|
575
575
|
projectName: string;
|
|
576
576
|
workspaceId: string | null;
|
|
@@ -589,10 +589,10 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
589
589
|
existingSourceLocator: z.ZodNullable<z.ZodString>;
|
|
590
590
|
reason: z.ZodString;
|
|
591
591
|
}, "strip", z.ZodTypeAny, {
|
|
592
|
-
|
|
592
|
+
slug: string;
|
|
593
593
|
path: string;
|
|
594
|
+
projectId: string;
|
|
594
595
|
key: string;
|
|
595
|
-
slug: string;
|
|
596
596
|
reason: string;
|
|
597
597
|
projectName: string;
|
|
598
598
|
workspaceId: string;
|
|
@@ -601,10 +601,10 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
601
601
|
existingSkillKey: string;
|
|
602
602
|
existingSourceLocator: string | null;
|
|
603
603
|
}, {
|
|
604
|
-
|
|
604
|
+
slug: string;
|
|
605
605
|
path: string;
|
|
606
|
+
projectId: string;
|
|
606
607
|
key: string;
|
|
607
|
-
slug: string;
|
|
608
608
|
reason: string;
|
|
609
609
|
projectName: string;
|
|
610
610
|
workspaceId: string;
|
|
@@ -618,14 +618,14 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
618
618
|
imported: {
|
|
619
619
|
id: string;
|
|
620
620
|
orgId: string;
|
|
621
|
+
slug: string;
|
|
622
|
+
description: string | null;
|
|
621
623
|
createdAt: Date;
|
|
622
624
|
updatedAt: Date;
|
|
623
625
|
name: string;
|
|
624
|
-
description: string | null;
|
|
625
626
|
markdown: string;
|
|
626
627
|
key: string;
|
|
627
628
|
metadata: Record<string, unknown> | null;
|
|
628
|
-
slug: string;
|
|
629
629
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
630
630
|
sourceLocator: string | null;
|
|
631
631
|
sourceRef: string | null;
|
|
@@ -637,8 +637,8 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
637
637
|
}[];
|
|
638
638
|
}[];
|
|
639
639
|
skipped: {
|
|
640
|
-
projectId: string;
|
|
641
640
|
path: string | null;
|
|
641
|
+
projectId: string;
|
|
642
642
|
reason: string;
|
|
643
643
|
projectName: string;
|
|
644
644
|
workspaceId: string | null;
|
|
@@ -647,14 +647,14 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
647
647
|
updated: {
|
|
648
648
|
id: string;
|
|
649
649
|
orgId: string;
|
|
650
|
+
slug: string;
|
|
651
|
+
description: string | null;
|
|
650
652
|
createdAt: Date;
|
|
651
653
|
updatedAt: Date;
|
|
652
654
|
name: string;
|
|
653
|
-
description: string | null;
|
|
654
655
|
markdown: string;
|
|
655
656
|
key: string;
|
|
656
657
|
metadata: Record<string, unknown> | null;
|
|
657
|
-
slug: string;
|
|
658
658
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
659
659
|
sourceLocator: string | null;
|
|
660
660
|
sourceRef: string | null;
|
|
@@ -670,10 +670,10 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
670
670
|
scannedWorkspaces: number;
|
|
671
671
|
discovered: number;
|
|
672
672
|
conflicts: {
|
|
673
|
-
|
|
673
|
+
slug: string;
|
|
674
674
|
path: string;
|
|
675
|
+
projectId: string;
|
|
675
676
|
key: string;
|
|
676
|
-
slug: string;
|
|
677
677
|
reason: string;
|
|
678
678
|
projectName: string;
|
|
679
679
|
workspaceId: string;
|
|
@@ -686,14 +686,14 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
686
686
|
imported: {
|
|
687
687
|
id: string;
|
|
688
688
|
orgId: string;
|
|
689
|
+
slug: string;
|
|
690
|
+
description: string | null;
|
|
689
691
|
createdAt: Date;
|
|
690
692
|
updatedAt: Date;
|
|
691
693
|
name: string;
|
|
692
|
-
description: string | null;
|
|
693
694
|
markdown: string;
|
|
694
695
|
key: string;
|
|
695
696
|
metadata: Record<string, unknown> | null;
|
|
696
|
-
slug: string;
|
|
697
697
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
698
698
|
sourceLocator: string | null;
|
|
699
699
|
sourceRef: string | null;
|
|
@@ -705,8 +705,8 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
705
705
|
}[] | undefined;
|
|
706
706
|
}[];
|
|
707
707
|
skipped: {
|
|
708
|
-
projectId: string;
|
|
709
708
|
path: string | null;
|
|
709
|
+
projectId: string;
|
|
710
710
|
reason: string;
|
|
711
711
|
projectName: string;
|
|
712
712
|
workspaceId: string | null;
|
|
@@ -715,14 +715,14 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
715
715
|
updated: {
|
|
716
716
|
id: string;
|
|
717
717
|
orgId: string;
|
|
718
|
+
slug: string;
|
|
719
|
+
description: string | null;
|
|
718
720
|
createdAt: Date;
|
|
719
721
|
updatedAt: Date;
|
|
720
722
|
name: string;
|
|
721
|
-
description: string | null;
|
|
722
723
|
markdown: string;
|
|
723
724
|
key: string;
|
|
724
725
|
metadata: Record<string, unknown> | null;
|
|
725
|
-
slug: string;
|
|
726
726
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
727
727
|
sourceLocator: string | null;
|
|
728
728
|
sourceRef: string | null;
|
|
@@ -738,10 +738,10 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
738
738
|
scannedWorkspaces: number;
|
|
739
739
|
discovered: number;
|
|
740
740
|
conflicts: {
|
|
741
|
-
|
|
741
|
+
slug: string;
|
|
742
742
|
path: string;
|
|
743
|
+
projectId: string;
|
|
743
744
|
key: string;
|
|
744
|
-
slug: string;
|
|
745
745
|
reason: string;
|
|
746
746
|
projectName: string;
|
|
747
747
|
workspaceId: string;
|
|
@@ -781,18 +781,18 @@ export declare const organizationSkillLocalScanConflictSchema: z.ZodObject<{
|
|
|
781
781
|
existingSourceLocator: z.ZodNullable<z.ZodString>;
|
|
782
782
|
reason: z.ZodString;
|
|
783
783
|
}, "strip", z.ZodTypeAny, {
|
|
784
|
+
slug: string;
|
|
784
785
|
path: string;
|
|
785
786
|
key: string;
|
|
786
|
-
slug: string;
|
|
787
787
|
reason: string;
|
|
788
788
|
existingSkillId: string;
|
|
789
789
|
existingSkillKey: string;
|
|
790
790
|
existingSourceLocator: string | null;
|
|
791
791
|
root: string;
|
|
792
792
|
}, {
|
|
793
|
+
slug: string;
|
|
793
794
|
path: string;
|
|
794
795
|
key: string;
|
|
795
|
-
slug: string;
|
|
796
796
|
reason: string;
|
|
797
797
|
existingSkillId: string;
|
|
798
798
|
existingSkillKey: string;
|
|
@@ -831,14 +831,14 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
831
831
|
}, "strip", z.ZodTypeAny, {
|
|
832
832
|
id: string;
|
|
833
833
|
orgId: string;
|
|
834
|
+
slug: string;
|
|
835
|
+
description: string | null;
|
|
834
836
|
createdAt: Date;
|
|
835
837
|
updatedAt: Date;
|
|
836
838
|
name: string;
|
|
837
|
-
description: string | null;
|
|
838
839
|
markdown: string;
|
|
839
840
|
key: string;
|
|
840
841
|
metadata: Record<string, unknown> | null;
|
|
841
|
-
slug: string;
|
|
842
842
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
843
843
|
sourceLocator: string | null;
|
|
844
844
|
sourceRef: string | null;
|
|
@@ -851,14 +851,14 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
851
851
|
}, {
|
|
852
852
|
id: string;
|
|
853
853
|
orgId: string;
|
|
854
|
+
slug: string;
|
|
855
|
+
description: string | null;
|
|
854
856
|
createdAt: Date;
|
|
855
857
|
updatedAt: Date;
|
|
856
858
|
name: string;
|
|
857
|
-
description: string | null;
|
|
858
859
|
markdown: string;
|
|
859
860
|
key: string;
|
|
860
861
|
metadata: Record<string, unknown> | null;
|
|
861
|
-
slug: string;
|
|
862
862
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
863
863
|
sourceLocator: string | null;
|
|
864
864
|
sourceRef: string | null;
|
|
@@ -898,14 +898,14 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
898
898
|
}, "strip", z.ZodTypeAny, {
|
|
899
899
|
id: string;
|
|
900
900
|
orgId: string;
|
|
901
|
+
slug: string;
|
|
902
|
+
description: string | null;
|
|
901
903
|
createdAt: Date;
|
|
902
904
|
updatedAt: Date;
|
|
903
905
|
name: string;
|
|
904
|
-
description: string | null;
|
|
905
906
|
markdown: string;
|
|
906
907
|
key: string;
|
|
907
908
|
metadata: Record<string, unknown> | null;
|
|
908
|
-
slug: string;
|
|
909
909
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
910
910
|
sourceLocator: string | null;
|
|
911
911
|
sourceRef: string | null;
|
|
@@ -918,14 +918,14 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
918
918
|
}, {
|
|
919
919
|
id: string;
|
|
920
920
|
orgId: string;
|
|
921
|
+
slug: string;
|
|
922
|
+
description: string | null;
|
|
921
923
|
createdAt: Date;
|
|
922
924
|
updatedAt: Date;
|
|
923
925
|
name: string;
|
|
924
|
-
description: string | null;
|
|
925
926
|
markdown: string;
|
|
926
927
|
key: string;
|
|
927
928
|
metadata: Record<string, unknown> | null;
|
|
928
|
-
slug: string;
|
|
929
929
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
930
930
|
sourceLocator: string | null;
|
|
931
931
|
sourceRef: string | null;
|
|
@@ -959,18 +959,18 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
959
959
|
existingSourceLocator: z.ZodNullable<z.ZodString>;
|
|
960
960
|
reason: z.ZodString;
|
|
961
961
|
}, "strip", z.ZodTypeAny, {
|
|
962
|
+
slug: string;
|
|
962
963
|
path: string;
|
|
963
964
|
key: string;
|
|
964
|
-
slug: string;
|
|
965
965
|
reason: string;
|
|
966
966
|
existingSkillId: string;
|
|
967
967
|
existingSkillKey: string;
|
|
968
968
|
existingSourceLocator: string | null;
|
|
969
969
|
root: string;
|
|
970
970
|
}, {
|
|
971
|
+
slug: string;
|
|
971
972
|
path: string;
|
|
972
973
|
key: string;
|
|
973
|
-
slug: string;
|
|
974
974
|
reason: string;
|
|
975
975
|
existingSkillId: string;
|
|
976
976
|
existingSkillKey: string;
|
|
@@ -982,14 +982,14 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
982
982
|
imported: {
|
|
983
983
|
id: string;
|
|
984
984
|
orgId: string;
|
|
985
|
+
slug: string;
|
|
986
|
+
description: string | null;
|
|
985
987
|
createdAt: Date;
|
|
986
988
|
updatedAt: Date;
|
|
987
989
|
name: string;
|
|
988
|
-
description: string | null;
|
|
989
990
|
markdown: string;
|
|
990
991
|
key: string;
|
|
991
992
|
metadata: Record<string, unknown> | null;
|
|
992
|
-
slug: string;
|
|
993
993
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
994
994
|
sourceLocator: string | null;
|
|
995
995
|
sourceRef: string | null;
|
|
@@ -1008,14 +1008,14 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1008
1008
|
updated: {
|
|
1009
1009
|
id: string;
|
|
1010
1010
|
orgId: string;
|
|
1011
|
+
slug: string;
|
|
1012
|
+
description: string | null;
|
|
1011
1013
|
createdAt: Date;
|
|
1012
1014
|
updatedAt: Date;
|
|
1013
1015
|
name: string;
|
|
1014
|
-
description: string | null;
|
|
1015
1016
|
markdown: string;
|
|
1016
1017
|
key: string;
|
|
1017
1018
|
metadata: Record<string, unknown> | null;
|
|
1018
|
-
slug: string;
|
|
1019
1019
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
1020
1020
|
sourceLocator: string | null;
|
|
1021
1021
|
sourceRef: string | null;
|
|
@@ -1029,9 +1029,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1029
1029
|
warnings: string[];
|
|
1030
1030
|
discovered: number;
|
|
1031
1031
|
conflicts: {
|
|
1032
|
+
slug: string;
|
|
1032
1033
|
path: string;
|
|
1033
1034
|
key: string;
|
|
1034
|
-
slug: string;
|
|
1035
1035
|
reason: string;
|
|
1036
1036
|
existingSkillId: string;
|
|
1037
1037
|
existingSkillKey: string;
|
|
@@ -1043,14 +1043,14 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1043
1043
|
imported: {
|
|
1044
1044
|
id: string;
|
|
1045
1045
|
orgId: string;
|
|
1046
|
+
slug: string;
|
|
1047
|
+
description: string | null;
|
|
1046
1048
|
createdAt: Date;
|
|
1047
1049
|
updatedAt: Date;
|
|
1048
1050
|
name: string;
|
|
1049
|
-
description: string | null;
|
|
1050
1051
|
markdown: string;
|
|
1051
1052
|
key: string;
|
|
1052
1053
|
metadata: Record<string, unknown> | null;
|
|
1053
|
-
slug: string;
|
|
1054
1054
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
1055
1055
|
sourceLocator: string | null;
|
|
1056
1056
|
sourceRef: string | null;
|
|
@@ -1069,14 +1069,14 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1069
1069
|
updated: {
|
|
1070
1070
|
id: string;
|
|
1071
1071
|
orgId: string;
|
|
1072
|
+
slug: string;
|
|
1073
|
+
description: string | null;
|
|
1072
1074
|
createdAt: Date;
|
|
1073
1075
|
updatedAt: Date;
|
|
1074
1076
|
name: string;
|
|
1075
|
-
description: string | null;
|
|
1076
1077
|
markdown: string;
|
|
1077
1078
|
key: string;
|
|
1078
1079
|
metadata: Record<string, unknown> | null;
|
|
1079
|
-
slug: string;
|
|
1080
1080
|
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
1081
1081
|
sourceLocator: string | null;
|
|
1082
1082
|
sourceRef: string | null;
|
|
@@ -1090,9 +1090,9 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1090
1090
|
warnings: string[];
|
|
1091
1091
|
discovered: number;
|
|
1092
1092
|
conflicts: {
|
|
1093
|
+
slug: string;
|
|
1093
1094
|
path: string;
|
|
1094
1095
|
key: string;
|
|
1095
|
-
slug: string;
|
|
1096
1096
|
reason: string;
|
|
1097
1097
|
existingSkillId: string;
|
|
1098
1098
|
existingSkillKey: string;
|
|
@@ -1108,14 +1108,14 @@ export declare const organizationSkillCreateSchema: z.ZodObject<{
|
|
|
1108
1108
|
markdown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1109
1109
|
}, "strip", z.ZodTypeAny, {
|
|
1110
1110
|
name: string;
|
|
1111
|
+
slug?: string | null | undefined;
|
|
1111
1112
|
description?: string | null | undefined;
|
|
1112
1113
|
markdown?: string | null | undefined;
|
|
1113
|
-
slug?: string | null | undefined;
|
|
1114
1114
|
}, {
|
|
1115
1115
|
name: string;
|
|
1116
|
+
slug?: string | null | undefined;
|
|
1116
1117
|
description?: string | null | undefined;
|
|
1117
1118
|
markdown?: string | null | undefined;
|
|
1118
|
-
slug?: string | null | undefined;
|
|
1119
1119
|
}>;
|
|
1120
1120
|
export declare const organizationSkillFileDetailSchema: z.ZodObject<{
|
|
1121
1121
|
skillId: z.ZodString;
|
|
@@ -1127,16 +1127,16 @@ export declare const organizationSkillFileDetailSchema: z.ZodObject<{
|
|
|
1127
1127
|
editable: z.ZodBoolean;
|
|
1128
1128
|
}, "strip", z.ZodTypeAny, {
|
|
1129
1129
|
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
1130
|
-
markdown: boolean;
|
|
1131
1130
|
path: string;
|
|
1131
|
+
markdown: boolean;
|
|
1132
1132
|
editable: boolean;
|
|
1133
1133
|
skillId: string;
|
|
1134
1134
|
content: string;
|
|
1135
1135
|
language: string | null;
|
|
1136
1136
|
}, {
|
|
1137
1137
|
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
1138
|
-
markdown: boolean;
|
|
1139
1138
|
path: string;
|
|
1139
|
+
markdown: boolean;
|
|
1140
1140
|
editable: boolean;
|
|
1141
1141
|
skillId: string;
|
|
1142
1142
|
content: string;
|
|
@@ -34,9 +34,9 @@ export declare const updateOrganizationSchema: z.ZodObject<{
|
|
|
34
34
|
brandColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35
35
|
logoAssetId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36
36
|
}, "strip", z.ZodTypeAny, {
|
|
37
|
+
description?: string | null | undefined;
|
|
37
38
|
status?: "active" | "paused" | "archived" | undefined;
|
|
38
39
|
name?: string | undefined;
|
|
39
|
-
description?: string | null | undefined;
|
|
40
40
|
brandColor?: string | null | undefined;
|
|
41
41
|
requireBoardApprovalForNewAgents?: boolean | undefined;
|
|
42
42
|
budgetMonthlyCents?: number | undefined;
|
|
@@ -44,9 +44,9 @@ export declare const updateOrganizationSchema: z.ZodObject<{
|
|
|
44
44
|
spentMonthlyCents?: number | undefined;
|
|
45
45
|
logoAssetId?: string | null | undefined;
|
|
46
46
|
}, {
|
|
47
|
+
description?: string | null | undefined;
|
|
47
48
|
status?: "active" | "paused" | "archived" | undefined;
|
|
48
49
|
name?: string | undefined;
|
|
49
|
-
description?: string | null | undefined;
|
|
50
50
|
brandColor?: string | null | undefined;
|
|
51
51
|
requireBoardApprovalForNewAgents?: boolean | undefined;
|
|
52
52
|
budgetMonthlyCents?: number | undefined;
|
|
@@ -61,23 +61,23 @@ export declare const updateOrganizationBrandingSchema: z.ZodEffects<z.ZodObject<
|
|
|
61
61
|
brandColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
62
62
|
logoAssetId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
63
63
|
}, "strict", z.ZodTypeAny, {
|
|
64
|
-
name?: string | undefined;
|
|
65
64
|
description?: string | null | undefined;
|
|
65
|
+
name?: string | undefined;
|
|
66
66
|
brandColor?: string | null | undefined;
|
|
67
67
|
logoAssetId?: string | null | undefined;
|
|
68
68
|
}, {
|
|
69
|
-
name?: string | undefined;
|
|
70
69
|
description?: string | null | undefined;
|
|
70
|
+
name?: string | undefined;
|
|
71
71
|
brandColor?: string | null | undefined;
|
|
72
72
|
logoAssetId?: string | null | undefined;
|
|
73
73
|
}>, {
|
|
74
|
-
name?: string | undefined;
|
|
75
74
|
description?: string | null | undefined;
|
|
75
|
+
name?: string | undefined;
|
|
76
76
|
brandColor?: string | null | undefined;
|
|
77
77
|
logoAssetId?: string | null | undefined;
|
|
78
78
|
}, {
|
|
79
|
-
name?: string | undefined;
|
|
80
79
|
description?: string | null | undefined;
|
|
80
|
+
name?: string | undefined;
|
|
81
81
|
brandColor?: string | null | undefined;
|
|
82
82
|
logoAssetId?: string | null | undefined;
|
|
83
83
|
}>;
|