@ikenga/contract 0.15.0 → 0.17.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/manifest.d.ts +232 -41
- package/dist/manifest.d.ts.map +1 -1
- package/dist/manifest.js +27 -4
- package/dist/manifest.js.map +1 -1
- package/dist/registry.d.ts +206 -34
- package/dist/registry.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/manifest.test.ts +50 -2
- package/src/manifest.ts +32 -4
package/dist/registry.d.ts
CHANGED
|
@@ -51,6 +51,13 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
51
51
|
name: z.ZodString;
|
|
52
52
|
version: z.ZodString;
|
|
53
53
|
ikenga_api: z.ZodString;
|
|
54
|
+
auth_bridge: z.ZodOptional<z.ZodObject<{
|
|
55
|
+
strategy: z.ZodEnum<["api-key", "cdp", "none"]>;
|
|
56
|
+
}, "strip", z.ZodTypeAny, {
|
|
57
|
+
strategy: "api-key" | "cdp" | "none";
|
|
58
|
+
}, {
|
|
59
|
+
strategy: "api-key" | "cdp" | "none";
|
|
60
|
+
}>>;
|
|
54
61
|
kind: z.ZodOptional<z.ZodString>;
|
|
55
62
|
author: z.ZodOptional<z.ZodObject<{
|
|
56
63
|
name: z.ZodString;
|
|
@@ -116,6 +123,8 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
116
123
|
'supabase.tables': z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
117
124
|
'vault.keys': z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
118
125
|
engine: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
126
|
+
notify: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
127
|
+
events: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
119
128
|
}, "strip", z.ZodTypeAny, {
|
|
120
129
|
engine: string[];
|
|
121
130
|
'shell.execute': string[];
|
|
@@ -125,6 +134,8 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
125
134
|
'sqlite.tables': string[];
|
|
126
135
|
'supabase.tables': string[];
|
|
127
136
|
'vault.keys': string[];
|
|
137
|
+
notify: string[];
|
|
138
|
+
events: string[];
|
|
128
139
|
}, {
|
|
129
140
|
engine?: string[] | undefined;
|
|
130
141
|
'shell.execute'?: string[] | undefined;
|
|
@@ -134,6 +145,8 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
134
145
|
'sqlite.tables'?: string[] | undefined;
|
|
135
146
|
'supabase.tables'?: string[] | undefined;
|
|
136
147
|
'vault.keys'?: string[] | undefined;
|
|
148
|
+
notify?: string[] | undefined;
|
|
149
|
+
events?: string[] | undefined;
|
|
137
150
|
}>>;
|
|
138
151
|
migrations: z.ZodOptional<z.ZodString>;
|
|
139
152
|
settings: z.ZodOptional<z.ZodObject<{
|
|
@@ -200,16 +213,19 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
200
213
|
}>, "many">>;
|
|
201
214
|
routes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
202
215
|
path: z.ZodString;
|
|
203
|
-
kind: z.ZodEnum<["iframe", "component"]>;
|
|
216
|
+
kind: z.ZodEnum<["iframe", "component", "webview"]>;
|
|
204
217
|
source: z.ZodString;
|
|
218
|
+
partition: z.ZodOptional<z.ZodString>;
|
|
205
219
|
}, "strip", z.ZodTypeAny, {
|
|
206
220
|
path: string;
|
|
207
|
-
kind: "iframe" | "component";
|
|
221
|
+
kind: "iframe" | "component" | "webview";
|
|
208
222
|
source: string;
|
|
223
|
+
partition?: string | undefined;
|
|
209
224
|
}, {
|
|
210
225
|
path: string;
|
|
211
|
-
kind: "iframe" | "component";
|
|
226
|
+
kind: "iframe" | "component" | "webview";
|
|
212
227
|
source: string;
|
|
228
|
+
partition?: string | undefined;
|
|
213
229
|
}>, "many">>;
|
|
214
230
|
command_palette: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
215
231
|
id: z.ZodString;
|
|
@@ -242,6 +258,13 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
242
258
|
}>, "many">>;
|
|
243
259
|
csp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
|
|
244
260
|
permissions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
|
|
261
|
+
session: z.ZodOptional<z.ZodObject<{
|
|
262
|
+
persistence: z.ZodEnum<["keep", "clear-on-exit", "ask"]>;
|
|
263
|
+
}, "strip", z.ZodTypeAny, {
|
|
264
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
265
|
+
}, {
|
|
266
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
267
|
+
}>>;
|
|
245
268
|
}, "strip", z.ZodTypeAny, {
|
|
246
269
|
nav: {
|
|
247
270
|
label: string;
|
|
@@ -252,8 +275,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
252
275
|
}[];
|
|
253
276
|
routes: {
|
|
254
277
|
path: string;
|
|
255
|
-
kind: "iframe" | "component";
|
|
278
|
+
kind: "iframe" | "component" | "webview";
|
|
256
279
|
source: string;
|
|
280
|
+
partition?: string | undefined;
|
|
257
281
|
}[];
|
|
258
282
|
command_palette: {
|
|
259
283
|
label: string;
|
|
@@ -266,9 +290,15 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
266
290
|
id: string;
|
|
267
291
|
route: string;
|
|
268
292
|
}[];
|
|
293
|
+
session?: {
|
|
294
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
295
|
+
} | undefined;
|
|
269
296
|
csp?: Record<string, string[]> | undefined;
|
|
270
297
|
permissions?: Record<string, string[]> | undefined;
|
|
271
298
|
}, {
|
|
299
|
+
session?: {
|
|
300
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
301
|
+
} | undefined;
|
|
272
302
|
nav?: {
|
|
273
303
|
label: string;
|
|
274
304
|
id: string;
|
|
@@ -278,8 +308,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
278
308
|
}[] | undefined;
|
|
279
309
|
routes?: {
|
|
280
310
|
path: string;
|
|
281
|
-
kind: "iframe" | "component";
|
|
311
|
+
kind: "iframe" | "component" | "webview";
|
|
282
312
|
source: string;
|
|
313
|
+
partition?: string | undefined;
|
|
283
314
|
}[] | undefined;
|
|
284
315
|
command_palette?: {
|
|
285
316
|
label: string;
|
|
@@ -311,19 +342,19 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
311
342
|
}>, "many">>;
|
|
312
343
|
events: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
313
344
|
}, "strip", z.ZodTypeAny, {
|
|
345
|
+
events: string[];
|
|
314
346
|
routes: {
|
|
315
347
|
path: string;
|
|
316
348
|
method: "GET" | "POST";
|
|
317
349
|
handler: string;
|
|
318
350
|
}[];
|
|
319
|
-
events: string[];
|
|
320
351
|
}, {
|
|
352
|
+
events?: string[] | undefined;
|
|
321
353
|
routes?: {
|
|
322
354
|
path: string;
|
|
323
355
|
method: "GET" | "POST";
|
|
324
356
|
handler: string;
|
|
325
357
|
}[] | undefined;
|
|
326
|
-
events?: string[] | undefined;
|
|
327
358
|
}>>;
|
|
328
359
|
cron: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
329
360
|
id: z.ZodString;
|
|
@@ -386,14 +417,17 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
386
417
|
child_webviews: z.ZodDefault<z.ZodBoolean>;
|
|
387
418
|
partitions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
388
419
|
engines: z.ZodDefault<z.ZodArray<z.ZodEnum<["webkit", "chrome"]>, "many">>;
|
|
420
|
+
allowed_origins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
389
421
|
}, "strip", z.ZodTypeAny, {
|
|
390
422
|
child_webviews: boolean;
|
|
391
423
|
partitions: string[];
|
|
392
424
|
engines: ("webkit" | "chrome")[];
|
|
425
|
+
allowed_origins?: string[] | undefined;
|
|
393
426
|
}, {
|
|
394
427
|
child_webviews?: boolean | undefined;
|
|
395
428
|
partitions?: string[] | undefined;
|
|
396
429
|
engines?: ("webkit" | "chrome")[] | undefined;
|
|
430
|
+
allowed_origins?: string[] | undefined;
|
|
397
431
|
}>>;
|
|
398
432
|
agentOps: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
399
433
|
http: z.ZodOptional<z.ZodObject<{
|
|
@@ -464,6 +498,7 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
464
498
|
child_webviews: boolean;
|
|
465
499
|
partitions: string[];
|
|
466
500
|
engines: ("webkit" | "chrome")[];
|
|
501
|
+
allowed_origins?: string[] | undefined;
|
|
467
502
|
} | undefined;
|
|
468
503
|
agentOps?: {} | undefined;
|
|
469
504
|
http?: {
|
|
@@ -492,6 +527,7 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
492
527
|
child_webviews?: boolean | undefined;
|
|
493
528
|
partitions?: string[] | undefined;
|
|
494
529
|
engines?: ("webkit" | "chrome")[] | undefined;
|
|
530
|
+
allowed_origins?: string[] | undefined;
|
|
495
531
|
} | undefined;
|
|
496
532
|
agentOps?: {} | undefined;
|
|
497
533
|
http?: {
|
|
@@ -669,6 +705,8 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
669
705
|
'sqlite.tables': string[];
|
|
670
706
|
'supabase.tables': string[];
|
|
671
707
|
'vault.keys': string[];
|
|
708
|
+
notify: string[];
|
|
709
|
+
events: string[];
|
|
672
710
|
};
|
|
673
711
|
ikenga_api: string;
|
|
674
712
|
targets: string[];
|
|
@@ -689,8 +727,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
689
727
|
}[];
|
|
690
728
|
routes: {
|
|
691
729
|
path: string;
|
|
692
|
-
kind: "iframe" | "component";
|
|
730
|
+
kind: "iframe" | "component" | "webview";
|
|
693
731
|
source: string;
|
|
732
|
+
partition?: string | undefined;
|
|
694
733
|
}[];
|
|
695
734
|
command_palette: {
|
|
696
735
|
label: string;
|
|
@@ -703,6 +742,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
703
742
|
id: string;
|
|
704
743
|
route: string;
|
|
705
744
|
}[];
|
|
745
|
+
session?: {
|
|
746
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
747
|
+
} | undefined;
|
|
706
748
|
csp?: Record<string, string[]> | undefined;
|
|
707
749
|
permissions?: Record<string, string[]> | undefined;
|
|
708
750
|
};
|
|
@@ -737,6 +779,7 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
737
779
|
child_webviews: boolean;
|
|
738
780
|
partitions: string[];
|
|
739
781
|
engines: ("webkit" | "chrome")[];
|
|
782
|
+
allowed_origins?: string[] | undefined;
|
|
740
783
|
} | undefined;
|
|
741
784
|
agentOps?: {} | undefined;
|
|
742
785
|
http?: {
|
|
@@ -771,6 +814,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
771
814
|
};
|
|
772
815
|
display?: string | undefined;
|
|
773
816
|
} | undefined;
|
|
817
|
+
auth_bridge?: {
|
|
818
|
+
strategy: "api-key" | "cdp" | "none";
|
|
819
|
+
} | undefined;
|
|
774
820
|
migrations?: string | undefined;
|
|
775
821
|
settings?: {
|
|
776
822
|
schema: {
|
|
@@ -783,12 +829,12 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
783
829
|
}[];
|
|
784
830
|
} | undefined;
|
|
785
831
|
iyke?: {
|
|
832
|
+
events: string[];
|
|
786
833
|
routes: {
|
|
787
834
|
path: string;
|
|
788
835
|
method: "GET" | "POST";
|
|
789
836
|
handler: string;
|
|
790
837
|
}[];
|
|
791
|
-
events: string[];
|
|
792
838
|
} | undefined;
|
|
793
839
|
window?: {
|
|
794
840
|
label: string;
|
|
@@ -851,6 +897,7 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
851
897
|
child_webviews?: boolean | undefined;
|
|
852
898
|
partitions?: string[] | undefined;
|
|
853
899
|
engines?: ("webkit" | "chrome")[] | undefined;
|
|
900
|
+
allowed_origins?: string[] | undefined;
|
|
854
901
|
} | undefined;
|
|
855
902
|
agentOps?: {} | undefined;
|
|
856
903
|
http?: {
|
|
@@ -894,6 +941,11 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
894
941
|
'sqlite.tables'?: string[] | undefined;
|
|
895
942
|
'supabase.tables'?: string[] | undefined;
|
|
896
943
|
'vault.keys'?: string[] | undefined;
|
|
944
|
+
notify?: string[] | undefined;
|
|
945
|
+
events?: string[] | undefined;
|
|
946
|
+
} | undefined;
|
|
947
|
+
auth_bridge?: {
|
|
948
|
+
strategy: "api-key" | "cdp" | "none";
|
|
897
949
|
} | undefined;
|
|
898
950
|
targets?: string[] | undefined;
|
|
899
951
|
sidecars?: {
|
|
@@ -915,6 +967,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
915
967
|
}[] | undefined;
|
|
916
968
|
} | undefined;
|
|
917
969
|
ui?: {
|
|
970
|
+
session?: {
|
|
971
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
972
|
+
} | undefined;
|
|
918
973
|
nav?: {
|
|
919
974
|
label: string;
|
|
920
975
|
id: string;
|
|
@@ -924,8 +979,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
924
979
|
}[] | undefined;
|
|
925
980
|
routes?: {
|
|
926
981
|
path: string;
|
|
927
|
-
kind: "iframe" | "component";
|
|
982
|
+
kind: "iframe" | "component" | "webview";
|
|
928
983
|
source: string;
|
|
984
|
+
partition?: string | undefined;
|
|
929
985
|
}[] | undefined;
|
|
930
986
|
command_palette?: {
|
|
931
987
|
label: string;
|
|
@@ -942,12 +998,12 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
942
998
|
permissions?: Record<string, string[]> | undefined;
|
|
943
999
|
} | undefined;
|
|
944
1000
|
iyke?: {
|
|
1001
|
+
events?: string[] | undefined;
|
|
945
1002
|
routes?: {
|
|
946
1003
|
path: string;
|
|
947
1004
|
method: "GET" | "POST";
|
|
948
1005
|
handler: string;
|
|
949
1006
|
}[] | undefined;
|
|
950
|
-
events?: string[] | undefined;
|
|
951
1007
|
} | undefined;
|
|
952
1008
|
window?: {
|
|
953
1009
|
label: string;
|
|
@@ -1035,6 +1091,8 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1035
1091
|
'sqlite.tables': string[];
|
|
1036
1092
|
'supabase.tables': string[];
|
|
1037
1093
|
'vault.keys': string[];
|
|
1094
|
+
notify: string[];
|
|
1095
|
+
events: string[];
|
|
1038
1096
|
};
|
|
1039
1097
|
ikenga_api: string;
|
|
1040
1098
|
targets: string[];
|
|
@@ -1055,8 +1113,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1055
1113
|
}[];
|
|
1056
1114
|
routes: {
|
|
1057
1115
|
path: string;
|
|
1058
|
-
kind: "iframe" | "component";
|
|
1116
|
+
kind: "iframe" | "component" | "webview";
|
|
1059
1117
|
source: string;
|
|
1118
|
+
partition?: string | undefined;
|
|
1060
1119
|
}[];
|
|
1061
1120
|
command_palette: {
|
|
1062
1121
|
label: string;
|
|
@@ -1069,6 +1128,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1069
1128
|
id: string;
|
|
1070
1129
|
route: string;
|
|
1071
1130
|
}[];
|
|
1131
|
+
session?: {
|
|
1132
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
1133
|
+
} | undefined;
|
|
1072
1134
|
csp?: Record<string, string[]> | undefined;
|
|
1073
1135
|
permissions?: Record<string, string[]> | undefined;
|
|
1074
1136
|
};
|
|
@@ -1103,6 +1165,7 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1103
1165
|
child_webviews: boolean;
|
|
1104
1166
|
partitions: string[];
|
|
1105
1167
|
engines: ("webkit" | "chrome")[];
|
|
1168
|
+
allowed_origins?: string[] | undefined;
|
|
1106
1169
|
} | undefined;
|
|
1107
1170
|
agentOps?: {} | undefined;
|
|
1108
1171
|
http?: {
|
|
@@ -1137,6 +1200,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1137
1200
|
};
|
|
1138
1201
|
display?: string | undefined;
|
|
1139
1202
|
} | undefined;
|
|
1203
|
+
auth_bridge?: {
|
|
1204
|
+
strategy: "api-key" | "cdp" | "none";
|
|
1205
|
+
} | undefined;
|
|
1140
1206
|
migrations?: string | undefined;
|
|
1141
1207
|
settings?: {
|
|
1142
1208
|
schema: {
|
|
@@ -1149,12 +1215,12 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1149
1215
|
}[];
|
|
1150
1216
|
} | undefined;
|
|
1151
1217
|
iyke?: {
|
|
1218
|
+
events: string[];
|
|
1152
1219
|
routes: {
|
|
1153
1220
|
path: string;
|
|
1154
1221
|
method: "GET" | "POST";
|
|
1155
1222
|
handler: string;
|
|
1156
1223
|
}[];
|
|
1157
|
-
events: string[];
|
|
1158
1224
|
} | undefined;
|
|
1159
1225
|
window?: {
|
|
1160
1226
|
label: string;
|
|
@@ -1228,6 +1294,7 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1228
1294
|
child_webviews?: boolean | undefined;
|
|
1229
1295
|
partitions?: string[] | undefined;
|
|
1230
1296
|
engines?: ("webkit" | "chrome")[] | undefined;
|
|
1297
|
+
allowed_origins?: string[] | undefined;
|
|
1231
1298
|
} | undefined;
|
|
1232
1299
|
agentOps?: {} | undefined;
|
|
1233
1300
|
http?: {
|
|
@@ -1271,6 +1338,11 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1271
1338
|
'sqlite.tables'?: string[] | undefined;
|
|
1272
1339
|
'supabase.tables'?: string[] | undefined;
|
|
1273
1340
|
'vault.keys'?: string[] | undefined;
|
|
1341
|
+
notify?: string[] | undefined;
|
|
1342
|
+
events?: string[] | undefined;
|
|
1343
|
+
} | undefined;
|
|
1344
|
+
auth_bridge?: {
|
|
1345
|
+
strategy: "api-key" | "cdp" | "none";
|
|
1274
1346
|
} | undefined;
|
|
1275
1347
|
targets?: string[] | undefined;
|
|
1276
1348
|
sidecars?: {
|
|
@@ -1292,6 +1364,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1292
1364
|
}[] | undefined;
|
|
1293
1365
|
} | undefined;
|
|
1294
1366
|
ui?: {
|
|
1367
|
+
session?: {
|
|
1368
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
1369
|
+
} | undefined;
|
|
1295
1370
|
nav?: {
|
|
1296
1371
|
label: string;
|
|
1297
1372
|
id: string;
|
|
@@ -1301,8 +1376,9 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1301
1376
|
}[] | undefined;
|
|
1302
1377
|
routes?: {
|
|
1303
1378
|
path: string;
|
|
1304
|
-
kind: "iframe" | "component";
|
|
1379
|
+
kind: "iframe" | "component" | "webview";
|
|
1305
1380
|
source: string;
|
|
1381
|
+
partition?: string | undefined;
|
|
1306
1382
|
}[] | undefined;
|
|
1307
1383
|
command_palette?: {
|
|
1308
1384
|
label: string;
|
|
@@ -1319,12 +1395,12 @@ export declare const PkgVersionSchema: z.ZodObject<{
|
|
|
1319
1395
|
permissions?: Record<string, string[]> | undefined;
|
|
1320
1396
|
} | undefined;
|
|
1321
1397
|
iyke?: {
|
|
1398
|
+
events?: string[] | undefined;
|
|
1322
1399
|
routes?: {
|
|
1323
1400
|
path: string;
|
|
1324
1401
|
method: "GET" | "POST";
|
|
1325
1402
|
handler: string;
|
|
1326
1403
|
}[] | undefined;
|
|
1327
|
-
events?: string[] | undefined;
|
|
1328
1404
|
} | undefined;
|
|
1329
1405
|
window?: {
|
|
1330
1406
|
label: string;
|
|
@@ -1374,6 +1450,13 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1374
1450
|
name: z.ZodString;
|
|
1375
1451
|
version: z.ZodString;
|
|
1376
1452
|
ikenga_api: z.ZodString;
|
|
1453
|
+
auth_bridge: z.ZodOptional<z.ZodObject<{
|
|
1454
|
+
strategy: z.ZodEnum<["api-key", "cdp", "none"]>;
|
|
1455
|
+
}, "strip", z.ZodTypeAny, {
|
|
1456
|
+
strategy: "api-key" | "cdp" | "none";
|
|
1457
|
+
}, {
|
|
1458
|
+
strategy: "api-key" | "cdp" | "none";
|
|
1459
|
+
}>>;
|
|
1377
1460
|
kind: z.ZodOptional<z.ZodString>;
|
|
1378
1461
|
author: z.ZodOptional<z.ZodObject<{
|
|
1379
1462
|
name: z.ZodString;
|
|
@@ -1439,6 +1522,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1439
1522
|
'supabase.tables': z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1440
1523
|
'vault.keys': z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1441
1524
|
engine: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1525
|
+
notify: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1526
|
+
events: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1442
1527
|
}, "strip", z.ZodTypeAny, {
|
|
1443
1528
|
engine: string[];
|
|
1444
1529
|
'shell.execute': string[];
|
|
@@ -1448,6 +1533,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1448
1533
|
'sqlite.tables': string[];
|
|
1449
1534
|
'supabase.tables': string[];
|
|
1450
1535
|
'vault.keys': string[];
|
|
1536
|
+
notify: string[];
|
|
1537
|
+
events: string[];
|
|
1451
1538
|
}, {
|
|
1452
1539
|
engine?: string[] | undefined;
|
|
1453
1540
|
'shell.execute'?: string[] | undefined;
|
|
@@ -1457,6 +1544,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1457
1544
|
'sqlite.tables'?: string[] | undefined;
|
|
1458
1545
|
'supabase.tables'?: string[] | undefined;
|
|
1459
1546
|
'vault.keys'?: string[] | undefined;
|
|
1547
|
+
notify?: string[] | undefined;
|
|
1548
|
+
events?: string[] | undefined;
|
|
1460
1549
|
}>>;
|
|
1461
1550
|
migrations: z.ZodOptional<z.ZodString>;
|
|
1462
1551
|
settings: z.ZodOptional<z.ZodObject<{
|
|
@@ -1523,16 +1612,19 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1523
1612
|
}>, "many">>;
|
|
1524
1613
|
routes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1525
1614
|
path: z.ZodString;
|
|
1526
|
-
kind: z.ZodEnum<["iframe", "component"]>;
|
|
1615
|
+
kind: z.ZodEnum<["iframe", "component", "webview"]>;
|
|
1527
1616
|
source: z.ZodString;
|
|
1617
|
+
partition: z.ZodOptional<z.ZodString>;
|
|
1528
1618
|
}, "strip", z.ZodTypeAny, {
|
|
1529
1619
|
path: string;
|
|
1530
|
-
kind: "iframe" | "component";
|
|
1620
|
+
kind: "iframe" | "component" | "webview";
|
|
1531
1621
|
source: string;
|
|
1622
|
+
partition?: string | undefined;
|
|
1532
1623
|
}, {
|
|
1533
1624
|
path: string;
|
|
1534
|
-
kind: "iframe" | "component";
|
|
1625
|
+
kind: "iframe" | "component" | "webview";
|
|
1535
1626
|
source: string;
|
|
1627
|
+
partition?: string | undefined;
|
|
1536
1628
|
}>, "many">>;
|
|
1537
1629
|
command_palette: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1538
1630
|
id: z.ZodString;
|
|
@@ -1565,6 +1657,13 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1565
1657
|
}>, "many">>;
|
|
1566
1658
|
csp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
|
|
1567
1659
|
permissions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
|
|
1660
|
+
session: z.ZodOptional<z.ZodObject<{
|
|
1661
|
+
persistence: z.ZodEnum<["keep", "clear-on-exit", "ask"]>;
|
|
1662
|
+
}, "strip", z.ZodTypeAny, {
|
|
1663
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
1664
|
+
}, {
|
|
1665
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
1666
|
+
}>>;
|
|
1568
1667
|
}, "strip", z.ZodTypeAny, {
|
|
1569
1668
|
nav: {
|
|
1570
1669
|
label: string;
|
|
@@ -1575,8 +1674,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1575
1674
|
}[];
|
|
1576
1675
|
routes: {
|
|
1577
1676
|
path: string;
|
|
1578
|
-
kind: "iframe" | "component";
|
|
1677
|
+
kind: "iframe" | "component" | "webview";
|
|
1579
1678
|
source: string;
|
|
1679
|
+
partition?: string | undefined;
|
|
1580
1680
|
}[];
|
|
1581
1681
|
command_palette: {
|
|
1582
1682
|
label: string;
|
|
@@ -1589,9 +1689,15 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1589
1689
|
id: string;
|
|
1590
1690
|
route: string;
|
|
1591
1691
|
}[];
|
|
1692
|
+
session?: {
|
|
1693
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
1694
|
+
} | undefined;
|
|
1592
1695
|
csp?: Record<string, string[]> | undefined;
|
|
1593
1696
|
permissions?: Record<string, string[]> | undefined;
|
|
1594
1697
|
}, {
|
|
1698
|
+
session?: {
|
|
1699
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
1700
|
+
} | undefined;
|
|
1595
1701
|
nav?: {
|
|
1596
1702
|
label: string;
|
|
1597
1703
|
id: string;
|
|
@@ -1601,8 +1707,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1601
1707
|
}[] | undefined;
|
|
1602
1708
|
routes?: {
|
|
1603
1709
|
path: string;
|
|
1604
|
-
kind: "iframe" | "component";
|
|
1710
|
+
kind: "iframe" | "component" | "webview";
|
|
1605
1711
|
source: string;
|
|
1712
|
+
partition?: string | undefined;
|
|
1606
1713
|
}[] | undefined;
|
|
1607
1714
|
command_palette?: {
|
|
1608
1715
|
label: string;
|
|
@@ -1634,19 +1741,19 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1634
1741
|
}>, "many">>;
|
|
1635
1742
|
events: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1636
1743
|
}, "strip", z.ZodTypeAny, {
|
|
1744
|
+
events: string[];
|
|
1637
1745
|
routes: {
|
|
1638
1746
|
path: string;
|
|
1639
1747
|
method: "GET" | "POST";
|
|
1640
1748
|
handler: string;
|
|
1641
1749
|
}[];
|
|
1642
|
-
events: string[];
|
|
1643
1750
|
}, {
|
|
1751
|
+
events?: string[] | undefined;
|
|
1644
1752
|
routes?: {
|
|
1645
1753
|
path: string;
|
|
1646
1754
|
method: "GET" | "POST";
|
|
1647
1755
|
handler: string;
|
|
1648
1756
|
}[] | undefined;
|
|
1649
|
-
events?: string[] | undefined;
|
|
1650
1757
|
}>>;
|
|
1651
1758
|
cron: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1652
1759
|
id: z.ZodString;
|
|
@@ -1709,14 +1816,17 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1709
1816
|
child_webviews: z.ZodDefault<z.ZodBoolean>;
|
|
1710
1817
|
partitions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1711
1818
|
engines: z.ZodDefault<z.ZodArray<z.ZodEnum<["webkit", "chrome"]>, "many">>;
|
|
1819
|
+
allowed_origins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1712
1820
|
}, "strip", z.ZodTypeAny, {
|
|
1713
1821
|
child_webviews: boolean;
|
|
1714
1822
|
partitions: string[];
|
|
1715
1823
|
engines: ("webkit" | "chrome")[];
|
|
1824
|
+
allowed_origins?: string[] | undefined;
|
|
1716
1825
|
}, {
|
|
1717
1826
|
child_webviews?: boolean | undefined;
|
|
1718
1827
|
partitions?: string[] | undefined;
|
|
1719
1828
|
engines?: ("webkit" | "chrome")[] | undefined;
|
|
1829
|
+
allowed_origins?: string[] | undefined;
|
|
1720
1830
|
}>>;
|
|
1721
1831
|
agentOps: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
1722
1832
|
http: z.ZodOptional<z.ZodObject<{
|
|
@@ -1787,6 +1897,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1787
1897
|
child_webviews: boolean;
|
|
1788
1898
|
partitions: string[];
|
|
1789
1899
|
engines: ("webkit" | "chrome")[];
|
|
1900
|
+
allowed_origins?: string[] | undefined;
|
|
1790
1901
|
} | undefined;
|
|
1791
1902
|
agentOps?: {} | undefined;
|
|
1792
1903
|
http?: {
|
|
@@ -1815,6 +1926,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1815
1926
|
child_webviews?: boolean | undefined;
|
|
1816
1927
|
partitions?: string[] | undefined;
|
|
1817
1928
|
engines?: ("webkit" | "chrome")[] | undefined;
|
|
1929
|
+
allowed_origins?: string[] | undefined;
|
|
1818
1930
|
} | undefined;
|
|
1819
1931
|
agentOps?: {} | undefined;
|
|
1820
1932
|
http?: {
|
|
@@ -1992,6 +2104,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
1992
2104
|
'sqlite.tables': string[];
|
|
1993
2105
|
'supabase.tables': string[];
|
|
1994
2106
|
'vault.keys': string[];
|
|
2107
|
+
notify: string[];
|
|
2108
|
+
events: string[];
|
|
1995
2109
|
};
|
|
1996
2110
|
ikenga_api: string;
|
|
1997
2111
|
targets: string[];
|
|
@@ -2012,8 +2126,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2012
2126
|
}[];
|
|
2013
2127
|
routes: {
|
|
2014
2128
|
path: string;
|
|
2015
|
-
kind: "iframe" | "component";
|
|
2129
|
+
kind: "iframe" | "component" | "webview";
|
|
2016
2130
|
source: string;
|
|
2131
|
+
partition?: string | undefined;
|
|
2017
2132
|
}[];
|
|
2018
2133
|
command_palette: {
|
|
2019
2134
|
label: string;
|
|
@@ -2026,6 +2141,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2026
2141
|
id: string;
|
|
2027
2142
|
route: string;
|
|
2028
2143
|
}[];
|
|
2144
|
+
session?: {
|
|
2145
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
2146
|
+
} | undefined;
|
|
2029
2147
|
csp?: Record<string, string[]> | undefined;
|
|
2030
2148
|
permissions?: Record<string, string[]> | undefined;
|
|
2031
2149
|
};
|
|
@@ -2060,6 +2178,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2060
2178
|
child_webviews: boolean;
|
|
2061
2179
|
partitions: string[];
|
|
2062
2180
|
engines: ("webkit" | "chrome")[];
|
|
2181
|
+
allowed_origins?: string[] | undefined;
|
|
2063
2182
|
} | undefined;
|
|
2064
2183
|
agentOps?: {} | undefined;
|
|
2065
2184
|
http?: {
|
|
@@ -2094,6 +2213,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2094
2213
|
};
|
|
2095
2214
|
display?: string | undefined;
|
|
2096
2215
|
} | undefined;
|
|
2216
|
+
auth_bridge?: {
|
|
2217
|
+
strategy: "api-key" | "cdp" | "none";
|
|
2218
|
+
} | undefined;
|
|
2097
2219
|
migrations?: string | undefined;
|
|
2098
2220
|
settings?: {
|
|
2099
2221
|
schema: {
|
|
@@ -2106,12 +2228,12 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2106
2228
|
}[];
|
|
2107
2229
|
} | undefined;
|
|
2108
2230
|
iyke?: {
|
|
2231
|
+
events: string[];
|
|
2109
2232
|
routes: {
|
|
2110
2233
|
path: string;
|
|
2111
2234
|
method: "GET" | "POST";
|
|
2112
2235
|
handler: string;
|
|
2113
2236
|
}[];
|
|
2114
|
-
events: string[];
|
|
2115
2237
|
} | undefined;
|
|
2116
2238
|
window?: {
|
|
2117
2239
|
label: string;
|
|
@@ -2174,6 +2296,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2174
2296
|
child_webviews?: boolean | undefined;
|
|
2175
2297
|
partitions?: string[] | undefined;
|
|
2176
2298
|
engines?: ("webkit" | "chrome")[] | undefined;
|
|
2299
|
+
allowed_origins?: string[] | undefined;
|
|
2177
2300
|
} | undefined;
|
|
2178
2301
|
agentOps?: {} | undefined;
|
|
2179
2302
|
http?: {
|
|
@@ -2217,6 +2340,11 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2217
2340
|
'sqlite.tables'?: string[] | undefined;
|
|
2218
2341
|
'supabase.tables'?: string[] | undefined;
|
|
2219
2342
|
'vault.keys'?: string[] | undefined;
|
|
2343
|
+
notify?: string[] | undefined;
|
|
2344
|
+
events?: string[] | undefined;
|
|
2345
|
+
} | undefined;
|
|
2346
|
+
auth_bridge?: {
|
|
2347
|
+
strategy: "api-key" | "cdp" | "none";
|
|
2220
2348
|
} | undefined;
|
|
2221
2349
|
targets?: string[] | undefined;
|
|
2222
2350
|
sidecars?: {
|
|
@@ -2238,6 +2366,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2238
2366
|
}[] | undefined;
|
|
2239
2367
|
} | undefined;
|
|
2240
2368
|
ui?: {
|
|
2369
|
+
session?: {
|
|
2370
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
2371
|
+
} | undefined;
|
|
2241
2372
|
nav?: {
|
|
2242
2373
|
label: string;
|
|
2243
2374
|
id: string;
|
|
@@ -2247,8 +2378,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2247
2378
|
}[] | undefined;
|
|
2248
2379
|
routes?: {
|
|
2249
2380
|
path: string;
|
|
2250
|
-
kind: "iframe" | "component";
|
|
2381
|
+
kind: "iframe" | "component" | "webview";
|
|
2251
2382
|
source: string;
|
|
2383
|
+
partition?: string | undefined;
|
|
2252
2384
|
}[] | undefined;
|
|
2253
2385
|
command_palette?: {
|
|
2254
2386
|
label: string;
|
|
@@ -2265,12 +2397,12 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2265
2397
|
permissions?: Record<string, string[]> | undefined;
|
|
2266
2398
|
} | undefined;
|
|
2267
2399
|
iyke?: {
|
|
2400
|
+
events?: string[] | undefined;
|
|
2268
2401
|
routes?: {
|
|
2269
2402
|
path: string;
|
|
2270
2403
|
method: "GET" | "POST";
|
|
2271
2404
|
handler: string;
|
|
2272
2405
|
}[] | undefined;
|
|
2273
|
-
events?: string[] | undefined;
|
|
2274
2406
|
} | undefined;
|
|
2275
2407
|
window?: {
|
|
2276
2408
|
label: string;
|
|
@@ -2358,6 +2490,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2358
2490
|
'sqlite.tables': string[];
|
|
2359
2491
|
'supabase.tables': string[];
|
|
2360
2492
|
'vault.keys': string[];
|
|
2493
|
+
notify: string[];
|
|
2494
|
+
events: string[];
|
|
2361
2495
|
};
|
|
2362
2496
|
ikenga_api: string;
|
|
2363
2497
|
targets: string[];
|
|
@@ -2378,8 +2512,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2378
2512
|
}[];
|
|
2379
2513
|
routes: {
|
|
2380
2514
|
path: string;
|
|
2381
|
-
kind: "iframe" | "component";
|
|
2515
|
+
kind: "iframe" | "component" | "webview";
|
|
2382
2516
|
source: string;
|
|
2517
|
+
partition?: string | undefined;
|
|
2383
2518
|
}[];
|
|
2384
2519
|
command_palette: {
|
|
2385
2520
|
label: string;
|
|
@@ -2392,6 +2527,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2392
2527
|
id: string;
|
|
2393
2528
|
route: string;
|
|
2394
2529
|
}[];
|
|
2530
|
+
session?: {
|
|
2531
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
2532
|
+
} | undefined;
|
|
2395
2533
|
csp?: Record<string, string[]> | undefined;
|
|
2396
2534
|
permissions?: Record<string, string[]> | undefined;
|
|
2397
2535
|
};
|
|
@@ -2426,6 +2564,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2426
2564
|
child_webviews: boolean;
|
|
2427
2565
|
partitions: string[];
|
|
2428
2566
|
engines: ("webkit" | "chrome")[];
|
|
2567
|
+
allowed_origins?: string[] | undefined;
|
|
2429
2568
|
} | undefined;
|
|
2430
2569
|
agentOps?: {} | undefined;
|
|
2431
2570
|
http?: {
|
|
@@ -2460,6 +2599,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2460
2599
|
};
|
|
2461
2600
|
display?: string | undefined;
|
|
2462
2601
|
} | undefined;
|
|
2602
|
+
auth_bridge?: {
|
|
2603
|
+
strategy: "api-key" | "cdp" | "none";
|
|
2604
|
+
} | undefined;
|
|
2463
2605
|
migrations?: string | undefined;
|
|
2464
2606
|
settings?: {
|
|
2465
2607
|
schema: {
|
|
@@ -2472,12 +2614,12 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2472
2614
|
}[];
|
|
2473
2615
|
} | undefined;
|
|
2474
2616
|
iyke?: {
|
|
2617
|
+
events: string[];
|
|
2475
2618
|
routes: {
|
|
2476
2619
|
path: string;
|
|
2477
2620
|
method: "GET" | "POST";
|
|
2478
2621
|
handler: string;
|
|
2479
2622
|
}[];
|
|
2480
|
-
events: string[];
|
|
2481
2623
|
} | undefined;
|
|
2482
2624
|
window?: {
|
|
2483
2625
|
label: string;
|
|
@@ -2551,6 +2693,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2551
2693
|
child_webviews?: boolean | undefined;
|
|
2552
2694
|
partitions?: string[] | undefined;
|
|
2553
2695
|
engines?: ("webkit" | "chrome")[] | undefined;
|
|
2696
|
+
allowed_origins?: string[] | undefined;
|
|
2554
2697
|
} | undefined;
|
|
2555
2698
|
agentOps?: {} | undefined;
|
|
2556
2699
|
http?: {
|
|
@@ -2594,6 +2737,11 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2594
2737
|
'sqlite.tables'?: string[] | undefined;
|
|
2595
2738
|
'supabase.tables'?: string[] | undefined;
|
|
2596
2739
|
'vault.keys'?: string[] | undefined;
|
|
2740
|
+
notify?: string[] | undefined;
|
|
2741
|
+
events?: string[] | undefined;
|
|
2742
|
+
} | undefined;
|
|
2743
|
+
auth_bridge?: {
|
|
2744
|
+
strategy: "api-key" | "cdp" | "none";
|
|
2597
2745
|
} | undefined;
|
|
2598
2746
|
targets?: string[] | undefined;
|
|
2599
2747
|
sidecars?: {
|
|
@@ -2615,6 +2763,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2615
2763
|
}[] | undefined;
|
|
2616
2764
|
} | undefined;
|
|
2617
2765
|
ui?: {
|
|
2766
|
+
session?: {
|
|
2767
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
2768
|
+
} | undefined;
|
|
2618
2769
|
nav?: {
|
|
2619
2770
|
label: string;
|
|
2620
2771
|
id: string;
|
|
@@ -2624,8 +2775,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2624
2775
|
}[] | undefined;
|
|
2625
2776
|
routes?: {
|
|
2626
2777
|
path: string;
|
|
2627
|
-
kind: "iframe" | "component";
|
|
2778
|
+
kind: "iframe" | "component" | "webview";
|
|
2628
2779
|
source: string;
|
|
2780
|
+
partition?: string | undefined;
|
|
2629
2781
|
}[] | undefined;
|
|
2630
2782
|
command_palette?: {
|
|
2631
2783
|
label: string;
|
|
@@ -2642,12 +2794,12 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2642
2794
|
permissions?: Record<string, string[]> | undefined;
|
|
2643
2795
|
} | undefined;
|
|
2644
2796
|
iyke?: {
|
|
2797
|
+
events?: string[] | undefined;
|
|
2645
2798
|
routes?: {
|
|
2646
2799
|
path: string;
|
|
2647
2800
|
method: "GET" | "POST";
|
|
2648
2801
|
handler: string;
|
|
2649
2802
|
}[] | undefined;
|
|
2650
|
-
events?: string[] | undefined;
|
|
2651
2803
|
} | undefined;
|
|
2652
2804
|
window?: {
|
|
2653
2805
|
label: string;
|
|
@@ -2719,6 +2871,8 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2719
2871
|
'sqlite.tables': string[];
|
|
2720
2872
|
'supabase.tables': string[];
|
|
2721
2873
|
'vault.keys': string[];
|
|
2874
|
+
notify: string[];
|
|
2875
|
+
events: string[];
|
|
2722
2876
|
};
|
|
2723
2877
|
ikenga_api: string;
|
|
2724
2878
|
targets: string[];
|
|
@@ -2739,8 +2893,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2739
2893
|
}[];
|
|
2740
2894
|
routes: {
|
|
2741
2895
|
path: string;
|
|
2742
|
-
kind: "iframe" | "component";
|
|
2896
|
+
kind: "iframe" | "component" | "webview";
|
|
2743
2897
|
source: string;
|
|
2898
|
+
partition?: string | undefined;
|
|
2744
2899
|
}[];
|
|
2745
2900
|
command_palette: {
|
|
2746
2901
|
label: string;
|
|
@@ -2753,6 +2908,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2753
2908
|
id: string;
|
|
2754
2909
|
route: string;
|
|
2755
2910
|
}[];
|
|
2911
|
+
session?: {
|
|
2912
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
2913
|
+
} | undefined;
|
|
2756
2914
|
csp?: Record<string, string[]> | undefined;
|
|
2757
2915
|
permissions?: Record<string, string[]> | undefined;
|
|
2758
2916
|
};
|
|
@@ -2787,6 +2945,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2787
2945
|
child_webviews: boolean;
|
|
2788
2946
|
partitions: string[];
|
|
2789
2947
|
engines: ("webkit" | "chrome")[];
|
|
2948
|
+
allowed_origins?: string[] | undefined;
|
|
2790
2949
|
} | undefined;
|
|
2791
2950
|
agentOps?: {} | undefined;
|
|
2792
2951
|
http?: {
|
|
@@ -2821,6 +2980,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2821
2980
|
};
|
|
2822
2981
|
display?: string | undefined;
|
|
2823
2982
|
} | undefined;
|
|
2983
|
+
auth_bridge?: {
|
|
2984
|
+
strategy: "api-key" | "cdp" | "none";
|
|
2985
|
+
} | undefined;
|
|
2824
2986
|
migrations?: string | undefined;
|
|
2825
2987
|
settings?: {
|
|
2826
2988
|
schema: {
|
|
@@ -2833,12 +2995,12 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2833
2995
|
}[];
|
|
2834
2996
|
} | undefined;
|
|
2835
2997
|
iyke?: {
|
|
2998
|
+
events: string[];
|
|
2836
2999
|
routes: {
|
|
2837
3000
|
path: string;
|
|
2838
3001
|
method: "GET" | "POST";
|
|
2839
3002
|
handler: string;
|
|
2840
3003
|
}[];
|
|
2841
|
-
events: string[];
|
|
2842
3004
|
} | undefined;
|
|
2843
3005
|
window?: {
|
|
2844
3006
|
label: string;
|
|
@@ -2917,6 +3079,7 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2917
3079
|
child_webviews?: boolean | undefined;
|
|
2918
3080
|
partitions?: string[] | undefined;
|
|
2919
3081
|
engines?: ("webkit" | "chrome")[] | undefined;
|
|
3082
|
+
allowed_origins?: string[] | undefined;
|
|
2920
3083
|
} | undefined;
|
|
2921
3084
|
agentOps?: {} | undefined;
|
|
2922
3085
|
http?: {
|
|
@@ -2960,6 +3123,11 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2960
3123
|
'sqlite.tables'?: string[] | undefined;
|
|
2961
3124
|
'supabase.tables'?: string[] | undefined;
|
|
2962
3125
|
'vault.keys'?: string[] | undefined;
|
|
3126
|
+
notify?: string[] | undefined;
|
|
3127
|
+
events?: string[] | undefined;
|
|
3128
|
+
} | undefined;
|
|
3129
|
+
auth_bridge?: {
|
|
3130
|
+
strategy: "api-key" | "cdp" | "none";
|
|
2963
3131
|
} | undefined;
|
|
2964
3132
|
targets?: string[] | undefined;
|
|
2965
3133
|
sidecars?: {
|
|
@@ -2981,6 +3149,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2981
3149
|
}[] | undefined;
|
|
2982
3150
|
} | undefined;
|
|
2983
3151
|
ui?: {
|
|
3152
|
+
session?: {
|
|
3153
|
+
persistence: "keep" | "clear-on-exit" | "ask";
|
|
3154
|
+
} | undefined;
|
|
2984
3155
|
nav?: {
|
|
2985
3156
|
label: string;
|
|
2986
3157
|
id: string;
|
|
@@ -2990,8 +3161,9 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
2990
3161
|
}[] | undefined;
|
|
2991
3162
|
routes?: {
|
|
2992
3163
|
path: string;
|
|
2993
|
-
kind: "iframe" | "component";
|
|
3164
|
+
kind: "iframe" | "component" | "webview";
|
|
2994
3165
|
source: string;
|
|
3166
|
+
partition?: string | undefined;
|
|
2995
3167
|
}[] | undefined;
|
|
2996
3168
|
command_palette?: {
|
|
2997
3169
|
label: string;
|
|
@@ -3008,12 +3180,12 @@ export declare const PkgDetailSchema: z.ZodObject<{
|
|
|
3008
3180
|
permissions?: Record<string, string[]> | undefined;
|
|
3009
3181
|
} | undefined;
|
|
3010
3182
|
iyke?: {
|
|
3183
|
+
events?: string[] | undefined;
|
|
3011
3184
|
routes?: {
|
|
3012
3185
|
path: string;
|
|
3013
3186
|
method: "GET" | "POST";
|
|
3014
3187
|
handler: string;
|
|
3015
3188
|
}[] | undefined;
|
|
3016
|
-
events?: string[] | undefined;
|
|
3017
3189
|
} | undefined;
|
|
3018
3190
|
window?: {
|
|
3019
3191
|
label: string;
|