miniflare 0.0.0-e39a45ffa → 0.0.0-e44afaf79

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.
@@ -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?: number;
195
- to?: string;
196
- lineNumber?: number;
194
+ status: number;
195
+ to: string;
196
+ lineNumber: number;
197
197
  }, {
198
- status?: number;
199
- to?: string;
200
- lineNumber?: number;
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?: number;
207
- to?: string;
206
+ status: number;
207
+ to: string;
208
208
  }, {
209
- status?: number;
210
- to?: string;
209
+ status: number;
210
+ to: string;
211
211
  }>>;
212
212
  }, "strip", z.ZodTypeAny, {
213
- version?: 1;
214
- staticRules?: Record<string, {
215
- status?: number;
216
- to?: string;
217
- lineNumber?: number;
213
+ version: 1;
214
+ staticRules: Record<string, {
215
+ status: number;
216
+ to: string;
217
+ lineNumber: number;
218
218
  }>;
219
- rules?: Record<string, {
220
- status?: number;
221
- to?: string;
219
+ rules: Record<string, {
220
+ status: number;
221
+ to: string;
222
222
  }>;
223
223
  }, {
224
- version?: 1;
225
- staticRules?: Record<string, {
226
- status?: number;
227
- to?: string;
228
- lineNumber?: number;
224
+ version: 1;
225
+ staticRules: Record<string, {
226
+ status: number;
227
+ to: string;
228
+ lineNumber: number;
229
229
  }>;
230
- rules?: Record<string, {
231
- status?: number;
232
- to?: string;
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?: 2;
249
- rules?: Record<string, {
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?: 2;
255
- rules?: Record<string, {
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?: 2;
263
- rules?: Record<string, {
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?: 1;
275
- staticRules?: Record<string, {
276
- status?: number;
277
- to?: string;
278
- lineNumber?: number;
274
+ version: 1;
275
+ staticRules: Record<string, {
276
+ status: number;
277
+ to: string;
278
+ lineNumber: number;
279
279
  }>;
280
- rules?: Record<string, {
281
- status?: number;
282
- to?: string;
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?: 2;
288
- rules?: Record<string, {
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?: 1;
300
- staticRules?: Record<string, {
301
- status?: number;
302
- to?: string;
303
- lineNumber?: number;
299
+ version: 1;
300
+ staticRules: Record<string, {
301
+ status: number;
302
+ to: string;
303
+ lineNumber: number;
304
304
  }>;
305
- rules?: Record<string, {
306
- status?: number;
307
- to?: string;
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?: 2;
325
- rules?: Record<string, {
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?: 1;
337
- staticRules?: Record<string, {
338
- status?: number;
339
- to?: string;
340
- lineNumber?: number;
336
+ version: 1;
337
+ staticRules: Record<string, {
338
+ status: number;
339
+ to: string;
340
+ lineNumber: number;
341
341
  }>;
342
- rules?: Record<string, {
343
- status?: number;
344
- to?: string;
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?: 2;
362
- rules?: Record<string, {
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?: 1;
374
- staticRules?: Record<string, {
375
- status?: number;
376
- to?: string;
377
- lineNumber?: number;
373
+ version: 1;
374
+ staticRules: Record<string, {
375
+ status: number;
376
+ to: string;
377
+ lineNumber: number;
378
378
  }>;
379
- rules?: Record<string, {
380
- status?: number;
381
- to?: string;
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?: 2;
403
- rules?: Record<string, {
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?: 1;
415
- staticRules?: Record<string, {
416
- status?: number;
417
- to?: string;
418
- lineNumber?: number;
414
+ version: 1;
415
+ staticRules: Record<string, {
416
+ status: number;
417
+ to: string;
418
+ lineNumber: number;
419
419
  }>;
420
- rules?: Record<string, {
421
- status?: number;
422
- to?: string;
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?: 2;
444
- rules?: Record<string, {
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?: 1;
456
- staticRules?: Record<string, {
457
- status?: number;
458
- to?: string;
459
- lineNumber?: number;
455
+ version: 1;
456
+ staticRules: Record<string, {
457
+ status: number;
458
+ to: string;
459
+ lineNumber: number;
460
460
  }>;
461
- rules?: Record<string, {
462
- status?: number;
463
- to?: string;
461
+ rules: Record<string, {
462
+ status: number;
463
+ to: string;
464
464
  }>;
465
465
  } | undefined;
466
466
  } | undefined;
@@ -793,7 +793,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
793
793
  requireClientCerts?: boolean | undefined;
794
794
  trustBrowserCas?: boolean | undefined;
795
795
  trustedCertificates?: string[] | undefined;
796
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
796
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
797
797
  cipherList?: string | undefined;
798
798
  }, {
799
799
  keypair?: {
@@ -803,7 +803,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
803
803
  requireClientCerts?: boolean | undefined;
804
804
  trustBrowserCas?: boolean | undefined;
805
805
  trustedCertificates?: string[] | undefined;
806
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
806
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
807
807
  cipherList?: string | undefined;
808
808
  }>>;
809
809
  }, "strip", z.ZodTypeAny, {
@@ -817,7 +817,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
817
817
  requireClientCerts?: boolean | undefined;
818
818
  trustBrowserCas?: boolean | undefined;
819
819
  trustedCertificates?: string[] | undefined;
820
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
820
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
821
821
  cipherList?: string | undefined;
822
822
  } | undefined;
823
823
  }, {
@@ -831,7 +831,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
831
831
  requireClientCerts?: boolean | undefined;
832
832
  trustBrowserCas?: boolean | undefined;
833
833
  trustedCertificates?: string[] | undefined;
834
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
834
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
835
835
  cipherList?: string | undefined;
836
836
  } | undefined;
837
837
  }>;
@@ -847,7 +847,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
847
847
  requireClientCerts?: boolean | undefined;
848
848
  trustBrowserCas?: boolean | undefined;
849
849
  trustedCertificates?: string[] | undefined;
850
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
850
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
851
851
  cipherList?: string | undefined;
852
852
  } | undefined;
853
853
  };
@@ -863,7 +863,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
863
863
  requireClientCerts?: boolean | undefined;
864
864
  trustBrowserCas?: boolean | undefined;
865
865
  trustedCertificates?: string[] | undefined;
866
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
866
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
867
867
  cipherList?: string | undefined;
868
868
  } | undefined;
869
869
  };
@@ -964,7 +964,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
964
964
  requireClientCerts?: boolean | undefined;
965
965
  trustBrowserCas?: boolean | undefined;
966
966
  trustedCertificates?: string[] | undefined;
967
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
967
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
968
968
  cipherList?: string | undefined;
969
969
  }, {
970
970
  keypair?: {
@@ -974,7 +974,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
974
974
  requireClientCerts?: boolean | undefined;
975
975
  trustBrowserCas?: boolean | undefined;
976
976
  trustedCertificates?: string[] | undefined;
977
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
977
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
978
978
  cipherList?: string | undefined;
979
979
  }>>;
980
980
  }, "strip", z.ZodTypeAny, {
@@ -988,7 +988,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
988
988
  requireClientCerts?: boolean | undefined;
989
989
  trustBrowserCas?: boolean | undefined;
990
990
  trustedCertificates?: string[] | undefined;
991
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
991
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
992
992
  cipherList?: string | undefined;
993
993
  } | undefined;
994
994
  }, {
@@ -1002,7 +1002,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1002
1002
  requireClientCerts?: boolean | undefined;
1003
1003
  trustBrowserCas?: boolean | undefined;
1004
1004
  trustedCertificates?: string[] | undefined;
1005
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1005
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1006
1006
  cipherList?: string | undefined;
1007
1007
  } | undefined;
1008
1008
  }>;
@@ -1018,7 +1018,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1018
1018
  requireClientCerts?: boolean | undefined;
1019
1019
  trustBrowserCas?: boolean | undefined;
1020
1020
  trustedCertificates?: string[] | undefined;
1021
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1021
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1022
1022
  cipherList?: string | undefined;
1023
1023
  } | undefined;
1024
1024
  };
@@ -1034,7 +1034,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1034
1034
  requireClientCerts?: boolean | undefined;
1035
1035
  trustBrowserCas?: boolean | undefined;
1036
1036
  trustedCertificates?: string[] | undefined;
1037
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1037
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1038
1038
  cipherList?: string | undefined;
1039
1039
  } | undefined;
1040
1040
  };
@@ -1147,7 +1147,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1147
1147
  requireClientCerts?: boolean | undefined;
1148
1148
  trustBrowserCas?: boolean | undefined;
1149
1149
  trustedCertificates?: string[] | undefined;
1150
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1150
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1151
1151
  cipherList?: string | undefined;
1152
1152
  }, {
1153
1153
  keypair?: {
@@ -1157,7 +1157,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1157
1157
  requireClientCerts?: boolean | undefined;
1158
1158
  trustBrowserCas?: boolean | undefined;
1159
1159
  trustedCertificates?: string[] | undefined;
1160
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1160
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1161
1161
  cipherList?: string | undefined;
1162
1162
  }>>;
1163
1163
  }, "strip", z.ZodTypeAny, {
@@ -1171,7 +1171,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1171
1171
  requireClientCerts?: boolean | undefined;
1172
1172
  trustBrowserCas?: boolean | undefined;
1173
1173
  trustedCertificates?: string[] | undefined;
1174
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1174
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1175
1175
  cipherList?: string | undefined;
1176
1176
  } | undefined;
1177
1177
  }, {
@@ -1185,7 +1185,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1185
1185
  requireClientCerts?: boolean | undefined;
1186
1186
  trustBrowserCas?: boolean | undefined;
1187
1187
  trustedCertificates?: string[] | undefined;
1188
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1188
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1189
1189
  cipherList?: string | undefined;
1190
1190
  } | undefined;
1191
1191
  }>;
@@ -1201,7 +1201,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1201
1201
  requireClientCerts?: boolean | undefined;
1202
1202
  trustBrowserCas?: boolean | undefined;
1203
1203
  trustedCertificates?: string[] | undefined;
1204
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1204
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1205
1205
  cipherList?: string | undefined;
1206
1206
  } | undefined;
1207
1207
  };
@@ -1217,7 +1217,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1217
1217
  requireClientCerts?: boolean | undefined;
1218
1218
  trustBrowserCas?: boolean | undefined;
1219
1219
  trustedCertificates?: string[] | undefined;
1220
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1220
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1221
1221
  cipherList?: string | undefined;
1222
1222
  } | undefined;
1223
1223
  };
@@ -1285,7 +1285,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1285
1285
  requireClientCerts?: boolean | undefined;
1286
1286
  trustBrowserCas?: boolean | undefined;
1287
1287
  trustedCertificates?: string[] | undefined;
1288
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1288
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1289
1289
  cipherList?: string | undefined;
1290
1290
  } | undefined;
1291
1291
  };
@@ -1321,7 +1321,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1321
1321
  requireClientCerts?: boolean | undefined;
1322
1322
  trustBrowserCas?: boolean | undefined;
1323
1323
  trustedCertificates?: string[] | undefined;
1324
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1324
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1325
1325
  cipherList?: string | undefined;
1326
1326
  } | undefined;
1327
1327
  };
@@ -1363,7 +1363,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1363
1363
  requireClientCerts?: boolean | undefined;
1364
1364
  trustBrowserCas?: boolean | undefined;
1365
1365
  trustedCertificates?: string[] | undefined;
1366
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1366
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1367
1367
  cipherList?: string | undefined;
1368
1368
  } | undefined;
1369
1369
  };
@@ -1405,7 +1405,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1405
1405
  requireClientCerts?: boolean | undefined;
1406
1406
  trustBrowserCas?: boolean | undefined;
1407
1407
  trustedCertificates?: string[] | undefined;
1408
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1408
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1409
1409
  cipherList?: string | undefined;
1410
1410
  } | undefined;
1411
1411
  };
@@ -1441,7 +1441,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1441
1441
  requireClientCerts?: boolean | undefined;
1442
1442
  trustBrowserCas?: boolean | undefined;
1443
1443
  trustedCertificates?: string[] | undefined;
1444
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1444
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1445
1445
  cipherList?: string | undefined;
1446
1446
  } | undefined;
1447
1447
  };
@@ -1483,7 +1483,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1483
1483
  requireClientCerts?: boolean | undefined;
1484
1484
  trustBrowserCas?: boolean | undefined;
1485
1485
  trustedCertificates?: string[] | undefined;
1486
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1486
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1487
1487
  cipherList?: string | undefined;
1488
1488
  } | undefined;
1489
1489
  };
@@ -1534,7 +1534,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1534
1534
  requireClientCerts?: boolean | undefined;
1535
1535
  trustBrowserCas?: boolean | undefined;
1536
1536
  trustedCertificates?: string[] | undefined;
1537
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1537
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1538
1538
  cipherList?: string | undefined;
1539
1539
  } | undefined;
1540
1540
  };
@@ -1570,7 +1570,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1570
1570
  requireClientCerts?: boolean | undefined;
1571
1571
  trustBrowserCas?: boolean | undefined;
1572
1572
  trustedCertificates?: string[] | undefined;
1573
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1573
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1574
1574
  cipherList?: string | undefined;
1575
1575
  } | undefined;
1576
1576
  };
@@ -1612,7 +1612,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1612
1612
  requireClientCerts?: boolean | undefined;
1613
1613
  trustBrowserCas?: boolean | undefined;
1614
1614
  trustedCertificates?: string[] | undefined;
1615
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1615
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1616
1616
  cipherList?: string | undefined;
1617
1617
  } | undefined;
1618
1618
  };
@@ -1665,7 +1665,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1665
1665
  requireClientCerts?: boolean | undefined;
1666
1666
  trustBrowserCas?: boolean | undefined;
1667
1667
  trustedCertificates?: string[] | undefined;
1668
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1668
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1669
1669
  cipherList?: string | undefined;
1670
1670
  } | undefined;
1671
1671
  };
@@ -1701,7 +1701,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1701
1701
  requireClientCerts?: boolean | undefined;
1702
1702
  trustBrowserCas?: boolean | undefined;
1703
1703
  trustedCertificates?: string[] | undefined;
1704
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1704
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1705
1705
  cipherList?: string | undefined;
1706
1706
  } | undefined;
1707
1707
  };
@@ -1743,7 +1743,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1743
1743
  requireClientCerts?: boolean | undefined;
1744
1744
  trustBrowserCas?: boolean | undefined;
1745
1745
  trustedCertificates?: string[] | undefined;
1746
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1746
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1747
1747
  cipherList?: string | undefined;
1748
1748
  } | undefined;
1749
1749
  };
@@ -1795,7 +1795,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1795
1795
  requireClientCerts?: boolean | undefined;
1796
1796
  trustBrowserCas?: boolean | undefined;
1797
1797
  trustedCertificates?: string[] | undefined;
1798
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1798
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1799
1799
  cipherList?: string | undefined;
1800
1800
  } | undefined;
1801
1801
  };
@@ -1831,7 +1831,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1831
1831
  requireClientCerts?: boolean | undefined;
1832
1832
  trustBrowserCas?: boolean | undefined;
1833
1833
  trustedCertificates?: string[] | undefined;
1834
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1834
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1835
1835
  cipherList?: string | undefined;
1836
1836
  } | undefined;
1837
1837
  };
@@ -1873,7 +1873,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1873
1873
  requireClientCerts?: boolean | undefined;
1874
1874
  trustBrowserCas?: boolean | undefined;
1875
1875
  trustedCertificates?: string[] | undefined;
1876
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1876
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1877
1877
  cipherList?: string | undefined;
1878
1878
  } | undefined;
1879
1879
  };
@@ -1941,7 +1941,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1941
1941
  requireClientCerts?: boolean | undefined;
1942
1942
  trustBrowserCas?: boolean | undefined;
1943
1943
  trustedCertificates?: string[] | undefined;
1944
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1944
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1945
1945
  cipherList?: string | undefined;
1946
1946
  } | undefined;
1947
1947
  };
@@ -1977,7 +1977,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
1977
1977
  requireClientCerts?: boolean | undefined;
1978
1978
  trustBrowserCas?: boolean | undefined;
1979
1979
  trustedCertificates?: string[] | undefined;
1980
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
1980
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
1981
1981
  cipherList?: string | undefined;
1982
1982
  } | undefined;
1983
1983
  };
@@ -2019,7 +2019,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
2019
2019
  requireClientCerts?: boolean | undefined;
2020
2020
  trustBrowserCas?: boolean | undefined;
2021
2021
  trustedCertificates?: string[] | undefined;
2022
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
2022
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
2023
2023
  cipherList?: string | undefined;
2024
2024
  } | undefined;
2025
2025
  };
@@ -2052,6 +2052,8 @@ export declare const CoreSharedOptionsSchema: z.ZodObject<{
2052
2052
  upstream: z.ZodOptional<z.ZodString>;
2053
2053
  cf: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
2054
2054
  liveReload: z.ZodOptional<z.ZodBoolean>;
2055
+ unsafeDevRegistryPath: z.ZodOptional<z.ZodString>;
2056
+ unsafeDevRegistryDurableObjectProxy: z.ZodDefault<z.ZodBoolean>;
2055
2057
  unsafeProxySharedSecret: z.ZodOptional<z.ZodString>;
2056
2058
  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
2059
  unsafeStickyBlobs: z.ZodOptional<z.ZodBoolean>;
@@ -2059,6 +2061,7 @@ export declare const CoreSharedOptionsSchema: z.ZodObject<{
2059
2061
  logRequests: z.ZodDefault<z.ZodBoolean>;
2060
2062
  defaultPersistRoot: z.ZodOptional<z.ZodString>;
2061
2063
  }, "strip", z.ZodTypeAny, {
2064
+ unsafeDevRegistryDurableObjectProxy: boolean;
2062
2065
  logRequests: boolean;
2063
2066
  rootPath?: undefined;
2064
2067
  host?: string | undefined;
@@ -2075,6 +2078,7 @@ export declare const CoreSharedOptionsSchema: z.ZodObject<{
2075
2078
  upstream?: string | undefined;
2076
2079
  cf?: string | boolean | Record<string, any> | undefined;
2077
2080
  liveReload?: boolean | undefined;
2081
+ unsafeDevRegistryPath?: string | undefined;
2078
2082
  unsafeProxySharedSecret?: string | undefined;
2079
2083
  unsafeModuleFallbackService?: ((request: Request_3, miniflare: Miniflare_2) => Awaitable<Response_3>) | undefined;
2080
2084
  unsafeStickyBlobs?: boolean | undefined;
@@ -2096,6 +2100,8 @@ export declare const CoreSharedOptionsSchema: z.ZodObject<{
2096
2100
  upstream?: string | undefined;
2097
2101
  cf?: string | boolean | Record<string, any> | undefined;
2098
2102
  liveReload?: boolean | undefined;
2103
+ unsafeDevRegistryPath?: string | undefined;
2104
+ unsafeDevRegistryDurableObjectProxy?: boolean | undefined;
2099
2105
  unsafeProxySharedSecret?: string | undefined;
2100
2106
  unsafeModuleFallbackService?: ((request: Request_3, miniflare: Miniflare_2) => Awaitable<Response_3>) | undefined;
2101
2107
  unsafeStickyBlobs?: boolean | undefined;
@@ -2214,23 +2220,31 @@ export declare class DispatchFetchDispatcher extends undici.Dispatcher {
2214
2220
  export declare const DispatchNamespaceOptionsSchema: z.ZodObject<{
2215
2221
  dispatchNamespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
2216
2222
  namespace: z.ZodString;
2217
- mixedModeConnectionString: z.ZodOptional<z.ZodType<MixedModeConnectionString, z.ZodTypeDef, MixedModeConnectionString>>;
2223
+ mixedModeConnectionString: z.ZodType<MixedModeConnectionString, z.ZodTypeDef, MixedModeConnectionString>;
2218
2224
  }, "strip", z.ZodTypeAny, {
2219
2225
  namespace: string;
2220
- mixedModeConnectionString?: MixedModeConnectionString | undefined;
2226
+ mixedModeConnectionString: URL & {
2227
+ __brand: "MixedModeConnectionString";
2228
+ };
2221
2229
  }, {
2222
2230
  namespace: string;
2223
- mixedModeConnectionString?: MixedModeConnectionString | undefined;
2231
+ mixedModeConnectionString: URL & {
2232
+ __brand: "MixedModeConnectionString";
2233
+ };
2224
2234
  }>>>;
2225
2235
  }, "strip", z.ZodTypeAny, {
2226
2236
  dispatchNamespaces?: Record<string, {
2227
2237
  namespace: string;
2228
- mixedModeConnectionString?: MixedModeConnectionString | undefined;
2238
+ mixedModeConnectionString: URL & {
2239
+ __brand: "MixedModeConnectionString";
2240
+ };
2229
2241
  }> | undefined;
2230
2242
  }, {
2231
2243
  dispatchNamespaces?: Record<string, {
2232
2244
  namespace: string;
2233
- mixedModeConnectionString?: MixedModeConnectionString | undefined;
2245
+ mixedModeConnectionString: URL & {
2246
+ __brand: "MixedModeConnectionString";
2247
+ };
2234
2248
  }> | undefined;
2235
2249
  }>;
2236
2250
 
@@ -2437,6 +2451,8 @@ export declare function getAssetsBindingsNames(assetsKVBindingName?: string, ass
2437
2451
 
2438
2452
  export declare function getCacheServiceName(workerIndex: number): string;
2439
2453
 
2454
+ export declare function getDefaultDevRegistryPath(): string;
2455
+
2440
2456
  export declare function getDirectSocketName(workerIndex: number, entrypoint: string): string;
2441
2457
 
2442
2458
  export declare function getEntrySocketHttpOptions(coreOpts: z.infer<typeof CORE_PLUGIN.sharedOptions>): Promise<{
@@ -2906,10 +2922,12 @@ export declare class NoOpLog extends Log {
2906
2922
 
2907
2923
  export declare function normaliseDurableObject(designator: NonNullable<z.infer<typeof DurableObjectsOptionsSchema>["durableObjects"]>[string]): {
2908
2924
  className: string;
2909
- serviceName?: string;
2910
- enableSql?: boolean;
2911
- unsafeUniqueKey?: UnsafeUniqueKey;
2912
- unsafePreventEviction?: boolean;
2925
+ scriptName: string | undefined;
2926
+ serviceName: string | undefined;
2927
+ enableSql: boolean | undefined;
2928
+ unsafeUniqueKey: UnsafeUniqueKey | undefined;
2929
+ unsafePreventEviction: boolean | undefined;
2930
+ mixedModeConnectionString: MixedModeConnectionString | undefined;
2913
2931
  };
2914
2932
 
2915
2933
  export declare function objectEntryWorker(durableObjectNamespace: Worker_Binding_DurableObjectNamespaceDesignator, namespace: string): Worker;
@@ -3126,6 +3144,9 @@ export declare interface PluginBase<Options extends z.ZodType, SharedOptions ext
3126
3144
  getNodeBindings(options: z.infer<Options>): Awaitable<Record<string, unknown>>;
3127
3145
  getServices(options: PluginServicesOptions<Options, SharedOptions>): Awaitable<Service[] | ServicesExtensions | void>;
3128
3146
  getPersistPath?(sharedOptions: OptionalZodTypeOf<SharedOptions>, tmpPath: string): string;
3147
+ getExtensions?(options: {
3148
+ options: z.infer<Options>[];
3149
+ }): Awaitable<Extension[]>;
3129
3150
  }
3130
3151
 
3131
3152
  export declare const PLUGINS: {
@@ -3292,7 +3313,7 @@ export declare const PLUGINS: {
3292
3313
  requireClientCerts?: boolean | undefined;
3293
3314
  trustBrowserCas?: boolean | undefined;
3294
3315
  trustedCertificates?: string[] | undefined;
3295
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3316
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3296
3317
  cipherList?: string | undefined;
3297
3318
  }, {
3298
3319
  keypair?: {
@@ -3302,7 +3323,7 @@ export declare const PLUGINS: {
3302
3323
  requireClientCerts?: boolean | undefined;
3303
3324
  trustBrowserCas?: boolean | undefined;
3304
3325
  trustedCertificates?: string[] | undefined;
3305
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3326
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3306
3327
  cipherList?: string | undefined;
3307
3328
  }>>;
3308
3329
  }, "strip", z.ZodTypeAny, {
@@ -3316,7 +3337,7 @@ export declare const PLUGINS: {
3316
3337
  requireClientCerts?: boolean | undefined;
3317
3338
  trustBrowserCas?: boolean | undefined;
3318
3339
  trustedCertificates?: string[] | undefined;
3319
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3340
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3320
3341
  cipherList?: string | undefined;
3321
3342
  } | undefined;
3322
3343
  }, {
@@ -3330,7 +3351,7 @@ export declare const PLUGINS: {
3330
3351
  requireClientCerts?: boolean | undefined;
3331
3352
  trustBrowserCas?: boolean | undefined;
3332
3353
  trustedCertificates?: string[] | undefined;
3333
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3354
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3334
3355
  cipherList?: string | undefined;
3335
3356
  } | undefined;
3336
3357
  }>;
@@ -3346,7 +3367,7 @@ export declare const PLUGINS: {
3346
3367
  requireClientCerts?: boolean | undefined;
3347
3368
  trustBrowserCas?: boolean | undefined;
3348
3369
  trustedCertificates?: string[] | undefined;
3349
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3370
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3350
3371
  cipherList?: string | undefined;
3351
3372
  } | undefined;
3352
3373
  };
@@ -3362,7 +3383,7 @@ export declare const PLUGINS: {
3362
3383
  requireClientCerts?: boolean | undefined;
3363
3384
  trustBrowserCas?: boolean | undefined;
3364
3385
  trustedCertificates?: string[] | undefined;
3365
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3386
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3366
3387
  cipherList?: string | undefined;
3367
3388
  } | undefined;
3368
3389
  };
@@ -3463,7 +3484,7 @@ export declare const PLUGINS: {
3463
3484
  requireClientCerts?: boolean | undefined;
3464
3485
  trustBrowserCas?: boolean | undefined;
3465
3486
  trustedCertificates?: string[] | undefined;
3466
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3487
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3467
3488
  cipherList?: string | undefined;
3468
3489
  }, {
3469
3490
  keypair?: {
@@ -3473,7 +3494,7 @@ export declare const PLUGINS: {
3473
3494
  requireClientCerts?: boolean | undefined;
3474
3495
  trustBrowserCas?: boolean | undefined;
3475
3496
  trustedCertificates?: string[] | undefined;
3476
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3497
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3477
3498
  cipherList?: string | undefined;
3478
3499
  }>>;
3479
3500
  }, "strip", z.ZodTypeAny, {
@@ -3487,7 +3508,7 @@ export declare const PLUGINS: {
3487
3508
  requireClientCerts?: boolean | undefined;
3488
3509
  trustBrowserCas?: boolean | undefined;
3489
3510
  trustedCertificates?: string[] | undefined;
3490
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3511
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3491
3512
  cipherList?: string | undefined;
3492
3513
  } | undefined;
3493
3514
  }, {
@@ -3501,7 +3522,7 @@ export declare const PLUGINS: {
3501
3522
  requireClientCerts?: boolean | undefined;
3502
3523
  trustBrowserCas?: boolean | undefined;
3503
3524
  trustedCertificates?: string[] | undefined;
3504
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3525
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3505
3526
  cipherList?: string | undefined;
3506
3527
  } | undefined;
3507
3528
  }>;
@@ -3517,7 +3538,7 @@ export declare const PLUGINS: {
3517
3538
  requireClientCerts?: boolean | undefined;
3518
3539
  trustBrowserCas?: boolean | undefined;
3519
3540
  trustedCertificates?: string[] | undefined;
3520
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3541
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3521
3542
  cipherList?: string | undefined;
3522
3543
  } | undefined;
3523
3544
  };
@@ -3533,7 +3554,7 @@ export declare const PLUGINS: {
3533
3554
  requireClientCerts?: boolean | undefined;
3534
3555
  trustBrowserCas?: boolean | undefined;
3535
3556
  trustedCertificates?: string[] | undefined;
3536
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3557
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3537
3558
  cipherList?: string | undefined;
3538
3559
  } | undefined;
3539
3560
  };
@@ -3642,7 +3663,7 @@ export declare const PLUGINS: {
3642
3663
  requireClientCerts?: boolean | undefined;
3643
3664
  trustBrowserCas?: boolean | undefined;
3644
3665
  trustedCertificates?: string[] | undefined;
3645
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3666
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3646
3667
  cipherList?: string | undefined;
3647
3668
  }, {
3648
3669
  keypair?: {
@@ -3652,7 +3673,7 @@ export declare const PLUGINS: {
3652
3673
  requireClientCerts?: boolean | undefined;
3653
3674
  trustBrowserCas?: boolean | undefined;
3654
3675
  trustedCertificates?: string[] | undefined;
3655
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3676
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3656
3677
  cipherList?: string | undefined;
3657
3678
  }>>;
3658
3679
  }, "strip", z.ZodTypeAny, {
@@ -3666,7 +3687,7 @@ export declare const PLUGINS: {
3666
3687
  requireClientCerts?: boolean | undefined;
3667
3688
  trustBrowserCas?: boolean | undefined;
3668
3689
  trustedCertificates?: string[] | undefined;
3669
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3690
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3670
3691
  cipherList?: string | undefined;
3671
3692
  } | undefined;
3672
3693
  }, {
@@ -3680,7 +3701,7 @@ export declare const PLUGINS: {
3680
3701
  requireClientCerts?: boolean | undefined;
3681
3702
  trustBrowserCas?: boolean | undefined;
3682
3703
  trustedCertificates?: string[] | undefined;
3683
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3704
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3684
3705
  cipherList?: string | undefined;
3685
3706
  } | undefined;
3686
3707
  }>;
@@ -3696,7 +3717,7 @@ export declare const PLUGINS: {
3696
3717
  requireClientCerts?: boolean | undefined;
3697
3718
  trustBrowserCas?: boolean | undefined;
3698
3719
  trustedCertificates?: string[] | undefined;
3699
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3720
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3700
3721
  cipherList?: string | undefined;
3701
3722
  } | undefined;
3702
3723
  };
@@ -3712,7 +3733,7 @@ export declare const PLUGINS: {
3712
3733
  requireClientCerts?: boolean | undefined;
3713
3734
  trustBrowserCas?: boolean | undefined;
3714
3735
  trustedCertificates?: string[] | undefined;
3715
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3736
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3716
3737
  cipherList?: string | undefined;
3717
3738
  } | undefined;
3718
3739
  };
@@ -3780,7 +3801,7 @@ export declare const PLUGINS: {
3780
3801
  requireClientCerts?: boolean | undefined;
3781
3802
  trustBrowserCas?: boolean | undefined;
3782
3803
  trustedCertificates?: string[] | undefined;
3783
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3804
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3784
3805
  cipherList?: string | undefined;
3785
3806
  } | undefined;
3786
3807
  };
@@ -3816,7 +3837,7 @@ export declare const PLUGINS: {
3816
3837
  requireClientCerts?: boolean | undefined;
3817
3838
  trustBrowserCas?: boolean | undefined;
3818
3839
  trustedCertificates?: string[] | undefined;
3819
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3840
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3820
3841
  cipherList?: string | undefined;
3821
3842
  } | undefined;
3822
3843
  };
@@ -3858,7 +3879,7 @@ export declare const PLUGINS: {
3858
3879
  requireClientCerts?: boolean | undefined;
3859
3880
  trustBrowserCas?: boolean | undefined;
3860
3881
  trustedCertificates?: string[] | undefined;
3861
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3882
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3862
3883
  cipherList?: string | undefined;
3863
3884
  } | undefined;
3864
3885
  };
@@ -3900,7 +3921,7 @@ export declare const PLUGINS: {
3900
3921
  requireClientCerts?: boolean | undefined;
3901
3922
  trustBrowserCas?: boolean | undefined;
3902
3923
  trustedCertificates?: string[] | undefined;
3903
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3924
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3904
3925
  cipherList?: string | undefined;
3905
3926
  } | undefined;
3906
3927
  };
@@ -3936,7 +3957,7 @@ export declare const PLUGINS: {
3936
3957
  requireClientCerts?: boolean | undefined;
3937
3958
  trustBrowserCas?: boolean | undefined;
3938
3959
  trustedCertificates?: string[] | undefined;
3939
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
3960
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3940
3961
  cipherList?: string | undefined;
3941
3962
  } | undefined;
3942
3963
  };
@@ -3978,7 +3999,7 @@ export declare const PLUGINS: {
3978
3999
  requireClientCerts?: boolean | undefined;
3979
4000
  trustBrowserCas?: boolean | undefined;
3980
4001
  trustedCertificates?: string[] | undefined;
3981
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
4002
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
3982
4003
  cipherList?: string | undefined;
3983
4004
  } | undefined;
3984
4005
  };
@@ -4029,7 +4050,7 @@ export declare const PLUGINS: {
4029
4050
  requireClientCerts?: boolean | undefined;
4030
4051
  trustBrowserCas?: boolean | undefined;
4031
4052
  trustedCertificates?: string[] | undefined;
4032
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
4053
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
4033
4054
  cipherList?: string | undefined;
4034
4055
  } | undefined;
4035
4056
  };
@@ -4065,7 +4086,7 @@ export declare const PLUGINS: {
4065
4086
  requireClientCerts?: boolean | undefined;
4066
4087
  trustBrowserCas?: boolean | undefined;
4067
4088
  trustedCertificates?: string[] | undefined;
4068
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
4089
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
4069
4090
  cipherList?: string | undefined;
4070
4091
  } | undefined;
4071
4092
  };
@@ -4107,7 +4128,7 @@ export declare const PLUGINS: {
4107
4128
  requireClientCerts?: boolean | undefined;
4108
4129
  trustBrowserCas?: boolean | undefined;
4109
4130
  trustedCertificates?: string[] | undefined;
4110
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
4131
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
4111
4132
  cipherList?: string | undefined;
4112
4133
  } | undefined;
4113
4134
  };
@@ -4160,7 +4181,7 @@ export declare const PLUGINS: {
4160
4181
  requireClientCerts?: boolean | undefined;
4161
4182
  trustBrowserCas?: boolean | undefined;
4162
4183
  trustedCertificates?: string[] | undefined;
4163
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
4184
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
4164
4185
  cipherList?: string | undefined;
4165
4186
  } | undefined;
4166
4187
  };
@@ -4196,7 +4217,7 @@ export declare const PLUGINS: {
4196
4217
  requireClientCerts?: boolean | undefined;
4197
4218
  trustBrowserCas?: boolean | undefined;
4198
4219
  trustedCertificates?: string[] | undefined;
4199
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
4220
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
4200
4221
  cipherList?: string | undefined;
4201
4222
  } | undefined;
4202
4223
  };
@@ -4238,7 +4259,7 @@ export declare const PLUGINS: {
4238
4259
  requireClientCerts?: boolean | undefined;
4239
4260
  trustBrowserCas?: boolean | undefined;
4240
4261
  trustedCertificates?: string[] | undefined;
4241
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
4262
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
4242
4263
  cipherList?: string | undefined;
4243
4264
  } | undefined;
4244
4265
  };
@@ -4290,7 +4311,7 @@ export declare const PLUGINS: {
4290
4311
  requireClientCerts?: boolean | undefined;
4291
4312
  trustBrowserCas?: boolean | undefined;
4292
4313
  trustedCertificates?: string[] | undefined;
4293
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
4314
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
4294
4315
  cipherList?: string | undefined;
4295
4316
  } | undefined;
4296
4317
  };
@@ -4326,7 +4347,7 @@ export declare const PLUGINS: {
4326
4347
  requireClientCerts?: boolean | undefined;
4327
4348
  trustBrowserCas?: boolean | undefined;
4328
4349
  trustedCertificates?: string[] | undefined;
4329
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
4350
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
4330
4351
  cipherList?: string | undefined;
4331
4352
  } | undefined;
4332
4353
  };
@@ -4368,7 +4389,7 @@ export declare const PLUGINS: {
4368
4389
  requireClientCerts?: boolean | undefined;
4369
4390
  trustBrowserCas?: boolean | undefined;
4370
4391
  trustedCertificates?: string[] | undefined;
4371
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
4392
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
4372
4393
  cipherList?: string | undefined;
4373
4394
  } | undefined;
4374
4395
  };
@@ -4436,7 +4457,7 @@ export declare const PLUGINS: {
4436
4457
  requireClientCerts?: boolean | undefined;
4437
4458
  trustBrowserCas?: boolean | undefined;
4438
4459
  trustedCertificates?: string[] | undefined;
4439
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
4460
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
4440
4461
  cipherList?: string | undefined;
4441
4462
  } | undefined;
4442
4463
  };
@@ -4472,7 +4493,7 @@ export declare const PLUGINS: {
4472
4493
  requireClientCerts?: boolean | undefined;
4473
4494
  trustBrowserCas?: boolean | undefined;
4474
4495
  trustedCertificates?: string[] | undefined;
4475
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
4496
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
4476
4497
  cipherList?: string | undefined;
4477
4498
  } | undefined;
4478
4499
  };
@@ -4514,7 +4535,7 @@ export declare const PLUGINS: {
4514
4535
  requireClientCerts?: boolean | undefined;
4515
4536
  trustBrowserCas?: boolean | undefined;
4516
4537
  trustedCertificates?: string[] | undefined;
4517
- minVersion?: 0 | 2 | 1 | 3 | 4 | 5 | undefined;
4538
+ minVersion?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
4518
4539
  cipherList?: string | undefined;
4519
4540
  } | undefined;
4520
4541
  };
@@ -4545,6 +4566,8 @@ export declare const PLUGINS: {
4545
4566
  upstream: z.ZodOptional<z.ZodString>;
4546
4567
  cf: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
4547
4568
  liveReload: z.ZodOptional<z.ZodBoolean>;
4569
+ unsafeDevRegistryPath: z.ZodOptional<z.ZodString>;
4570
+ unsafeDevRegistryDurableObjectProxy: z.ZodDefault<z.ZodBoolean>;
4548
4571
  unsafeProxySharedSecret: z.ZodOptional<z.ZodString>;
4549
4572
  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
4573
  unsafeStickyBlobs: z.ZodOptional<z.ZodBoolean>;
@@ -4552,6 +4575,7 @@ export declare const PLUGINS: {
4552
4575
  logRequests: z.ZodDefault<z.ZodBoolean>;
4553
4576
  defaultPersistRoot: z.ZodOptional<z.ZodString>;
4554
4577
  }, "strip", z.ZodTypeAny, {
4578
+ unsafeDevRegistryDurableObjectProxy: boolean;
4555
4579
  logRequests: boolean;
4556
4580
  rootPath?: undefined;
4557
4581
  host?: string | undefined;
@@ -4568,6 +4592,7 @@ export declare const PLUGINS: {
4568
4592
  upstream?: string | undefined;
4569
4593
  cf?: string | boolean | Record<string, any> | undefined;
4570
4594
  liveReload?: boolean | undefined;
4595
+ unsafeDevRegistryPath?: string | undefined;
4571
4596
  unsafeProxySharedSecret?: string | undefined;
4572
4597
  unsafeModuleFallbackService?: ((request: Request_6, miniflare: Miniflare_3) => Awaitable_2<Response_6>) | undefined;
4573
4598
  unsafeStickyBlobs?: boolean | undefined;
@@ -4589,6 +4614,8 @@ export declare const PLUGINS: {
4589
4614
  upstream?: string | undefined;
4590
4615
  cf?: string | boolean | Record<string, any> | undefined;
4591
4616
  liveReload?: boolean | undefined;
4617
+ unsafeDevRegistryPath?: string | undefined;
4618
+ unsafeDevRegistryDurableObjectProxy?: boolean | undefined;
4592
4619
  unsafeProxySharedSecret?: string | undefined;
4593
4620
  unsafeModuleFallbackService?: ((request: Request_6, miniflare: Miniflare_3) => Awaitable_2<Response_6>) | undefined;
4594
4621
  unsafeStickyBlobs?: boolean | undefined;
@@ -4889,17 +4916,17 @@ export declare const PLUGINS: {
4889
4916
  invoke_user_worker_ahead_of_assets: z.ZodOptional<z.ZodBoolean>;
4890
4917
  has_user_worker: z.ZodOptional<z.ZodBoolean>;
4891
4918
  }, "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;
4919
+ account_id?: number | undefined;
4920
+ script_id?: number | undefined;
4921
+ debug?: boolean | undefined;
4922
+ invoke_user_worker_ahead_of_assets?: boolean | undefined;
4923
+ has_user_worker?: boolean | undefined;
4924
+ }, {
4925
+ account_id?: number | undefined;
4926
+ script_id?: number | undefined;
4927
+ debug?: boolean | undefined;
4928
+ invoke_user_worker_ahead_of_assets?: boolean | undefined;
4929
+ has_user_worker?: boolean | undefined;
4903
4930
  }>>;
4904
4931
  assetConfig: z.ZodOptional<z.ZodObject<Omit<{
4905
4932
  account_id: z.ZodOptional<z.ZodNumber>;
@@ -4916,45 +4943,45 @@ export declare const PLUGINS: {
4916
4943
  to: z.ZodString;
4917
4944
  lineNumber: z.ZodNumber;
4918
4945
  }, "strip", z.ZodTypeAny, {
4919
- status?: number;
4920
- to?: string;
4921
- lineNumber?: number;
4946
+ status: number;
4947
+ to: string;
4948
+ lineNumber: number;
4922
4949
  }, {
4923
- status?: number;
4924
- to?: string;
4925
- lineNumber?: number;
4950
+ status: number;
4951
+ to: string;
4952
+ lineNumber: number;
4926
4953
  }>>;
4927
4954
  rules: z.ZodRecord<z.ZodString, z.ZodObject<{
4928
4955
  status: z.ZodNumber;
4929
4956
  to: z.ZodString;
4930
4957
  }, "strip", z.ZodTypeAny, {
4931
- status?: number;
4932
- to?: string;
4958
+ status: number;
4959
+ to: string;
4933
4960
  }, {
4934
- status?: number;
4935
- to?: string;
4961
+ status: number;
4962
+ to: string;
4936
4963
  }>>;
4937
4964
  }, "strip", z.ZodTypeAny, {
4938
- version?: 1;
4939
- staticRules?: Record<string, {
4940
- status?: number;
4941
- to?: string;
4942
- lineNumber?: number;
4965
+ version: 1;
4966
+ staticRules: Record<string, {
4967
+ status: number;
4968
+ to: string;
4969
+ lineNumber: number;
4943
4970
  }>;
4944
- rules?: Record<string, {
4945
- status?: number;
4946
- to?: string;
4971
+ rules: Record<string, {
4972
+ status: number;
4973
+ to: string;
4947
4974
  }>;
4948
4975
  }, {
4949
- version?: 1;
4950
- staticRules?: Record<string, {
4951
- status?: number;
4952
- to?: string;
4953
- lineNumber?: number;
4976
+ version: 1;
4977
+ staticRules: Record<string, {
4978
+ status: number;
4979
+ to: string;
4980
+ lineNumber: number;
4954
4981
  }>;
4955
- rules?: Record<string, {
4956
- status?: number;
4957
- to?: string;
4982
+ rules: Record<string, {
4983
+ status: number;
4984
+ to: string;
4958
4985
  }>;
4959
4986
  }>>;
4960
4987
  headers: z.ZodOptional<z.ZodObject<{
@@ -4963,73 +4990,73 @@ export declare const PLUGINS: {
4963
4990
  set: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4964
4991
  unset: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4965
4992
  }, "strip", z.ZodTypeAny, {
4966
- set?: Record<string, string>;
4967
- unset?: string[];
4993
+ set?: Record<string, string> | undefined;
4994
+ unset?: string[] | undefined;
4968
4995
  }, {
4969
- set?: Record<string, string>;
4970
- unset?: string[];
4996
+ set?: Record<string, string> | undefined;
4997
+ unset?: string[] | undefined;
4971
4998
  }>>;
4972
4999
  }, "strip", z.ZodTypeAny, {
4973
- version?: 2;
4974
- rules?: Record<string, {
4975
- set?: Record<string, string>;
4976
- unset?: string[];
5000
+ version: 2;
5001
+ rules: Record<string, {
5002
+ set?: Record<string, string> | undefined;
5003
+ unset?: string[] | undefined;
4977
5004
  }>;
4978
5005
  }, {
4979
- version?: 2;
4980
- rules?: Record<string, {
4981
- set?: Record<string, string>;
4982
- unset?: string[];
5006
+ version: 2;
5007
+ rules: Record<string, {
5008
+ set?: Record<string, string> | undefined;
5009
+ unset?: string[] | undefined;
4983
5010
  }>;
4984
5011
  }>>;
4985
5012
  }, "compatibility_date" | "compatibility_flags">, "strip", z.ZodTypeAny, {
5013
+ debug?: boolean | undefined;
4986
5014
  headers?: {
4987
- version?: 2;
4988
- rules?: Record<string, {
4989
- set?: Record<string, string>;
4990
- unset?: string[];
5015
+ version: 2;
5016
+ rules: Record<string, {
5017
+ set?: Record<string, string> | undefined;
5018
+ unset?: string[] | undefined;
4991
5019
  }>;
4992
5020
  } | undefined;
4993
- debug?: boolean | undefined;
4994
5021
  account_id?: number | undefined;
4995
5022
  script_id?: number | undefined;
4996
5023
  html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
4997
5024
  not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
4998
5025
  redirects?: {
4999
- version?: 1;
5000
- staticRules?: Record<string, {
5001
- status?: number;
5002
- to?: string;
5003
- lineNumber?: number;
5026
+ version: 1;
5027
+ staticRules: Record<string, {
5028
+ status: number;
5029
+ to: string;
5030
+ lineNumber: number;
5004
5031
  }>;
5005
- rules?: Record<string, {
5006
- status?: number;
5007
- to?: string;
5032
+ rules: Record<string, {
5033
+ status: number;
5034
+ to: string;
5008
5035
  }>;
5009
5036
  } | undefined;
5010
5037
  }, {
5038
+ debug?: boolean | undefined;
5011
5039
  headers?: {
5012
- version?: 2;
5013
- rules?: Record<string, {
5014
- set?: Record<string, string>;
5015
- unset?: string[];
5040
+ version: 2;
5041
+ rules: Record<string, {
5042
+ set?: Record<string, string> | undefined;
5043
+ unset?: string[] | undefined;
5016
5044
  }>;
5017
5045
  } | undefined;
5018
- debug?: boolean | undefined;
5019
5046
  account_id?: number | undefined;
5020
5047
  script_id?: number | undefined;
5021
5048
  html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
5022
5049
  not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
5023
5050
  redirects?: {
5024
- version?: 1;
5025
- staticRules?: Record<string, {
5026
- status?: number;
5027
- to?: string;
5028
- lineNumber?: number;
5051
+ version: 1;
5052
+ staticRules: Record<string, {
5053
+ status: number;
5054
+ to: string;
5055
+ lineNumber: number;
5029
5056
  }>;
5030
- rules?: Record<string, {
5031
- status?: number;
5032
- to?: string;
5057
+ rules: Record<string, {
5058
+ status: number;
5059
+ to: string;
5033
5060
  }>;
5034
5061
  } | undefined;
5035
5062
  }>>;
@@ -5038,35 +5065,35 @@ export declare const PLUGINS: {
5038
5065
  workerName?: string | undefined;
5039
5066
  binding?: string | undefined;
5040
5067
  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;
5068
+ account_id?: number | undefined;
5069
+ script_id?: number | undefined;
5070
+ debug?: boolean | undefined;
5071
+ invoke_user_worker_ahead_of_assets?: boolean | undefined;
5072
+ has_user_worker?: boolean | undefined;
5046
5073
  } | undefined;
5047
5074
  assetConfig?: {
5075
+ debug?: boolean | undefined;
5048
5076
  headers?: {
5049
- version?: 2;
5050
- rules?: Record<string, {
5051
- set?: Record<string, string>;
5052
- unset?: string[];
5077
+ version: 2;
5078
+ rules: Record<string, {
5079
+ set?: Record<string, string> | undefined;
5080
+ unset?: string[] | undefined;
5053
5081
  }>;
5054
5082
  } | undefined;
5055
- debug?: boolean | undefined;
5056
5083
  account_id?: number | undefined;
5057
5084
  script_id?: number | undefined;
5058
5085
  html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
5059
5086
  not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
5060
5087
  redirects?: {
5061
- version?: 1;
5062
- staticRules?: Record<string, {
5063
- status?: number;
5064
- to?: string;
5065
- lineNumber?: number;
5088
+ version: 1;
5089
+ staticRules: Record<string, {
5090
+ status: number;
5091
+ to: string;
5092
+ lineNumber: number;
5066
5093
  }>;
5067
- rules?: Record<string, {
5068
- status?: number;
5069
- to?: string;
5094
+ rules: Record<string, {
5095
+ status: number;
5096
+ to: string;
5070
5097
  }>;
5071
5098
  } | undefined;
5072
5099
  } | undefined;
@@ -5075,35 +5102,35 @@ export declare const PLUGINS: {
5075
5102
  workerName?: string | undefined;
5076
5103
  binding?: string | undefined;
5077
5104
  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;
5105
+ account_id?: number | undefined;
5106
+ script_id?: number | undefined;
5107
+ debug?: boolean | undefined;
5108
+ invoke_user_worker_ahead_of_assets?: boolean | undefined;
5109
+ has_user_worker?: boolean | undefined;
5083
5110
  } | undefined;
5084
5111
  assetConfig?: {
5112
+ debug?: boolean | undefined;
5085
5113
  headers?: {
5086
- version?: 2;
5087
- rules?: Record<string, {
5088
- set?: Record<string, string>;
5089
- unset?: string[];
5114
+ version: 2;
5115
+ rules: Record<string, {
5116
+ set?: Record<string, string> | undefined;
5117
+ unset?: string[] | undefined;
5090
5118
  }>;
5091
5119
  } | undefined;
5092
- debug?: boolean | undefined;
5093
5120
  account_id?: number | undefined;
5094
5121
  script_id?: number | undefined;
5095
5122
  html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
5096
5123
  not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
5097
5124
  redirects?: {
5098
- version?: 1;
5099
- staticRules?: Record<string, {
5100
- status?: number;
5101
- to?: string;
5102
- lineNumber?: number;
5125
+ version: 1;
5126
+ staticRules: Record<string, {
5127
+ status: number;
5128
+ to: string;
5129
+ lineNumber: number;
5103
5130
  }>;
5104
- rules?: Record<string, {
5105
- status?: number;
5106
- to?: string;
5131
+ rules: Record<string, {
5132
+ status: number;
5133
+ to: string;
5107
5134
  }>;
5108
5135
  } | undefined;
5109
5136
  } | undefined;
@@ -5116,35 +5143,35 @@ export declare const PLUGINS: {
5116
5143
  workerName?: string | undefined;
5117
5144
  binding?: string | undefined;
5118
5145
  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;
5146
+ account_id?: number | undefined;
5147
+ script_id?: number | undefined;
5148
+ debug?: boolean | undefined;
5149
+ invoke_user_worker_ahead_of_assets?: boolean | undefined;
5150
+ has_user_worker?: boolean | undefined;
5124
5151
  } | undefined;
5125
5152
  assetConfig?: {
5153
+ debug?: boolean | undefined;
5126
5154
  headers?: {
5127
- version?: 2;
5128
- rules?: Record<string, {
5129
- set?: Record<string, string>;
5130
- unset?: string[];
5155
+ version: 2;
5156
+ rules: Record<string, {
5157
+ set?: Record<string, string> | undefined;
5158
+ unset?: string[] | undefined;
5131
5159
  }>;
5132
5160
  } | undefined;
5133
- debug?: boolean | undefined;
5134
5161
  account_id?: number | undefined;
5135
5162
  script_id?: number | undefined;
5136
5163
  html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
5137
5164
  not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
5138
5165
  redirects?: {
5139
- version?: 1;
5140
- staticRules?: Record<string, {
5141
- status?: number;
5142
- to?: string;
5143
- lineNumber?: number;
5166
+ version: 1;
5167
+ staticRules: Record<string, {
5168
+ status: number;
5169
+ to: string;
5170
+ lineNumber: number;
5144
5171
  }>;
5145
- rules?: Record<string, {
5146
- status?: number;
5147
- to?: string;
5172
+ rules: Record<string, {
5173
+ status: number;
5174
+ to: string;
5148
5175
  }>;
5149
5176
  } | undefined;
5150
5177
  } | undefined;
@@ -5157,35 +5184,35 @@ export declare const PLUGINS: {
5157
5184
  workerName?: string | undefined;
5158
5185
  binding?: string | undefined;
5159
5186
  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;
5187
+ account_id?: number | undefined;
5188
+ script_id?: number | undefined;
5189
+ debug?: boolean | undefined;
5190
+ invoke_user_worker_ahead_of_assets?: boolean | undefined;
5191
+ has_user_worker?: boolean | undefined;
5165
5192
  } | undefined;
5166
5193
  assetConfig?: {
5194
+ debug?: boolean | undefined;
5167
5195
  headers?: {
5168
- version?: 2;
5169
- rules?: Record<string, {
5170
- set?: Record<string, string>;
5171
- unset?: string[];
5196
+ version: 2;
5197
+ rules: Record<string, {
5198
+ set?: Record<string, string> | undefined;
5199
+ unset?: string[] | undefined;
5172
5200
  }>;
5173
5201
  } | undefined;
5174
- debug?: boolean | undefined;
5175
5202
  account_id?: number | undefined;
5176
5203
  script_id?: number | undefined;
5177
5204
  html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | undefined;
5178
5205
  not_found_handling?: "none" | "single-page-application" | "404-page" | undefined;
5179
5206
  redirects?: {
5180
- version?: 1;
5181
- staticRules?: Record<string, {
5182
- status?: number;
5183
- to?: string;
5184
- lineNumber?: number;
5207
+ version: 1;
5208
+ staticRules: Record<string, {
5209
+ status: number;
5210
+ to: string;
5211
+ lineNumber: number;
5185
5212
  }>;
5186
- rules?: Record<string, {
5187
- status?: number;
5188
- to?: string;
5213
+ rules: Record<string, {
5214
+ status: number;
5215
+ to: string;
5189
5216
  }>;
5190
5217
  } | undefined;
5191
5218
  } | undefined;
@@ -5425,23 +5452,31 @@ export declare const PLUGINS: {
5425
5452
  "dispatch-namespace": Plugin_2<z.ZodObject<{
5426
5453
  dispatchNamespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
5427
5454
  namespace: z.ZodString;
5428
- mixedModeConnectionString: z.ZodOptional<z.ZodType<MixedModeConnectionString_3, z.ZodTypeDef, MixedModeConnectionString_3>>;
5455
+ mixedModeConnectionString: z.ZodType<MixedModeConnectionString_3, z.ZodTypeDef, MixedModeConnectionString_3>;
5429
5456
  }, "strip", z.ZodTypeAny, {
5430
5457
  namespace: string;
5431
- mixedModeConnectionString?: MixedModeConnectionString_3 | undefined;
5458
+ mixedModeConnectionString: URL & {
5459
+ __brand: "MixedModeConnectionString";
5460
+ };
5432
5461
  }, {
5433
5462
  namespace: string;
5434
- mixedModeConnectionString?: MixedModeConnectionString_3 | undefined;
5463
+ mixedModeConnectionString: URL & {
5464
+ __brand: "MixedModeConnectionString";
5465
+ };
5435
5466
  }>>>;
5436
5467
  }, "strip", z.ZodTypeAny, {
5437
5468
  dispatchNamespaces?: Record<string, {
5438
5469
  namespace: string;
5439
- mixedModeConnectionString?: MixedModeConnectionString_3 | undefined;
5470
+ mixedModeConnectionString: URL & {
5471
+ __brand: "MixedModeConnectionString";
5472
+ };
5440
5473
  }> | undefined;
5441
5474
  }, {
5442
5475
  dispatchNamespaces?: Record<string, {
5443
5476
  namespace: string;
5444
- mixedModeConnectionString?: MixedModeConnectionString_3 | undefined;
5477
+ mixedModeConnectionString: URL & {
5478
+ __brand: "MixedModeConnectionString";
5479
+ };
5445
5480
  }> | undefined;
5446
5481
  }>>;
5447
5482
  images: Plugin_2<z.ZodObject<{
@@ -5699,13 +5734,13 @@ export declare const QueueIncomingMessageSchema: z.ZodObject<{
5699
5734
  timestamp: z.ZodOptional<z.ZodNumber>;
5700
5735
  }, "strip", z.ZodTypeAny, {
5701
5736
  body: Buffer<ArrayBuffer>;
5702
- contentType: "json" | "bytes" | "v8" | "text";
5737
+ contentType: "text" | "json" | "bytes" | "v8";
5703
5738
  delaySecs?: number | undefined;
5704
5739
  id?: string | undefined;
5705
5740
  timestamp?: number | undefined;
5706
5741
  }, {
5707
5742
  body: string;
5708
- contentType?: "json" | "bytes" | "v8" | "text" | undefined;
5743
+ contentType?: "text" | "json" | "bytes" | "v8" | undefined;
5709
5744
  delaySecs?: number | undefined;
5710
5745
  id?: string | undefined;
5711
5746
  timestamp?: number | undefined;
@@ -5779,13 +5814,13 @@ export declare const QueuesBatchRequestSchema: z.ZodObject<{
5779
5814
  timestamp: z.ZodOptional<z.ZodNumber>;
5780
5815
  }, "strip", z.ZodTypeAny, {
5781
5816
  body: Buffer<ArrayBuffer>;
5782
- contentType: "json" | "bytes" | "v8" | "text";
5817
+ contentType: "text" | "json" | "bytes" | "v8";
5783
5818
  delaySecs?: number | undefined;
5784
5819
  id?: string | undefined;
5785
5820
  timestamp?: number | undefined;
5786
5821
  }, {
5787
5822
  body: string;
5788
- contentType?: "json" | "bytes" | "v8" | "text" | undefined;
5823
+ contentType?: "text" | "json" | "bytes" | "v8" | undefined;
5789
5824
  delaySecs?: number | undefined;
5790
5825
  id?: string | undefined;
5791
5826
  timestamp?: number | undefined;
@@ -5793,7 +5828,7 @@ export declare const QueuesBatchRequestSchema: z.ZodObject<{
5793
5828
  }, "strip", z.ZodTypeAny, {
5794
5829
  messages: {
5795
5830
  body: Buffer<ArrayBuffer>;
5796
- contentType: "json" | "bytes" | "v8" | "text";
5831
+ contentType: "text" | "json" | "bytes" | "v8";
5797
5832
  delaySecs?: number | undefined;
5798
5833
  id?: string | undefined;
5799
5834
  timestamp?: number | undefined;
@@ -5801,7 +5836,7 @@ export declare const QueuesBatchRequestSchema: z.ZodObject<{
5801
5836
  }, {
5802
5837
  messages: {
5803
5838
  body: string;
5804
- contentType?: "json" | "bytes" | "v8" | "text" | undefined;
5839
+ contentType?: "text" | "json" | "bytes" | "v8" | undefined;
5805
5840
  delaySecs?: number | undefined;
5806
5841
  id?: string | undefined;
5807
5842
  timestamp?: number | undefined;