@ikenga/contract 0.10.0 → 0.11.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/browser.d.ts +30 -0
- package/dist/browser.d.ts.map +1 -1
- package/dist/browser.js +23 -0
- package/dist/browser.js.map +1 -1
- package/dist/manifest.d.ts +125 -96
- package/dist/manifest.d.ts.map +1 -1
- package/dist/manifest.js +6 -0
- package/dist/manifest.js.map +1 -1
- package/dist/registry.d.ts +260 -240
- package/dist/registry.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/browser.ts +28 -0
- package/src/manifest.ts +6 -0
package/dist/registry.d.ts
CHANGED
|
@@ -377,12 +377,15 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
377
377
|
webview: z.ZodOptional<z.ZodObject<{
|
|
378
378
|
child_webviews: z.ZodDefault<z.ZodBoolean>;
|
|
379
379
|
partitions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
380
|
+
engines: z.ZodDefault<z.ZodArray<z.ZodEnum<["webkit", "chrome"]>, "many">>;
|
|
380
381
|
}, "strip", z.ZodTypeAny, {
|
|
381
382
|
child_webviews: boolean;
|
|
382
383
|
partitions: string[];
|
|
384
|
+
engines: ("webkit" | "chrome")[];
|
|
383
385
|
}, {
|
|
384
386
|
child_webviews?: boolean | undefined;
|
|
385
387
|
partitions?: string[] | undefined;
|
|
388
|
+
engines?: ("webkit" | "chrome")[] | undefined;
|
|
386
389
|
}>>;
|
|
387
390
|
agentOps: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
388
391
|
http: z.ZodOptional<z.ZodObject<{
|
|
@@ -444,6 +447,7 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
444
447
|
webview?: {
|
|
445
448
|
child_webviews: boolean;
|
|
446
449
|
partitions: string[];
|
|
450
|
+
engines: ("webkit" | "chrome")[];
|
|
447
451
|
} | undefined;
|
|
448
452
|
agentOps?: {} | undefined;
|
|
449
453
|
http?: {
|
|
@@ -471,6 +475,7 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
471
475
|
webview?: {
|
|
472
476
|
child_webviews?: boolean | undefined;
|
|
473
477
|
partitions?: string[] | undefined;
|
|
478
|
+
engines?: ("webkit" | "chrome")[] | undefined;
|
|
474
479
|
} | undefined;
|
|
475
480
|
agentOps?: {} | undefined;
|
|
476
481
|
http?: {
|
|
@@ -713,6 +718,7 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
713
718
|
webview?: {
|
|
714
719
|
child_webviews: boolean;
|
|
715
720
|
partitions: string[];
|
|
721
|
+
engines: ("webkit" | "chrome")[];
|
|
716
722
|
} | undefined;
|
|
717
723
|
agentOps?: {} | undefined;
|
|
718
724
|
http?: {
|
|
@@ -731,6 +737,30 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
731
737
|
commands: string[];
|
|
732
738
|
} | undefined;
|
|
733
739
|
} | undefined;
|
|
740
|
+
engine?: {
|
|
741
|
+
capabilities: {
|
|
742
|
+
mcp: boolean;
|
|
743
|
+
streaming: boolean;
|
|
744
|
+
toolUse: boolean;
|
|
745
|
+
thinking: boolean;
|
|
746
|
+
artifacts: boolean;
|
|
747
|
+
fileAttachments: boolean;
|
|
748
|
+
imageInput: boolean;
|
|
749
|
+
slashCommands: boolean;
|
|
750
|
+
modelSwitching: boolean;
|
|
751
|
+
promptCaching: boolean;
|
|
752
|
+
agenticTools: boolean;
|
|
753
|
+
sessionResume: boolean;
|
|
754
|
+
};
|
|
755
|
+
agentId: string;
|
|
756
|
+
onboarding: {
|
|
757
|
+
requiredVaultKeys: string[];
|
|
758
|
+
requiredEnvVars: string[];
|
|
759
|
+
authCommand?: string | undefined;
|
|
760
|
+
docsUrl?: string | undefined;
|
|
761
|
+
};
|
|
762
|
+
display?: string | undefined;
|
|
763
|
+
} | undefined;
|
|
734
764
|
kind?: string | undefined;
|
|
735
765
|
migrations?: string | undefined;
|
|
736
766
|
settings?: {
|
|
@@ -757,30 +787,6 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
757
787
|
decorations?: boolean | undefined;
|
|
758
788
|
menu?: string | undefined;
|
|
759
789
|
} | undefined;
|
|
760
|
-
engine?: {
|
|
761
|
-
capabilities: {
|
|
762
|
-
mcp: boolean;
|
|
763
|
-
streaming: boolean;
|
|
764
|
-
toolUse: boolean;
|
|
765
|
-
thinking: boolean;
|
|
766
|
-
artifacts: boolean;
|
|
767
|
-
fileAttachments: boolean;
|
|
768
|
-
imageInput: boolean;
|
|
769
|
-
slashCommands: boolean;
|
|
770
|
-
modelSwitching: boolean;
|
|
771
|
-
promptCaching: boolean;
|
|
772
|
-
agenticTools: boolean;
|
|
773
|
-
sessionResume: boolean;
|
|
774
|
-
};
|
|
775
|
-
agentId: string;
|
|
776
|
-
onboarding: {
|
|
777
|
-
requiredVaultKeys: string[];
|
|
778
|
-
requiredEnvVars: string[];
|
|
779
|
-
authCommand?: string | undefined;
|
|
780
|
-
docsUrl?: string | undefined;
|
|
781
|
-
};
|
|
782
|
-
display?: string | undefined;
|
|
783
|
-
} | undefined;
|
|
784
790
|
signature?: string | undefined;
|
|
785
791
|
}, {
|
|
786
792
|
id: string;
|
|
@@ -819,6 +825,7 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
819
825
|
webview?: {
|
|
820
826
|
child_webviews?: boolean | undefined;
|
|
821
827
|
partitions?: string[] | undefined;
|
|
828
|
+
engines?: ("webkit" | "chrome")[] | undefined;
|
|
822
829
|
} | undefined;
|
|
823
830
|
agentOps?: {} | undefined;
|
|
824
831
|
http?: {
|
|
@@ -837,6 +844,30 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
837
844
|
commands?: string[] | undefined;
|
|
838
845
|
} | undefined;
|
|
839
846
|
} | undefined;
|
|
847
|
+
engine?: {
|
|
848
|
+
capabilities: {
|
|
849
|
+
mcp: boolean;
|
|
850
|
+
streaming: boolean;
|
|
851
|
+
toolUse: boolean;
|
|
852
|
+
thinking: boolean;
|
|
853
|
+
artifacts: boolean;
|
|
854
|
+
fileAttachments: boolean;
|
|
855
|
+
imageInput: boolean;
|
|
856
|
+
slashCommands: boolean;
|
|
857
|
+
modelSwitching: boolean;
|
|
858
|
+
promptCaching: boolean;
|
|
859
|
+
agenticTools: boolean;
|
|
860
|
+
sessionResume: boolean;
|
|
861
|
+
};
|
|
862
|
+
agentId: string;
|
|
863
|
+
display?: string | undefined;
|
|
864
|
+
onboarding?: {
|
|
865
|
+
requiredVaultKeys?: string[] | undefined;
|
|
866
|
+
requiredEnvVars?: string[] | undefined;
|
|
867
|
+
authCommand?: string | undefined;
|
|
868
|
+
docsUrl?: string | undefined;
|
|
869
|
+
} | undefined;
|
|
870
|
+
} | undefined;
|
|
840
871
|
kind?: string | undefined;
|
|
841
872
|
permissions?: {
|
|
842
873
|
'shell.execute'?: string[] | undefined;
|
|
@@ -913,30 +944,6 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
913
944
|
decorations?: boolean | undefined;
|
|
914
945
|
menu?: string | undefined;
|
|
915
946
|
} | undefined;
|
|
916
|
-
engine?: {
|
|
917
|
-
capabilities: {
|
|
918
|
-
mcp: boolean;
|
|
919
|
-
streaming: boolean;
|
|
920
|
-
toolUse: boolean;
|
|
921
|
-
thinking: boolean;
|
|
922
|
-
artifacts: boolean;
|
|
923
|
-
fileAttachments: boolean;
|
|
924
|
-
imageInput: boolean;
|
|
925
|
-
slashCommands: boolean;
|
|
926
|
-
modelSwitching: boolean;
|
|
927
|
-
promptCaching: boolean;
|
|
928
|
-
agenticTools: boolean;
|
|
929
|
-
sessionResume: boolean;
|
|
930
|
-
};
|
|
931
|
-
agentId: string;
|
|
932
|
-
display?: string | undefined;
|
|
933
|
-
onboarding?: {
|
|
934
|
-
requiredVaultKeys?: string[] | undefined;
|
|
935
|
-
requiredEnvVars?: string[] | undefined;
|
|
936
|
-
authCommand?: string | undefined;
|
|
937
|
-
docsUrl?: string | undefined;
|
|
938
|
-
} | undefined;
|
|
939
|
-
} | undefined;
|
|
940
947
|
screenshots?: {
|
|
941
948
|
path: string;
|
|
942
949
|
caption?: string | undefined;
|
|
@@ -1073,6 +1080,7 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1073
1080
|
webview?: {
|
|
1074
1081
|
child_webviews: boolean;
|
|
1075
1082
|
partitions: string[];
|
|
1083
|
+
engines: ("webkit" | "chrome")[];
|
|
1076
1084
|
} | undefined;
|
|
1077
1085
|
agentOps?: {} | undefined;
|
|
1078
1086
|
http?: {
|
|
@@ -1091,6 +1099,30 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1091
1099
|
commands: string[];
|
|
1092
1100
|
} | undefined;
|
|
1093
1101
|
} | undefined;
|
|
1102
|
+
engine?: {
|
|
1103
|
+
capabilities: {
|
|
1104
|
+
mcp: boolean;
|
|
1105
|
+
streaming: boolean;
|
|
1106
|
+
toolUse: boolean;
|
|
1107
|
+
thinking: boolean;
|
|
1108
|
+
artifacts: boolean;
|
|
1109
|
+
fileAttachments: boolean;
|
|
1110
|
+
imageInput: boolean;
|
|
1111
|
+
slashCommands: boolean;
|
|
1112
|
+
modelSwitching: boolean;
|
|
1113
|
+
promptCaching: boolean;
|
|
1114
|
+
agenticTools: boolean;
|
|
1115
|
+
sessionResume: boolean;
|
|
1116
|
+
};
|
|
1117
|
+
agentId: string;
|
|
1118
|
+
onboarding: {
|
|
1119
|
+
requiredVaultKeys: string[];
|
|
1120
|
+
requiredEnvVars: string[];
|
|
1121
|
+
authCommand?: string | undefined;
|
|
1122
|
+
docsUrl?: string | undefined;
|
|
1123
|
+
};
|
|
1124
|
+
display?: string | undefined;
|
|
1125
|
+
} | undefined;
|
|
1094
1126
|
kind?: string | undefined;
|
|
1095
1127
|
migrations?: string | undefined;
|
|
1096
1128
|
settings?: {
|
|
@@ -1117,30 +1149,6 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1117
1149
|
decorations?: boolean | undefined;
|
|
1118
1150
|
menu?: string | undefined;
|
|
1119
1151
|
} | undefined;
|
|
1120
|
-
engine?: {
|
|
1121
|
-
capabilities: {
|
|
1122
|
-
mcp: boolean;
|
|
1123
|
-
streaming: boolean;
|
|
1124
|
-
toolUse: boolean;
|
|
1125
|
-
thinking: boolean;
|
|
1126
|
-
artifacts: boolean;
|
|
1127
|
-
fileAttachments: boolean;
|
|
1128
|
-
imageInput: boolean;
|
|
1129
|
-
slashCommands: boolean;
|
|
1130
|
-
modelSwitching: boolean;
|
|
1131
|
-
promptCaching: boolean;
|
|
1132
|
-
agenticTools: boolean;
|
|
1133
|
-
sessionResume: boolean;
|
|
1134
|
-
};
|
|
1135
|
-
agentId: string;
|
|
1136
|
-
onboarding: {
|
|
1137
|
-
requiredVaultKeys: string[];
|
|
1138
|
-
requiredEnvVars: string[];
|
|
1139
|
-
authCommand?: string | undefined;
|
|
1140
|
-
docsUrl?: string | undefined;
|
|
1141
|
-
};
|
|
1142
|
-
display?: string | undefined;
|
|
1143
|
-
} | undefined;
|
|
1144
1152
|
signature?: string | undefined;
|
|
1145
1153
|
};
|
|
1146
1154
|
deps: {
|
|
@@ -1190,6 +1198,7 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1190
1198
|
webview?: {
|
|
1191
1199
|
child_webviews?: boolean | undefined;
|
|
1192
1200
|
partitions?: string[] | undefined;
|
|
1201
|
+
engines?: ("webkit" | "chrome")[] | undefined;
|
|
1193
1202
|
} | undefined;
|
|
1194
1203
|
agentOps?: {} | undefined;
|
|
1195
1204
|
http?: {
|
|
@@ -1208,6 +1217,30 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1208
1217
|
commands?: string[] | undefined;
|
|
1209
1218
|
} | undefined;
|
|
1210
1219
|
} | undefined;
|
|
1220
|
+
engine?: {
|
|
1221
|
+
capabilities: {
|
|
1222
|
+
mcp: boolean;
|
|
1223
|
+
streaming: boolean;
|
|
1224
|
+
toolUse: boolean;
|
|
1225
|
+
thinking: boolean;
|
|
1226
|
+
artifacts: boolean;
|
|
1227
|
+
fileAttachments: boolean;
|
|
1228
|
+
imageInput: boolean;
|
|
1229
|
+
slashCommands: boolean;
|
|
1230
|
+
modelSwitching: boolean;
|
|
1231
|
+
promptCaching: boolean;
|
|
1232
|
+
agenticTools: boolean;
|
|
1233
|
+
sessionResume: boolean;
|
|
1234
|
+
};
|
|
1235
|
+
agentId: string;
|
|
1236
|
+
display?: string | undefined;
|
|
1237
|
+
onboarding?: {
|
|
1238
|
+
requiredVaultKeys?: string[] | undefined;
|
|
1239
|
+
requiredEnvVars?: string[] | undefined;
|
|
1240
|
+
authCommand?: string | undefined;
|
|
1241
|
+
docsUrl?: string | undefined;
|
|
1242
|
+
} | undefined;
|
|
1243
|
+
} | undefined;
|
|
1211
1244
|
kind?: string | undefined;
|
|
1212
1245
|
permissions?: {
|
|
1213
1246
|
'shell.execute'?: string[] | undefined;
|
|
@@ -1284,30 +1317,6 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1284
1317
|
decorations?: boolean | undefined;
|
|
1285
1318
|
menu?: string | undefined;
|
|
1286
1319
|
} | undefined;
|
|
1287
|
-
engine?: {
|
|
1288
|
-
capabilities: {
|
|
1289
|
-
mcp: boolean;
|
|
1290
|
-
streaming: boolean;
|
|
1291
|
-
toolUse: boolean;
|
|
1292
|
-
thinking: boolean;
|
|
1293
|
-
artifacts: boolean;
|
|
1294
|
-
fileAttachments: boolean;
|
|
1295
|
-
imageInput: boolean;
|
|
1296
|
-
slashCommands: boolean;
|
|
1297
|
-
modelSwitching: boolean;
|
|
1298
|
-
promptCaching: boolean;
|
|
1299
|
-
agenticTools: boolean;
|
|
1300
|
-
sessionResume: boolean;
|
|
1301
|
-
};
|
|
1302
|
-
agentId: string;
|
|
1303
|
-
display?: string | undefined;
|
|
1304
|
-
onboarding?: {
|
|
1305
|
-
requiredVaultKeys?: string[] | undefined;
|
|
1306
|
-
requiredEnvVars?: string[] | undefined;
|
|
1307
|
-
authCommand?: string | undefined;
|
|
1308
|
-
docsUrl?: string | undefined;
|
|
1309
|
-
} | undefined;
|
|
1310
|
-
} | undefined;
|
|
1311
1320
|
screenshots?: {
|
|
1312
1321
|
path: string;
|
|
1313
1322
|
caption?: string | undefined;
|
|
@@ -1675,12 +1684,15 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1675
1684
|
webview: z.ZodOptional<z.ZodObject<{
|
|
1676
1685
|
child_webviews: z.ZodDefault<z.ZodBoolean>;
|
|
1677
1686
|
partitions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1687
|
+
engines: z.ZodDefault<z.ZodArray<z.ZodEnum<["webkit", "chrome"]>, "many">>;
|
|
1678
1688
|
}, "strip", z.ZodTypeAny, {
|
|
1679
1689
|
child_webviews: boolean;
|
|
1680
1690
|
partitions: string[];
|
|
1691
|
+
engines: ("webkit" | "chrome")[];
|
|
1681
1692
|
}, {
|
|
1682
1693
|
child_webviews?: boolean | undefined;
|
|
1683
1694
|
partitions?: string[] | undefined;
|
|
1695
|
+
engines?: ("webkit" | "chrome")[] | undefined;
|
|
1684
1696
|
}>>;
|
|
1685
1697
|
agentOps: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
1686
1698
|
http: z.ZodOptional<z.ZodObject<{
|
|
@@ -1742,6 +1754,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1742
1754
|
webview?: {
|
|
1743
1755
|
child_webviews: boolean;
|
|
1744
1756
|
partitions: string[];
|
|
1757
|
+
engines: ("webkit" | "chrome")[];
|
|
1745
1758
|
} | undefined;
|
|
1746
1759
|
agentOps?: {} | undefined;
|
|
1747
1760
|
http?: {
|
|
@@ -1769,6 +1782,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1769
1782
|
webview?: {
|
|
1770
1783
|
child_webviews?: boolean | undefined;
|
|
1771
1784
|
partitions?: string[] | undefined;
|
|
1785
|
+
engines?: ("webkit" | "chrome")[] | undefined;
|
|
1772
1786
|
} | undefined;
|
|
1773
1787
|
agentOps?: {} | undefined;
|
|
1774
1788
|
http?: {
|
|
@@ -2011,6 +2025,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2011
2025
|
webview?: {
|
|
2012
2026
|
child_webviews: boolean;
|
|
2013
2027
|
partitions: string[];
|
|
2028
|
+
engines: ("webkit" | "chrome")[];
|
|
2014
2029
|
} | undefined;
|
|
2015
2030
|
agentOps?: {} | undefined;
|
|
2016
2031
|
http?: {
|
|
@@ -2029,6 +2044,30 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2029
2044
|
commands: string[];
|
|
2030
2045
|
} | undefined;
|
|
2031
2046
|
} | undefined;
|
|
2047
|
+
engine?: {
|
|
2048
|
+
capabilities: {
|
|
2049
|
+
mcp: boolean;
|
|
2050
|
+
streaming: boolean;
|
|
2051
|
+
toolUse: boolean;
|
|
2052
|
+
thinking: boolean;
|
|
2053
|
+
artifacts: boolean;
|
|
2054
|
+
fileAttachments: boolean;
|
|
2055
|
+
imageInput: boolean;
|
|
2056
|
+
slashCommands: boolean;
|
|
2057
|
+
modelSwitching: boolean;
|
|
2058
|
+
promptCaching: boolean;
|
|
2059
|
+
agenticTools: boolean;
|
|
2060
|
+
sessionResume: boolean;
|
|
2061
|
+
};
|
|
2062
|
+
agentId: string;
|
|
2063
|
+
onboarding: {
|
|
2064
|
+
requiredVaultKeys: string[];
|
|
2065
|
+
requiredEnvVars: string[];
|
|
2066
|
+
authCommand?: string | undefined;
|
|
2067
|
+
docsUrl?: string | undefined;
|
|
2068
|
+
};
|
|
2069
|
+
display?: string | undefined;
|
|
2070
|
+
} | undefined;
|
|
2032
2071
|
kind?: string | undefined;
|
|
2033
2072
|
migrations?: string | undefined;
|
|
2034
2073
|
settings?: {
|
|
@@ -2055,30 +2094,6 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2055
2094
|
decorations?: boolean | undefined;
|
|
2056
2095
|
menu?: string | undefined;
|
|
2057
2096
|
} | undefined;
|
|
2058
|
-
engine?: {
|
|
2059
|
-
capabilities: {
|
|
2060
|
-
mcp: boolean;
|
|
2061
|
-
streaming: boolean;
|
|
2062
|
-
toolUse: boolean;
|
|
2063
|
-
thinking: boolean;
|
|
2064
|
-
artifacts: boolean;
|
|
2065
|
-
fileAttachments: boolean;
|
|
2066
|
-
imageInput: boolean;
|
|
2067
|
-
slashCommands: boolean;
|
|
2068
|
-
modelSwitching: boolean;
|
|
2069
|
-
promptCaching: boolean;
|
|
2070
|
-
agenticTools: boolean;
|
|
2071
|
-
sessionResume: boolean;
|
|
2072
|
-
};
|
|
2073
|
-
agentId: string;
|
|
2074
|
-
onboarding: {
|
|
2075
|
-
requiredVaultKeys: string[];
|
|
2076
|
-
requiredEnvVars: string[];
|
|
2077
|
-
authCommand?: string | undefined;
|
|
2078
|
-
docsUrl?: string | undefined;
|
|
2079
|
-
};
|
|
2080
|
-
display?: string | undefined;
|
|
2081
|
-
} | undefined;
|
|
2082
2097
|
signature?: string | undefined;
|
|
2083
2098
|
}, {
|
|
2084
2099
|
id: string;
|
|
@@ -2117,6 +2132,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2117
2132
|
webview?: {
|
|
2118
2133
|
child_webviews?: boolean | undefined;
|
|
2119
2134
|
partitions?: string[] | undefined;
|
|
2135
|
+
engines?: ("webkit" | "chrome")[] | undefined;
|
|
2120
2136
|
} | undefined;
|
|
2121
2137
|
agentOps?: {} | undefined;
|
|
2122
2138
|
http?: {
|
|
@@ -2135,6 +2151,30 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2135
2151
|
commands?: string[] | undefined;
|
|
2136
2152
|
} | undefined;
|
|
2137
2153
|
} | undefined;
|
|
2154
|
+
engine?: {
|
|
2155
|
+
capabilities: {
|
|
2156
|
+
mcp: boolean;
|
|
2157
|
+
streaming: boolean;
|
|
2158
|
+
toolUse: boolean;
|
|
2159
|
+
thinking: boolean;
|
|
2160
|
+
artifacts: boolean;
|
|
2161
|
+
fileAttachments: boolean;
|
|
2162
|
+
imageInput: boolean;
|
|
2163
|
+
slashCommands: boolean;
|
|
2164
|
+
modelSwitching: boolean;
|
|
2165
|
+
promptCaching: boolean;
|
|
2166
|
+
agenticTools: boolean;
|
|
2167
|
+
sessionResume: boolean;
|
|
2168
|
+
};
|
|
2169
|
+
agentId: string;
|
|
2170
|
+
display?: string | undefined;
|
|
2171
|
+
onboarding?: {
|
|
2172
|
+
requiredVaultKeys?: string[] | undefined;
|
|
2173
|
+
requiredEnvVars?: string[] | undefined;
|
|
2174
|
+
authCommand?: string | undefined;
|
|
2175
|
+
docsUrl?: string | undefined;
|
|
2176
|
+
} | undefined;
|
|
2177
|
+
} | undefined;
|
|
2138
2178
|
kind?: string | undefined;
|
|
2139
2179
|
permissions?: {
|
|
2140
2180
|
'shell.execute'?: string[] | undefined;
|
|
@@ -2211,30 +2251,6 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2211
2251
|
decorations?: boolean | undefined;
|
|
2212
2252
|
menu?: string | undefined;
|
|
2213
2253
|
} | undefined;
|
|
2214
|
-
engine?: {
|
|
2215
|
-
capabilities: {
|
|
2216
|
-
mcp: boolean;
|
|
2217
|
-
streaming: boolean;
|
|
2218
|
-
toolUse: boolean;
|
|
2219
|
-
thinking: boolean;
|
|
2220
|
-
artifacts: boolean;
|
|
2221
|
-
fileAttachments: boolean;
|
|
2222
|
-
imageInput: boolean;
|
|
2223
|
-
slashCommands: boolean;
|
|
2224
|
-
modelSwitching: boolean;
|
|
2225
|
-
promptCaching: boolean;
|
|
2226
|
-
agenticTools: boolean;
|
|
2227
|
-
sessionResume: boolean;
|
|
2228
|
-
};
|
|
2229
|
-
agentId: string;
|
|
2230
|
-
display?: string | undefined;
|
|
2231
|
-
onboarding?: {
|
|
2232
|
-
requiredVaultKeys?: string[] | undefined;
|
|
2233
|
-
requiredEnvVars?: string[] | undefined;
|
|
2234
|
-
authCommand?: string | undefined;
|
|
2235
|
-
docsUrl?: string | undefined;
|
|
2236
|
-
} | undefined;
|
|
2237
|
-
} | undefined;
|
|
2238
2254
|
screenshots?: {
|
|
2239
2255
|
path: string;
|
|
2240
2256
|
caption?: string | undefined;
|
|
@@ -2371,6 +2387,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2371
2387
|
webview?: {
|
|
2372
2388
|
child_webviews: boolean;
|
|
2373
2389
|
partitions: string[];
|
|
2390
|
+
engines: ("webkit" | "chrome")[];
|
|
2374
2391
|
} | undefined;
|
|
2375
2392
|
agentOps?: {} | undefined;
|
|
2376
2393
|
http?: {
|
|
@@ -2389,6 +2406,30 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2389
2406
|
commands: string[];
|
|
2390
2407
|
} | undefined;
|
|
2391
2408
|
} | undefined;
|
|
2409
|
+
engine?: {
|
|
2410
|
+
capabilities: {
|
|
2411
|
+
mcp: boolean;
|
|
2412
|
+
streaming: boolean;
|
|
2413
|
+
toolUse: boolean;
|
|
2414
|
+
thinking: boolean;
|
|
2415
|
+
artifacts: boolean;
|
|
2416
|
+
fileAttachments: boolean;
|
|
2417
|
+
imageInput: boolean;
|
|
2418
|
+
slashCommands: boolean;
|
|
2419
|
+
modelSwitching: boolean;
|
|
2420
|
+
promptCaching: boolean;
|
|
2421
|
+
agenticTools: boolean;
|
|
2422
|
+
sessionResume: boolean;
|
|
2423
|
+
};
|
|
2424
|
+
agentId: string;
|
|
2425
|
+
onboarding: {
|
|
2426
|
+
requiredVaultKeys: string[];
|
|
2427
|
+
requiredEnvVars: string[];
|
|
2428
|
+
authCommand?: string | undefined;
|
|
2429
|
+
docsUrl?: string | undefined;
|
|
2430
|
+
};
|
|
2431
|
+
display?: string | undefined;
|
|
2432
|
+
} | undefined;
|
|
2392
2433
|
kind?: string | undefined;
|
|
2393
2434
|
migrations?: string | undefined;
|
|
2394
2435
|
settings?: {
|
|
@@ -2415,30 +2456,6 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2415
2456
|
decorations?: boolean | undefined;
|
|
2416
2457
|
menu?: string | undefined;
|
|
2417
2458
|
} | undefined;
|
|
2418
|
-
engine?: {
|
|
2419
|
-
capabilities: {
|
|
2420
|
-
mcp: boolean;
|
|
2421
|
-
streaming: boolean;
|
|
2422
|
-
toolUse: boolean;
|
|
2423
|
-
thinking: boolean;
|
|
2424
|
-
artifacts: boolean;
|
|
2425
|
-
fileAttachments: boolean;
|
|
2426
|
-
imageInput: boolean;
|
|
2427
|
-
slashCommands: boolean;
|
|
2428
|
-
modelSwitching: boolean;
|
|
2429
|
-
promptCaching: boolean;
|
|
2430
|
-
agenticTools: boolean;
|
|
2431
|
-
sessionResume: boolean;
|
|
2432
|
-
};
|
|
2433
|
-
agentId: string;
|
|
2434
|
-
onboarding: {
|
|
2435
|
-
requiredVaultKeys: string[];
|
|
2436
|
-
requiredEnvVars: string[];
|
|
2437
|
-
authCommand?: string | undefined;
|
|
2438
|
-
docsUrl?: string | undefined;
|
|
2439
|
-
};
|
|
2440
|
-
display?: string | undefined;
|
|
2441
|
-
} | undefined;
|
|
2442
2459
|
signature?: string | undefined;
|
|
2443
2460
|
};
|
|
2444
2461
|
deps: {
|
|
@@ -2488,6 +2505,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2488
2505
|
webview?: {
|
|
2489
2506
|
child_webviews?: boolean | undefined;
|
|
2490
2507
|
partitions?: string[] | undefined;
|
|
2508
|
+
engines?: ("webkit" | "chrome")[] | undefined;
|
|
2491
2509
|
} | undefined;
|
|
2492
2510
|
agentOps?: {} | undefined;
|
|
2493
2511
|
http?: {
|
|
@@ -2506,6 +2524,30 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2506
2524
|
commands?: string[] | undefined;
|
|
2507
2525
|
} | undefined;
|
|
2508
2526
|
} | undefined;
|
|
2527
|
+
engine?: {
|
|
2528
|
+
capabilities: {
|
|
2529
|
+
mcp: boolean;
|
|
2530
|
+
streaming: boolean;
|
|
2531
|
+
toolUse: boolean;
|
|
2532
|
+
thinking: boolean;
|
|
2533
|
+
artifacts: boolean;
|
|
2534
|
+
fileAttachments: boolean;
|
|
2535
|
+
imageInput: boolean;
|
|
2536
|
+
slashCommands: boolean;
|
|
2537
|
+
modelSwitching: boolean;
|
|
2538
|
+
promptCaching: boolean;
|
|
2539
|
+
agenticTools: boolean;
|
|
2540
|
+
sessionResume: boolean;
|
|
2541
|
+
};
|
|
2542
|
+
agentId: string;
|
|
2543
|
+
display?: string | undefined;
|
|
2544
|
+
onboarding?: {
|
|
2545
|
+
requiredVaultKeys?: string[] | undefined;
|
|
2546
|
+
requiredEnvVars?: string[] | undefined;
|
|
2547
|
+
authCommand?: string | undefined;
|
|
2548
|
+
docsUrl?: string | undefined;
|
|
2549
|
+
} | undefined;
|
|
2550
|
+
} | undefined;
|
|
2509
2551
|
kind?: string | undefined;
|
|
2510
2552
|
permissions?: {
|
|
2511
2553
|
'shell.execute'?: string[] | undefined;
|
|
@@ -2582,30 +2624,6 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2582
2624
|
decorations?: boolean | undefined;
|
|
2583
2625
|
menu?: string | undefined;
|
|
2584
2626
|
} | undefined;
|
|
2585
|
-
engine?: {
|
|
2586
|
-
capabilities: {
|
|
2587
|
-
mcp: boolean;
|
|
2588
|
-
streaming: boolean;
|
|
2589
|
-
toolUse: boolean;
|
|
2590
|
-
thinking: boolean;
|
|
2591
|
-
artifacts: boolean;
|
|
2592
|
-
fileAttachments: boolean;
|
|
2593
|
-
imageInput: boolean;
|
|
2594
|
-
slashCommands: boolean;
|
|
2595
|
-
modelSwitching: boolean;
|
|
2596
|
-
promptCaching: boolean;
|
|
2597
|
-
agenticTools: boolean;
|
|
2598
|
-
sessionResume: boolean;
|
|
2599
|
-
};
|
|
2600
|
-
agentId: string;
|
|
2601
|
-
display?: string | undefined;
|
|
2602
|
-
onboarding?: {
|
|
2603
|
-
requiredVaultKeys?: string[] | undefined;
|
|
2604
|
-
requiredEnvVars?: string[] | undefined;
|
|
2605
|
-
authCommand?: string | undefined;
|
|
2606
|
-
docsUrl?: string | undefined;
|
|
2607
|
-
} | undefined;
|
|
2608
|
-
} | undefined;
|
|
2609
2627
|
screenshots?: {
|
|
2610
2628
|
path: string;
|
|
2611
2629
|
caption?: string | undefined;
|
|
@@ -2726,6 +2744,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2726
2744
|
webview?: {
|
|
2727
2745
|
child_webviews: boolean;
|
|
2728
2746
|
partitions: string[];
|
|
2747
|
+
engines: ("webkit" | "chrome")[];
|
|
2729
2748
|
} | undefined;
|
|
2730
2749
|
agentOps?: {} | undefined;
|
|
2731
2750
|
http?: {
|
|
@@ -2744,6 +2763,30 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2744
2763
|
commands: string[];
|
|
2745
2764
|
} | undefined;
|
|
2746
2765
|
} | undefined;
|
|
2766
|
+
engine?: {
|
|
2767
|
+
capabilities: {
|
|
2768
|
+
mcp: boolean;
|
|
2769
|
+
streaming: boolean;
|
|
2770
|
+
toolUse: boolean;
|
|
2771
|
+
thinking: boolean;
|
|
2772
|
+
artifacts: boolean;
|
|
2773
|
+
fileAttachments: boolean;
|
|
2774
|
+
imageInput: boolean;
|
|
2775
|
+
slashCommands: boolean;
|
|
2776
|
+
modelSwitching: boolean;
|
|
2777
|
+
promptCaching: boolean;
|
|
2778
|
+
agenticTools: boolean;
|
|
2779
|
+
sessionResume: boolean;
|
|
2780
|
+
};
|
|
2781
|
+
agentId: string;
|
|
2782
|
+
onboarding: {
|
|
2783
|
+
requiredVaultKeys: string[];
|
|
2784
|
+
requiredEnvVars: string[];
|
|
2785
|
+
authCommand?: string | undefined;
|
|
2786
|
+
docsUrl?: string | undefined;
|
|
2787
|
+
};
|
|
2788
|
+
display?: string | undefined;
|
|
2789
|
+
} | undefined;
|
|
2747
2790
|
kind?: string | undefined;
|
|
2748
2791
|
migrations?: string | undefined;
|
|
2749
2792
|
settings?: {
|
|
@@ -2770,30 +2813,6 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2770
2813
|
decorations?: boolean | undefined;
|
|
2771
2814
|
menu?: string | undefined;
|
|
2772
2815
|
} | undefined;
|
|
2773
|
-
engine?: {
|
|
2774
|
-
capabilities: {
|
|
2775
|
-
mcp: boolean;
|
|
2776
|
-
streaming: boolean;
|
|
2777
|
-
toolUse: boolean;
|
|
2778
|
-
thinking: boolean;
|
|
2779
|
-
artifacts: boolean;
|
|
2780
|
-
fileAttachments: boolean;
|
|
2781
|
-
imageInput: boolean;
|
|
2782
|
-
slashCommands: boolean;
|
|
2783
|
-
modelSwitching: boolean;
|
|
2784
|
-
promptCaching: boolean;
|
|
2785
|
-
agenticTools: boolean;
|
|
2786
|
-
sessionResume: boolean;
|
|
2787
|
-
};
|
|
2788
|
-
agentId: string;
|
|
2789
|
-
onboarding: {
|
|
2790
|
-
requiredVaultKeys: string[];
|
|
2791
|
-
requiredEnvVars: string[];
|
|
2792
|
-
authCommand?: string | undefined;
|
|
2793
|
-
docsUrl?: string | undefined;
|
|
2794
|
-
};
|
|
2795
|
-
display?: string | undefined;
|
|
2796
|
-
} | undefined;
|
|
2797
2816
|
signature?: string | undefined;
|
|
2798
2817
|
};
|
|
2799
2818
|
deps: {
|
|
@@ -2848,6 +2867,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2848
2867
|
webview?: {
|
|
2849
2868
|
child_webviews?: boolean | undefined;
|
|
2850
2869
|
partitions?: string[] | undefined;
|
|
2870
|
+
engines?: ("webkit" | "chrome")[] | undefined;
|
|
2851
2871
|
} | undefined;
|
|
2852
2872
|
agentOps?: {} | undefined;
|
|
2853
2873
|
http?: {
|
|
@@ -2866,6 +2886,30 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2866
2886
|
commands?: string[] | undefined;
|
|
2867
2887
|
} | undefined;
|
|
2868
2888
|
} | undefined;
|
|
2889
|
+
engine?: {
|
|
2890
|
+
capabilities: {
|
|
2891
|
+
mcp: boolean;
|
|
2892
|
+
streaming: boolean;
|
|
2893
|
+
toolUse: boolean;
|
|
2894
|
+
thinking: boolean;
|
|
2895
|
+
artifacts: boolean;
|
|
2896
|
+
fileAttachments: boolean;
|
|
2897
|
+
imageInput: boolean;
|
|
2898
|
+
slashCommands: boolean;
|
|
2899
|
+
modelSwitching: boolean;
|
|
2900
|
+
promptCaching: boolean;
|
|
2901
|
+
agenticTools: boolean;
|
|
2902
|
+
sessionResume: boolean;
|
|
2903
|
+
};
|
|
2904
|
+
agentId: string;
|
|
2905
|
+
display?: string | undefined;
|
|
2906
|
+
onboarding?: {
|
|
2907
|
+
requiredVaultKeys?: string[] | undefined;
|
|
2908
|
+
requiredEnvVars?: string[] | undefined;
|
|
2909
|
+
authCommand?: string | undefined;
|
|
2910
|
+
docsUrl?: string | undefined;
|
|
2911
|
+
} | undefined;
|
|
2912
|
+
} | undefined;
|
|
2869
2913
|
kind?: string | undefined;
|
|
2870
2914
|
permissions?: {
|
|
2871
2915
|
'shell.execute'?: string[] | undefined;
|
|
@@ -2942,30 +2986,6 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2942
2986
|
decorations?: boolean | undefined;
|
|
2943
2987
|
menu?: string | undefined;
|
|
2944
2988
|
} | undefined;
|
|
2945
|
-
engine?: {
|
|
2946
|
-
capabilities: {
|
|
2947
|
-
mcp: boolean;
|
|
2948
|
-
streaming: boolean;
|
|
2949
|
-
toolUse: boolean;
|
|
2950
|
-
thinking: boolean;
|
|
2951
|
-
artifacts: boolean;
|
|
2952
|
-
fileAttachments: boolean;
|
|
2953
|
-
imageInput: boolean;
|
|
2954
|
-
slashCommands: boolean;
|
|
2955
|
-
modelSwitching: boolean;
|
|
2956
|
-
promptCaching: boolean;
|
|
2957
|
-
agenticTools: boolean;
|
|
2958
|
-
sessionResume: boolean;
|
|
2959
|
-
};
|
|
2960
|
-
agentId: string;
|
|
2961
|
-
display?: string | undefined;
|
|
2962
|
-
onboarding?: {
|
|
2963
|
-
requiredVaultKeys?: string[] | undefined;
|
|
2964
|
-
requiredEnvVars?: string[] | undefined;
|
|
2965
|
-
authCommand?: string | undefined;
|
|
2966
|
-
docsUrl?: string | undefined;
|
|
2967
|
-
} | undefined;
|
|
2968
|
-
} | undefined;
|
|
2969
2989
|
screenshots?: {
|
|
2970
2990
|
path: string;
|
|
2971
2991
|
caption?: string | undefined;
|