@ikenga/contract 0.12.0 → 0.14.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/action-frontmatter.d.ts +389 -0
- package/dist/action-frontmatter.d.ts.map +1 -0
- package/dist/action-frontmatter.js +215 -0
- package/dist/action-frontmatter.js.map +1 -0
- package/dist/artifact.d.ts +110 -110
- package/dist/browser.d.ts +2 -2
- package/dist/engine/adapter.d.ts +6 -6
- package/dist/host-context.d.ts +42 -0
- package/dist/host-context.d.ts.map +1 -0
- package/dist/host-context.js +22 -0
- package/dist/host-context.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/manifest.d.ts +175 -150
- package/dist/manifest.d.ts.map +1 -1
- package/dist/manifest.js +5 -0
- package/dist/manifest.js.map +1 -1
- package/dist/registry.d.ts +301 -285
- package/dist/registry.d.ts.map +1 -1
- package/dist/window.d.ts +8 -8
- package/package.json +11 -2
- package/src/action-frontmatter.test.ts +219 -0
- package/src/action-frontmatter.ts +250 -0
- package/src/host-context.test.ts +24 -0
- package/src/host-context.ts +39 -0
- package/src/index.ts +2 -0
- package/src/manifest.ts +5 -0
package/dist/registry.d.ts
CHANGED
|
@@ -115,7 +115,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
115
115
|
'sqlite.tables': z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
116
116
|
'supabase.tables': z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
117
117
|
'vault.keys': z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
118
|
+
engine: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
118
119
|
}, "strip", z.ZodTypeAny, {
|
|
120
|
+
engine: string[];
|
|
119
121
|
'shell.execute': string[];
|
|
120
122
|
'fs.read': string[];
|
|
121
123
|
'fs.write': string[];
|
|
@@ -124,6 +126,7 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
124
126
|
'supabase.tables': string[];
|
|
125
127
|
'vault.keys': string[];
|
|
126
128
|
}, {
|
|
129
|
+
engine?: string[] | undefined;
|
|
127
130
|
'shell.execute'?: string[] | undefined;
|
|
128
131
|
'fs.read'?: string[] | undefined;
|
|
129
132
|
'fs.write'?: string[] | undefined;
|
|
@@ -340,14 +343,14 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
340
343
|
decorations: z.ZodOptional<z.ZodBoolean>;
|
|
341
344
|
menu: z.ZodOptional<z.ZodString>;
|
|
342
345
|
}, "strip", z.ZodTypeAny, {
|
|
343
|
-
url: string;
|
|
344
346
|
label: string;
|
|
347
|
+
url: string;
|
|
345
348
|
size?: [number, number] | undefined;
|
|
346
349
|
decorations?: boolean | undefined;
|
|
347
350
|
menu?: string | undefined;
|
|
348
351
|
}, {
|
|
349
|
-
url: string;
|
|
350
352
|
label: string;
|
|
353
|
+
url: string;
|
|
351
354
|
size?: [number, number] | undefined;
|
|
352
355
|
decorations?: boolean | undefined;
|
|
353
356
|
menu?: string | undefined;
|
|
@@ -438,12 +441,20 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
438
441
|
commands?: string[] | undefined;
|
|
439
442
|
}>>;
|
|
440
443
|
}, "strip", z.ZodTypeAny, {
|
|
441
|
-
supabase?: {
|
|
442
|
-
required: boolean;
|
|
443
|
-
} | undefined;
|
|
444
444
|
sqlite?: {
|
|
445
445
|
db: string;
|
|
446
446
|
} | undefined;
|
|
447
|
+
secrets?: {
|
|
448
|
+
declarations: {
|
|
449
|
+
name: string;
|
|
450
|
+
required: boolean;
|
|
451
|
+
vault_key: string;
|
|
452
|
+
format?: string | undefined;
|
|
453
|
+
}[];
|
|
454
|
+
} | undefined;
|
|
455
|
+
supabase?: {
|
|
456
|
+
required: boolean;
|
|
457
|
+
} | undefined;
|
|
447
458
|
webview?: {
|
|
448
459
|
child_webviews: boolean;
|
|
449
460
|
partitions: string[];
|
|
@@ -454,24 +465,24 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
454
465
|
auth_header: string;
|
|
455
466
|
auth_secret?: string | undefined;
|
|
456
467
|
} | undefined;
|
|
468
|
+
invoke?: {
|
|
469
|
+
commands: string[];
|
|
470
|
+
} | undefined;
|
|
471
|
+
}, {
|
|
472
|
+
sqlite?: {
|
|
473
|
+
db?: string | undefined;
|
|
474
|
+
} | undefined;
|
|
457
475
|
secrets?: {
|
|
458
|
-
declarations
|
|
476
|
+
declarations?: {
|
|
459
477
|
name: string;
|
|
460
|
-
required: boolean;
|
|
461
478
|
vault_key: string;
|
|
462
479
|
format?: string | undefined;
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
invoke?: {
|
|
466
|
-
commands: string[];
|
|
480
|
+
required?: boolean | undefined;
|
|
481
|
+
}[] | undefined;
|
|
467
482
|
} | undefined;
|
|
468
|
-
}, {
|
|
469
483
|
supabase?: {
|
|
470
484
|
required?: boolean | undefined;
|
|
471
485
|
} | undefined;
|
|
472
|
-
sqlite?: {
|
|
473
|
-
db?: string | undefined;
|
|
474
|
-
} | undefined;
|
|
475
486
|
webview?: {
|
|
476
487
|
child_webviews?: boolean | undefined;
|
|
477
488
|
partitions?: string[] | undefined;
|
|
@@ -482,14 +493,6 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
482
493
|
auth_secret?: string | undefined;
|
|
483
494
|
auth_header?: string | undefined;
|
|
484
495
|
} | undefined;
|
|
485
|
-
secrets?: {
|
|
486
|
-
declarations?: {
|
|
487
|
-
name: string;
|
|
488
|
-
vault_key: string;
|
|
489
|
-
format?: string | undefined;
|
|
490
|
-
required?: boolean | undefined;
|
|
491
|
-
}[] | undefined;
|
|
492
|
-
} | undefined;
|
|
493
496
|
invoke?: {
|
|
494
497
|
commands?: string[] | undefined;
|
|
495
498
|
} | undefined;
|
|
@@ -511,8 +514,8 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
511
514
|
mcp: z.ZodBoolean;
|
|
512
515
|
sessionResume: z.ZodBoolean;
|
|
513
516
|
}, "strip", z.ZodTypeAny, {
|
|
514
|
-
mcp: boolean;
|
|
515
517
|
streaming: boolean;
|
|
518
|
+
mcp: boolean;
|
|
516
519
|
toolUse: boolean;
|
|
517
520
|
thinking: boolean;
|
|
518
521
|
artifacts: boolean;
|
|
@@ -524,8 +527,8 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
524
527
|
agenticTools: boolean;
|
|
525
528
|
sessionResume: boolean;
|
|
526
529
|
}, {
|
|
527
|
-
mcp: boolean;
|
|
528
530
|
streaming: boolean;
|
|
531
|
+
mcp: boolean;
|
|
529
532
|
toolUse: boolean;
|
|
530
533
|
thinking: boolean;
|
|
531
534
|
artifacts: boolean;
|
|
@@ -555,8 +558,8 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
555
558
|
}>>;
|
|
556
559
|
}, "strip", z.ZodTypeAny, {
|
|
557
560
|
capabilities: {
|
|
558
|
-
mcp: boolean;
|
|
559
561
|
streaming: boolean;
|
|
562
|
+
mcp: boolean;
|
|
560
563
|
toolUse: boolean;
|
|
561
564
|
thinking: boolean;
|
|
562
565
|
artifacts: boolean;
|
|
@@ -578,8 +581,8 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
578
581
|
display?: string | undefined;
|
|
579
582
|
}, {
|
|
580
583
|
capabilities: {
|
|
581
|
-
mcp: boolean;
|
|
582
584
|
streaming: boolean;
|
|
585
|
+
mcp: boolean;
|
|
583
586
|
toolUse: boolean;
|
|
584
587
|
thinking: boolean;
|
|
585
588
|
artifacts: boolean;
|
|
@@ -616,18 +619,24 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
616
619
|
source: z.ZodOptional<z.ZodEnum<["git", "npx", "catalog", "local"]>>;
|
|
617
620
|
ref: z.ZodOptional<z.ZodString>;
|
|
618
621
|
}, "strict", z.ZodTypeAny, {
|
|
619
|
-
name: string;
|
|
620
622
|
kind: string;
|
|
623
|
+
name: string;
|
|
621
624
|
ref?: string | undefined;
|
|
622
625
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
623
626
|
}, {
|
|
624
|
-
name: string;
|
|
625
627
|
kind: string;
|
|
628
|
+
name: string;
|
|
626
629
|
ref?: string | undefined;
|
|
627
630
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
628
631
|
}>, "many">>;
|
|
629
632
|
signature: z.ZodOptional<z.ZodString>;
|
|
630
633
|
}, "strip", z.ZodTypeAny, {
|
|
634
|
+
cron: {
|
|
635
|
+
id: string;
|
|
636
|
+
handler: string;
|
|
637
|
+
expr: string;
|
|
638
|
+
env_from_settings: string[];
|
|
639
|
+
}[];
|
|
631
640
|
mcp: {
|
|
632
641
|
args: string[];
|
|
633
642
|
name: string;
|
|
@@ -637,16 +646,17 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
637
646
|
auto_restart: boolean;
|
|
638
647
|
lifecycle?: "per-call" | "long-lived" | undefined;
|
|
639
648
|
}[];
|
|
640
|
-
id: string;
|
|
641
649
|
name: string;
|
|
650
|
+
id: string;
|
|
642
651
|
version: string;
|
|
643
652
|
requires: {
|
|
644
|
-
name: string;
|
|
645
653
|
kind: string;
|
|
654
|
+
name: string;
|
|
646
655
|
ref?: string | undefined;
|
|
647
656
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
648
657
|
}[];
|
|
649
658
|
permissions: {
|
|
659
|
+
engine: string[];
|
|
650
660
|
'shell.execute': string[];
|
|
651
661
|
'fs.read': string[];
|
|
652
662
|
'fs.write': string[];
|
|
@@ -691,16 +701,11 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
691
701
|
csp?: Record<string, string[]> | undefined;
|
|
692
702
|
permissions?: Record<string, string[]> | undefined;
|
|
693
703
|
};
|
|
694
|
-
cron: {
|
|
695
|
-
id: string;
|
|
696
|
-
handler: string;
|
|
697
|
-
expr: string;
|
|
698
|
-
env_from_settings: string[];
|
|
699
|
-
}[];
|
|
700
704
|
screenshots: {
|
|
701
705
|
path: string;
|
|
702
706
|
caption?: string | undefined;
|
|
703
707
|
}[];
|
|
708
|
+
kind?: string | undefined;
|
|
704
709
|
queries?: {
|
|
705
710
|
key_prefixes: string[];
|
|
706
711
|
} | undefined;
|
|
@@ -709,12 +714,20 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
709
714
|
key?: string | undefined;
|
|
710
715
|
} | undefined;
|
|
711
716
|
capabilities?: {
|
|
712
|
-
supabase?: {
|
|
713
|
-
required: boolean;
|
|
714
|
-
} | undefined;
|
|
715
717
|
sqlite?: {
|
|
716
718
|
db: string;
|
|
717
719
|
} | undefined;
|
|
720
|
+
secrets?: {
|
|
721
|
+
declarations: {
|
|
722
|
+
name: string;
|
|
723
|
+
required: boolean;
|
|
724
|
+
vault_key: string;
|
|
725
|
+
format?: string | undefined;
|
|
726
|
+
}[];
|
|
727
|
+
} | undefined;
|
|
728
|
+
supabase?: {
|
|
729
|
+
required: boolean;
|
|
730
|
+
} | undefined;
|
|
718
731
|
webview?: {
|
|
719
732
|
child_webviews: boolean;
|
|
720
733
|
partitions: string[];
|
|
@@ -725,22 +738,14 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
725
738
|
auth_header: string;
|
|
726
739
|
auth_secret?: string | undefined;
|
|
727
740
|
} | undefined;
|
|
728
|
-
secrets?: {
|
|
729
|
-
declarations: {
|
|
730
|
-
name: string;
|
|
731
|
-
required: boolean;
|
|
732
|
-
vault_key: string;
|
|
733
|
-
format?: string | undefined;
|
|
734
|
-
}[];
|
|
735
|
-
} | undefined;
|
|
736
741
|
invoke?: {
|
|
737
742
|
commands: string[];
|
|
738
743
|
} | undefined;
|
|
739
744
|
} | undefined;
|
|
740
745
|
engine?: {
|
|
741
746
|
capabilities: {
|
|
742
|
-
mcp: boolean;
|
|
743
747
|
streaming: boolean;
|
|
748
|
+
mcp: boolean;
|
|
744
749
|
toolUse: boolean;
|
|
745
750
|
thinking: boolean;
|
|
746
751
|
artifacts: boolean;
|
|
@@ -761,7 +766,6 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
761
766
|
};
|
|
762
767
|
display?: string | undefined;
|
|
763
768
|
} | undefined;
|
|
764
|
-
kind?: string | undefined;
|
|
765
769
|
migrations?: string | undefined;
|
|
766
770
|
settings?: {
|
|
767
771
|
schema: {
|
|
@@ -781,18 +785,25 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
781
785
|
events: string[];
|
|
782
786
|
} | undefined;
|
|
783
787
|
window?: {
|
|
784
|
-
url: string;
|
|
785
788
|
label: string;
|
|
789
|
+
url: string;
|
|
786
790
|
size?: [number, number] | undefined;
|
|
787
791
|
decorations?: boolean | undefined;
|
|
788
792
|
menu?: string | undefined;
|
|
789
793
|
} | undefined;
|
|
790
794
|
signature?: string | undefined;
|
|
791
795
|
}, {
|
|
792
|
-
id: string;
|
|
793
796
|
name: string;
|
|
797
|
+
id: string;
|
|
794
798
|
version: string;
|
|
795
799
|
ikenga_api: string;
|
|
800
|
+
kind?: string | undefined;
|
|
801
|
+
cron?: {
|
|
802
|
+
id: string;
|
|
803
|
+
handler: string;
|
|
804
|
+
expr: string;
|
|
805
|
+
env_from_settings?: string[] | undefined;
|
|
806
|
+
}[] | undefined;
|
|
796
807
|
mcp?: {
|
|
797
808
|
name: string;
|
|
798
809
|
command: string;
|
|
@@ -810,18 +821,26 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
810
821
|
key?: string | undefined;
|
|
811
822
|
} | undefined;
|
|
812
823
|
requires?: {
|
|
813
|
-
name: string;
|
|
814
824
|
kind: string;
|
|
825
|
+
name: string;
|
|
815
826
|
ref?: string | undefined;
|
|
816
827
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
817
828
|
}[] | undefined;
|
|
818
829
|
capabilities?: {
|
|
819
|
-
supabase?: {
|
|
820
|
-
required?: boolean | undefined;
|
|
821
|
-
} | undefined;
|
|
822
830
|
sqlite?: {
|
|
823
831
|
db?: string | undefined;
|
|
824
832
|
} | undefined;
|
|
833
|
+
secrets?: {
|
|
834
|
+
declarations?: {
|
|
835
|
+
name: string;
|
|
836
|
+
vault_key: string;
|
|
837
|
+
format?: string | undefined;
|
|
838
|
+
required?: boolean | undefined;
|
|
839
|
+
}[] | undefined;
|
|
840
|
+
} | undefined;
|
|
841
|
+
supabase?: {
|
|
842
|
+
required?: boolean | undefined;
|
|
843
|
+
} | undefined;
|
|
825
844
|
webview?: {
|
|
826
845
|
child_webviews?: boolean | undefined;
|
|
827
846
|
partitions?: string[] | undefined;
|
|
@@ -832,22 +851,14 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
832
851
|
auth_secret?: string | undefined;
|
|
833
852
|
auth_header?: string | undefined;
|
|
834
853
|
} | undefined;
|
|
835
|
-
secrets?: {
|
|
836
|
-
declarations?: {
|
|
837
|
-
name: string;
|
|
838
|
-
vault_key: string;
|
|
839
|
-
format?: string | undefined;
|
|
840
|
-
required?: boolean | undefined;
|
|
841
|
-
}[] | undefined;
|
|
842
|
-
} | undefined;
|
|
843
854
|
invoke?: {
|
|
844
855
|
commands?: string[] | undefined;
|
|
845
856
|
} | undefined;
|
|
846
857
|
} | undefined;
|
|
847
858
|
engine?: {
|
|
848
859
|
capabilities: {
|
|
849
|
-
mcp: boolean;
|
|
850
860
|
streaming: boolean;
|
|
861
|
+
mcp: boolean;
|
|
851
862
|
toolUse: boolean;
|
|
852
863
|
thinking: boolean;
|
|
853
864
|
artifacts: boolean;
|
|
@@ -868,8 +879,8 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
868
879
|
docsUrl?: string | undefined;
|
|
869
880
|
} | undefined;
|
|
870
881
|
} | undefined;
|
|
871
|
-
kind?: string | undefined;
|
|
872
882
|
permissions?: {
|
|
883
|
+
engine?: string[] | undefined;
|
|
873
884
|
'shell.execute'?: string[] | undefined;
|
|
874
885
|
'fs.read'?: string[] | undefined;
|
|
875
886
|
'fs.write'?: string[] | undefined;
|
|
@@ -931,15 +942,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
931
942
|
}[] | undefined;
|
|
932
943
|
events?: string[] | undefined;
|
|
933
944
|
} | undefined;
|
|
934
|
-
cron?: {
|
|
935
|
-
id: string;
|
|
936
|
-
handler: string;
|
|
937
|
-
expr: string;
|
|
938
|
-
env_from_settings?: string[] | undefined;
|
|
939
|
-
}[] | undefined;
|
|
940
945
|
window?: {
|
|
941
|
-
url: string;
|
|
942
946
|
label: string;
|
|
947
|
+
url: string;
|
|
943
948
|
size?: [number, number] | undefined;
|
|
944
949
|
decorations?: boolean | undefined;
|
|
945
950
|
menu?: string | undefined;
|
|
@@ -990,6 +995,12 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
990
995
|
tarball: string;
|
|
991
996
|
integrity: string;
|
|
992
997
|
manifest: {
|
|
998
|
+
cron: {
|
|
999
|
+
id: string;
|
|
1000
|
+
handler: string;
|
|
1001
|
+
expr: string;
|
|
1002
|
+
env_from_settings: string[];
|
|
1003
|
+
}[];
|
|
993
1004
|
mcp: {
|
|
994
1005
|
args: string[];
|
|
995
1006
|
name: string;
|
|
@@ -999,16 +1010,17 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
999
1010
|
auto_restart: boolean;
|
|
1000
1011
|
lifecycle?: "per-call" | "long-lived" | undefined;
|
|
1001
1012
|
}[];
|
|
1002
|
-
id: string;
|
|
1003
1013
|
name: string;
|
|
1014
|
+
id: string;
|
|
1004
1015
|
version: string;
|
|
1005
1016
|
requires: {
|
|
1006
|
-
name: string;
|
|
1007
1017
|
kind: string;
|
|
1018
|
+
name: string;
|
|
1008
1019
|
ref?: string | undefined;
|
|
1009
1020
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
1010
1021
|
}[];
|
|
1011
1022
|
permissions: {
|
|
1023
|
+
engine: string[];
|
|
1012
1024
|
'shell.execute': string[];
|
|
1013
1025
|
'fs.read': string[];
|
|
1014
1026
|
'fs.write': string[];
|
|
@@ -1053,16 +1065,11 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1053
1065
|
csp?: Record<string, string[]> | undefined;
|
|
1054
1066
|
permissions?: Record<string, string[]> | undefined;
|
|
1055
1067
|
};
|
|
1056
|
-
cron: {
|
|
1057
|
-
id: string;
|
|
1058
|
-
handler: string;
|
|
1059
|
-
expr: string;
|
|
1060
|
-
env_from_settings: string[];
|
|
1061
|
-
}[];
|
|
1062
1068
|
screenshots: {
|
|
1063
1069
|
path: string;
|
|
1064
1070
|
caption?: string | undefined;
|
|
1065
1071
|
}[];
|
|
1072
|
+
kind?: string | undefined;
|
|
1066
1073
|
queries?: {
|
|
1067
1074
|
key_prefixes: string[];
|
|
1068
1075
|
} | undefined;
|
|
@@ -1071,12 +1078,20 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1071
1078
|
key?: string | undefined;
|
|
1072
1079
|
} | undefined;
|
|
1073
1080
|
capabilities?: {
|
|
1074
|
-
supabase?: {
|
|
1075
|
-
required: boolean;
|
|
1076
|
-
} | undefined;
|
|
1077
1081
|
sqlite?: {
|
|
1078
1082
|
db: string;
|
|
1079
1083
|
} | undefined;
|
|
1084
|
+
secrets?: {
|
|
1085
|
+
declarations: {
|
|
1086
|
+
name: string;
|
|
1087
|
+
required: boolean;
|
|
1088
|
+
vault_key: string;
|
|
1089
|
+
format?: string | undefined;
|
|
1090
|
+
}[];
|
|
1091
|
+
} | undefined;
|
|
1092
|
+
supabase?: {
|
|
1093
|
+
required: boolean;
|
|
1094
|
+
} | undefined;
|
|
1080
1095
|
webview?: {
|
|
1081
1096
|
child_webviews: boolean;
|
|
1082
1097
|
partitions: string[];
|
|
@@ -1087,22 +1102,14 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1087
1102
|
auth_header: string;
|
|
1088
1103
|
auth_secret?: string | undefined;
|
|
1089
1104
|
} | undefined;
|
|
1090
|
-
secrets?: {
|
|
1091
|
-
declarations: {
|
|
1092
|
-
name: string;
|
|
1093
|
-
required: boolean;
|
|
1094
|
-
vault_key: string;
|
|
1095
|
-
format?: string | undefined;
|
|
1096
|
-
}[];
|
|
1097
|
-
} | undefined;
|
|
1098
1105
|
invoke?: {
|
|
1099
1106
|
commands: string[];
|
|
1100
1107
|
} | undefined;
|
|
1101
1108
|
} | undefined;
|
|
1102
1109
|
engine?: {
|
|
1103
1110
|
capabilities: {
|
|
1104
|
-
mcp: boolean;
|
|
1105
1111
|
streaming: boolean;
|
|
1112
|
+
mcp: boolean;
|
|
1106
1113
|
toolUse: boolean;
|
|
1107
1114
|
thinking: boolean;
|
|
1108
1115
|
artifacts: boolean;
|
|
@@ -1123,7 +1130,6 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1123
1130
|
};
|
|
1124
1131
|
display?: string | undefined;
|
|
1125
1132
|
} | undefined;
|
|
1126
|
-
kind?: string | undefined;
|
|
1127
1133
|
migrations?: string | undefined;
|
|
1128
1134
|
settings?: {
|
|
1129
1135
|
schema: {
|
|
@@ -1143,8 +1149,8 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1143
1149
|
events: string[];
|
|
1144
1150
|
} | undefined;
|
|
1145
1151
|
window?: {
|
|
1146
|
-
url: string;
|
|
1147
1152
|
label: string;
|
|
1153
|
+
url: string;
|
|
1148
1154
|
size?: [number, number] | undefined;
|
|
1149
1155
|
decorations?: boolean | undefined;
|
|
1150
1156
|
menu?: string | undefined;
|
|
@@ -1162,10 +1168,17 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1162
1168
|
tarball: string;
|
|
1163
1169
|
integrity: string;
|
|
1164
1170
|
manifest: {
|
|
1165
|
-
id: string;
|
|
1166
1171
|
name: string;
|
|
1172
|
+
id: string;
|
|
1167
1173
|
version: string;
|
|
1168
1174
|
ikenga_api: string;
|
|
1175
|
+
kind?: string | undefined;
|
|
1176
|
+
cron?: {
|
|
1177
|
+
id: string;
|
|
1178
|
+
handler: string;
|
|
1179
|
+
expr: string;
|
|
1180
|
+
env_from_settings?: string[] | undefined;
|
|
1181
|
+
}[] | undefined;
|
|
1169
1182
|
mcp?: {
|
|
1170
1183
|
name: string;
|
|
1171
1184
|
command: string;
|
|
@@ -1183,18 +1196,26 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1183
1196
|
key?: string | undefined;
|
|
1184
1197
|
} | undefined;
|
|
1185
1198
|
requires?: {
|
|
1186
|
-
name: string;
|
|
1187
1199
|
kind: string;
|
|
1200
|
+
name: string;
|
|
1188
1201
|
ref?: string | undefined;
|
|
1189
1202
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
1190
1203
|
}[] | undefined;
|
|
1191
1204
|
capabilities?: {
|
|
1192
|
-
supabase?: {
|
|
1193
|
-
required?: boolean | undefined;
|
|
1194
|
-
} | undefined;
|
|
1195
1205
|
sqlite?: {
|
|
1196
1206
|
db?: string | undefined;
|
|
1197
1207
|
} | undefined;
|
|
1208
|
+
secrets?: {
|
|
1209
|
+
declarations?: {
|
|
1210
|
+
name: string;
|
|
1211
|
+
vault_key: string;
|
|
1212
|
+
format?: string | undefined;
|
|
1213
|
+
required?: boolean | undefined;
|
|
1214
|
+
}[] | undefined;
|
|
1215
|
+
} | undefined;
|
|
1216
|
+
supabase?: {
|
|
1217
|
+
required?: boolean | undefined;
|
|
1218
|
+
} | undefined;
|
|
1198
1219
|
webview?: {
|
|
1199
1220
|
child_webviews?: boolean | undefined;
|
|
1200
1221
|
partitions?: string[] | undefined;
|
|
@@ -1205,22 +1226,14 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1205
1226
|
auth_secret?: string | undefined;
|
|
1206
1227
|
auth_header?: string | undefined;
|
|
1207
1228
|
} | undefined;
|
|
1208
|
-
secrets?: {
|
|
1209
|
-
declarations?: {
|
|
1210
|
-
name: string;
|
|
1211
|
-
vault_key: string;
|
|
1212
|
-
format?: string | undefined;
|
|
1213
|
-
required?: boolean | undefined;
|
|
1214
|
-
}[] | undefined;
|
|
1215
|
-
} | undefined;
|
|
1216
1229
|
invoke?: {
|
|
1217
1230
|
commands?: string[] | undefined;
|
|
1218
1231
|
} | undefined;
|
|
1219
1232
|
} | undefined;
|
|
1220
1233
|
engine?: {
|
|
1221
1234
|
capabilities: {
|
|
1222
|
-
mcp: boolean;
|
|
1223
1235
|
streaming: boolean;
|
|
1236
|
+
mcp: boolean;
|
|
1224
1237
|
toolUse: boolean;
|
|
1225
1238
|
thinking: boolean;
|
|
1226
1239
|
artifacts: boolean;
|
|
@@ -1241,8 +1254,8 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1241
1254
|
docsUrl?: string | undefined;
|
|
1242
1255
|
} | undefined;
|
|
1243
1256
|
} | undefined;
|
|
1244
|
-
kind?: string | undefined;
|
|
1245
1257
|
permissions?: {
|
|
1258
|
+
engine?: string[] | undefined;
|
|
1246
1259
|
'shell.execute'?: string[] | undefined;
|
|
1247
1260
|
'fs.read'?: string[] | undefined;
|
|
1248
1261
|
'fs.write'?: string[] | undefined;
|
|
@@ -1304,15 +1317,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1304
1317
|
}[] | undefined;
|
|
1305
1318
|
events?: string[] | undefined;
|
|
1306
1319
|
} | undefined;
|
|
1307
|
-
cron?: {
|
|
1308
|
-
id: string;
|
|
1309
|
-
handler: string;
|
|
1310
|
-
expr: string;
|
|
1311
|
-
env_from_settings?: string[] | undefined;
|
|
1312
|
-
}[] | undefined;
|
|
1313
1320
|
window?: {
|
|
1314
|
-
url: string;
|
|
1315
1321
|
label: string;
|
|
1322
|
+
url: string;
|
|
1316
1323
|
size?: [number, number] | undefined;
|
|
1317
1324
|
decorations?: boolean | undefined;
|
|
1318
1325
|
menu?: string | undefined;
|
|
@@ -1422,7 +1429,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1422
1429
|
'sqlite.tables': z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1423
1430
|
'supabase.tables': z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1424
1431
|
'vault.keys': z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1432
|
+
engine: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1425
1433
|
}, "strip", z.ZodTypeAny, {
|
|
1434
|
+
engine: string[];
|
|
1426
1435
|
'shell.execute': string[];
|
|
1427
1436
|
'fs.read': string[];
|
|
1428
1437
|
'fs.write': string[];
|
|
@@ -1431,6 +1440,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1431
1440
|
'supabase.tables': string[];
|
|
1432
1441
|
'vault.keys': string[];
|
|
1433
1442
|
}, {
|
|
1443
|
+
engine?: string[] | undefined;
|
|
1434
1444
|
'shell.execute'?: string[] | undefined;
|
|
1435
1445
|
'fs.read'?: string[] | undefined;
|
|
1436
1446
|
'fs.write'?: string[] | undefined;
|
|
@@ -1647,14 +1657,14 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1647
1657
|
decorations: z.ZodOptional<z.ZodBoolean>;
|
|
1648
1658
|
menu: z.ZodOptional<z.ZodString>;
|
|
1649
1659
|
}, "strip", z.ZodTypeAny, {
|
|
1650
|
-
url: string;
|
|
1651
1660
|
label: string;
|
|
1661
|
+
url: string;
|
|
1652
1662
|
size?: [number, number] | undefined;
|
|
1653
1663
|
decorations?: boolean | undefined;
|
|
1654
1664
|
menu?: string | undefined;
|
|
1655
1665
|
}, {
|
|
1656
|
-
url: string;
|
|
1657
1666
|
label: string;
|
|
1667
|
+
url: string;
|
|
1658
1668
|
size?: [number, number] | undefined;
|
|
1659
1669
|
decorations?: boolean | undefined;
|
|
1660
1670
|
menu?: string | undefined;
|
|
@@ -1745,12 +1755,20 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1745
1755
|
commands?: string[] | undefined;
|
|
1746
1756
|
}>>;
|
|
1747
1757
|
}, "strip", z.ZodTypeAny, {
|
|
1748
|
-
supabase?: {
|
|
1749
|
-
required: boolean;
|
|
1750
|
-
} | undefined;
|
|
1751
1758
|
sqlite?: {
|
|
1752
1759
|
db: string;
|
|
1753
1760
|
} | undefined;
|
|
1761
|
+
secrets?: {
|
|
1762
|
+
declarations: {
|
|
1763
|
+
name: string;
|
|
1764
|
+
required: boolean;
|
|
1765
|
+
vault_key: string;
|
|
1766
|
+
format?: string | undefined;
|
|
1767
|
+
}[];
|
|
1768
|
+
} | undefined;
|
|
1769
|
+
supabase?: {
|
|
1770
|
+
required: boolean;
|
|
1771
|
+
} | undefined;
|
|
1754
1772
|
webview?: {
|
|
1755
1773
|
child_webviews: boolean;
|
|
1756
1774
|
partitions: string[];
|
|
@@ -1761,24 +1779,24 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1761
1779
|
auth_header: string;
|
|
1762
1780
|
auth_secret?: string | undefined;
|
|
1763
1781
|
} | undefined;
|
|
1764
|
-
secrets?: {
|
|
1765
|
-
declarations: {
|
|
1766
|
-
name: string;
|
|
1767
|
-
required: boolean;
|
|
1768
|
-
vault_key: string;
|
|
1769
|
-
format?: string | undefined;
|
|
1770
|
-
}[];
|
|
1771
|
-
} | undefined;
|
|
1772
1782
|
invoke?: {
|
|
1773
1783
|
commands: string[];
|
|
1774
1784
|
} | undefined;
|
|
1775
1785
|
}, {
|
|
1776
|
-
supabase?: {
|
|
1777
|
-
required?: boolean | undefined;
|
|
1778
|
-
} | undefined;
|
|
1779
1786
|
sqlite?: {
|
|
1780
1787
|
db?: string | undefined;
|
|
1781
1788
|
} | undefined;
|
|
1789
|
+
secrets?: {
|
|
1790
|
+
declarations?: {
|
|
1791
|
+
name: string;
|
|
1792
|
+
vault_key: string;
|
|
1793
|
+
format?: string | undefined;
|
|
1794
|
+
required?: boolean | undefined;
|
|
1795
|
+
}[] | undefined;
|
|
1796
|
+
} | undefined;
|
|
1797
|
+
supabase?: {
|
|
1798
|
+
required?: boolean | undefined;
|
|
1799
|
+
} | undefined;
|
|
1782
1800
|
webview?: {
|
|
1783
1801
|
child_webviews?: boolean | undefined;
|
|
1784
1802
|
partitions?: string[] | undefined;
|
|
@@ -1789,14 +1807,6 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1789
1807
|
auth_secret?: string | undefined;
|
|
1790
1808
|
auth_header?: string | undefined;
|
|
1791
1809
|
} | undefined;
|
|
1792
|
-
secrets?: {
|
|
1793
|
-
declarations?: {
|
|
1794
|
-
name: string;
|
|
1795
|
-
vault_key: string;
|
|
1796
|
-
format?: string | undefined;
|
|
1797
|
-
required?: boolean | undefined;
|
|
1798
|
-
}[] | undefined;
|
|
1799
|
-
} | undefined;
|
|
1800
1810
|
invoke?: {
|
|
1801
1811
|
commands?: string[] | undefined;
|
|
1802
1812
|
} | undefined;
|
|
@@ -1818,8 +1828,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1818
1828
|
mcp: z.ZodBoolean;
|
|
1819
1829
|
sessionResume: z.ZodBoolean;
|
|
1820
1830
|
}, "strip", z.ZodTypeAny, {
|
|
1821
|
-
mcp: boolean;
|
|
1822
1831
|
streaming: boolean;
|
|
1832
|
+
mcp: boolean;
|
|
1823
1833
|
toolUse: boolean;
|
|
1824
1834
|
thinking: boolean;
|
|
1825
1835
|
artifacts: boolean;
|
|
@@ -1831,8 +1841,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1831
1841
|
agenticTools: boolean;
|
|
1832
1842
|
sessionResume: boolean;
|
|
1833
1843
|
}, {
|
|
1834
|
-
mcp: boolean;
|
|
1835
1844
|
streaming: boolean;
|
|
1845
|
+
mcp: boolean;
|
|
1836
1846
|
toolUse: boolean;
|
|
1837
1847
|
thinking: boolean;
|
|
1838
1848
|
artifacts: boolean;
|
|
@@ -1862,8 +1872,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1862
1872
|
}>>;
|
|
1863
1873
|
}, "strip", z.ZodTypeAny, {
|
|
1864
1874
|
capabilities: {
|
|
1865
|
-
mcp: boolean;
|
|
1866
1875
|
streaming: boolean;
|
|
1876
|
+
mcp: boolean;
|
|
1867
1877
|
toolUse: boolean;
|
|
1868
1878
|
thinking: boolean;
|
|
1869
1879
|
artifacts: boolean;
|
|
@@ -1885,8 +1895,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1885
1895
|
display?: string | undefined;
|
|
1886
1896
|
}, {
|
|
1887
1897
|
capabilities: {
|
|
1888
|
-
mcp: boolean;
|
|
1889
1898
|
streaming: boolean;
|
|
1899
|
+
mcp: boolean;
|
|
1890
1900
|
toolUse: boolean;
|
|
1891
1901
|
thinking: boolean;
|
|
1892
1902
|
artifacts: boolean;
|
|
@@ -1923,18 +1933,24 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1923
1933
|
source: z.ZodOptional<z.ZodEnum<["git", "npx", "catalog", "local"]>>;
|
|
1924
1934
|
ref: z.ZodOptional<z.ZodString>;
|
|
1925
1935
|
}, "strict", z.ZodTypeAny, {
|
|
1926
|
-
name: string;
|
|
1927
1936
|
kind: string;
|
|
1937
|
+
name: string;
|
|
1928
1938
|
ref?: string | undefined;
|
|
1929
1939
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
1930
1940
|
}, {
|
|
1931
|
-
name: string;
|
|
1932
1941
|
kind: string;
|
|
1942
|
+
name: string;
|
|
1933
1943
|
ref?: string | undefined;
|
|
1934
1944
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
1935
1945
|
}>, "many">>;
|
|
1936
1946
|
signature: z.ZodOptional<z.ZodString>;
|
|
1937
1947
|
}, "strip", z.ZodTypeAny, {
|
|
1948
|
+
cron: {
|
|
1949
|
+
id: string;
|
|
1950
|
+
handler: string;
|
|
1951
|
+
expr: string;
|
|
1952
|
+
env_from_settings: string[];
|
|
1953
|
+
}[];
|
|
1938
1954
|
mcp: {
|
|
1939
1955
|
args: string[];
|
|
1940
1956
|
name: string;
|
|
@@ -1944,16 +1960,17 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1944
1960
|
auto_restart: boolean;
|
|
1945
1961
|
lifecycle?: "per-call" | "long-lived" | undefined;
|
|
1946
1962
|
}[];
|
|
1947
|
-
id: string;
|
|
1948
1963
|
name: string;
|
|
1964
|
+
id: string;
|
|
1949
1965
|
version: string;
|
|
1950
1966
|
requires: {
|
|
1951
|
-
name: string;
|
|
1952
1967
|
kind: string;
|
|
1968
|
+
name: string;
|
|
1953
1969
|
ref?: string | undefined;
|
|
1954
1970
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
1955
1971
|
}[];
|
|
1956
1972
|
permissions: {
|
|
1973
|
+
engine: string[];
|
|
1957
1974
|
'shell.execute': string[];
|
|
1958
1975
|
'fs.read': string[];
|
|
1959
1976
|
'fs.write': string[];
|
|
@@ -1998,16 +2015,11 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1998
2015
|
csp?: Record<string, string[]> | undefined;
|
|
1999
2016
|
permissions?: Record<string, string[]> | undefined;
|
|
2000
2017
|
};
|
|
2001
|
-
cron: {
|
|
2002
|
-
id: string;
|
|
2003
|
-
handler: string;
|
|
2004
|
-
expr: string;
|
|
2005
|
-
env_from_settings: string[];
|
|
2006
|
-
}[];
|
|
2007
2018
|
screenshots: {
|
|
2008
2019
|
path: string;
|
|
2009
2020
|
caption?: string | undefined;
|
|
2010
2021
|
}[];
|
|
2022
|
+
kind?: string | undefined;
|
|
2011
2023
|
queries?: {
|
|
2012
2024
|
key_prefixes: string[];
|
|
2013
2025
|
} | undefined;
|
|
@@ -2016,12 +2028,20 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2016
2028
|
key?: string | undefined;
|
|
2017
2029
|
} | undefined;
|
|
2018
2030
|
capabilities?: {
|
|
2019
|
-
supabase?: {
|
|
2020
|
-
required: boolean;
|
|
2021
|
-
} | undefined;
|
|
2022
2031
|
sqlite?: {
|
|
2023
2032
|
db: string;
|
|
2024
2033
|
} | undefined;
|
|
2034
|
+
secrets?: {
|
|
2035
|
+
declarations: {
|
|
2036
|
+
name: string;
|
|
2037
|
+
required: boolean;
|
|
2038
|
+
vault_key: string;
|
|
2039
|
+
format?: string | undefined;
|
|
2040
|
+
}[];
|
|
2041
|
+
} | undefined;
|
|
2042
|
+
supabase?: {
|
|
2043
|
+
required: boolean;
|
|
2044
|
+
} | undefined;
|
|
2025
2045
|
webview?: {
|
|
2026
2046
|
child_webviews: boolean;
|
|
2027
2047
|
partitions: string[];
|
|
@@ -2032,22 +2052,14 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2032
2052
|
auth_header: string;
|
|
2033
2053
|
auth_secret?: string | undefined;
|
|
2034
2054
|
} | undefined;
|
|
2035
|
-
secrets?: {
|
|
2036
|
-
declarations: {
|
|
2037
|
-
name: string;
|
|
2038
|
-
required: boolean;
|
|
2039
|
-
vault_key: string;
|
|
2040
|
-
format?: string | undefined;
|
|
2041
|
-
}[];
|
|
2042
|
-
} | undefined;
|
|
2043
2055
|
invoke?: {
|
|
2044
2056
|
commands: string[];
|
|
2045
2057
|
} | undefined;
|
|
2046
2058
|
} | undefined;
|
|
2047
2059
|
engine?: {
|
|
2048
2060
|
capabilities: {
|
|
2049
|
-
mcp: boolean;
|
|
2050
2061
|
streaming: boolean;
|
|
2062
|
+
mcp: boolean;
|
|
2051
2063
|
toolUse: boolean;
|
|
2052
2064
|
thinking: boolean;
|
|
2053
2065
|
artifacts: boolean;
|
|
@@ -2068,7 +2080,6 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2068
2080
|
};
|
|
2069
2081
|
display?: string | undefined;
|
|
2070
2082
|
} | undefined;
|
|
2071
|
-
kind?: string | undefined;
|
|
2072
2083
|
migrations?: string | undefined;
|
|
2073
2084
|
settings?: {
|
|
2074
2085
|
schema: {
|
|
@@ -2088,18 +2099,25 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2088
2099
|
events: string[];
|
|
2089
2100
|
} | undefined;
|
|
2090
2101
|
window?: {
|
|
2091
|
-
url: string;
|
|
2092
2102
|
label: string;
|
|
2103
|
+
url: string;
|
|
2093
2104
|
size?: [number, number] | undefined;
|
|
2094
2105
|
decorations?: boolean | undefined;
|
|
2095
2106
|
menu?: string | undefined;
|
|
2096
2107
|
} | undefined;
|
|
2097
2108
|
signature?: string | undefined;
|
|
2098
2109
|
}, {
|
|
2099
|
-
id: string;
|
|
2100
2110
|
name: string;
|
|
2111
|
+
id: string;
|
|
2101
2112
|
version: string;
|
|
2102
2113
|
ikenga_api: string;
|
|
2114
|
+
kind?: string | undefined;
|
|
2115
|
+
cron?: {
|
|
2116
|
+
id: string;
|
|
2117
|
+
handler: string;
|
|
2118
|
+
expr: string;
|
|
2119
|
+
env_from_settings?: string[] | undefined;
|
|
2120
|
+
}[] | undefined;
|
|
2103
2121
|
mcp?: {
|
|
2104
2122
|
name: string;
|
|
2105
2123
|
command: string;
|
|
@@ -2117,18 +2135,26 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2117
2135
|
key?: string | undefined;
|
|
2118
2136
|
} | undefined;
|
|
2119
2137
|
requires?: {
|
|
2120
|
-
name: string;
|
|
2121
2138
|
kind: string;
|
|
2139
|
+
name: string;
|
|
2122
2140
|
ref?: string | undefined;
|
|
2123
2141
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
2124
2142
|
}[] | undefined;
|
|
2125
2143
|
capabilities?: {
|
|
2126
|
-
supabase?: {
|
|
2127
|
-
required?: boolean | undefined;
|
|
2128
|
-
} | undefined;
|
|
2129
2144
|
sqlite?: {
|
|
2130
2145
|
db?: string | undefined;
|
|
2131
2146
|
} | undefined;
|
|
2147
|
+
secrets?: {
|
|
2148
|
+
declarations?: {
|
|
2149
|
+
name: string;
|
|
2150
|
+
vault_key: string;
|
|
2151
|
+
format?: string | undefined;
|
|
2152
|
+
required?: boolean | undefined;
|
|
2153
|
+
}[] | undefined;
|
|
2154
|
+
} | undefined;
|
|
2155
|
+
supabase?: {
|
|
2156
|
+
required?: boolean | undefined;
|
|
2157
|
+
} | undefined;
|
|
2132
2158
|
webview?: {
|
|
2133
2159
|
child_webviews?: boolean | undefined;
|
|
2134
2160
|
partitions?: string[] | undefined;
|
|
@@ -2139,22 +2165,14 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2139
2165
|
auth_secret?: string | undefined;
|
|
2140
2166
|
auth_header?: string | undefined;
|
|
2141
2167
|
} | undefined;
|
|
2142
|
-
secrets?: {
|
|
2143
|
-
declarations?: {
|
|
2144
|
-
name: string;
|
|
2145
|
-
vault_key: string;
|
|
2146
|
-
format?: string | undefined;
|
|
2147
|
-
required?: boolean | undefined;
|
|
2148
|
-
}[] | undefined;
|
|
2149
|
-
} | undefined;
|
|
2150
2168
|
invoke?: {
|
|
2151
2169
|
commands?: string[] | undefined;
|
|
2152
2170
|
} | undefined;
|
|
2153
2171
|
} | undefined;
|
|
2154
2172
|
engine?: {
|
|
2155
2173
|
capabilities: {
|
|
2156
|
-
mcp: boolean;
|
|
2157
2174
|
streaming: boolean;
|
|
2175
|
+
mcp: boolean;
|
|
2158
2176
|
toolUse: boolean;
|
|
2159
2177
|
thinking: boolean;
|
|
2160
2178
|
artifacts: boolean;
|
|
@@ -2175,8 +2193,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2175
2193
|
docsUrl?: string | undefined;
|
|
2176
2194
|
} | undefined;
|
|
2177
2195
|
} | undefined;
|
|
2178
|
-
kind?: string | undefined;
|
|
2179
2196
|
permissions?: {
|
|
2197
|
+
engine?: string[] | undefined;
|
|
2180
2198
|
'shell.execute'?: string[] | undefined;
|
|
2181
2199
|
'fs.read'?: string[] | undefined;
|
|
2182
2200
|
'fs.write'?: string[] | undefined;
|
|
@@ -2238,15 +2256,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2238
2256
|
}[] | undefined;
|
|
2239
2257
|
events?: string[] | undefined;
|
|
2240
2258
|
} | undefined;
|
|
2241
|
-
cron?: {
|
|
2242
|
-
id: string;
|
|
2243
|
-
handler: string;
|
|
2244
|
-
expr: string;
|
|
2245
|
-
env_from_settings?: string[] | undefined;
|
|
2246
|
-
}[] | undefined;
|
|
2247
2259
|
window?: {
|
|
2248
|
-
url: string;
|
|
2249
2260
|
label: string;
|
|
2261
|
+
url: string;
|
|
2250
2262
|
size?: [number, number] | undefined;
|
|
2251
2263
|
decorations?: boolean | undefined;
|
|
2252
2264
|
menu?: string | undefined;
|
|
@@ -2297,6 +2309,12 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2297
2309
|
tarball: string;
|
|
2298
2310
|
integrity: string;
|
|
2299
2311
|
manifest: {
|
|
2312
|
+
cron: {
|
|
2313
|
+
id: string;
|
|
2314
|
+
handler: string;
|
|
2315
|
+
expr: string;
|
|
2316
|
+
env_from_settings: string[];
|
|
2317
|
+
}[];
|
|
2300
2318
|
mcp: {
|
|
2301
2319
|
args: string[];
|
|
2302
2320
|
name: string;
|
|
@@ -2306,16 +2324,17 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2306
2324
|
auto_restart: boolean;
|
|
2307
2325
|
lifecycle?: "per-call" | "long-lived" | undefined;
|
|
2308
2326
|
}[];
|
|
2309
|
-
id: string;
|
|
2310
2327
|
name: string;
|
|
2328
|
+
id: string;
|
|
2311
2329
|
version: string;
|
|
2312
2330
|
requires: {
|
|
2313
|
-
name: string;
|
|
2314
2331
|
kind: string;
|
|
2332
|
+
name: string;
|
|
2315
2333
|
ref?: string | undefined;
|
|
2316
2334
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
2317
2335
|
}[];
|
|
2318
2336
|
permissions: {
|
|
2337
|
+
engine: string[];
|
|
2319
2338
|
'shell.execute': string[];
|
|
2320
2339
|
'fs.read': string[];
|
|
2321
2340
|
'fs.write': string[];
|
|
@@ -2360,16 +2379,11 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2360
2379
|
csp?: Record<string, string[]> | undefined;
|
|
2361
2380
|
permissions?: Record<string, string[]> | undefined;
|
|
2362
2381
|
};
|
|
2363
|
-
cron: {
|
|
2364
|
-
id: string;
|
|
2365
|
-
handler: string;
|
|
2366
|
-
expr: string;
|
|
2367
|
-
env_from_settings: string[];
|
|
2368
|
-
}[];
|
|
2369
2382
|
screenshots: {
|
|
2370
2383
|
path: string;
|
|
2371
2384
|
caption?: string | undefined;
|
|
2372
2385
|
}[];
|
|
2386
|
+
kind?: string | undefined;
|
|
2373
2387
|
queries?: {
|
|
2374
2388
|
key_prefixes: string[];
|
|
2375
2389
|
} | undefined;
|
|
@@ -2378,12 +2392,20 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2378
2392
|
key?: string | undefined;
|
|
2379
2393
|
} | undefined;
|
|
2380
2394
|
capabilities?: {
|
|
2381
|
-
supabase?: {
|
|
2382
|
-
required: boolean;
|
|
2383
|
-
} | undefined;
|
|
2384
2395
|
sqlite?: {
|
|
2385
2396
|
db: string;
|
|
2386
2397
|
} | undefined;
|
|
2398
|
+
secrets?: {
|
|
2399
|
+
declarations: {
|
|
2400
|
+
name: string;
|
|
2401
|
+
required: boolean;
|
|
2402
|
+
vault_key: string;
|
|
2403
|
+
format?: string | undefined;
|
|
2404
|
+
}[];
|
|
2405
|
+
} | undefined;
|
|
2406
|
+
supabase?: {
|
|
2407
|
+
required: boolean;
|
|
2408
|
+
} | undefined;
|
|
2387
2409
|
webview?: {
|
|
2388
2410
|
child_webviews: boolean;
|
|
2389
2411
|
partitions: string[];
|
|
@@ -2394,22 +2416,14 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2394
2416
|
auth_header: string;
|
|
2395
2417
|
auth_secret?: string | undefined;
|
|
2396
2418
|
} | undefined;
|
|
2397
|
-
secrets?: {
|
|
2398
|
-
declarations: {
|
|
2399
|
-
name: string;
|
|
2400
|
-
required: boolean;
|
|
2401
|
-
vault_key: string;
|
|
2402
|
-
format?: string | undefined;
|
|
2403
|
-
}[];
|
|
2404
|
-
} | undefined;
|
|
2405
2419
|
invoke?: {
|
|
2406
2420
|
commands: string[];
|
|
2407
2421
|
} | undefined;
|
|
2408
2422
|
} | undefined;
|
|
2409
2423
|
engine?: {
|
|
2410
2424
|
capabilities: {
|
|
2411
|
-
mcp: boolean;
|
|
2412
2425
|
streaming: boolean;
|
|
2426
|
+
mcp: boolean;
|
|
2413
2427
|
toolUse: boolean;
|
|
2414
2428
|
thinking: boolean;
|
|
2415
2429
|
artifacts: boolean;
|
|
@@ -2430,7 +2444,6 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2430
2444
|
};
|
|
2431
2445
|
display?: string | undefined;
|
|
2432
2446
|
} | undefined;
|
|
2433
|
-
kind?: string | undefined;
|
|
2434
2447
|
migrations?: string | undefined;
|
|
2435
2448
|
settings?: {
|
|
2436
2449
|
schema: {
|
|
@@ -2450,8 +2463,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2450
2463
|
events: string[];
|
|
2451
2464
|
} | undefined;
|
|
2452
2465
|
window?: {
|
|
2453
|
-
url: string;
|
|
2454
2466
|
label: string;
|
|
2467
|
+
url: string;
|
|
2455
2468
|
size?: [number, number] | undefined;
|
|
2456
2469
|
decorations?: boolean | undefined;
|
|
2457
2470
|
menu?: string | undefined;
|
|
@@ -2469,10 +2482,17 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2469
2482
|
tarball: string;
|
|
2470
2483
|
integrity: string;
|
|
2471
2484
|
manifest: {
|
|
2472
|
-
id: string;
|
|
2473
2485
|
name: string;
|
|
2486
|
+
id: string;
|
|
2474
2487
|
version: string;
|
|
2475
2488
|
ikenga_api: string;
|
|
2489
|
+
kind?: string | undefined;
|
|
2490
|
+
cron?: {
|
|
2491
|
+
id: string;
|
|
2492
|
+
handler: string;
|
|
2493
|
+
expr: string;
|
|
2494
|
+
env_from_settings?: string[] | undefined;
|
|
2495
|
+
}[] | undefined;
|
|
2476
2496
|
mcp?: {
|
|
2477
2497
|
name: string;
|
|
2478
2498
|
command: string;
|
|
@@ -2490,18 +2510,26 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2490
2510
|
key?: string | undefined;
|
|
2491
2511
|
} | undefined;
|
|
2492
2512
|
requires?: {
|
|
2493
|
-
name: string;
|
|
2494
2513
|
kind: string;
|
|
2514
|
+
name: string;
|
|
2495
2515
|
ref?: string | undefined;
|
|
2496
2516
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
2497
2517
|
}[] | undefined;
|
|
2498
2518
|
capabilities?: {
|
|
2499
|
-
supabase?: {
|
|
2500
|
-
required?: boolean | undefined;
|
|
2501
|
-
} | undefined;
|
|
2502
2519
|
sqlite?: {
|
|
2503
2520
|
db?: string | undefined;
|
|
2504
2521
|
} | undefined;
|
|
2522
|
+
secrets?: {
|
|
2523
|
+
declarations?: {
|
|
2524
|
+
name: string;
|
|
2525
|
+
vault_key: string;
|
|
2526
|
+
format?: string | undefined;
|
|
2527
|
+
required?: boolean | undefined;
|
|
2528
|
+
}[] | undefined;
|
|
2529
|
+
} | undefined;
|
|
2530
|
+
supabase?: {
|
|
2531
|
+
required?: boolean | undefined;
|
|
2532
|
+
} | undefined;
|
|
2505
2533
|
webview?: {
|
|
2506
2534
|
child_webviews?: boolean | undefined;
|
|
2507
2535
|
partitions?: string[] | undefined;
|
|
@@ -2512,22 +2540,14 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2512
2540
|
auth_secret?: string | undefined;
|
|
2513
2541
|
auth_header?: string | undefined;
|
|
2514
2542
|
} | undefined;
|
|
2515
|
-
secrets?: {
|
|
2516
|
-
declarations?: {
|
|
2517
|
-
name: string;
|
|
2518
|
-
vault_key: string;
|
|
2519
|
-
format?: string | undefined;
|
|
2520
|
-
required?: boolean | undefined;
|
|
2521
|
-
}[] | undefined;
|
|
2522
|
-
} | undefined;
|
|
2523
2543
|
invoke?: {
|
|
2524
2544
|
commands?: string[] | undefined;
|
|
2525
2545
|
} | undefined;
|
|
2526
2546
|
} | undefined;
|
|
2527
2547
|
engine?: {
|
|
2528
2548
|
capabilities: {
|
|
2529
|
-
mcp: boolean;
|
|
2530
2549
|
streaming: boolean;
|
|
2550
|
+
mcp: boolean;
|
|
2531
2551
|
toolUse: boolean;
|
|
2532
2552
|
thinking: boolean;
|
|
2533
2553
|
artifacts: boolean;
|
|
@@ -2548,8 +2568,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2548
2568
|
docsUrl?: string | undefined;
|
|
2549
2569
|
} | undefined;
|
|
2550
2570
|
} | undefined;
|
|
2551
|
-
kind?: string | undefined;
|
|
2552
2571
|
permissions?: {
|
|
2572
|
+
engine?: string[] | undefined;
|
|
2553
2573
|
'shell.execute'?: string[] | undefined;
|
|
2554
2574
|
'fs.read'?: string[] | undefined;
|
|
2555
2575
|
'fs.write'?: string[] | undefined;
|
|
@@ -2611,15 +2631,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2611
2631
|
}[] | undefined;
|
|
2612
2632
|
events?: string[] | undefined;
|
|
2613
2633
|
} | undefined;
|
|
2614
|
-
cron?: {
|
|
2615
|
-
id: string;
|
|
2616
|
-
handler: string;
|
|
2617
|
-
expr: string;
|
|
2618
|
-
env_from_settings?: string[] | undefined;
|
|
2619
|
-
}[] | undefined;
|
|
2620
2634
|
window?: {
|
|
2621
|
-
url: string;
|
|
2622
2635
|
label: string;
|
|
2636
|
+
url: string;
|
|
2623
2637
|
size?: [number, number] | undefined;
|
|
2624
2638
|
decorations?: boolean | undefined;
|
|
2625
2639
|
menu?: string | undefined;
|
|
@@ -2654,6 +2668,12 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2654
2668
|
tarball: string;
|
|
2655
2669
|
integrity: string;
|
|
2656
2670
|
manifest: {
|
|
2671
|
+
cron: {
|
|
2672
|
+
id: string;
|
|
2673
|
+
handler: string;
|
|
2674
|
+
expr: string;
|
|
2675
|
+
env_from_settings: string[];
|
|
2676
|
+
}[];
|
|
2657
2677
|
mcp: {
|
|
2658
2678
|
args: string[];
|
|
2659
2679
|
name: string;
|
|
@@ -2663,16 +2683,17 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2663
2683
|
auto_restart: boolean;
|
|
2664
2684
|
lifecycle?: "per-call" | "long-lived" | undefined;
|
|
2665
2685
|
}[];
|
|
2666
|
-
id: string;
|
|
2667
2686
|
name: string;
|
|
2687
|
+
id: string;
|
|
2668
2688
|
version: string;
|
|
2669
2689
|
requires: {
|
|
2670
|
-
name: string;
|
|
2671
2690
|
kind: string;
|
|
2691
|
+
name: string;
|
|
2672
2692
|
ref?: string | undefined;
|
|
2673
2693
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
2674
2694
|
}[];
|
|
2675
2695
|
permissions: {
|
|
2696
|
+
engine: string[];
|
|
2676
2697
|
'shell.execute': string[];
|
|
2677
2698
|
'fs.read': string[];
|
|
2678
2699
|
'fs.write': string[];
|
|
@@ -2717,16 +2738,11 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2717
2738
|
csp?: Record<string, string[]> | undefined;
|
|
2718
2739
|
permissions?: Record<string, string[]> | undefined;
|
|
2719
2740
|
};
|
|
2720
|
-
cron: {
|
|
2721
|
-
id: string;
|
|
2722
|
-
handler: string;
|
|
2723
|
-
expr: string;
|
|
2724
|
-
env_from_settings: string[];
|
|
2725
|
-
}[];
|
|
2726
2741
|
screenshots: {
|
|
2727
2742
|
path: string;
|
|
2728
2743
|
caption?: string | undefined;
|
|
2729
2744
|
}[];
|
|
2745
|
+
kind?: string | undefined;
|
|
2730
2746
|
queries?: {
|
|
2731
2747
|
key_prefixes: string[];
|
|
2732
2748
|
} | undefined;
|
|
@@ -2735,12 +2751,20 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2735
2751
|
key?: string | undefined;
|
|
2736
2752
|
} | undefined;
|
|
2737
2753
|
capabilities?: {
|
|
2738
|
-
supabase?: {
|
|
2739
|
-
required: boolean;
|
|
2740
|
-
} | undefined;
|
|
2741
2754
|
sqlite?: {
|
|
2742
2755
|
db: string;
|
|
2743
2756
|
} | undefined;
|
|
2757
|
+
secrets?: {
|
|
2758
|
+
declarations: {
|
|
2759
|
+
name: string;
|
|
2760
|
+
required: boolean;
|
|
2761
|
+
vault_key: string;
|
|
2762
|
+
format?: string | undefined;
|
|
2763
|
+
}[];
|
|
2764
|
+
} | undefined;
|
|
2765
|
+
supabase?: {
|
|
2766
|
+
required: boolean;
|
|
2767
|
+
} | undefined;
|
|
2744
2768
|
webview?: {
|
|
2745
2769
|
child_webviews: boolean;
|
|
2746
2770
|
partitions: string[];
|
|
@@ -2751,22 +2775,14 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2751
2775
|
auth_header: string;
|
|
2752
2776
|
auth_secret?: string | undefined;
|
|
2753
2777
|
} | undefined;
|
|
2754
|
-
secrets?: {
|
|
2755
|
-
declarations: {
|
|
2756
|
-
name: string;
|
|
2757
|
-
required: boolean;
|
|
2758
|
-
vault_key: string;
|
|
2759
|
-
format?: string | undefined;
|
|
2760
|
-
}[];
|
|
2761
|
-
} | undefined;
|
|
2762
2778
|
invoke?: {
|
|
2763
2779
|
commands: string[];
|
|
2764
2780
|
} | undefined;
|
|
2765
2781
|
} | undefined;
|
|
2766
2782
|
engine?: {
|
|
2767
2783
|
capabilities: {
|
|
2768
|
-
mcp: boolean;
|
|
2769
2784
|
streaming: boolean;
|
|
2785
|
+
mcp: boolean;
|
|
2770
2786
|
toolUse: boolean;
|
|
2771
2787
|
thinking: boolean;
|
|
2772
2788
|
artifacts: boolean;
|
|
@@ -2787,7 +2803,6 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2787
2803
|
};
|
|
2788
2804
|
display?: string | undefined;
|
|
2789
2805
|
} | undefined;
|
|
2790
|
-
kind?: string | undefined;
|
|
2791
2806
|
migrations?: string | undefined;
|
|
2792
2807
|
settings?: {
|
|
2793
2808
|
schema: {
|
|
@@ -2807,8 +2822,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2807
2822
|
events: string[];
|
|
2808
2823
|
} | undefined;
|
|
2809
2824
|
window?: {
|
|
2810
|
-
url: string;
|
|
2811
2825
|
label: string;
|
|
2826
|
+
url: string;
|
|
2812
2827
|
size?: [number, number] | undefined;
|
|
2813
2828
|
decorations?: boolean | undefined;
|
|
2814
2829
|
menu?: string | undefined;
|
|
@@ -2831,10 +2846,17 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2831
2846
|
tarball: string;
|
|
2832
2847
|
integrity: string;
|
|
2833
2848
|
manifest: {
|
|
2834
|
-
id: string;
|
|
2835
2849
|
name: string;
|
|
2850
|
+
id: string;
|
|
2836
2851
|
version: string;
|
|
2837
2852
|
ikenga_api: string;
|
|
2853
|
+
kind?: string | undefined;
|
|
2854
|
+
cron?: {
|
|
2855
|
+
id: string;
|
|
2856
|
+
handler: string;
|
|
2857
|
+
expr: string;
|
|
2858
|
+
env_from_settings?: string[] | undefined;
|
|
2859
|
+
}[] | undefined;
|
|
2838
2860
|
mcp?: {
|
|
2839
2861
|
name: string;
|
|
2840
2862
|
command: string;
|
|
@@ -2852,18 +2874,26 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2852
2874
|
key?: string | undefined;
|
|
2853
2875
|
} | undefined;
|
|
2854
2876
|
requires?: {
|
|
2855
|
-
name: string;
|
|
2856
2877
|
kind: string;
|
|
2878
|
+
name: string;
|
|
2857
2879
|
ref?: string | undefined;
|
|
2858
2880
|
source?: "git" | "npx" | "catalog" | "local" | undefined;
|
|
2859
2881
|
}[] | undefined;
|
|
2860
2882
|
capabilities?: {
|
|
2861
|
-
supabase?: {
|
|
2862
|
-
required?: boolean | undefined;
|
|
2863
|
-
} | undefined;
|
|
2864
2883
|
sqlite?: {
|
|
2865
2884
|
db?: string | undefined;
|
|
2866
2885
|
} | undefined;
|
|
2886
|
+
secrets?: {
|
|
2887
|
+
declarations?: {
|
|
2888
|
+
name: string;
|
|
2889
|
+
vault_key: string;
|
|
2890
|
+
format?: string | undefined;
|
|
2891
|
+
required?: boolean | undefined;
|
|
2892
|
+
}[] | undefined;
|
|
2893
|
+
} | undefined;
|
|
2894
|
+
supabase?: {
|
|
2895
|
+
required?: boolean | undefined;
|
|
2896
|
+
} | undefined;
|
|
2867
2897
|
webview?: {
|
|
2868
2898
|
child_webviews?: boolean | undefined;
|
|
2869
2899
|
partitions?: string[] | undefined;
|
|
@@ -2874,22 +2904,14 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2874
2904
|
auth_secret?: string | undefined;
|
|
2875
2905
|
auth_header?: string | undefined;
|
|
2876
2906
|
} | undefined;
|
|
2877
|
-
secrets?: {
|
|
2878
|
-
declarations?: {
|
|
2879
|
-
name: string;
|
|
2880
|
-
vault_key: string;
|
|
2881
|
-
format?: string | undefined;
|
|
2882
|
-
required?: boolean | undefined;
|
|
2883
|
-
}[] | undefined;
|
|
2884
|
-
} | undefined;
|
|
2885
2907
|
invoke?: {
|
|
2886
2908
|
commands?: string[] | undefined;
|
|
2887
2909
|
} | undefined;
|
|
2888
2910
|
} | undefined;
|
|
2889
2911
|
engine?: {
|
|
2890
2912
|
capabilities: {
|
|
2891
|
-
mcp: boolean;
|
|
2892
2913
|
streaming: boolean;
|
|
2914
|
+
mcp: boolean;
|
|
2893
2915
|
toolUse: boolean;
|
|
2894
2916
|
thinking: boolean;
|
|
2895
2917
|
artifacts: boolean;
|
|
@@ -2910,8 +2932,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2910
2932
|
docsUrl?: string | undefined;
|
|
2911
2933
|
} | undefined;
|
|
2912
2934
|
} | undefined;
|
|
2913
|
-
kind?: string | undefined;
|
|
2914
2935
|
permissions?: {
|
|
2936
|
+
engine?: string[] | undefined;
|
|
2915
2937
|
'shell.execute'?: string[] | undefined;
|
|
2916
2938
|
'fs.read'?: string[] | undefined;
|
|
2917
2939
|
'fs.write'?: string[] | undefined;
|
|
@@ -2973,15 +2995,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2973
2995
|
}[] | undefined;
|
|
2974
2996
|
events?: string[] | undefined;
|
|
2975
2997
|
} | undefined;
|
|
2976
|
-
cron?: {
|
|
2977
|
-
id: string;
|
|
2978
|
-
handler: string;
|
|
2979
|
-
expr: string;
|
|
2980
|
-
env_from_settings?: string[] | undefined;
|
|
2981
|
-
}[] | undefined;
|
|
2982
2998
|
window?: {
|
|
2983
|
-
url: string;
|
|
2984
2999
|
label: string;
|
|
3000
|
+
url: string;
|
|
2985
3001
|
size?: [number, number] | undefined;
|
|
2986
3002
|
decorations?: boolean | undefined;
|
|
2987
3003
|
menu?: string | undefined;
|
|
@@ -3039,16 +3055,16 @@ export declare const RegistryEntrySchema: z.ZodObject<{
|
|
|
3039
3055
|
name: string;
|
|
3040
3056
|
latest: string;
|
|
3041
3057
|
detail: string;
|
|
3042
|
-
description?: string | undefined;
|
|
3043
3058
|
kind?: string | undefined;
|
|
3059
|
+
description?: string | undefined;
|
|
3044
3060
|
screenshot?: string | undefined;
|
|
3045
3061
|
visibility?: "hidden" | "public" | undefined;
|
|
3046
3062
|
}, {
|
|
3047
3063
|
name: string;
|
|
3048
3064
|
latest: string;
|
|
3049
3065
|
detail: string;
|
|
3050
|
-
description?: string | undefined;
|
|
3051
3066
|
kind?: string | undefined;
|
|
3067
|
+
description?: string | undefined;
|
|
3052
3068
|
screenshot?: string | undefined;
|
|
3053
3069
|
visibility?: "hidden" | "public" | undefined;
|
|
3054
3070
|
}>;
|
|
@@ -3092,16 +3108,16 @@ export declare const RegistryIndexSchema: z.ZodObject<{
|
|
|
3092
3108
|
name: string;
|
|
3093
3109
|
latest: string;
|
|
3094
3110
|
detail: string;
|
|
3095
|
-
description?: string | undefined;
|
|
3096
3111
|
kind?: string | undefined;
|
|
3112
|
+
description?: string | undefined;
|
|
3097
3113
|
screenshot?: string | undefined;
|
|
3098
3114
|
visibility?: "hidden" | "public" | undefined;
|
|
3099
3115
|
}, {
|
|
3100
3116
|
name: string;
|
|
3101
3117
|
latest: string;
|
|
3102
3118
|
detail: string;
|
|
3103
|
-
description?: string | undefined;
|
|
3104
3119
|
kind?: string | undefined;
|
|
3120
|
+
description?: string | undefined;
|
|
3105
3121
|
screenshot?: string | undefined;
|
|
3106
3122
|
visibility?: "hidden" | "public" | undefined;
|
|
3107
3123
|
}>, "many">;
|
|
@@ -3112,8 +3128,8 @@ export declare const RegistryIndexSchema: z.ZodObject<{
|
|
|
3112
3128
|
name: string;
|
|
3113
3129
|
latest: string;
|
|
3114
3130
|
detail: string;
|
|
3115
|
-
description?: string | undefined;
|
|
3116
3131
|
kind?: string | undefined;
|
|
3132
|
+
description?: string | undefined;
|
|
3117
3133
|
screenshot?: string | undefined;
|
|
3118
3134
|
visibility?: "hidden" | "public" | undefined;
|
|
3119
3135
|
}[];
|
|
@@ -3124,8 +3140,8 @@ export declare const RegistryIndexSchema: z.ZodObject<{
|
|
|
3124
3140
|
name: string;
|
|
3125
3141
|
latest: string;
|
|
3126
3142
|
detail: string;
|
|
3127
|
-
description?: string | undefined;
|
|
3128
3143
|
kind?: string | undefined;
|
|
3144
|
+
description?: string | undefined;
|
|
3129
3145
|
screenshot?: string | undefined;
|
|
3130
3146
|
visibility?: "hidden" | "public" | undefined;
|
|
3131
3147
|
}[];
|