miniflare 0.0.0-e39a45ffa → 0.0.0-e3b3ef51c
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/src/index.d.ts +514 -387
- package/dist/src/index.js +3804 -657
- package/dist/src/index.js.map +3 -3
- package/dist/src/workers/assets/assets.worker.js +11 -13
- package/dist/src/workers/assets/assets.worker.js.map +2 -2
- package/dist/src/workers/assets/router.worker.js +3 -6
- package/dist/src/workers/assets/router.worker.js.map +2 -2
- package/dist/src/workers/workflows/binding.worker.js +8 -4
- package/dist/src/workers/workflows/binding.worker.js.map +1 -1
- package/package.json +10 -7
package/dist/src/index.d.ts
CHANGED
|
@@ -164,17 +164,17 @@ export declare const AssetsOptionsSchema: z.ZodObject<{
|
|
|
164
164
|
invoke_user_worker_ahead_of_assets: z.ZodOptional<z.ZodBoolean>;
|
|
165
165
|
has_user_worker: z.ZodOptional<z.ZodBoolean>;
|
|
166
166
|
}, "strip", z.ZodTypeAny, {
|
|
167
|
-
account_id?: number;
|
|
168
|
-
script_id?: number;
|
|
169
|
-
debug?: boolean;
|
|
170
|
-
invoke_user_worker_ahead_of_assets?: boolean;
|
|
171
|
-
has_user_worker?: boolean;
|
|
167
|
+
account_id?: number | undefined;
|
|
168
|
+
script_id?: number | undefined;
|
|
169
|
+
debug?: boolean | undefined;
|
|
170
|
+
invoke_user_worker_ahead_of_assets?: boolean | undefined;
|
|
171
|
+
has_user_worker?: boolean | undefined;
|
|
172
172
|
}, {
|
|
173
|
-
account_id?: number;
|
|
174
|
-
script_id?: number;
|
|
175
|
-
debug?: boolean;
|
|
176
|
-
invoke_user_worker_ahead_of_assets?: boolean;
|
|
177
|
-
has_user_worker?: boolean;
|
|
173
|
+
account_id?: number | undefined;
|
|
174
|
+
script_id?: number | undefined;
|
|
175
|
+
debug?: boolean | undefined;
|
|
176
|
+
invoke_user_worker_ahead_of_assets?: boolean | undefined;
|
|
177
|
+
has_user_worker?: boolean | undefined;
|
|
178
178
|
}>>;
|
|
179
179
|
assetConfig: z.ZodOptional<z.ZodObject<Omit<{
|
|
180
180
|
account_id: z.ZodOptional<z.ZodNumber>;
|
|
@@ -191,45 +191,45 @@ export declare const AssetsOptionsSchema: z.ZodObject<{
|
|
|
191
191
|
to: z.ZodString;
|
|
192
192
|
lineNumber: z.ZodNumber;
|
|
193
193
|
}, "strip", z.ZodTypeAny, {
|
|
194
|
-
status
|
|
195
|
-
to
|
|
196
|
-
lineNumber
|
|
194
|
+
status: number;
|
|
195
|
+
to: string;
|
|
196
|
+
lineNumber: number;
|
|
197
197
|
}, {
|
|
198
|
-
status
|
|
199
|
-
to
|
|
200
|
-
lineNumber
|
|
198
|
+
status: number;
|
|
199
|
+
to: string;
|
|
200
|
+
lineNumber: number;
|
|
201
201
|
}>>;
|
|
202
202
|
rules: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
203
203
|
status: z.ZodNumber;
|
|
204
204
|
to: z.ZodString;
|
|
205
205
|
}, "strip", z.ZodTypeAny, {
|
|
206
|
-
status
|
|
207
|
-
to
|
|
206
|
+
status: number;
|
|
207
|
+
to: string;
|
|
208
208
|
}, {
|
|
209
|
-
status
|
|
210
|
-
to
|
|
209
|
+
status: number;
|
|
210
|
+
to: string;
|
|
211
211
|
}>>;
|
|
212
212
|
}, "strip", z.ZodTypeAny, {
|
|
213
|
-
version
|
|
214
|
-
staticRules
|
|
215
|
-
status
|
|
216
|
-
to
|
|
217
|
-
lineNumber
|
|
213
|
+
version: 1;
|
|
214
|
+
staticRules: Record<string, {
|
|
215
|
+
status: number;
|
|
216
|
+
to: string;
|
|
217
|
+
lineNumber: number;
|
|
218
218
|
}>;
|
|
219
|
-
rules
|
|
220
|
-
status
|
|
221
|
-
to
|
|
219
|
+
rules: Record<string, {
|
|
220
|
+
status: number;
|
|
221
|
+
to: string;
|
|
222
222
|
}>;
|
|
223
223
|
}, {
|
|
224
|
-
version
|
|
225
|
-
staticRules
|
|
226
|
-
status
|
|
227
|
-
to
|
|
228
|
-
lineNumber
|
|
224
|
+
version: 1;
|
|
225
|
+
staticRules: Record<string, {
|
|
226
|
+
status: number;
|
|
227
|
+
to: string;
|
|
228
|
+
lineNumber: number;
|
|
229
229
|
}>;
|
|
230
|
-
rules
|
|
231
|
-
status
|
|
232
|
-
to
|
|
230
|
+
rules: Record<string, {
|
|
231
|
+
status: number;
|
|
232
|
+
to: string;
|
|
233
233
|
}>;
|
|
234
234
|
}>>;
|
|
235
235
|
headers: z.ZodOptional<z.ZodObject<{
|
|
@@ -238,73 +238,73 @@ export declare const AssetsOptionsSchema: z.ZodObject<{
|
|
|
238
238
|
set: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
239
239
|
unset: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
240
240
|
}, "strip", z.ZodTypeAny, {
|
|
241
|
-
set?: Record<string, string
|
|
242
|
-
unset?: string[];
|
|
241
|
+
set?: Record<string, string> | undefined;
|
|
242
|
+
unset?: string[] | undefined;
|
|
243
243
|
}, {
|
|
244
|
-
set?: Record<string, string
|
|
245
|
-
unset?: string[];
|
|
244
|
+
set?: Record<string, string> | undefined;
|
|
245
|
+
unset?: string[] | undefined;
|
|
246
246
|
}>>;
|
|
247
247
|
}, "strip", z.ZodTypeAny, {
|
|
248
|
-
version
|
|
249
|
-
rules
|
|
250
|
-
set?: Record<string, string
|
|
251
|
-
unset?: string[];
|
|
248
|
+
version: 2;
|
|
249
|
+
rules: Record<string, {
|
|
250
|
+
set?: Record<string, string> | undefined;
|
|
251
|
+
unset?: string[] | undefined;
|
|
252
252
|
}>;
|
|
253
253
|
}, {
|
|
254
|
-
version
|
|
255
|
-
rules
|
|
256
|
-
set?: Record<string, string
|
|
257
|
-
unset?: string[];
|
|
254
|
+
version: 2;
|
|
255
|
+
rules: Record<string, {
|
|
256
|
+
set?: Record<string, string> | undefined;
|
|
257
|
+
unset?: string[] | undefined;
|
|
258
258
|
}>;
|
|
259
259
|
}>>;
|
|
260
260
|
}, "compatibility_date" | "compatibility_flags">, "strip", z.ZodTypeAny, {
|
|
261
|
+
debug?: boolean | undefined;
|
|
261
262
|
headers?: {
|
|
262
|
-
version
|
|
263
|
-
rules
|
|
264
|
-
set?: Record<string, string
|
|
265
|
-
unset?: string[];
|
|
263
|
+
version: 2;
|
|
264
|
+
rules: Record<string, {
|
|
265
|
+
set?: Record<string, string> | undefined;
|
|
266
|
+
unset?: string[] | undefined;
|
|
266
267
|
}>;
|
|
267
268
|
} | undefined;
|
|
268
|
-
debug?: boolean | undefined;
|
|
269
269
|
account_id?: number | undefined;
|
|
270
270
|
script_id?: number | undefined;
|
|
271
271
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
|
|
272
272
|
not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
|
|
273
273
|
redirects?: {
|
|
274
|
-
version
|
|
275
|
-
staticRules
|
|
276
|
-
status
|
|
277
|
-
to
|
|
278
|
-
lineNumber
|
|
274
|
+
version: 1;
|
|
275
|
+
staticRules: Record<string, {
|
|
276
|
+
status: number;
|
|
277
|
+
to: string;
|
|
278
|
+
lineNumber: number;
|
|
279
279
|
}>;
|
|
280
|
-
rules
|
|
281
|
-
status
|
|
282
|
-
to
|
|
280
|
+
rules: Record<string, {
|
|
281
|
+
status: number;
|
|
282
|
+
to: string;
|
|
283
283
|
}>;
|
|
284
284
|
} | undefined;
|
|
285
285
|
}, {
|
|
286
|
+
debug?: boolean | undefined;
|
|
286
287
|
headers?: {
|
|
287
|
-
version
|
|
288
|
-
rules
|
|
289
|
-
set?: Record<string, string
|
|
290
|
-
unset?: string[];
|
|
288
|
+
version: 2;
|
|
289
|
+
rules: Record<string, {
|
|
290
|
+
set?: Record<string, string> | undefined;
|
|
291
|
+
unset?: string[] | undefined;
|
|
291
292
|
}>;
|
|
292
293
|
} | undefined;
|
|
293
|
-
debug?: boolean | undefined;
|
|
294
294
|
account_id?: number | undefined;
|
|
295
295
|
script_id?: number | undefined;
|
|
296
296
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
|
|
297
297
|
not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
|
|
298
298
|
redirects?: {
|
|
299
|
-
version
|
|
300
|
-
staticRules
|
|
301
|
-
status
|
|
302
|
-
to
|
|
303
|
-
lineNumber
|
|
299
|
+
version: 1;
|
|
300
|
+
staticRules: Record<string, {
|
|
301
|
+
status: number;
|
|
302
|
+
to: string;
|
|
303
|
+
lineNumber: number;
|
|
304
304
|
}>;
|
|
305
|
-
rules
|
|
306
|
-
status
|
|
307
|
-
to
|
|
305
|
+
rules: Record<string, {
|
|
306
|
+
status: number;
|
|
307
|
+
to: string;
|
|
308
308
|
}>;
|
|
309
309
|
} | undefined;
|
|
310
310
|
}>>;
|
|
@@ -313,35 +313,35 @@ export declare const AssetsOptionsSchema: z.ZodObject<{
|
|
|
313
313
|
workerName?: string | undefined;
|
|
314
314
|
binding?: string | undefined;
|
|
315
315
|
routerConfig?: {
|
|
316
|
-
account_id?: number;
|
|
317
|
-
script_id?: number;
|
|
318
|
-
debug?: boolean;
|
|
319
|
-
invoke_user_worker_ahead_of_assets?: boolean;
|
|
320
|
-
has_user_worker?: boolean;
|
|
316
|
+
account_id?: number | undefined;
|
|
317
|
+
script_id?: number | undefined;
|
|
318
|
+
debug?: boolean | undefined;
|
|
319
|
+
invoke_user_worker_ahead_of_assets?: boolean | undefined;
|
|
320
|
+
has_user_worker?: boolean | undefined;
|
|
321
321
|
} | undefined;
|
|
322
322
|
assetConfig?: {
|
|
323
|
+
debug?: boolean | undefined;
|
|
323
324
|
headers?: {
|
|
324
|
-
version
|
|
325
|
-
rules
|
|
326
|
-
set?: Record<string, string
|
|
327
|
-
unset?: string[];
|
|
325
|
+
version: 2;
|
|
326
|
+
rules: Record<string, {
|
|
327
|
+
set?: Record<string, string> | undefined;
|
|
328
|
+
unset?: string[] | undefined;
|
|
328
329
|
}>;
|
|
329
330
|
} | undefined;
|
|
330
|
-
debug?: boolean | undefined;
|
|
331
331
|
account_id?: number | undefined;
|
|
332
332
|
script_id?: number | undefined;
|
|
333
333
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
|
|
334
334
|
not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
|
|
335
335
|
redirects?: {
|
|
336
|
-
version
|
|
337
|
-
staticRules
|
|
338
|
-
status
|
|
339
|
-
to
|
|
340
|
-
lineNumber
|
|
336
|
+
version: 1;
|
|
337
|
+
staticRules: Record<string, {
|
|
338
|
+
status: number;
|
|
339
|
+
to: string;
|
|
340
|
+
lineNumber: number;
|
|
341
341
|
}>;
|
|
342
|
-
rules
|
|
343
|
-
status
|
|
344
|
-
to
|
|
342
|
+
rules: Record<string, {
|
|
343
|
+
status: number;
|
|
344
|
+
to: string;
|
|
345
345
|
}>;
|
|
346
346
|
} | undefined;
|
|
347
347
|
} | undefined;
|
|
@@ -350,35 +350,35 @@ export declare const AssetsOptionsSchema: z.ZodObject<{
|
|
|
350
350
|
workerName?: string | undefined;
|
|
351
351
|
binding?: string | undefined;
|
|
352
352
|
routerConfig?: {
|
|
353
|
-
account_id?: number;
|
|
354
|
-
script_id?: number;
|
|
355
|
-
debug?: boolean;
|
|
356
|
-
invoke_user_worker_ahead_of_assets?: boolean;
|
|
357
|
-
has_user_worker?: boolean;
|
|
353
|
+
account_id?: number | undefined;
|
|
354
|
+
script_id?: number | undefined;
|
|
355
|
+
debug?: boolean | undefined;
|
|
356
|
+
invoke_user_worker_ahead_of_assets?: boolean | undefined;
|
|
357
|
+
has_user_worker?: boolean | undefined;
|
|
358
358
|
} | undefined;
|
|
359
359
|
assetConfig?: {
|
|
360
|
+
debug?: boolean | undefined;
|
|
360
361
|
headers?: {
|
|
361
|
-
version
|
|
362
|
-
rules
|
|
363
|
-
set?: Record<string, string
|
|
364
|
-
unset?: string[];
|
|
362
|
+
version: 2;
|
|
363
|
+
rules: Record<string, {
|
|
364
|
+
set?: Record<string, string> | undefined;
|
|
365
|
+
unset?: string[] | undefined;
|
|
365
366
|
}>;
|
|
366
367
|
} | undefined;
|
|
367
|
-
debug?: boolean | undefined;
|
|
368
368
|
account_id?: number | undefined;
|
|
369
369
|
script_id?: number | undefined;
|
|
370
370
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
|
|
371
371
|
not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
|
|
372
372
|
redirects?: {
|
|
373
|
-
version
|
|
374
|
-
staticRules
|
|
375
|
-
status
|
|
376
|
-
to
|
|
377
|
-
lineNumber
|
|
373
|
+
version: 1;
|
|
374
|
+
staticRules: Record<string, {
|
|
375
|
+
status: number;
|
|
376
|
+
to: string;
|
|
377
|
+
lineNumber: number;
|
|
378
378
|
}>;
|
|
379
|
-
rules
|
|
380
|
-
status
|
|
381
|
-
to
|
|
379
|
+
rules: Record<string, {
|
|
380
|
+
status: number;
|
|
381
|
+
to: string;
|
|
382
382
|
}>;
|
|
383
383
|
} | undefined;
|
|
384
384
|
} | undefined;
|
|
@@ -391,35 +391,35 @@ export declare const AssetsOptionsSchema: z.ZodObject<{
|
|
|
391
391
|
workerName?: string | undefined;
|
|
392
392
|
binding?: string | undefined;
|
|
393
393
|
routerConfig?: {
|
|
394
|
-
account_id?: number;
|
|
395
|
-
script_id?: number;
|
|
396
|
-
debug?: boolean;
|
|
397
|
-
invoke_user_worker_ahead_of_assets?: boolean;
|
|
398
|
-
has_user_worker?: boolean;
|
|
394
|
+
account_id?: number | undefined;
|
|
395
|
+
script_id?: number | undefined;
|
|
396
|
+
debug?: boolean | undefined;
|
|
397
|
+
invoke_user_worker_ahead_of_assets?: boolean | undefined;
|
|
398
|
+
has_user_worker?: boolean | undefined;
|
|
399
399
|
} | undefined;
|
|
400
400
|
assetConfig?: {
|
|
401
|
+
debug?: boolean | undefined;
|
|
401
402
|
headers?: {
|
|
402
|
-
version
|
|
403
|
-
rules
|
|
404
|
-
set?: Record<string, string
|
|
405
|
-
unset?: string[];
|
|
403
|
+
version: 2;
|
|
404
|
+
rules: Record<string, {
|
|
405
|
+
set?: Record<string, string> | undefined;
|
|
406
|
+
unset?: string[] | undefined;
|
|
406
407
|
}>;
|
|
407
408
|
} | undefined;
|
|
408
|
-
debug?: boolean | undefined;
|
|
409
409
|
account_id?: number | undefined;
|
|
410
410
|
script_id?: number | undefined;
|
|
411
411
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
|
|
412
412
|
not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
|
|
413
413
|
redirects?: {
|
|
414
|
-
version
|
|
415
|
-
staticRules
|
|
416
|
-
status
|
|
417
|
-
to
|
|
418
|
-
lineNumber
|
|
414
|
+
version: 1;
|
|
415
|
+
staticRules: Record<string, {
|
|
416
|
+
status: number;
|
|
417
|
+
to: string;
|
|
418
|
+
lineNumber: number;
|
|
419
419
|
}>;
|
|
420
|
-
rules
|
|
421
|
-
status
|
|
422
|
-
to
|
|
420
|
+
rules: Record<string, {
|
|
421
|
+
status: number;
|
|
422
|
+
to: string;
|
|
423
423
|
}>;
|
|
424
424
|
} | undefined;
|
|
425
425
|
} | undefined;
|
|
@@ -432,35 +432,35 @@ export declare const AssetsOptionsSchema: z.ZodObject<{
|
|
|
432
432
|
workerName?: string | undefined;
|
|
433
433
|
binding?: string | undefined;
|
|
434
434
|
routerConfig?: {
|
|
435
|
-
account_id?: number;
|
|
436
|
-
script_id?: number;
|
|
437
|
-
debug?: boolean;
|
|
438
|
-
invoke_user_worker_ahead_of_assets?: boolean;
|
|
439
|
-
has_user_worker?: boolean;
|
|
435
|
+
account_id?: number | undefined;
|
|
436
|
+
script_id?: number | undefined;
|
|
437
|
+
debug?: boolean | undefined;
|
|
438
|
+
invoke_user_worker_ahead_of_assets?: boolean | undefined;
|
|
439
|
+
has_user_worker?: boolean | undefined;
|
|
440
440
|
} | undefined;
|
|
441
441
|
assetConfig?: {
|
|
442
|
+
debug?: boolean | undefined;
|
|
442
443
|
headers?: {
|
|
443
|
-
version
|
|
444
|
-
rules
|
|
445
|
-
set?: Record<string, string
|
|
446
|
-
unset?: string[];
|
|
444
|
+
version: 2;
|
|
445
|
+
rules: Record<string, {
|
|
446
|
+
set?: Record<string, string> | undefined;
|
|
447
|
+
unset?: string[] | undefined;
|
|
447
448
|
}>;
|
|
448
449
|
} | undefined;
|
|
449
|
-
debug?: boolean | undefined;
|
|
450
450
|
account_id?: number | undefined;
|
|
451
451
|
script_id?: number | undefined;
|
|
452
452
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
|
|
453
453
|
not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
|
|
454
454
|
redirects?: {
|
|
455
|
-
version
|
|
456
|
-
staticRules
|
|
457
|
-
status
|
|
458
|
-
to
|
|
459
|
-
lineNumber
|
|
455
|
+
version: 1;
|
|
456
|
+
staticRules: Record<string, {
|
|
457
|
+
status: number;
|
|
458
|
+
to: string;
|
|
459
|
+
lineNumber: number;
|
|
460
460
|
}>;
|
|
461
|
-
rules
|
|
462
|
-
status
|
|
463
|
-
to
|
|
461
|
+
rules: Record<string, {
|
|
462
|
+
status: number;
|
|
463
|
+
to: string;
|
|
464
464
|
}>;
|
|
465
465
|
} | undefined;
|
|
466
466
|
} | undefined;
|
|
@@ -590,6 +590,60 @@ export declare interface Config {
|
|
|
590
590
|
autogates?: string[];
|
|
591
591
|
}
|
|
592
592
|
|
|
593
|
+
export declare const CONTAINER_PLUGIN: Plugin<typeof ContainersOptionsSchema, typeof ContainersSharedOptions>;
|
|
594
|
+
|
|
595
|
+
export declare const CONTAINER_PLUGIN_NAME = "containers";
|
|
596
|
+
|
|
597
|
+
export declare type ContainerOptions = z.infer<typeof ContainersOptionsSchema>;
|
|
598
|
+
|
|
599
|
+
export declare class ContainerService {
|
|
600
|
+
#private;
|
|
601
|
+
constructor(containerOptions: ContainerOptions);
|
|
602
|
+
updateConfig(containerOptions: ContainerOptions): void;
|
|
603
|
+
help(): void;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
export declare const ContainersOptionsSchema: z.ZodObject<{
|
|
607
|
+
containers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
608
|
+
image: z.ZodString;
|
|
609
|
+
maxInstances: z.ZodOptional<z.ZodNumber>;
|
|
610
|
+
imageBuildContext: z.ZodOptional<z.ZodString>;
|
|
611
|
+
exposedPorts: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
612
|
+
}, "strip", z.ZodTypeAny, {
|
|
613
|
+
image: string;
|
|
614
|
+
maxInstances?: number | undefined;
|
|
615
|
+
imageBuildContext?: string | undefined;
|
|
616
|
+
exposedPorts?: number[] | undefined;
|
|
617
|
+
}, {
|
|
618
|
+
image: string;
|
|
619
|
+
maxInstances?: number | undefined;
|
|
620
|
+
imageBuildContext?: string | undefined;
|
|
621
|
+
exposedPorts?: number[] | undefined;
|
|
622
|
+
}>>>;
|
|
623
|
+
}, "strip", z.ZodTypeAny, {
|
|
624
|
+
containers?: Record<string, {
|
|
625
|
+
image: string;
|
|
626
|
+
maxInstances?: number | undefined;
|
|
627
|
+
imageBuildContext?: string | undefined;
|
|
628
|
+
exposedPorts?: number[] | undefined;
|
|
629
|
+
}> | undefined;
|
|
630
|
+
}, {
|
|
631
|
+
containers?: Record<string, {
|
|
632
|
+
image: string;
|
|
633
|
+
maxInstances?: number | undefined;
|
|
634
|
+
imageBuildContext?: string | undefined;
|
|
635
|
+
exposedPorts?: number[] | undefined;
|
|
636
|
+
}> | undefined;
|
|
637
|
+
}>;
|
|
638
|
+
|
|
639
|
+
export declare const ContainersSharedOptions: z.ZodObject<{
|
|
640
|
+
ignore_containers: z.ZodOptional<z.ZodString>;
|
|
641
|
+
}, "strip", z.ZodTypeAny, {
|
|
642
|
+
ignore_containers?: string | undefined;
|
|
643
|
+
}, {
|
|
644
|
+
ignore_containers?: string | undefined;
|
|
645
|
+
}>;
|
|
646
|
+
|
|
593
647
|
export declare const CORE_PLUGIN: Plugin<typeof CoreOptionsSchema, typeof CoreSharedOptionsSchema>;
|
|
594
648
|
|
|
595
649
|
export declare const CORE_PLUGIN_NAME = "core";
|
|
@@ -793,7 +847,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
793
847
|
requireClientCerts?: boolean | undefined;
|
|
794
848
|
trustBrowserCas?: boolean | undefined;
|
|
795
849
|
trustedCertificates?: string[] | undefined;
|
|
796
|
-
minVersion?: 0 |
|
|
850
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
797
851
|
cipherList?: string | undefined;
|
|
798
852
|
}, {
|
|
799
853
|
keypair?: {
|
|
@@ -803,7 +857,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
803
857
|
requireClientCerts?: boolean | undefined;
|
|
804
858
|
trustBrowserCas?: boolean | undefined;
|
|
805
859
|
trustedCertificates?: string[] | undefined;
|
|
806
|
-
minVersion?: 0 |
|
|
860
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
807
861
|
cipherList?: string | undefined;
|
|
808
862
|
}>>;
|
|
809
863
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -817,7 +871,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
817
871
|
requireClientCerts?: boolean | undefined;
|
|
818
872
|
trustBrowserCas?: boolean | undefined;
|
|
819
873
|
trustedCertificates?: string[] | undefined;
|
|
820
|
-
minVersion?: 0 |
|
|
874
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
821
875
|
cipherList?: string | undefined;
|
|
822
876
|
} | undefined;
|
|
823
877
|
}, {
|
|
@@ -831,7 +885,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
831
885
|
requireClientCerts?: boolean | undefined;
|
|
832
886
|
trustBrowserCas?: boolean | undefined;
|
|
833
887
|
trustedCertificates?: string[] | undefined;
|
|
834
|
-
minVersion?: 0 |
|
|
888
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
835
889
|
cipherList?: string | undefined;
|
|
836
890
|
} | undefined;
|
|
837
891
|
}>;
|
|
@@ -847,7 +901,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
847
901
|
requireClientCerts?: boolean | undefined;
|
|
848
902
|
trustBrowserCas?: boolean | undefined;
|
|
849
903
|
trustedCertificates?: string[] | undefined;
|
|
850
|
-
minVersion?: 0 |
|
|
904
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
851
905
|
cipherList?: string | undefined;
|
|
852
906
|
} | undefined;
|
|
853
907
|
};
|
|
@@ -863,7 +917,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
863
917
|
requireClientCerts?: boolean | undefined;
|
|
864
918
|
trustBrowserCas?: boolean | undefined;
|
|
865
919
|
trustedCertificates?: string[] | undefined;
|
|
866
|
-
minVersion?: 0 |
|
|
920
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
867
921
|
cipherList?: string | undefined;
|
|
868
922
|
} | undefined;
|
|
869
923
|
};
|
|
@@ -964,7 +1018,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
964
1018
|
requireClientCerts?: boolean | undefined;
|
|
965
1019
|
trustBrowserCas?: boolean | undefined;
|
|
966
1020
|
trustedCertificates?: string[] | undefined;
|
|
967
|
-
minVersion?: 0 |
|
|
1021
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
968
1022
|
cipherList?: string | undefined;
|
|
969
1023
|
}, {
|
|
970
1024
|
keypair?: {
|
|
@@ -974,7 +1028,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
974
1028
|
requireClientCerts?: boolean | undefined;
|
|
975
1029
|
trustBrowserCas?: boolean | undefined;
|
|
976
1030
|
trustedCertificates?: string[] | undefined;
|
|
977
|
-
minVersion?: 0 |
|
|
1031
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
978
1032
|
cipherList?: string | undefined;
|
|
979
1033
|
}>>;
|
|
980
1034
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -988,7 +1042,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
988
1042
|
requireClientCerts?: boolean | undefined;
|
|
989
1043
|
trustBrowserCas?: boolean | undefined;
|
|
990
1044
|
trustedCertificates?: string[] | undefined;
|
|
991
|
-
minVersion?: 0 |
|
|
1045
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
992
1046
|
cipherList?: string | undefined;
|
|
993
1047
|
} | undefined;
|
|
994
1048
|
}, {
|
|
@@ -1002,7 +1056,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1002
1056
|
requireClientCerts?: boolean | undefined;
|
|
1003
1057
|
trustBrowserCas?: boolean | undefined;
|
|
1004
1058
|
trustedCertificates?: string[] | undefined;
|
|
1005
|
-
minVersion?: 0 |
|
|
1059
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1006
1060
|
cipherList?: string | undefined;
|
|
1007
1061
|
} | undefined;
|
|
1008
1062
|
}>;
|
|
@@ -1018,7 +1072,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1018
1072
|
requireClientCerts?: boolean | undefined;
|
|
1019
1073
|
trustBrowserCas?: boolean | undefined;
|
|
1020
1074
|
trustedCertificates?: string[] | undefined;
|
|
1021
|
-
minVersion?: 0 |
|
|
1075
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1022
1076
|
cipherList?: string | undefined;
|
|
1023
1077
|
} | undefined;
|
|
1024
1078
|
};
|
|
@@ -1034,7 +1088,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1034
1088
|
requireClientCerts?: boolean | undefined;
|
|
1035
1089
|
trustBrowserCas?: boolean | undefined;
|
|
1036
1090
|
trustedCertificates?: string[] | undefined;
|
|
1037
|
-
minVersion?: 0 |
|
|
1091
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1038
1092
|
cipherList?: string | undefined;
|
|
1039
1093
|
} | undefined;
|
|
1040
1094
|
};
|
|
@@ -1147,7 +1201,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1147
1201
|
requireClientCerts?: boolean | undefined;
|
|
1148
1202
|
trustBrowserCas?: boolean | undefined;
|
|
1149
1203
|
trustedCertificates?: string[] | undefined;
|
|
1150
|
-
minVersion?: 0 |
|
|
1204
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1151
1205
|
cipherList?: string | undefined;
|
|
1152
1206
|
}, {
|
|
1153
1207
|
keypair?: {
|
|
@@ -1157,7 +1211,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1157
1211
|
requireClientCerts?: boolean | undefined;
|
|
1158
1212
|
trustBrowserCas?: boolean | undefined;
|
|
1159
1213
|
trustedCertificates?: string[] | undefined;
|
|
1160
|
-
minVersion?: 0 |
|
|
1214
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1161
1215
|
cipherList?: string | undefined;
|
|
1162
1216
|
}>>;
|
|
1163
1217
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1171,7 +1225,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1171
1225
|
requireClientCerts?: boolean | undefined;
|
|
1172
1226
|
trustBrowserCas?: boolean | undefined;
|
|
1173
1227
|
trustedCertificates?: string[] | undefined;
|
|
1174
|
-
minVersion?: 0 |
|
|
1228
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1175
1229
|
cipherList?: string | undefined;
|
|
1176
1230
|
} | undefined;
|
|
1177
1231
|
}, {
|
|
@@ -1185,7 +1239,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1185
1239
|
requireClientCerts?: boolean | undefined;
|
|
1186
1240
|
trustBrowserCas?: boolean | undefined;
|
|
1187
1241
|
trustedCertificates?: string[] | undefined;
|
|
1188
|
-
minVersion?: 0 |
|
|
1242
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1189
1243
|
cipherList?: string | undefined;
|
|
1190
1244
|
} | undefined;
|
|
1191
1245
|
}>;
|
|
@@ -1201,7 +1255,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1201
1255
|
requireClientCerts?: boolean | undefined;
|
|
1202
1256
|
trustBrowserCas?: boolean | undefined;
|
|
1203
1257
|
trustedCertificates?: string[] | undefined;
|
|
1204
|
-
minVersion?: 0 |
|
|
1258
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1205
1259
|
cipherList?: string | undefined;
|
|
1206
1260
|
} | undefined;
|
|
1207
1261
|
};
|
|
@@ -1217,7 +1271,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1217
1271
|
requireClientCerts?: boolean | undefined;
|
|
1218
1272
|
trustBrowserCas?: boolean | undefined;
|
|
1219
1273
|
trustedCertificates?: string[] | undefined;
|
|
1220
|
-
minVersion?: 0 |
|
|
1274
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1221
1275
|
cipherList?: string | undefined;
|
|
1222
1276
|
} | undefined;
|
|
1223
1277
|
};
|
|
@@ -1285,7 +1339,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1285
1339
|
requireClientCerts?: boolean | undefined;
|
|
1286
1340
|
trustBrowserCas?: boolean | undefined;
|
|
1287
1341
|
trustedCertificates?: string[] | undefined;
|
|
1288
|
-
minVersion?: 0 |
|
|
1342
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1289
1343
|
cipherList?: string | undefined;
|
|
1290
1344
|
} | undefined;
|
|
1291
1345
|
};
|
|
@@ -1321,7 +1375,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1321
1375
|
requireClientCerts?: boolean | undefined;
|
|
1322
1376
|
trustBrowserCas?: boolean | undefined;
|
|
1323
1377
|
trustedCertificates?: string[] | undefined;
|
|
1324
|
-
minVersion?: 0 |
|
|
1378
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1325
1379
|
cipherList?: string | undefined;
|
|
1326
1380
|
} | undefined;
|
|
1327
1381
|
};
|
|
@@ -1363,7 +1417,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1363
1417
|
requireClientCerts?: boolean | undefined;
|
|
1364
1418
|
trustBrowserCas?: boolean | undefined;
|
|
1365
1419
|
trustedCertificates?: string[] | undefined;
|
|
1366
|
-
minVersion?: 0 |
|
|
1420
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1367
1421
|
cipherList?: string | undefined;
|
|
1368
1422
|
} | undefined;
|
|
1369
1423
|
};
|
|
@@ -1405,7 +1459,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1405
1459
|
requireClientCerts?: boolean | undefined;
|
|
1406
1460
|
trustBrowserCas?: boolean | undefined;
|
|
1407
1461
|
trustedCertificates?: string[] | undefined;
|
|
1408
|
-
minVersion?: 0 |
|
|
1462
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1409
1463
|
cipherList?: string | undefined;
|
|
1410
1464
|
} | undefined;
|
|
1411
1465
|
};
|
|
@@ -1441,7 +1495,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1441
1495
|
requireClientCerts?: boolean | undefined;
|
|
1442
1496
|
trustBrowserCas?: boolean | undefined;
|
|
1443
1497
|
trustedCertificates?: string[] | undefined;
|
|
1444
|
-
minVersion?: 0 |
|
|
1498
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1445
1499
|
cipherList?: string | undefined;
|
|
1446
1500
|
} | undefined;
|
|
1447
1501
|
};
|
|
@@ -1483,7 +1537,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1483
1537
|
requireClientCerts?: boolean | undefined;
|
|
1484
1538
|
trustBrowserCas?: boolean | undefined;
|
|
1485
1539
|
trustedCertificates?: string[] | undefined;
|
|
1486
|
-
minVersion?: 0 |
|
|
1540
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1487
1541
|
cipherList?: string | undefined;
|
|
1488
1542
|
} | undefined;
|
|
1489
1543
|
};
|
|
@@ -1534,7 +1588,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1534
1588
|
requireClientCerts?: boolean | undefined;
|
|
1535
1589
|
trustBrowserCas?: boolean | undefined;
|
|
1536
1590
|
trustedCertificates?: string[] | undefined;
|
|
1537
|
-
minVersion?: 0 |
|
|
1591
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1538
1592
|
cipherList?: string | undefined;
|
|
1539
1593
|
} | undefined;
|
|
1540
1594
|
};
|
|
@@ -1570,7 +1624,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1570
1624
|
requireClientCerts?: boolean | undefined;
|
|
1571
1625
|
trustBrowserCas?: boolean | undefined;
|
|
1572
1626
|
trustedCertificates?: string[] | undefined;
|
|
1573
|
-
minVersion?: 0 |
|
|
1627
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1574
1628
|
cipherList?: string | undefined;
|
|
1575
1629
|
} | undefined;
|
|
1576
1630
|
};
|
|
@@ -1612,7 +1666,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1612
1666
|
requireClientCerts?: boolean | undefined;
|
|
1613
1667
|
trustBrowserCas?: boolean | undefined;
|
|
1614
1668
|
trustedCertificates?: string[] | undefined;
|
|
1615
|
-
minVersion?: 0 |
|
|
1669
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1616
1670
|
cipherList?: string | undefined;
|
|
1617
1671
|
} | undefined;
|
|
1618
1672
|
};
|
|
@@ -1665,7 +1719,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1665
1719
|
requireClientCerts?: boolean | undefined;
|
|
1666
1720
|
trustBrowserCas?: boolean | undefined;
|
|
1667
1721
|
trustedCertificates?: string[] | undefined;
|
|
1668
|
-
minVersion?: 0 |
|
|
1722
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1669
1723
|
cipherList?: string | undefined;
|
|
1670
1724
|
} | undefined;
|
|
1671
1725
|
};
|
|
@@ -1701,7 +1755,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1701
1755
|
requireClientCerts?: boolean | undefined;
|
|
1702
1756
|
trustBrowserCas?: boolean | undefined;
|
|
1703
1757
|
trustedCertificates?: string[] | undefined;
|
|
1704
|
-
minVersion?: 0 |
|
|
1758
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1705
1759
|
cipherList?: string | undefined;
|
|
1706
1760
|
} | undefined;
|
|
1707
1761
|
};
|
|
@@ -1743,7 +1797,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1743
1797
|
requireClientCerts?: boolean | undefined;
|
|
1744
1798
|
trustBrowserCas?: boolean | undefined;
|
|
1745
1799
|
trustedCertificates?: string[] | undefined;
|
|
1746
|
-
minVersion?: 0 |
|
|
1800
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1747
1801
|
cipherList?: string | undefined;
|
|
1748
1802
|
} | undefined;
|
|
1749
1803
|
};
|
|
@@ -1795,7 +1849,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1795
1849
|
requireClientCerts?: boolean | undefined;
|
|
1796
1850
|
trustBrowserCas?: boolean | undefined;
|
|
1797
1851
|
trustedCertificates?: string[] | undefined;
|
|
1798
|
-
minVersion?: 0 |
|
|
1852
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1799
1853
|
cipherList?: string | undefined;
|
|
1800
1854
|
} | undefined;
|
|
1801
1855
|
};
|
|
@@ -1831,7 +1885,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1831
1885
|
requireClientCerts?: boolean | undefined;
|
|
1832
1886
|
trustBrowserCas?: boolean | undefined;
|
|
1833
1887
|
trustedCertificates?: string[] | undefined;
|
|
1834
|
-
minVersion?: 0 |
|
|
1888
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1835
1889
|
cipherList?: string | undefined;
|
|
1836
1890
|
} | undefined;
|
|
1837
1891
|
};
|
|
@@ -1873,7 +1927,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1873
1927
|
requireClientCerts?: boolean | undefined;
|
|
1874
1928
|
trustBrowserCas?: boolean | undefined;
|
|
1875
1929
|
trustedCertificates?: string[] | undefined;
|
|
1876
|
-
minVersion?: 0 |
|
|
1930
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1877
1931
|
cipherList?: string | undefined;
|
|
1878
1932
|
} | undefined;
|
|
1879
1933
|
};
|
|
@@ -1941,7 +1995,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1941
1995
|
requireClientCerts?: boolean | undefined;
|
|
1942
1996
|
trustBrowserCas?: boolean | undefined;
|
|
1943
1997
|
trustedCertificates?: string[] | undefined;
|
|
1944
|
-
minVersion?: 0 |
|
|
1998
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1945
1999
|
cipherList?: string | undefined;
|
|
1946
2000
|
} | undefined;
|
|
1947
2001
|
};
|
|
@@ -1977,7 +2031,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1977
2031
|
requireClientCerts?: boolean | undefined;
|
|
1978
2032
|
trustBrowserCas?: boolean | undefined;
|
|
1979
2033
|
trustedCertificates?: string[] | undefined;
|
|
1980
|
-
minVersion?: 0 |
|
|
2034
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
1981
2035
|
cipherList?: string | undefined;
|
|
1982
2036
|
} | undefined;
|
|
1983
2037
|
};
|
|
@@ -2019,7 +2073,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
2019
2073
|
requireClientCerts?: boolean | undefined;
|
|
2020
2074
|
trustBrowserCas?: boolean | undefined;
|
|
2021
2075
|
trustedCertificates?: string[] | undefined;
|
|
2022
|
-
minVersion?: 0 |
|
|
2076
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
2023
2077
|
cipherList?: string | undefined;
|
|
2024
2078
|
} | undefined;
|
|
2025
2079
|
};
|
|
@@ -2052,6 +2106,8 @@ export declare const CoreSharedOptionsSchema: z.ZodObject<{
|
|
|
2052
2106
|
upstream: z.ZodOptional<z.ZodString>;
|
|
2053
2107
|
cf: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
2054
2108
|
liveReload: z.ZodOptional<z.ZodBoolean>;
|
|
2109
|
+
unsafeDevRegistryPath: z.ZodOptional<z.ZodString>;
|
|
2110
|
+
unsafeDevRegistryDurableObjectProxy: z.ZodDefault<z.ZodBoolean>;
|
|
2055
2111
|
unsafeProxySharedSecret: z.ZodOptional<z.ZodString>;
|
|
2056
2112
|
unsafeModuleFallbackService: z.ZodOptional<z.ZodType<(request: Request_3, miniflare: Miniflare_2) => Awaitable<Response_3>, z.ZodTypeDef, (request: Request_3, miniflare: Miniflare_2) => Awaitable<Response_3>>>;
|
|
2057
2113
|
unsafeStickyBlobs: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2059,6 +2115,7 @@ export declare const CoreSharedOptionsSchema: z.ZodObject<{
|
|
|
2059
2115
|
logRequests: z.ZodDefault<z.ZodBoolean>;
|
|
2060
2116
|
defaultPersistRoot: z.ZodOptional<z.ZodString>;
|
|
2061
2117
|
}, "strip", z.ZodTypeAny, {
|
|
2118
|
+
unsafeDevRegistryDurableObjectProxy: boolean;
|
|
2062
2119
|
logRequests: boolean;
|
|
2063
2120
|
rootPath?: undefined;
|
|
2064
2121
|
host?: string | undefined;
|
|
@@ -2075,6 +2132,7 @@ export declare const CoreSharedOptionsSchema: z.ZodObject<{
|
|
|
2075
2132
|
upstream?: string | undefined;
|
|
2076
2133
|
cf?: string | boolean | Record<string, any> | undefined;
|
|
2077
2134
|
liveReload?: boolean | undefined;
|
|
2135
|
+
unsafeDevRegistryPath?: string | undefined;
|
|
2078
2136
|
unsafeProxySharedSecret?: string | undefined;
|
|
2079
2137
|
unsafeModuleFallbackService?: ((request: Request_3, miniflare: Miniflare_2) => Awaitable<Response_3>) | undefined;
|
|
2080
2138
|
unsafeStickyBlobs?: boolean | undefined;
|
|
@@ -2096,6 +2154,8 @@ export declare const CoreSharedOptionsSchema: z.ZodObject<{
|
|
|
2096
2154
|
upstream?: string | undefined;
|
|
2097
2155
|
cf?: string | boolean | Record<string, any> | undefined;
|
|
2098
2156
|
liveReload?: boolean | undefined;
|
|
2157
|
+
unsafeDevRegistryPath?: string | undefined;
|
|
2158
|
+
unsafeDevRegistryDurableObjectProxy?: boolean | undefined;
|
|
2099
2159
|
unsafeProxySharedSecret?: string | undefined;
|
|
2100
2160
|
unsafeModuleFallbackService?: ((request: Request_3, miniflare: Miniflare_2) => Awaitable<Response_3>) | undefined;
|
|
2101
2161
|
unsafeStickyBlobs?: boolean | undefined;
|
|
@@ -2214,23 +2274,31 @@ export declare class DispatchFetchDispatcher extends undici.Dispatcher {
|
|
|
2214
2274
|
export declare const DispatchNamespaceOptionsSchema: z.ZodObject<{
|
|
2215
2275
|
dispatchNamespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2216
2276
|
namespace: z.ZodString;
|
|
2217
|
-
mixedModeConnectionString: z.
|
|
2277
|
+
mixedModeConnectionString: z.ZodType<MixedModeConnectionString, z.ZodTypeDef, MixedModeConnectionString>;
|
|
2218
2278
|
}, "strip", z.ZodTypeAny, {
|
|
2219
2279
|
namespace: string;
|
|
2220
|
-
mixedModeConnectionString
|
|
2280
|
+
mixedModeConnectionString: URL & {
|
|
2281
|
+
__brand: "MixedModeConnectionString";
|
|
2282
|
+
};
|
|
2221
2283
|
}, {
|
|
2222
2284
|
namespace: string;
|
|
2223
|
-
mixedModeConnectionString
|
|
2285
|
+
mixedModeConnectionString: URL & {
|
|
2286
|
+
__brand: "MixedModeConnectionString";
|
|
2287
|
+
};
|
|
2224
2288
|
}>>>;
|
|
2225
2289
|
}, "strip", z.ZodTypeAny, {
|
|
2226
2290
|
dispatchNamespaces?: Record<string, {
|
|
2227
2291
|
namespace: string;
|
|
2228
|
-
mixedModeConnectionString
|
|
2292
|
+
mixedModeConnectionString: URL & {
|
|
2293
|
+
__brand: "MixedModeConnectionString";
|
|
2294
|
+
};
|
|
2229
2295
|
}> | undefined;
|
|
2230
2296
|
}, {
|
|
2231
2297
|
dispatchNamespaces?: Record<string, {
|
|
2232
2298
|
namespace: string;
|
|
2233
|
-
mixedModeConnectionString
|
|
2299
|
+
mixedModeConnectionString: URL & {
|
|
2300
|
+
__brand: "MixedModeConnectionString";
|
|
2301
|
+
};
|
|
2234
2302
|
}> | undefined;
|
|
2235
2303
|
}>;
|
|
2236
2304
|
|
|
@@ -2437,6 +2505,8 @@ export declare function getAssetsBindingsNames(assetsKVBindingName?: string, ass
|
|
|
2437
2505
|
|
|
2438
2506
|
export declare function getCacheServiceName(workerIndex: number): string;
|
|
2439
2507
|
|
|
2508
|
+
export declare function getDefaultDevRegistryPath(): string;
|
|
2509
|
+
|
|
2440
2510
|
export declare function getDirectSocketName(workerIndex: number, entrypoint: string): string;
|
|
2441
2511
|
|
|
2442
2512
|
export declare function getEntrySocketHttpOptions(coreOpts: z.infer<typeof CORE_PLUGIN.sharedOptions>): Promise<{
|
|
@@ -2906,10 +2976,12 @@ export declare class NoOpLog extends Log {
|
|
|
2906
2976
|
|
|
2907
2977
|
export declare function normaliseDurableObject(designator: NonNullable<z.infer<typeof DurableObjectsOptionsSchema>["durableObjects"]>[string]): {
|
|
2908
2978
|
className: string;
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2979
|
+
scriptName: string | undefined;
|
|
2980
|
+
serviceName: string | undefined;
|
|
2981
|
+
enableSql: boolean | undefined;
|
|
2982
|
+
unsafeUniqueKey: UnsafeUniqueKey | undefined;
|
|
2983
|
+
unsafePreventEviction: boolean | undefined;
|
|
2984
|
+
mixedModeConnectionString: MixedModeConnectionString | undefined;
|
|
2913
2985
|
};
|
|
2914
2986
|
|
|
2915
2987
|
export declare function objectEntryWorker(durableObjectNamespace: Worker_Binding_DurableObjectNamespaceDesignator, namespace: string): Worker;
|
|
@@ -3126,6 +3198,9 @@ export declare interface PluginBase<Options extends z.ZodType, SharedOptions ext
|
|
|
3126
3198
|
getNodeBindings(options: z.infer<Options>): Awaitable<Record<string, unknown>>;
|
|
3127
3199
|
getServices(options: PluginServicesOptions<Options, SharedOptions>): Awaitable<Service[] | ServicesExtensions | void>;
|
|
3128
3200
|
getPersistPath?(sharedOptions: OptionalZodTypeOf<SharedOptions>, tmpPath: string): string;
|
|
3201
|
+
getExtensions?(options: {
|
|
3202
|
+
options: z.infer<Options>[];
|
|
3203
|
+
}): Awaitable<Extension[]>;
|
|
3129
3204
|
}
|
|
3130
3205
|
|
|
3131
3206
|
export declare const PLUGINS: {
|
|
@@ -3292,7 +3367,7 @@ export declare const PLUGINS: {
|
|
|
3292
3367
|
requireClientCerts?: boolean | undefined;
|
|
3293
3368
|
trustBrowserCas?: boolean | undefined;
|
|
3294
3369
|
trustedCertificates?: string[] | undefined;
|
|
3295
|
-
minVersion?: 0 |
|
|
3370
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3296
3371
|
cipherList?: string | undefined;
|
|
3297
3372
|
}, {
|
|
3298
3373
|
keypair?: {
|
|
@@ -3302,7 +3377,7 @@ export declare const PLUGINS: {
|
|
|
3302
3377
|
requireClientCerts?: boolean | undefined;
|
|
3303
3378
|
trustBrowserCas?: boolean | undefined;
|
|
3304
3379
|
trustedCertificates?: string[] | undefined;
|
|
3305
|
-
minVersion?: 0 |
|
|
3380
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3306
3381
|
cipherList?: string | undefined;
|
|
3307
3382
|
}>>;
|
|
3308
3383
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3316,7 +3391,7 @@ export declare const PLUGINS: {
|
|
|
3316
3391
|
requireClientCerts?: boolean | undefined;
|
|
3317
3392
|
trustBrowserCas?: boolean | undefined;
|
|
3318
3393
|
trustedCertificates?: string[] | undefined;
|
|
3319
|
-
minVersion?: 0 |
|
|
3394
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3320
3395
|
cipherList?: string | undefined;
|
|
3321
3396
|
} | undefined;
|
|
3322
3397
|
}, {
|
|
@@ -3330,7 +3405,7 @@ export declare const PLUGINS: {
|
|
|
3330
3405
|
requireClientCerts?: boolean | undefined;
|
|
3331
3406
|
trustBrowserCas?: boolean | undefined;
|
|
3332
3407
|
trustedCertificates?: string[] | undefined;
|
|
3333
|
-
minVersion?: 0 |
|
|
3408
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3334
3409
|
cipherList?: string | undefined;
|
|
3335
3410
|
} | undefined;
|
|
3336
3411
|
}>;
|
|
@@ -3346,7 +3421,7 @@ export declare const PLUGINS: {
|
|
|
3346
3421
|
requireClientCerts?: boolean | undefined;
|
|
3347
3422
|
trustBrowserCas?: boolean | undefined;
|
|
3348
3423
|
trustedCertificates?: string[] | undefined;
|
|
3349
|
-
minVersion?: 0 |
|
|
3424
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3350
3425
|
cipherList?: string | undefined;
|
|
3351
3426
|
} | undefined;
|
|
3352
3427
|
};
|
|
@@ -3362,7 +3437,7 @@ export declare const PLUGINS: {
|
|
|
3362
3437
|
requireClientCerts?: boolean | undefined;
|
|
3363
3438
|
trustBrowserCas?: boolean | undefined;
|
|
3364
3439
|
trustedCertificates?: string[] | undefined;
|
|
3365
|
-
minVersion?: 0 |
|
|
3440
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3366
3441
|
cipherList?: string | undefined;
|
|
3367
3442
|
} | undefined;
|
|
3368
3443
|
};
|
|
@@ -3463,7 +3538,7 @@ export declare const PLUGINS: {
|
|
|
3463
3538
|
requireClientCerts?: boolean | undefined;
|
|
3464
3539
|
trustBrowserCas?: boolean | undefined;
|
|
3465
3540
|
trustedCertificates?: string[] | undefined;
|
|
3466
|
-
minVersion?: 0 |
|
|
3541
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3467
3542
|
cipherList?: string | undefined;
|
|
3468
3543
|
}, {
|
|
3469
3544
|
keypair?: {
|
|
@@ -3473,7 +3548,7 @@ export declare const PLUGINS: {
|
|
|
3473
3548
|
requireClientCerts?: boolean | undefined;
|
|
3474
3549
|
trustBrowserCas?: boolean | undefined;
|
|
3475
3550
|
trustedCertificates?: string[] | undefined;
|
|
3476
|
-
minVersion?: 0 |
|
|
3551
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3477
3552
|
cipherList?: string | undefined;
|
|
3478
3553
|
}>>;
|
|
3479
3554
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3487,7 +3562,7 @@ export declare const PLUGINS: {
|
|
|
3487
3562
|
requireClientCerts?: boolean | undefined;
|
|
3488
3563
|
trustBrowserCas?: boolean | undefined;
|
|
3489
3564
|
trustedCertificates?: string[] | undefined;
|
|
3490
|
-
minVersion?: 0 |
|
|
3565
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3491
3566
|
cipherList?: string | undefined;
|
|
3492
3567
|
} | undefined;
|
|
3493
3568
|
}, {
|
|
@@ -3501,7 +3576,7 @@ export declare const PLUGINS: {
|
|
|
3501
3576
|
requireClientCerts?: boolean | undefined;
|
|
3502
3577
|
trustBrowserCas?: boolean | undefined;
|
|
3503
3578
|
trustedCertificates?: string[] | undefined;
|
|
3504
|
-
minVersion?: 0 |
|
|
3579
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3505
3580
|
cipherList?: string | undefined;
|
|
3506
3581
|
} | undefined;
|
|
3507
3582
|
}>;
|
|
@@ -3517,7 +3592,7 @@ export declare const PLUGINS: {
|
|
|
3517
3592
|
requireClientCerts?: boolean | undefined;
|
|
3518
3593
|
trustBrowserCas?: boolean | undefined;
|
|
3519
3594
|
trustedCertificates?: string[] | undefined;
|
|
3520
|
-
minVersion?: 0 |
|
|
3595
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3521
3596
|
cipherList?: string | undefined;
|
|
3522
3597
|
} | undefined;
|
|
3523
3598
|
};
|
|
@@ -3533,7 +3608,7 @@ export declare const PLUGINS: {
|
|
|
3533
3608
|
requireClientCerts?: boolean | undefined;
|
|
3534
3609
|
trustBrowserCas?: boolean | undefined;
|
|
3535
3610
|
trustedCertificates?: string[] | undefined;
|
|
3536
|
-
minVersion?: 0 |
|
|
3611
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3537
3612
|
cipherList?: string | undefined;
|
|
3538
3613
|
} | undefined;
|
|
3539
3614
|
};
|
|
@@ -3642,7 +3717,7 @@ export declare const PLUGINS: {
|
|
|
3642
3717
|
requireClientCerts?: boolean | undefined;
|
|
3643
3718
|
trustBrowserCas?: boolean | undefined;
|
|
3644
3719
|
trustedCertificates?: string[] | undefined;
|
|
3645
|
-
minVersion?: 0 |
|
|
3720
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3646
3721
|
cipherList?: string | undefined;
|
|
3647
3722
|
}, {
|
|
3648
3723
|
keypair?: {
|
|
@@ -3652,7 +3727,7 @@ export declare const PLUGINS: {
|
|
|
3652
3727
|
requireClientCerts?: boolean | undefined;
|
|
3653
3728
|
trustBrowserCas?: boolean | undefined;
|
|
3654
3729
|
trustedCertificates?: string[] | undefined;
|
|
3655
|
-
minVersion?: 0 |
|
|
3730
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3656
3731
|
cipherList?: string | undefined;
|
|
3657
3732
|
}>>;
|
|
3658
3733
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3666,7 +3741,7 @@ export declare const PLUGINS: {
|
|
|
3666
3741
|
requireClientCerts?: boolean | undefined;
|
|
3667
3742
|
trustBrowserCas?: boolean | undefined;
|
|
3668
3743
|
trustedCertificates?: string[] | undefined;
|
|
3669
|
-
minVersion?: 0 |
|
|
3744
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3670
3745
|
cipherList?: string | undefined;
|
|
3671
3746
|
} | undefined;
|
|
3672
3747
|
}, {
|
|
@@ -3680,7 +3755,7 @@ export declare const PLUGINS: {
|
|
|
3680
3755
|
requireClientCerts?: boolean | undefined;
|
|
3681
3756
|
trustBrowserCas?: boolean | undefined;
|
|
3682
3757
|
trustedCertificates?: string[] | undefined;
|
|
3683
|
-
minVersion?: 0 |
|
|
3758
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3684
3759
|
cipherList?: string | undefined;
|
|
3685
3760
|
} | undefined;
|
|
3686
3761
|
}>;
|
|
@@ -3696,7 +3771,7 @@ export declare const PLUGINS: {
|
|
|
3696
3771
|
requireClientCerts?: boolean | undefined;
|
|
3697
3772
|
trustBrowserCas?: boolean | undefined;
|
|
3698
3773
|
trustedCertificates?: string[] | undefined;
|
|
3699
|
-
minVersion?: 0 |
|
|
3774
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3700
3775
|
cipherList?: string | undefined;
|
|
3701
3776
|
} | undefined;
|
|
3702
3777
|
};
|
|
@@ -3712,7 +3787,7 @@ export declare const PLUGINS: {
|
|
|
3712
3787
|
requireClientCerts?: boolean | undefined;
|
|
3713
3788
|
trustBrowserCas?: boolean | undefined;
|
|
3714
3789
|
trustedCertificates?: string[] | undefined;
|
|
3715
|
-
minVersion?: 0 |
|
|
3790
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3716
3791
|
cipherList?: string | undefined;
|
|
3717
3792
|
} | undefined;
|
|
3718
3793
|
};
|
|
@@ -3780,7 +3855,7 @@ export declare const PLUGINS: {
|
|
|
3780
3855
|
requireClientCerts?: boolean | undefined;
|
|
3781
3856
|
trustBrowserCas?: boolean | undefined;
|
|
3782
3857
|
trustedCertificates?: string[] | undefined;
|
|
3783
|
-
minVersion?: 0 |
|
|
3858
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3784
3859
|
cipherList?: string | undefined;
|
|
3785
3860
|
} | undefined;
|
|
3786
3861
|
};
|
|
@@ -3816,7 +3891,7 @@ export declare const PLUGINS: {
|
|
|
3816
3891
|
requireClientCerts?: boolean | undefined;
|
|
3817
3892
|
trustBrowserCas?: boolean | undefined;
|
|
3818
3893
|
trustedCertificates?: string[] | undefined;
|
|
3819
|
-
minVersion?: 0 |
|
|
3894
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3820
3895
|
cipherList?: string | undefined;
|
|
3821
3896
|
} | undefined;
|
|
3822
3897
|
};
|
|
@@ -3858,7 +3933,7 @@ export declare const PLUGINS: {
|
|
|
3858
3933
|
requireClientCerts?: boolean | undefined;
|
|
3859
3934
|
trustBrowserCas?: boolean | undefined;
|
|
3860
3935
|
trustedCertificates?: string[] | undefined;
|
|
3861
|
-
minVersion?: 0 |
|
|
3936
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3862
3937
|
cipherList?: string | undefined;
|
|
3863
3938
|
} | undefined;
|
|
3864
3939
|
};
|
|
@@ -3900,7 +3975,7 @@ export declare const PLUGINS: {
|
|
|
3900
3975
|
requireClientCerts?: boolean | undefined;
|
|
3901
3976
|
trustBrowserCas?: boolean | undefined;
|
|
3902
3977
|
trustedCertificates?: string[] | undefined;
|
|
3903
|
-
minVersion?: 0 |
|
|
3978
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3904
3979
|
cipherList?: string | undefined;
|
|
3905
3980
|
} | undefined;
|
|
3906
3981
|
};
|
|
@@ -3936,7 +4011,7 @@ export declare const PLUGINS: {
|
|
|
3936
4011
|
requireClientCerts?: boolean | undefined;
|
|
3937
4012
|
trustBrowserCas?: boolean | undefined;
|
|
3938
4013
|
trustedCertificates?: string[] | undefined;
|
|
3939
|
-
minVersion?: 0 |
|
|
4014
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3940
4015
|
cipherList?: string | undefined;
|
|
3941
4016
|
} | undefined;
|
|
3942
4017
|
};
|
|
@@ -3978,7 +4053,7 @@ export declare const PLUGINS: {
|
|
|
3978
4053
|
requireClientCerts?: boolean | undefined;
|
|
3979
4054
|
trustBrowserCas?: boolean | undefined;
|
|
3980
4055
|
trustedCertificates?: string[] | undefined;
|
|
3981
|
-
minVersion?: 0 |
|
|
4056
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
3982
4057
|
cipherList?: string | undefined;
|
|
3983
4058
|
} | undefined;
|
|
3984
4059
|
};
|
|
@@ -4029,7 +4104,7 @@ export declare const PLUGINS: {
|
|
|
4029
4104
|
requireClientCerts?: boolean | undefined;
|
|
4030
4105
|
trustBrowserCas?: boolean | undefined;
|
|
4031
4106
|
trustedCertificates?: string[] | undefined;
|
|
4032
|
-
minVersion?: 0 |
|
|
4107
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
4033
4108
|
cipherList?: string | undefined;
|
|
4034
4109
|
} | undefined;
|
|
4035
4110
|
};
|
|
@@ -4065,7 +4140,7 @@ export declare const PLUGINS: {
|
|
|
4065
4140
|
requireClientCerts?: boolean | undefined;
|
|
4066
4141
|
trustBrowserCas?: boolean | undefined;
|
|
4067
4142
|
trustedCertificates?: string[] | undefined;
|
|
4068
|
-
minVersion?: 0 |
|
|
4143
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
4069
4144
|
cipherList?: string | undefined;
|
|
4070
4145
|
} | undefined;
|
|
4071
4146
|
};
|
|
@@ -4107,7 +4182,7 @@ export declare const PLUGINS: {
|
|
|
4107
4182
|
requireClientCerts?: boolean | undefined;
|
|
4108
4183
|
trustBrowserCas?: boolean | undefined;
|
|
4109
4184
|
trustedCertificates?: string[] | undefined;
|
|
4110
|
-
minVersion?: 0 |
|
|
4185
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
4111
4186
|
cipherList?: string | undefined;
|
|
4112
4187
|
} | undefined;
|
|
4113
4188
|
};
|
|
@@ -4160,7 +4235,7 @@ export declare const PLUGINS: {
|
|
|
4160
4235
|
requireClientCerts?: boolean | undefined;
|
|
4161
4236
|
trustBrowserCas?: boolean | undefined;
|
|
4162
4237
|
trustedCertificates?: string[] | undefined;
|
|
4163
|
-
minVersion?: 0 |
|
|
4238
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
4164
4239
|
cipherList?: string | undefined;
|
|
4165
4240
|
} | undefined;
|
|
4166
4241
|
};
|
|
@@ -4196,7 +4271,7 @@ export declare const PLUGINS: {
|
|
|
4196
4271
|
requireClientCerts?: boolean | undefined;
|
|
4197
4272
|
trustBrowserCas?: boolean | undefined;
|
|
4198
4273
|
trustedCertificates?: string[] | undefined;
|
|
4199
|
-
minVersion?: 0 |
|
|
4274
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
4200
4275
|
cipherList?: string | undefined;
|
|
4201
4276
|
} | undefined;
|
|
4202
4277
|
};
|
|
@@ -4238,7 +4313,7 @@ export declare const PLUGINS: {
|
|
|
4238
4313
|
requireClientCerts?: boolean | undefined;
|
|
4239
4314
|
trustBrowserCas?: boolean | undefined;
|
|
4240
4315
|
trustedCertificates?: string[] | undefined;
|
|
4241
|
-
minVersion?: 0 |
|
|
4316
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
4242
4317
|
cipherList?: string | undefined;
|
|
4243
4318
|
} | undefined;
|
|
4244
4319
|
};
|
|
@@ -4290,7 +4365,7 @@ export declare const PLUGINS: {
|
|
|
4290
4365
|
requireClientCerts?: boolean | undefined;
|
|
4291
4366
|
trustBrowserCas?: boolean | undefined;
|
|
4292
4367
|
trustedCertificates?: string[] | undefined;
|
|
4293
|
-
minVersion?: 0 |
|
|
4368
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
4294
4369
|
cipherList?: string | undefined;
|
|
4295
4370
|
} | undefined;
|
|
4296
4371
|
};
|
|
@@ -4326,7 +4401,7 @@ export declare const PLUGINS: {
|
|
|
4326
4401
|
requireClientCerts?: boolean | undefined;
|
|
4327
4402
|
trustBrowserCas?: boolean | undefined;
|
|
4328
4403
|
trustedCertificates?: string[] | undefined;
|
|
4329
|
-
minVersion?: 0 |
|
|
4404
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
4330
4405
|
cipherList?: string | undefined;
|
|
4331
4406
|
} | undefined;
|
|
4332
4407
|
};
|
|
@@ -4368,7 +4443,7 @@ export declare const PLUGINS: {
|
|
|
4368
4443
|
requireClientCerts?: boolean | undefined;
|
|
4369
4444
|
trustBrowserCas?: boolean | undefined;
|
|
4370
4445
|
trustedCertificates?: string[] | undefined;
|
|
4371
|
-
minVersion?: 0 |
|
|
4446
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
4372
4447
|
cipherList?: string | undefined;
|
|
4373
4448
|
} | undefined;
|
|
4374
4449
|
};
|
|
@@ -4436,7 +4511,7 @@ export declare const PLUGINS: {
|
|
|
4436
4511
|
requireClientCerts?: boolean | undefined;
|
|
4437
4512
|
trustBrowserCas?: boolean | undefined;
|
|
4438
4513
|
trustedCertificates?: string[] | undefined;
|
|
4439
|
-
minVersion?: 0 |
|
|
4514
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
4440
4515
|
cipherList?: string | undefined;
|
|
4441
4516
|
} | undefined;
|
|
4442
4517
|
};
|
|
@@ -4472,7 +4547,7 @@ export declare const PLUGINS: {
|
|
|
4472
4547
|
requireClientCerts?: boolean | undefined;
|
|
4473
4548
|
trustBrowserCas?: boolean | undefined;
|
|
4474
4549
|
trustedCertificates?: string[] | undefined;
|
|
4475
|
-
minVersion?: 0 |
|
|
4550
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
4476
4551
|
cipherList?: string | undefined;
|
|
4477
4552
|
} | undefined;
|
|
4478
4553
|
};
|
|
@@ -4514,7 +4589,7 @@ export declare const PLUGINS: {
|
|
|
4514
4589
|
requireClientCerts?: boolean | undefined;
|
|
4515
4590
|
trustBrowserCas?: boolean | undefined;
|
|
4516
4591
|
trustedCertificates?: string[] | undefined;
|
|
4517
|
-
minVersion?: 0 |
|
|
4592
|
+
minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
|
|
4518
4593
|
cipherList?: string | undefined;
|
|
4519
4594
|
} | undefined;
|
|
4520
4595
|
};
|
|
@@ -4545,6 +4620,8 @@ export declare const PLUGINS: {
|
|
|
4545
4620
|
upstream: z.ZodOptional<z.ZodString>;
|
|
4546
4621
|
cf: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
4547
4622
|
liveReload: z.ZodOptional<z.ZodBoolean>;
|
|
4623
|
+
unsafeDevRegistryPath: z.ZodOptional<z.ZodString>;
|
|
4624
|
+
unsafeDevRegistryDurableObjectProxy: z.ZodDefault<z.ZodBoolean>;
|
|
4548
4625
|
unsafeProxySharedSecret: z.ZodOptional<z.ZodString>;
|
|
4549
4626
|
unsafeModuleFallbackService: z.ZodOptional<z.ZodType<(request: Request_6, miniflare: Miniflare_3) => Awaitable_2<Response_6>, z.ZodTypeDef, (request: Request_6, miniflare: Miniflare_3) => Awaitable_2<Response_6>>>;
|
|
4550
4627
|
unsafeStickyBlobs: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4552,6 +4629,7 @@ export declare const PLUGINS: {
|
|
|
4552
4629
|
logRequests: z.ZodDefault<z.ZodBoolean>;
|
|
4553
4630
|
defaultPersistRoot: z.ZodOptional<z.ZodString>;
|
|
4554
4631
|
}, "strip", z.ZodTypeAny, {
|
|
4632
|
+
unsafeDevRegistryDurableObjectProxy: boolean;
|
|
4555
4633
|
logRequests: boolean;
|
|
4556
4634
|
rootPath?: undefined;
|
|
4557
4635
|
host?: string | undefined;
|
|
@@ -4568,6 +4646,7 @@ export declare const PLUGINS: {
|
|
|
4568
4646
|
upstream?: string | undefined;
|
|
4569
4647
|
cf?: string | boolean | Record<string, any> | undefined;
|
|
4570
4648
|
liveReload?: boolean | undefined;
|
|
4649
|
+
unsafeDevRegistryPath?: string | undefined;
|
|
4571
4650
|
unsafeProxySharedSecret?: string | undefined;
|
|
4572
4651
|
unsafeModuleFallbackService?: ((request: Request_6, miniflare: Miniflare_3) => Awaitable_2<Response_6>) | undefined;
|
|
4573
4652
|
unsafeStickyBlobs?: boolean | undefined;
|
|
@@ -4589,6 +4668,8 @@ export declare const PLUGINS: {
|
|
|
4589
4668
|
upstream?: string | undefined;
|
|
4590
4669
|
cf?: string | boolean | Record<string, any> | undefined;
|
|
4591
4670
|
liveReload?: boolean | undefined;
|
|
4671
|
+
unsafeDevRegistryPath?: string | undefined;
|
|
4672
|
+
unsafeDevRegistryDurableObjectProxy?: boolean | undefined;
|
|
4592
4673
|
unsafeProxySharedSecret?: string | undefined;
|
|
4593
4674
|
unsafeModuleFallbackService?: ((request: Request_6, miniflare: Miniflare_3) => Awaitable_2<Response_6>) | undefined;
|
|
4594
4675
|
unsafeStickyBlobs?: boolean | undefined;
|
|
@@ -4889,17 +4970,17 @@ export declare const PLUGINS: {
|
|
|
4889
4970
|
invoke_user_worker_ahead_of_assets: z.ZodOptional<z.ZodBoolean>;
|
|
4890
4971
|
has_user_worker: z.ZodOptional<z.ZodBoolean>;
|
|
4891
4972
|
}, "strip", z.ZodTypeAny, {
|
|
4892
|
-
account_id?: number;
|
|
4893
|
-
script_id?: number;
|
|
4894
|
-
debug?: boolean;
|
|
4895
|
-
invoke_user_worker_ahead_of_assets?: boolean;
|
|
4896
|
-
has_user_worker?: boolean;
|
|
4897
|
-
}, {
|
|
4898
|
-
account_id?: number;
|
|
4899
|
-
script_id?: number;
|
|
4900
|
-
debug?: boolean;
|
|
4901
|
-
invoke_user_worker_ahead_of_assets?: boolean;
|
|
4902
|
-
has_user_worker?: boolean;
|
|
4973
|
+
account_id?: number | undefined;
|
|
4974
|
+
script_id?: number | undefined;
|
|
4975
|
+
debug?: boolean | undefined;
|
|
4976
|
+
invoke_user_worker_ahead_of_assets?: boolean | undefined;
|
|
4977
|
+
has_user_worker?: boolean | undefined;
|
|
4978
|
+
}, {
|
|
4979
|
+
account_id?: number | undefined;
|
|
4980
|
+
script_id?: number | undefined;
|
|
4981
|
+
debug?: boolean | undefined;
|
|
4982
|
+
invoke_user_worker_ahead_of_assets?: boolean | undefined;
|
|
4983
|
+
has_user_worker?: boolean | undefined;
|
|
4903
4984
|
}>>;
|
|
4904
4985
|
assetConfig: z.ZodOptional<z.ZodObject<Omit<{
|
|
4905
4986
|
account_id: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4916,45 +4997,45 @@ export declare const PLUGINS: {
|
|
|
4916
4997
|
to: z.ZodString;
|
|
4917
4998
|
lineNumber: z.ZodNumber;
|
|
4918
4999
|
}, "strip", z.ZodTypeAny, {
|
|
4919
|
-
status
|
|
4920
|
-
to
|
|
4921
|
-
lineNumber
|
|
5000
|
+
status: number;
|
|
5001
|
+
to: string;
|
|
5002
|
+
lineNumber: number;
|
|
4922
5003
|
}, {
|
|
4923
|
-
status
|
|
4924
|
-
to
|
|
4925
|
-
lineNumber
|
|
5004
|
+
status: number;
|
|
5005
|
+
to: string;
|
|
5006
|
+
lineNumber: number;
|
|
4926
5007
|
}>>;
|
|
4927
5008
|
rules: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4928
5009
|
status: z.ZodNumber;
|
|
4929
5010
|
to: z.ZodString;
|
|
4930
5011
|
}, "strip", z.ZodTypeAny, {
|
|
4931
|
-
status
|
|
4932
|
-
to
|
|
5012
|
+
status: number;
|
|
5013
|
+
to: string;
|
|
4933
5014
|
}, {
|
|
4934
|
-
status
|
|
4935
|
-
to
|
|
5015
|
+
status: number;
|
|
5016
|
+
to: string;
|
|
4936
5017
|
}>>;
|
|
4937
5018
|
}, "strip", z.ZodTypeAny, {
|
|
4938
|
-
version
|
|
4939
|
-
staticRules
|
|
4940
|
-
status
|
|
4941
|
-
to
|
|
4942
|
-
lineNumber
|
|
5019
|
+
version: 1;
|
|
5020
|
+
staticRules: Record<string, {
|
|
5021
|
+
status: number;
|
|
5022
|
+
to: string;
|
|
5023
|
+
lineNumber: number;
|
|
4943
5024
|
}>;
|
|
4944
|
-
rules
|
|
4945
|
-
status
|
|
4946
|
-
to
|
|
5025
|
+
rules: Record<string, {
|
|
5026
|
+
status: number;
|
|
5027
|
+
to: string;
|
|
4947
5028
|
}>;
|
|
4948
5029
|
}, {
|
|
4949
|
-
version
|
|
4950
|
-
staticRules
|
|
4951
|
-
status
|
|
4952
|
-
to
|
|
4953
|
-
lineNumber
|
|
5030
|
+
version: 1;
|
|
5031
|
+
staticRules: Record<string, {
|
|
5032
|
+
status: number;
|
|
5033
|
+
to: string;
|
|
5034
|
+
lineNumber: number;
|
|
4954
5035
|
}>;
|
|
4955
|
-
rules
|
|
4956
|
-
status
|
|
4957
|
-
to
|
|
5036
|
+
rules: Record<string, {
|
|
5037
|
+
status: number;
|
|
5038
|
+
to: string;
|
|
4958
5039
|
}>;
|
|
4959
5040
|
}>>;
|
|
4960
5041
|
headers: z.ZodOptional<z.ZodObject<{
|
|
@@ -4963,73 +5044,73 @@ export declare const PLUGINS: {
|
|
|
4963
5044
|
set: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4964
5045
|
unset: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4965
5046
|
}, "strip", z.ZodTypeAny, {
|
|
4966
|
-
set?: Record<string, string
|
|
4967
|
-
unset?: string[];
|
|
5047
|
+
set?: Record<string, string> | undefined;
|
|
5048
|
+
unset?: string[] | undefined;
|
|
4968
5049
|
}, {
|
|
4969
|
-
set?: Record<string, string
|
|
4970
|
-
unset?: string[];
|
|
5050
|
+
set?: Record<string, string> | undefined;
|
|
5051
|
+
unset?: string[] | undefined;
|
|
4971
5052
|
}>>;
|
|
4972
5053
|
}, "strip", z.ZodTypeAny, {
|
|
4973
|
-
version
|
|
4974
|
-
rules
|
|
4975
|
-
set?: Record<string, string
|
|
4976
|
-
unset?: string[];
|
|
5054
|
+
version: 2;
|
|
5055
|
+
rules: Record<string, {
|
|
5056
|
+
set?: Record<string, string> | undefined;
|
|
5057
|
+
unset?: string[] | undefined;
|
|
4977
5058
|
}>;
|
|
4978
5059
|
}, {
|
|
4979
|
-
version
|
|
4980
|
-
rules
|
|
4981
|
-
set?: Record<string, string
|
|
4982
|
-
unset?: string[];
|
|
5060
|
+
version: 2;
|
|
5061
|
+
rules: Record<string, {
|
|
5062
|
+
set?: Record<string, string> | undefined;
|
|
5063
|
+
unset?: string[] | undefined;
|
|
4983
5064
|
}>;
|
|
4984
5065
|
}>>;
|
|
4985
5066
|
}, "compatibility_date" | "compatibility_flags">, "strip", z.ZodTypeAny, {
|
|
5067
|
+
debug?: boolean | undefined;
|
|
4986
5068
|
headers?: {
|
|
4987
|
-
version
|
|
4988
|
-
rules
|
|
4989
|
-
set?: Record<string, string
|
|
4990
|
-
unset?: string[];
|
|
5069
|
+
version: 2;
|
|
5070
|
+
rules: Record<string, {
|
|
5071
|
+
set?: Record<string, string> | undefined;
|
|
5072
|
+
unset?: string[] | undefined;
|
|
4991
5073
|
}>;
|
|
4992
5074
|
} | undefined;
|
|
4993
|
-
debug?: boolean | undefined;
|
|
4994
5075
|
account_id?: number | undefined;
|
|
4995
5076
|
script_id?: number | undefined;
|
|
4996
5077
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
|
|
4997
5078
|
not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
|
|
4998
5079
|
redirects?: {
|
|
4999
|
-
version
|
|
5000
|
-
staticRules
|
|
5001
|
-
status
|
|
5002
|
-
to
|
|
5003
|
-
lineNumber
|
|
5080
|
+
version: 1;
|
|
5081
|
+
staticRules: Record<string, {
|
|
5082
|
+
status: number;
|
|
5083
|
+
to: string;
|
|
5084
|
+
lineNumber: number;
|
|
5004
5085
|
}>;
|
|
5005
|
-
rules
|
|
5006
|
-
status
|
|
5007
|
-
to
|
|
5086
|
+
rules: Record<string, {
|
|
5087
|
+
status: number;
|
|
5088
|
+
to: string;
|
|
5008
5089
|
}>;
|
|
5009
5090
|
} | undefined;
|
|
5010
5091
|
}, {
|
|
5092
|
+
debug?: boolean | undefined;
|
|
5011
5093
|
headers?: {
|
|
5012
|
-
version
|
|
5013
|
-
rules
|
|
5014
|
-
set?: Record<string, string
|
|
5015
|
-
unset?: string[];
|
|
5094
|
+
version: 2;
|
|
5095
|
+
rules: Record<string, {
|
|
5096
|
+
set?: Record<string, string> | undefined;
|
|
5097
|
+
unset?: string[] | undefined;
|
|
5016
5098
|
}>;
|
|
5017
5099
|
} | undefined;
|
|
5018
|
-
debug?: boolean | undefined;
|
|
5019
5100
|
account_id?: number | undefined;
|
|
5020
5101
|
script_id?: number | undefined;
|
|
5021
5102
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
|
|
5022
5103
|
not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
|
|
5023
5104
|
redirects?: {
|
|
5024
|
-
version
|
|
5025
|
-
staticRules
|
|
5026
|
-
status
|
|
5027
|
-
to
|
|
5028
|
-
lineNumber
|
|
5105
|
+
version: 1;
|
|
5106
|
+
staticRules: Record<string, {
|
|
5107
|
+
status: number;
|
|
5108
|
+
to: string;
|
|
5109
|
+
lineNumber: number;
|
|
5029
5110
|
}>;
|
|
5030
|
-
rules
|
|
5031
|
-
status
|
|
5032
|
-
to
|
|
5111
|
+
rules: Record<string, {
|
|
5112
|
+
status: number;
|
|
5113
|
+
to: string;
|
|
5033
5114
|
}>;
|
|
5034
5115
|
} | undefined;
|
|
5035
5116
|
}>>;
|
|
@@ -5038,35 +5119,35 @@ export declare const PLUGINS: {
|
|
|
5038
5119
|
workerName?: string | undefined;
|
|
5039
5120
|
binding?: string | undefined;
|
|
5040
5121
|
routerConfig?: {
|
|
5041
|
-
account_id?: number;
|
|
5042
|
-
script_id?: number;
|
|
5043
|
-
debug?: boolean;
|
|
5044
|
-
invoke_user_worker_ahead_of_assets?: boolean;
|
|
5045
|
-
has_user_worker?: boolean;
|
|
5122
|
+
account_id?: number | undefined;
|
|
5123
|
+
script_id?: number | undefined;
|
|
5124
|
+
debug?: boolean | undefined;
|
|
5125
|
+
invoke_user_worker_ahead_of_assets?: boolean | undefined;
|
|
5126
|
+
has_user_worker?: boolean | undefined;
|
|
5046
5127
|
} | undefined;
|
|
5047
5128
|
assetConfig?: {
|
|
5129
|
+
debug?: boolean | undefined;
|
|
5048
5130
|
headers?: {
|
|
5049
|
-
version
|
|
5050
|
-
rules
|
|
5051
|
-
set?: Record<string, string
|
|
5052
|
-
unset?: string[];
|
|
5131
|
+
version: 2;
|
|
5132
|
+
rules: Record<string, {
|
|
5133
|
+
set?: Record<string, string> | undefined;
|
|
5134
|
+
unset?: string[] | undefined;
|
|
5053
5135
|
}>;
|
|
5054
5136
|
} | undefined;
|
|
5055
|
-
debug?: boolean | undefined;
|
|
5056
5137
|
account_id?: number | undefined;
|
|
5057
5138
|
script_id?: number | undefined;
|
|
5058
5139
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
|
|
5059
5140
|
not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
|
|
5060
5141
|
redirects?: {
|
|
5061
|
-
version
|
|
5062
|
-
staticRules
|
|
5063
|
-
status
|
|
5064
|
-
to
|
|
5065
|
-
lineNumber
|
|
5142
|
+
version: 1;
|
|
5143
|
+
staticRules: Record<string, {
|
|
5144
|
+
status: number;
|
|
5145
|
+
to: string;
|
|
5146
|
+
lineNumber: number;
|
|
5066
5147
|
}>;
|
|
5067
|
-
rules
|
|
5068
|
-
status
|
|
5069
|
-
to
|
|
5148
|
+
rules: Record<string, {
|
|
5149
|
+
status: number;
|
|
5150
|
+
to: string;
|
|
5070
5151
|
}>;
|
|
5071
5152
|
} | undefined;
|
|
5072
5153
|
} | undefined;
|
|
@@ -5075,35 +5156,35 @@ export declare const PLUGINS: {
|
|
|
5075
5156
|
workerName?: string | undefined;
|
|
5076
5157
|
binding?: string | undefined;
|
|
5077
5158
|
routerConfig?: {
|
|
5078
|
-
account_id?: number;
|
|
5079
|
-
script_id?: number;
|
|
5080
|
-
debug?: boolean;
|
|
5081
|
-
invoke_user_worker_ahead_of_assets?: boolean;
|
|
5082
|
-
has_user_worker?: boolean;
|
|
5159
|
+
account_id?: number | undefined;
|
|
5160
|
+
script_id?: number | undefined;
|
|
5161
|
+
debug?: boolean | undefined;
|
|
5162
|
+
invoke_user_worker_ahead_of_assets?: boolean | undefined;
|
|
5163
|
+
has_user_worker?: boolean | undefined;
|
|
5083
5164
|
} | undefined;
|
|
5084
5165
|
assetConfig?: {
|
|
5166
|
+
debug?: boolean | undefined;
|
|
5085
5167
|
headers?: {
|
|
5086
|
-
version
|
|
5087
|
-
rules
|
|
5088
|
-
set?: Record<string, string
|
|
5089
|
-
unset?: string[];
|
|
5168
|
+
version: 2;
|
|
5169
|
+
rules: Record<string, {
|
|
5170
|
+
set?: Record<string, string> | undefined;
|
|
5171
|
+
unset?: string[] | undefined;
|
|
5090
5172
|
}>;
|
|
5091
5173
|
} | undefined;
|
|
5092
|
-
debug?: boolean | undefined;
|
|
5093
5174
|
account_id?: number | undefined;
|
|
5094
5175
|
script_id?: number | undefined;
|
|
5095
5176
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
|
|
5096
5177
|
not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
|
|
5097
5178
|
redirects?: {
|
|
5098
|
-
version
|
|
5099
|
-
staticRules
|
|
5100
|
-
status
|
|
5101
|
-
to
|
|
5102
|
-
lineNumber
|
|
5179
|
+
version: 1;
|
|
5180
|
+
staticRules: Record<string, {
|
|
5181
|
+
status: number;
|
|
5182
|
+
to: string;
|
|
5183
|
+
lineNumber: number;
|
|
5103
5184
|
}>;
|
|
5104
|
-
rules
|
|
5105
|
-
status
|
|
5106
|
-
to
|
|
5185
|
+
rules: Record<string, {
|
|
5186
|
+
status: number;
|
|
5187
|
+
to: string;
|
|
5107
5188
|
}>;
|
|
5108
5189
|
} | undefined;
|
|
5109
5190
|
} | undefined;
|
|
@@ -5116,35 +5197,35 @@ export declare const PLUGINS: {
|
|
|
5116
5197
|
workerName?: string | undefined;
|
|
5117
5198
|
binding?: string | undefined;
|
|
5118
5199
|
routerConfig?: {
|
|
5119
|
-
account_id?: number;
|
|
5120
|
-
script_id?: number;
|
|
5121
|
-
debug?: boolean;
|
|
5122
|
-
invoke_user_worker_ahead_of_assets?: boolean;
|
|
5123
|
-
has_user_worker?: boolean;
|
|
5200
|
+
account_id?: number | undefined;
|
|
5201
|
+
script_id?: number | undefined;
|
|
5202
|
+
debug?: boolean | undefined;
|
|
5203
|
+
invoke_user_worker_ahead_of_assets?: boolean | undefined;
|
|
5204
|
+
has_user_worker?: boolean | undefined;
|
|
5124
5205
|
} | undefined;
|
|
5125
5206
|
assetConfig?: {
|
|
5207
|
+
debug?: boolean | undefined;
|
|
5126
5208
|
headers?: {
|
|
5127
|
-
version
|
|
5128
|
-
rules
|
|
5129
|
-
set?: Record<string, string
|
|
5130
|
-
unset?: string[];
|
|
5209
|
+
version: 2;
|
|
5210
|
+
rules: Record<string, {
|
|
5211
|
+
set?: Record<string, string> | undefined;
|
|
5212
|
+
unset?: string[] | undefined;
|
|
5131
5213
|
}>;
|
|
5132
5214
|
} | undefined;
|
|
5133
|
-
debug?: boolean | undefined;
|
|
5134
5215
|
account_id?: number | undefined;
|
|
5135
5216
|
script_id?: number | undefined;
|
|
5136
5217
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
|
|
5137
5218
|
not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
|
|
5138
5219
|
redirects?: {
|
|
5139
|
-
version
|
|
5140
|
-
staticRules
|
|
5141
|
-
status
|
|
5142
|
-
to
|
|
5143
|
-
lineNumber
|
|
5220
|
+
version: 1;
|
|
5221
|
+
staticRules: Record<string, {
|
|
5222
|
+
status: number;
|
|
5223
|
+
to: string;
|
|
5224
|
+
lineNumber: number;
|
|
5144
5225
|
}>;
|
|
5145
|
-
rules
|
|
5146
|
-
status
|
|
5147
|
-
to
|
|
5226
|
+
rules: Record<string, {
|
|
5227
|
+
status: number;
|
|
5228
|
+
to: string;
|
|
5148
5229
|
}>;
|
|
5149
5230
|
} | undefined;
|
|
5150
5231
|
} | undefined;
|
|
@@ -5157,35 +5238,35 @@ export declare const PLUGINS: {
|
|
|
5157
5238
|
workerName?: string | undefined;
|
|
5158
5239
|
binding?: string | undefined;
|
|
5159
5240
|
routerConfig?: {
|
|
5160
|
-
account_id?: number;
|
|
5161
|
-
script_id?: number;
|
|
5162
|
-
debug?: boolean;
|
|
5163
|
-
invoke_user_worker_ahead_of_assets?: boolean;
|
|
5164
|
-
has_user_worker?: boolean;
|
|
5241
|
+
account_id?: number | undefined;
|
|
5242
|
+
script_id?: number | undefined;
|
|
5243
|
+
debug?: boolean | undefined;
|
|
5244
|
+
invoke_user_worker_ahead_of_assets?: boolean | undefined;
|
|
5245
|
+
has_user_worker?: boolean | undefined;
|
|
5165
5246
|
} | undefined;
|
|
5166
5247
|
assetConfig?: {
|
|
5248
|
+
debug?: boolean | undefined;
|
|
5167
5249
|
headers?: {
|
|
5168
|
-
version
|
|
5169
|
-
rules
|
|
5170
|
-
set?: Record<string, string
|
|
5171
|
-
unset?: string[];
|
|
5250
|
+
version: 2;
|
|
5251
|
+
rules: Record<string, {
|
|
5252
|
+
set?: Record<string, string> | undefined;
|
|
5253
|
+
unset?: string[] | undefined;
|
|
5172
5254
|
}>;
|
|
5173
5255
|
} | undefined;
|
|
5174
|
-
debug?: boolean | undefined;
|
|
5175
5256
|
account_id?: number | undefined;
|
|
5176
5257
|
script_id?: number | undefined;
|
|
5177
5258
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
|
|
5178
5259
|
not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
|
|
5179
5260
|
redirects?: {
|
|
5180
|
-
version
|
|
5181
|
-
staticRules
|
|
5182
|
-
status
|
|
5183
|
-
to
|
|
5184
|
-
lineNumber
|
|
5261
|
+
version: 1;
|
|
5262
|
+
staticRules: Record<string, {
|
|
5263
|
+
status: number;
|
|
5264
|
+
to: string;
|
|
5265
|
+
lineNumber: number;
|
|
5185
5266
|
}>;
|
|
5186
|
-
rules
|
|
5187
|
-
status
|
|
5188
|
-
to
|
|
5267
|
+
rules: Record<string, {
|
|
5268
|
+
status: number;
|
|
5269
|
+
to: string;
|
|
5189
5270
|
}>;
|
|
5190
5271
|
} | undefined;
|
|
5191
5272
|
} | undefined;
|
|
@@ -5425,23 +5506,31 @@ export declare const PLUGINS: {
|
|
|
5425
5506
|
"dispatch-namespace": Plugin_2<z.ZodObject<{
|
|
5426
5507
|
dispatchNamespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5427
5508
|
namespace: z.ZodString;
|
|
5428
|
-
mixedModeConnectionString: z.
|
|
5509
|
+
mixedModeConnectionString: z.ZodType<MixedModeConnectionString_3, z.ZodTypeDef, MixedModeConnectionString_3>;
|
|
5429
5510
|
}, "strip", z.ZodTypeAny, {
|
|
5430
5511
|
namespace: string;
|
|
5431
|
-
mixedModeConnectionString
|
|
5512
|
+
mixedModeConnectionString: URL & {
|
|
5513
|
+
__brand: "MixedModeConnectionString";
|
|
5514
|
+
};
|
|
5432
5515
|
}, {
|
|
5433
5516
|
namespace: string;
|
|
5434
|
-
mixedModeConnectionString
|
|
5517
|
+
mixedModeConnectionString: URL & {
|
|
5518
|
+
__brand: "MixedModeConnectionString";
|
|
5519
|
+
};
|
|
5435
5520
|
}>>>;
|
|
5436
5521
|
}, "strip", z.ZodTypeAny, {
|
|
5437
5522
|
dispatchNamespaces?: Record<string, {
|
|
5438
5523
|
namespace: string;
|
|
5439
|
-
mixedModeConnectionString
|
|
5524
|
+
mixedModeConnectionString: URL & {
|
|
5525
|
+
__brand: "MixedModeConnectionString";
|
|
5526
|
+
};
|
|
5440
5527
|
}> | undefined;
|
|
5441
5528
|
}, {
|
|
5442
5529
|
dispatchNamespaces?: Record<string, {
|
|
5443
5530
|
namespace: string;
|
|
5444
|
-
mixedModeConnectionString
|
|
5531
|
+
mixedModeConnectionString: URL & {
|
|
5532
|
+
__brand: "MixedModeConnectionString";
|
|
5533
|
+
};
|
|
5445
5534
|
}> | undefined;
|
|
5446
5535
|
}>>;
|
|
5447
5536
|
images: Plugin_2<z.ZodObject<{
|
|
@@ -5496,6 +5585,44 @@ export declare const PLUGINS: {
|
|
|
5496
5585
|
index_name: string;
|
|
5497
5586
|
}> | undefined;
|
|
5498
5587
|
}>>;
|
|
5588
|
+
containers: Plugin_2<z.ZodObject<{
|
|
5589
|
+
containers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5590
|
+
image: z.ZodString;
|
|
5591
|
+
maxInstances: z.ZodOptional<z.ZodNumber>;
|
|
5592
|
+
imageBuildContext: z.ZodOptional<z.ZodString>;
|
|
5593
|
+
exposedPorts: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
5594
|
+
}, "strip", z.ZodTypeAny, {
|
|
5595
|
+
image: string;
|
|
5596
|
+
maxInstances?: number | undefined;
|
|
5597
|
+
imageBuildContext?: string | undefined;
|
|
5598
|
+
exposedPorts?: number[] | undefined;
|
|
5599
|
+
}, {
|
|
5600
|
+
image: string;
|
|
5601
|
+
maxInstances?: number | undefined;
|
|
5602
|
+
imageBuildContext?: string | undefined;
|
|
5603
|
+
exposedPorts?: number[] | undefined;
|
|
5604
|
+
}>>>;
|
|
5605
|
+
}, "strip", z.ZodTypeAny, {
|
|
5606
|
+
containers?: Record<string, {
|
|
5607
|
+
image: string;
|
|
5608
|
+
maxInstances?: number | undefined;
|
|
5609
|
+
imageBuildContext?: string | undefined;
|
|
5610
|
+
exposedPorts?: number[] | undefined;
|
|
5611
|
+
}> | undefined;
|
|
5612
|
+
}, {
|
|
5613
|
+
containers?: Record<string, {
|
|
5614
|
+
image: string;
|
|
5615
|
+
maxInstances?: number | undefined;
|
|
5616
|
+
imageBuildContext?: string | undefined;
|
|
5617
|
+
exposedPorts?: number[] | undefined;
|
|
5618
|
+
}> | undefined;
|
|
5619
|
+
}>, z.ZodObject<{
|
|
5620
|
+
ignore_containers: z.ZodOptional<z.ZodString>;
|
|
5621
|
+
}, "strip", z.ZodTypeAny, {
|
|
5622
|
+
ignore_containers?: string | undefined;
|
|
5623
|
+
}, {
|
|
5624
|
+
ignore_containers?: string | undefined;
|
|
5625
|
+
}>>;
|
|
5499
5626
|
};
|
|
5500
5627
|
|
|
5501
5628
|
export declare type Plugins = typeof PLUGINS;
|
|
@@ -5699,13 +5826,13 @@ export declare const QueueIncomingMessageSchema: z.ZodObject<{
|
|
|
5699
5826
|
timestamp: z.ZodOptional<z.ZodNumber>;
|
|
5700
5827
|
}, "strip", z.ZodTypeAny, {
|
|
5701
5828
|
body: Buffer<ArrayBuffer>;
|
|
5702
|
-
contentType: "
|
|
5829
|
+
contentType: "text" | "json" | "bytes" | "v8";
|
|
5703
5830
|
delaySecs?: number | undefined;
|
|
5704
5831
|
id?: string | undefined;
|
|
5705
5832
|
timestamp?: number | undefined;
|
|
5706
5833
|
}, {
|
|
5707
5834
|
body: string;
|
|
5708
|
-
contentType?: "
|
|
5835
|
+
contentType?: "text" | "json" | "bytes" | "v8" | undefined;
|
|
5709
5836
|
delaySecs?: number | undefined;
|
|
5710
5837
|
id?: string | undefined;
|
|
5711
5838
|
timestamp?: number | undefined;
|
|
@@ -5779,13 +5906,13 @@ export declare const QueuesBatchRequestSchema: z.ZodObject<{
|
|
|
5779
5906
|
timestamp: z.ZodOptional<z.ZodNumber>;
|
|
5780
5907
|
}, "strip", z.ZodTypeAny, {
|
|
5781
5908
|
body: Buffer<ArrayBuffer>;
|
|
5782
|
-
contentType: "
|
|
5909
|
+
contentType: "text" | "json" | "bytes" | "v8";
|
|
5783
5910
|
delaySecs?: number | undefined;
|
|
5784
5911
|
id?: string | undefined;
|
|
5785
5912
|
timestamp?: number | undefined;
|
|
5786
5913
|
}, {
|
|
5787
5914
|
body: string;
|
|
5788
|
-
contentType?: "
|
|
5915
|
+
contentType?: "text" | "json" | "bytes" | "v8" | undefined;
|
|
5789
5916
|
delaySecs?: number | undefined;
|
|
5790
5917
|
id?: string | undefined;
|
|
5791
5918
|
timestamp?: number | undefined;
|
|
@@ -5793,7 +5920,7 @@ export declare const QueuesBatchRequestSchema: z.ZodObject<{
|
|
|
5793
5920
|
}, "strip", z.ZodTypeAny, {
|
|
5794
5921
|
messages: {
|
|
5795
5922
|
body: Buffer<ArrayBuffer>;
|
|
5796
|
-
contentType: "
|
|
5923
|
+
contentType: "text" | "json" | "bytes" | "v8";
|
|
5797
5924
|
delaySecs?: number | undefined;
|
|
5798
5925
|
id?: string | undefined;
|
|
5799
5926
|
timestamp?: number | undefined;
|
|
@@ -5801,7 +5928,7 @@ export declare const QueuesBatchRequestSchema: z.ZodObject<{
|
|
|
5801
5928
|
}, {
|
|
5802
5929
|
messages: {
|
|
5803
5930
|
body: string;
|
|
5804
|
-
contentType?: "
|
|
5931
|
+
contentType?: "text" | "json" | "bytes" | "v8" | undefined;
|
|
5805
5932
|
delaySecs?: number | undefined;
|
|
5806
5933
|
id?: string | undefined;
|
|
5807
5934
|
timestamp?: number | undefined;
|
|
@@ -6178,7 +6305,7 @@ export declare const SharedHeaders: {
|
|
|
6178
6305
|
readonly LOG_LEVEL: "MF-Log-Level";
|
|
6179
6306
|
};
|
|
6180
6307
|
|
|
6181
|
-
export declare type SharedOptions = z.input<typeof CORE_PLUGIN.sharedOptions> & z.input<typeof CACHE_PLUGIN.sharedOptions> & z.input<typeof D1_PLUGIN.sharedOptions> & z.input<typeof DURABLE_OBJECTS_PLUGIN.sharedOptions> & z.input<typeof KV_PLUGIN.sharedOptions> & z.input<typeof R2_PLUGIN.sharedOptions> & z.input<typeof WORKFLOWS_PLUGIN.sharedOptions> & z.input<typeof SECRET_STORE_PLUGIN.sharedOptions> & z.input<typeof ANALYTICS_ENGINE_PLUGIN.sharedOptions>;
|
|
6308
|
+
export declare type SharedOptions = z.input<typeof CORE_PLUGIN.sharedOptions> & z.input<typeof CACHE_PLUGIN.sharedOptions> & z.input<typeof D1_PLUGIN.sharedOptions> & z.input<typeof DURABLE_OBJECTS_PLUGIN.sharedOptions> & z.input<typeof KV_PLUGIN.sharedOptions> & z.input<typeof R2_PLUGIN.sharedOptions> & z.input<typeof WORKFLOWS_PLUGIN.sharedOptions> & z.input<typeof SECRET_STORE_PLUGIN.sharedOptions> & z.input<typeof ANALYTICS_ENGINE_PLUGIN.sharedOptions> & z.input<typeof CONTAINER_PLUGIN.sharedOptions>;
|
|
6182
6309
|
|
|
6183
6310
|
export declare const SiteBindings: {
|
|
6184
6311
|
readonly KV_NAMESPACE_SITE: "__STATIC_CONTENT";
|
|
@@ -6663,7 +6790,7 @@ export declare type Worker_Module = {
|
|
|
6663
6790
|
pythonRequirement?: string;
|
|
6664
6791
|
});
|
|
6665
6792
|
|
|
6666
|
-
export declare type WorkerOptions = z.input<typeof CORE_PLUGIN.options> & z.input<typeof CACHE_PLUGIN.options> & z.input<typeof D1_PLUGIN.options> & z.input<typeof DURABLE_OBJECTS_PLUGIN.options> & z.input<typeof KV_PLUGIN.options> & z.input<typeof QUEUES_PLUGIN.options> & z.input<typeof R2_PLUGIN.options> & z.input<typeof HYPERDRIVE_PLUGIN.options> & z.input<typeof RATELIMIT_PLUGIN.options> & z.input<typeof EMAIL_PLUGIN.options> & z.input<typeof ASSETS_PLUGIN.options> & z.input<typeof WORKFLOWS_PLUGIN.options> & z.input<typeof PIPELINE_PLUGIN.options> & z.input<typeof SECRET_STORE_PLUGIN.options> & z.input<typeof ANALYTICS_ENGINE_PLUGIN.options> & z.input<typeof AI_PLUGIN.options> & z.input<typeof BROWSER_RENDERING_PLUGIN.options> & z.input<typeof DISPATCH_NAMESPACE_PLUGIN.options> & z.input<typeof IMAGES_PLUGIN.options> & z.input<typeof VECTORIZE_PLUGIN.options>;
|
|
6793
|
+
export declare type WorkerOptions = z.input<typeof CORE_PLUGIN.options> & z.input<typeof CACHE_PLUGIN.options> & z.input<typeof D1_PLUGIN.options> & z.input<typeof DURABLE_OBJECTS_PLUGIN.options> & z.input<typeof KV_PLUGIN.options> & z.input<typeof QUEUES_PLUGIN.options> & z.input<typeof R2_PLUGIN.options> & z.input<typeof HYPERDRIVE_PLUGIN.options> & z.input<typeof RATELIMIT_PLUGIN.options> & z.input<typeof EMAIL_PLUGIN.options> & z.input<typeof ASSETS_PLUGIN.options> & z.input<typeof WORKFLOWS_PLUGIN.options> & z.input<typeof PIPELINE_PLUGIN.options> & z.input<typeof SECRET_STORE_PLUGIN.options> & z.input<typeof ANALYTICS_ENGINE_PLUGIN.options> & z.input<typeof AI_PLUGIN.options> & z.input<typeof BROWSER_RENDERING_PLUGIN.options> & z.input<typeof DISPATCH_NAMESPACE_PLUGIN.options> & z.input<typeof IMAGES_PLUGIN.options> & z.input<typeof VECTORIZE_PLUGIN.options> & z.input<typeof CONTAINER_PLUGIN.options>;
|
|
6667
6794
|
|
|
6668
6795
|
export declare interface WorkerRoute {
|
|
6669
6796
|
target: string;
|