devflare 1.0.0-next.42 → 1.0.0-next.43
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/_chunks/{account-BtWcv3X9.js → account-BJmkb7cc.js} +1 -1
- package/dist/_chunks/{build-D1l6a5Il.js → build-BkgjOmfq.js} +1 -1
- package/dist/_chunks/{build-artifacts-BUaq16e4.js → build-artifacts-HPThCdGT.js} +4 -4
- package/dist/_chunks/{cli-CgFqrDZd.js → cli-5ME5-Ibv.js} +12 -12
- package/dist/_chunks/{command-utils-BsfkmTqh.js → command-utils-CY3-veEo.js} +1 -1
- package/dist/_chunks/{compiler-uoyAQ8zW.js → compiler-By9RWzea.js} +40 -15
- package/dist/_chunks/{config-D5u-bEkn.js → config-bUY5vBYw.js} +3 -3
- package/dist/_chunks/{config-path-DCPto4XB.js → config-path-HP5NIFbF.js} +1 -1
- package/dist/_chunks/{deploy-DIDoW5u1.js → deploy-BrVu07KN.js} +6 -6
- package/dist/_chunks/{dev-BTSSETUX.js → dev-BbvjuXRA.js} +10 -8
- package/dist/_chunks/{doctor-C0g8X36G.js → doctor-7upvzze6.js} +2 -2
- package/dist/_chunks/{family-DXC5SdFK.js → family-C9iQ6WtW.js} +1 -1
- package/dist/_chunks/{loader-DLXO60RO.js → loader-CQyvmFM2.js} +4 -4
- package/dist/_chunks/{local-secrets-DMmEOygL.js → local-secrets-Bmm87slY.js} +1 -1
- package/dist/_chunks/{local-workflow-entrypoints-Wip3o1u8.js → local-workflow-entrypoints-ZFHiVbnX.js} +1 -1
- package/dist/_chunks/{login-BmnDzDlH.js → login-2V8AfKeG.js} +1 -1
- package/dist/_chunks/{preview-BhqDmq8I.js → preview-C3Cdr8an.js} +9 -3
- package/dist/_chunks/{preview-resources-DdXj8LMM.js → preview-resources-DMieqto4.js} +5 -4
- package/dist/_chunks/{previews-Dlr13x5M.js → previews-BXPrXEU9.js} +7 -7
- package/dist/_chunks/{productions-D3AnOHac.js → productions-fLG19eus.js} +3 -3
- package/dist/_chunks/{routes-BWi7h2xb.js → routes-DKc39Vlu.js} +4 -4
- package/dist/_chunks/{schema-normalization-DWVleVxo.js → schema-normalization-CCPigJ7K.js} +104 -12
- package/dist/_chunks/{secrets-70eN0Q6C.js → secrets-D1RcG79F.js} +1 -1
- package/dist/_chunks/{types-BgA5Hb4B.js → types-BJjtDDzl.js} +3 -3
- package/dist/_chunks/{vite-BszZvrKL.js → vite-CrBFLqH3.js} +5 -5
- package/dist/_chunks/{worker-CS1jgNFE.js → worker-DO4hIcJA.js} +4 -4
- package/dist/bridge/miniflare.d.ts.map +1 -1
- package/dist/browser.d.ts +466 -36
- package/dist/browser.d.ts.map +1 -1
- package/dist/cli/commands/type-generation/generator.d.ts +3 -3
- package/dist/cli/commands/type-generation/generator.d.ts.map +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/config/compiler/bindings.d.ts.map +1 -1
- package/dist/config/compiler/do-workers.d.ts.map +1 -1
- package/dist/config/compiler/types.d.ts +5 -0
- package/dist/config/compiler/types.d.ts.map +1 -1
- package/dist/config/deploy-resources.d.ts.map +1 -1
- package/dist/config/index.d.ts +1 -1
- package/dist/config/index.d.ts.map +1 -1
- package/dist/config/preview-resources.d.ts +1 -1
- package/dist/config/preview-resources.d.ts.map +1 -1
- package/dist/config/preview.d.ts.map +1 -1
- package/dist/config/schema-bindings.d.ts +326 -14
- package/dist/config/schema-bindings.d.ts.map +1 -1
- package/dist/config/schema-env.d.ts +328 -24
- package/dist/config/schema-env.d.ts.map +1 -1
- package/dist/config/schema-normalization.d.ts +39 -1
- package/dist/config/schema-normalization.d.ts.map +1 -1
- package/dist/config/schema-types-bindings-resources.d.ts +220 -3
- package/dist/config/schema-types-bindings-resources.d.ts.map +1 -1
- package/dist/config/schema-types-bindings.d.ts +2 -2
- package/dist/config/schema-types-bindings.d.ts.map +1 -1
- package/dist/config/schema.d.ts +587 -47
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/config-entry.js +1 -1
- package/dist/dev-server/miniflare-bindings.d.ts.map +1 -1
- package/dist/dev-server/miniflare-worker-config.d.ts.map +1 -1
- package/dist/index.js +4 -4
- package/dist/sveltekit/index.js +3 -3
- package/dist/test/index.js +7 -7
- package/dist/test/resolve-service-bindings.d.ts.map +1 -1
- package/dist/test/simple-context-mfconfig.d.ts.map +1 -1
- package/dist/vite/index.js +1 -1
- package/package.json +1 -1
|
@@ -65,16 +65,43 @@ export declare const queueConsumerSchema: z.ZodObject<{
|
|
|
65
65
|
maxConcurrency?: number | undefined;
|
|
66
66
|
retryDelay?: number | undefined;
|
|
67
67
|
}>;
|
|
68
|
+
/**
|
|
69
|
+
* Queue producer binding schema.
|
|
70
|
+
* Accepts the queue-name string shorthand or an object form exposing `remote`.
|
|
71
|
+
*/
|
|
72
|
+
export declare const queueProducerSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
73
|
+
/** Queue name this producer writes to */
|
|
74
|
+
queue: z.ZodString;
|
|
75
|
+
/** Ask Wrangler local development to connect this producer to the remote queue */
|
|
76
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
77
|
+
}, "strict", z.ZodTypeAny, {
|
|
78
|
+
queue: string;
|
|
79
|
+
remote?: boolean | undefined;
|
|
80
|
+
}, {
|
|
81
|
+
queue: string;
|
|
82
|
+
remote?: boolean | undefined;
|
|
83
|
+
}>]>;
|
|
68
84
|
/**
|
|
69
85
|
* Queues configuration for producers and consumers.
|
|
70
86
|
*/
|
|
71
87
|
export declare const queuesConfigSchema: z.ZodObject<{
|
|
72
88
|
/**
|
|
73
89
|
* Queue producer bindings.
|
|
74
|
-
* Maps binding name to queue name
|
|
90
|
+
* Maps binding name to queue name or an object form exposing `remote`.
|
|
75
91
|
* @example { TASK_QUEUE: 'task-queue' }
|
|
76
92
|
*/
|
|
77
|
-
producers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString
|
|
93
|
+
producers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
94
|
+
/** Queue name this producer writes to */
|
|
95
|
+
queue: z.ZodString;
|
|
96
|
+
/** Ask Wrangler local development to connect this producer to the remote queue */
|
|
97
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
98
|
+
}, "strict", z.ZodTypeAny, {
|
|
99
|
+
queue: string;
|
|
100
|
+
remote?: boolean | undefined;
|
|
101
|
+
}, {
|
|
102
|
+
queue: string;
|
|
103
|
+
remote?: boolean | undefined;
|
|
104
|
+
}>]>>>;
|
|
78
105
|
/**
|
|
79
106
|
* Queue consumer configurations.
|
|
80
107
|
* Array of consumer configs for processing queue messages.
|
|
@@ -121,7 +148,10 @@ export declare const queuesConfigSchema: z.ZodObject<{
|
|
|
121
148
|
retryDelay?: number | undefined;
|
|
122
149
|
}>, "many">>;
|
|
123
150
|
}, "strip", z.ZodTypeAny, {
|
|
124
|
-
producers?: Record<string, string
|
|
151
|
+
producers?: Record<string, string | {
|
|
152
|
+
queue: string;
|
|
153
|
+
remote?: boolean | undefined;
|
|
154
|
+
}> | undefined;
|
|
125
155
|
consumers?: {
|
|
126
156
|
queue: string;
|
|
127
157
|
maxBatchSize?: number | undefined;
|
|
@@ -132,7 +162,10 @@ export declare const queuesConfigSchema: z.ZodObject<{
|
|
|
132
162
|
retryDelay?: number | undefined;
|
|
133
163
|
}[] | undefined;
|
|
134
164
|
}, {
|
|
135
|
-
producers?: Record<string, string
|
|
165
|
+
producers?: Record<string, string | {
|
|
166
|
+
queue: string;
|
|
167
|
+
remote?: boolean | undefined;
|
|
168
|
+
}> | undefined;
|
|
136
169
|
consumers?: {
|
|
137
170
|
queue: string;
|
|
138
171
|
maxBatchSize?: number | undefined;
|
|
@@ -216,6 +249,8 @@ export declare const serviceBindingSchema: z.ZodType<{
|
|
|
216
249
|
environment?: string;
|
|
217
250
|
/** Optional entrypoint class name for named exports */
|
|
218
251
|
entrypoint?: string;
|
|
252
|
+
/** Ask Wrangler local development to connect this binding to the remote service */
|
|
253
|
+
remote?: boolean;
|
|
219
254
|
/** @internal Reference marker for ref() bindings */
|
|
220
255
|
__ref?: unknown;
|
|
221
256
|
}, z.ZodTypeDef, {
|
|
@@ -225,6 +260,8 @@ export declare const serviceBindingSchema: z.ZodType<{
|
|
|
225
260
|
environment?: string;
|
|
226
261
|
/** Optional entrypoint class name for named exports */
|
|
227
262
|
entrypoint?: string;
|
|
263
|
+
/** Ask Wrangler local development to connect this binding to the remote service */
|
|
264
|
+
remote?: boolean;
|
|
228
265
|
/** @internal Reference marker for ref() bindings */
|
|
229
266
|
__ref?: unknown;
|
|
230
267
|
}>;
|
|
@@ -448,67 +485,208 @@ export declare const sendEmailBindingSchema: z.ZodEffects<z.ZodObject<{
|
|
|
448
485
|
allowedSenderAddresses?: string[] | undefined;
|
|
449
486
|
}>;
|
|
450
487
|
export declare const d1BindingByIdSchema: z.ZodObject<{
|
|
488
|
+
/** D1 database ID used during `wrangler dev`; compiles to `preview_database_id` */
|
|
489
|
+
previewDatabaseId: z.ZodOptional<z.ZodString>;
|
|
490
|
+
/** Name of the migrations table; compiles to `migrations_table` */
|
|
491
|
+
migrationsTable: z.ZodOptional<z.ZodString>;
|
|
492
|
+
/** Path to the migrations directory; compiles to `migrations_dir` */
|
|
493
|
+
migrationsDir: z.ZodOptional<z.ZodString>;
|
|
494
|
+
/** Ask Wrangler local development to connect this binding to the remote database */
|
|
495
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
451
496
|
/** Explicit D1 database ID */
|
|
452
497
|
id: z.ZodString;
|
|
453
498
|
}, "strict", z.ZodTypeAny, {
|
|
499
|
+
previewDatabaseId?: string | undefined;
|
|
500
|
+
migrationsTable?: string | undefined;
|
|
501
|
+
migrationsDir?: string | undefined;
|
|
502
|
+
remote?: boolean | undefined;
|
|
454
503
|
id: string;
|
|
455
504
|
}, {
|
|
505
|
+
previewDatabaseId?: string | undefined;
|
|
506
|
+
migrationsTable?: string | undefined;
|
|
507
|
+
migrationsDir?: string | undefined;
|
|
508
|
+
remote?: boolean | undefined;
|
|
456
509
|
id: string;
|
|
457
510
|
}>;
|
|
458
511
|
export declare const d1BindingByNameSchema: z.ZodObject<{
|
|
512
|
+
/** D1 database ID used during `wrangler dev`; compiles to `preview_database_id` */
|
|
513
|
+
previewDatabaseId: z.ZodOptional<z.ZodString>;
|
|
514
|
+
/** Name of the migrations table; compiles to `migrations_table` */
|
|
515
|
+
migrationsTable: z.ZodOptional<z.ZodString>;
|
|
516
|
+
/** Path to the migrations directory; compiles to `migrations_dir` */
|
|
517
|
+
migrationsDir: z.ZodOptional<z.ZodString>;
|
|
518
|
+
/** Ask Wrangler local development to connect this binding to the remote database */
|
|
519
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
459
520
|
/** Stable D1 database name to resolve to an ID at config/build/deploy time */
|
|
460
521
|
name: z.ZodString;
|
|
461
522
|
}, "strict", z.ZodTypeAny, {
|
|
523
|
+
previewDatabaseId?: string | undefined;
|
|
524
|
+
migrationsTable?: string | undefined;
|
|
525
|
+
migrationsDir?: string | undefined;
|
|
526
|
+
remote?: boolean | undefined;
|
|
462
527
|
name: string;
|
|
463
528
|
}, {
|
|
529
|
+
previewDatabaseId?: string | undefined;
|
|
530
|
+
migrationsTable?: string | undefined;
|
|
531
|
+
migrationsDir?: string | undefined;
|
|
532
|
+
remote?: boolean | undefined;
|
|
464
533
|
name: string;
|
|
465
534
|
}>;
|
|
466
535
|
export declare const d1BindingSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
536
|
+
/** D1 database ID used during `wrangler dev`; compiles to `preview_database_id` */
|
|
537
|
+
previewDatabaseId: z.ZodOptional<z.ZodString>;
|
|
538
|
+
/** Name of the migrations table; compiles to `migrations_table` */
|
|
539
|
+
migrationsTable: z.ZodOptional<z.ZodString>;
|
|
540
|
+
/** Path to the migrations directory; compiles to `migrations_dir` */
|
|
541
|
+
migrationsDir: z.ZodOptional<z.ZodString>;
|
|
542
|
+
/** Ask Wrangler local development to connect this binding to the remote database */
|
|
543
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
467
544
|
/** Explicit D1 database ID */
|
|
468
545
|
id: z.ZodString;
|
|
469
546
|
}, "strict", z.ZodTypeAny, {
|
|
547
|
+
previewDatabaseId?: string | undefined;
|
|
548
|
+
migrationsTable?: string | undefined;
|
|
549
|
+
migrationsDir?: string | undefined;
|
|
550
|
+
remote?: boolean | undefined;
|
|
470
551
|
id: string;
|
|
471
552
|
}, {
|
|
553
|
+
previewDatabaseId?: string | undefined;
|
|
554
|
+
migrationsTable?: string | undefined;
|
|
555
|
+
migrationsDir?: string | undefined;
|
|
556
|
+
remote?: boolean | undefined;
|
|
472
557
|
id: string;
|
|
473
558
|
}>, z.ZodObject<{
|
|
559
|
+
/** D1 database ID used during `wrangler dev`; compiles to `preview_database_id` */
|
|
560
|
+
previewDatabaseId: z.ZodOptional<z.ZodString>;
|
|
561
|
+
/** Name of the migrations table; compiles to `migrations_table` */
|
|
562
|
+
migrationsTable: z.ZodOptional<z.ZodString>;
|
|
563
|
+
/** Path to the migrations directory; compiles to `migrations_dir` */
|
|
564
|
+
migrationsDir: z.ZodOptional<z.ZodString>;
|
|
565
|
+
/** Ask Wrangler local development to connect this binding to the remote database */
|
|
566
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
474
567
|
/** Stable D1 database name to resolve to an ID at config/build/deploy time */
|
|
475
568
|
name: z.ZodString;
|
|
476
569
|
}, "strict", z.ZodTypeAny, {
|
|
570
|
+
previewDatabaseId?: string | undefined;
|
|
571
|
+
migrationsTable?: string | undefined;
|
|
572
|
+
migrationsDir?: string | undefined;
|
|
573
|
+
remote?: boolean | undefined;
|
|
477
574
|
name: string;
|
|
478
575
|
}, {
|
|
576
|
+
previewDatabaseId?: string | undefined;
|
|
577
|
+
migrationsTable?: string | undefined;
|
|
578
|
+
migrationsDir?: string | undefined;
|
|
579
|
+
remote?: boolean | undefined;
|
|
479
580
|
name: string;
|
|
480
581
|
}>]>;
|
|
481
582
|
export declare const kvBindingByIdSchema: z.ZodObject<{
|
|
583
|
+
/** KV namespace ID used during `wrangler dev`; compiles to `preview_id` */
|
|
584
|
+
previewId: z.ZodOptional<z.ZodString>;
|
|
585
|
+
/** Ask Wrangler local development to connect this binding to the remote namespace */
|
|
586
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
482
587
|
/** Explicit KV namespace ID */
|
|
483
588
|
id: z.ZodString;
|
|
484
589
|
}, "strict", z.ZodTypeAny, {
|
|
590
|
+
previewId?: string | undefined;
|
|
591
|
+
remote?: boolean | undefined;
|
|
485
592
|
id: string;
|
|
486
593
|
}, {
|
|
594
|
+
previewId?: string | undefined;
|
|
595
|
+
remote?: boolean | undefined;
|
|
487
596
|
id: string;
|
|
488
597
|
}>;
|
|
489
598
|
export declare const kvBindingByNameSchema: z.ZodObject<{
|
|
599
|
+
/** KV namespace ID used during `wrangler dev`; compiles to `preview_id` */
|
|
600
|
+
previewId: z.ZodOptional<z.ZodString>;
|
|
601
|
+
/** Ask Wrangler local development to connect this binding to the remote namespace */
|
|
602
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
490
603
|
/** Stable KV namespace name to resolve to an ID at config/build/deploy time */
|
|
491
604
|
name: z.ZodString;
|
|
492
605
|
}, "strict", z.ZodTypeAny, {
|
|
606
|
+
previewId?: string | undefined;
|
|
607
|
+
remote?: boolean | undefined;
|
|
493
608
|
name: string;
|
|
494
609
|
}, {
|
|
610
|
+
previewId?: string | undefined;
|
|
611
|
+
remote?: boolean | undefined;
|
|
495
612
|
name: string;
|
|
496
613
|
}>;
|
|
497
614
|
export declare const kvBindingSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
615
|
+
/** KV namespace ID used during `wrangler dev`; compiles to `preview_id` */
|
|
616
|
+
previewId: z.ZodOptional<z.ZodString>;
|
|
617
|
+
/** Ask Wrangler local development to connect this binding to the remote namespace */
|
|
618
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
498
619
|
/** Explicit KV namespace ID */
|
|
499
620
|
id: z.ZodString;
|
|
500
621
|
}, "strict", z.ZodTypeAny, {
|
|
622
|
+
previewId?: string | undefined;
|
|
623
|
+
remote?: boolean | undefined;
|
|
501
624
|
id: string;
|
|
502
625
|
}, {
|
|
626
|
+
previewId?: string | undefined;
|
|
627
|
+
remote?: boolean | undefined;
|
|
503
628
|
id: string;
|
|
504
629
|
}>, z.ZodObject<{
|
|
630
|
+
/** KV namespace ID used during `wrangler dev`; compiles to `preview_id` */
|
|
631
|
+
previewId: z.ZodOptional<z.ZodString>;
|
|
632
|
+
/** Ask Wrangler local development to connect this binding to the remote namespace */
|
|
633
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
505
634
|
/** Stable KV namespace name to resolve to an ID at config/build/deploy time */
|
|
506
635
|
name: z.ZodString;
|
|
507
636
|
}, "strict", z.ZodTypeAny, {
|
|
637
|
+
previewId?: string | undefined;
|
|
638
|
+
remote?: boolean | undefined;
|
|
508
639
|
name: string;
|
|
509
640
|
}, {
|
|
641
|
+
previewId?: string | undefined;
|
|
642
|
+
remote?: boolean | undefined;
|
|
510
643
|
name: string;
|
|
511
644
|
}>]>;
|
|
645
|
+
/**
|
|
646
|
+
* R2 bucket binding schema.
|
|
647
|
+
* Accepts the bucket-name string shorthand or an object form exposing
|
|
648
|
+
* `remote`, `previewBucketName`, and `jurisdiction`.
|
|
649
|
+
*/
|
|
650
|
+
export declare const r2BindingObjectSchema: z.ZodObject<{
|
|
651
|
+
/** R2 bucket name at the edge */
|
|
652
|
+
bucketName: z.ZodString;
|
|
653
|
+
/** R2 bucket name used during `wrangler dev`; compiles to `preview_bucket_name` */
|
|
654
|
+
previewBucketName: z.ZodOptional<z.ZodString>;
|
|
655
|
+
/** Jurisdiction the bucket exists in; compiles to `jurisdiction` */
|
|
656
|
+
jurisdiction: z.ZodOptional<z.ZodString>;
|
|
657
|
+
/** Ask Wrangler local development to connect this binding to the remote bucket */
|
|
658
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
659
|
+
}, "strict", z.ZodTypeAny, {
|
|
660
|
+
bucketName: string;
|
|
661
|
+
previewBucketName?: string | undefined;
|
|
662
|
+
jurisdiction?: string | undefined;
|
|
663
|
+
remote?: boolean | undefined;
|
|
664
|
+
}, {
|
|
665
|
+
bucketName: string;
|
|
666
|
+
previewBucketName?: string | undefined;
|
|
667
|
+
jurisdiction?: string | undefined;
|
|
668
|
+
remote?: boolean | undefined;
|
|
669
|
+
}>;
|
|
670
|
+
export declare const r2BindingSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
671
|
+
/** R2 bucket name at the edge */
|
|
672
|
+
bucketName: z.ZodString;
|
|
673
|
+
/** R2 bucket name used during `wrangler dev`; compiles to `preview_bucket_name` */
|
|
674
|
+
previewBucketName: z.ZodOptional<z.ZodString>;
|
|
675
|
+
/** Jurisdiction the bucket exists in; compiles to `jurisdiction` */
|
|
676
|
+
jurisdiction: z.ZodOptional<z.ZodString>;
|
|
677
|
+
/** Ask Wrangler local development to connect this binding to the remote bucket */
|
|
678
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
679
|
+
}, "strict", z.ZodTypeAny, {
|
|
680
|
+
bucketName: string;
|
|
681
|
+
previewBucketName?: string | undefined;
|
|
682
|
+
jurisdiction?: string | undefined;
|
|
683
|
+
remote?: boolean | undefined;
|
|
684
|
+
}, {
|
|
685
|
+
bucketName: string;
|
|
686
|
+
previewBucketName?: string | undefined;
|
|
687
|
+
jurisdiction?: string | undefined;
|
|
688
|
+
remote?: boolean | undefined;
|
|
689
|
+
}>]>;
|
|
512
690
|
export declare const mtlsCertificateBindingByIdSchema: z.ZodObject<{
|
|
513
691
|
/** Uploaded mTLS certificate UUID from `wrangler mtls-certificate upload` */
|
|
514
692
|
certificateId: z.ZodString;
|
|
@@ -685,18 +863,34 @@ export declare const bindingsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
685
863
|
* Maps binding name to either a stable KV namespace name or an explicit resolver object.
|
|
686
864
|
*/
|
|
687
865
|
kv: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
866
|
+
/** KV namespace ID used during `wrangler dev`; compiles to `preview_id` */
|
|
867
|
+
previewId: z.ZodOptional<z.ZodString>;
|
|
868
|
+
/** Ask Wrangler local development to connect this binding to the remote namespace */
|
|
869
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
688
870
|
/** Explicit KV namespace ID */
|
|
689
871
|
id: z.ZodString;
|
|
690
872
|
}, "strict", z.ZodTypeAny, {
|
|
873
|
+
previewId?: string | undefined;
|
|
874
|
+
remote?: boolean | undefined;
|
|
691
875
|
id: string;
|
|
692
876
|
}, {
|
|
877
|
+
previewId?: string | undefined;
|
|
878
|
+
remote?: boolean | undefined;
|
|
693
879
|
id: string;
|
|
694
880
|
}>, z.ZodObject<{
|
|
881
|
+
/** KV namespace ID used during `wrangler dev`; compiles to `preview_id` */
|
|
882
|
+
previewId: z.ZodOptional<z.ZodString>;
|
|
883
|
+
/** Ask Wrangler local development to connect this binding to the remote namespace */
|
|
884
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
695
885
|
/** Stable KV namespace name to resolve to an ID at config/build/deploy time */
|
|
696
886
|
name: z.ZodString;
|
|
697
887
|
}, "strict", z.ZodTypeAny, {
|
|
888
|
+
previewId?: string | undefined;
|
|
889
|
+
remote?: boolean | undefined;
|
|
698
890
|
name: string;
|
|
699
891
|
}, {
|
|
892
|
+
previewId?: string | undefined;
|
|
893
|
+
remote?: boolean | undefined;
|
|
700
894
|
name: string;
|
|
701
895
|
}>]>>>;
|
|
702
896
|
/**
|
|
@@ -704,25 +898,76 @@ export declare const bindingsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
704
898
|
* Maps binding name to either a stable D1 database name or an explicit resolver object.
|
|
705
899
|
*/
|
|
706
900
|
d1: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
901
|
+
/** D1 database ID used during `wrangler dev`; compiles to `preview_database_id` */
|
|
902
|
+
previewDatabaseId: z.ZodOptional<z.ZodString>;
|
|
903
|
+
/** Name of the migrations table; compiles to `migrations_table` */
|
|
904
|
+
migrationsTable: z.ZodOptional<z.ZodString>;
|
|
905
|
+
/** Path to the migrations directory; compiles to `migrations_dir` */
|
|
906
|
+
migrationsDir: z.ZodOptional<z.ZodString>;
|
|
907
|
+
/** Ask Wrangler local development to connect this binding to the remote database */
|
|
908
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
707
909
|
/** Explicit D1 database ID */
|
|
708
910
|
id: z.ZodString;
|
|
709
911
|
}, "strict", z.ZodTypeAny, {
|
|
912
|
+
previewDatabaseId?: string | undefined;
|
|
913
|
+
migrationsTable?: string | undefined;
|
|
914
|
+
migrationsDir?: string | undefined;
|
|
915
|
+
remote?: boolean | undefined;
|
|
710
916
|
id: string;
|
|
711
917
|
}, {
|
|
918
|
+
previewDatabaseId?: string | undefined;
|
|
919
|
+
migrationsTable?: string | undefined;
|
|
920
|
+
migrationsDir?: string | undefined;
|
|
921
|
+
remote?: boolean | undefined;
|
|
712
922
|
id: string;
|
|
713
923
|
}>, z.ZodObject<{
|
|
924
|
+
/** D1 database ID used during `wrangler dev`; compiles to `preview_database_id` */
|
|
925
|
+
previewDatabaseId: z.ZodOptional<z.ZodString>;
|
|
926
|
+
/** Name of the migrations table; compiles to `migrations_table` */
|
|
927
|
+
migrationsTable: z.ZodOptional<z.ZodString>;
|
|
928
|
+
/** Path to the migrations directory; compiles to `migrations_dir` */
|
|
929
|
+
migrationsDir: z.ZodOptional<z.ZodString>;
|
|
930
|
+
/** Ask Wrangler local development to connect this binding to the remote database */
|
|
931
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
714
932
|
/** Stable D1 database name to resolve to an ID at config/build/deploy time */
|
|
715
933
|
name: z.ZodString;
|
|
716
934
|
}, "strict", z.ZodTypeAny, {
|
|
935
|
+
previewDatabaseId?: string | undefined;
|
|
936
|
+
migrationsTable?: string | undefined;
|
|
937
|
+
migrationsDir?: string | undefined;
|
|
938
|
+
remote?: boolean | undefined;
|
|
717
939
|
name: string;
|
|
718
940
|
}, {
|
|
941
|
+
previewDatabaseId?: string | undefined;
|
|
942
|
+
migrationsTable?: string | undefined;
|
|
943
|
+
migrationsDir?: string | undefined;
|
|
944
|
+
remote?: boolean | undefined;
|
|
719
945
|
name: string;
|
|
720
946
|
}>]>>>;
|
|
721
947
|
/**
|
|
722
948
|
* R2 Bucket bindings.
|
|
723
|
-
* Maps binding name to R2 bucket name.
|
|
949
|
+
* Maps binding name to an R2 bucket name or an explicit object form.
|
|
724
950
|
*/
|
|
725
|
-
r2: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString
|
|
951
|
+
r2: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
952
|
+
/** R2 bucket name at the edge */
|
|
953
|
+
bucketName: z.ZodString;
|
|
954
|
+
/** R2 bucket name used during `wrangler dev`; compiles to `preview_bucket_name` */
|
|
955
|
+
previewBucketName: z.ZodOptional<z.ZodString>;
|
|
956
|
+
/** Jurisdiction the bucket exists in; compiles to `jurisdiction` */
|
|
957
|
+
jurisdiction: z.ZodOptional<z.ZodString>;
|
|
958
|
+
/** Ask Wrangler local development to connect this binding to the remote bucket */
|
|
959
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
960
|
+
}, "strict", z.ZodTypeAny, {
|
|
961
|
+
bucketName: string;
|
|
962
|
+
previewBucketName?: string | undefined;
|
|
963
|
+
jurisdiction?: string | undefined;
|
|
964
|
+
remote?: boolean | undefined;
|
|
965
|
+
}, {
|
|
966
|
+
bucketName: string;
|
|
967
|
+
previewBucketName?: string | undefined;
|
|
968
|
+
jurisdiction?: string | undefined;
|
|
969
|
+
remote?: boolean | undefined;
|
|
970
|
+
}>]>>>;
|
|
726
971
|
/**
|
|
727
972
|
* Durable Object bindings.
|
|
728
973
|
* Maps binding name to DO class configuration.
|
|
@@ -734,10 +979,21 @@ export declare const bindingsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
734
979
|
queues: z.ZodOptional<z.ZodObject<{
|
|
735
980
|
/**
|
|
736
981
|
* Queue producer bindings.
|
|
737
|
-
* Maps binding name to queue name
|
|
982
|
+
* Maps binding name to queue name or an object form exposing `remote`.
|
|
738
983
|
* @example { TASK_QUEUE: 'task-queue' }
|
|
739
984
|
*/
|
|
740
|
-
producers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString
|
|
985
|
+
producers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
986
|
+
/** Queue name this producer writes to */
|
|
987
|
+
queue: z.ZodString;
|
|
988
|
+
/** Ask Wrangler local development to connect this producer to the remote queue */
|
|
989
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
990
|
+
}, "strict", z.ZodTypeAny, {
|
|
991
|
+
queue: string;
|
|
992
|
+
remote?: boolean | undefined;
|
|
993
|
+
}, {
|
|
994
|
+
queue: string;
|
|
995
|
+
remote?: boolean | undefined;
|
|
996
|
+
}>]>>>;
|
|
741
997
|
/**
|
|
742
998
|
* Queue consumer configurations.
|
|
743
999
|
* Array of consumer configs for processing queue messages.
|
|
@@ -784,7 +1040,10 @@ export declare const bindingsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
784
1040
|
retryDelay?: number | undefined;
|
|
785
1041
|
}>, "many">>;
|
|
786
1042
|
}, "strip", z.ZodTypeAny, {
|
|
787
|
-
producers?: Record<string, string
|
|
1043
|
+
producers?: Record<string, string | {
|
|
1044
|
+
queue: string;
|
|
1045
|
+
remote?: boolean | undefined;
|
|
1046
|
+
}> | undefined;
|
|
788
1047
|
consumers?: {
|
|
789
1048
|
queue: string;
|
|
790
1049
|
maxBatchSize?: number | undefined;
|
|
@@ -795,7 +1054,10 @@ export declare const bindingsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
795
1054
|
retryDelay?: number | undefined;
|
|
796
1055
|
}[] | undefined;
|
|
797
1056
|
}, {
|
|
798
|
-
producers?: Record<string, string
|
|
1057
|
+
producers?: Record<string, string | {
|
|
1058
|
+
queue: string;
|
|
1059
|
+
remote?: boolean | undefined;
|
|
1060
|
+
}> | undefined;
|
|
799
1061
|
consumers?: {
|
|
800
1062
|
queue: string;
|
|
801
1063
|
maxBatchSize?: number | undefined;
|
|
@@ -879,6 +1141,8 @@ export declare const bindingsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
879
1141
|
environment?: string;
|
|
880
1142
|
/** Optional entrypoint class name for named exports */
|
|
881
1143
|
entrypoint?: string;
|
|
1144
|
+
/** Ask Wrangler local development to connect this binding to the remote service */
|
|
1145
|
+
remote?: boolean;
|
|
882
1146
|
/** @internal Reference marker for ref() bindings */
|
|
883
1147
|
__ref?: unknown;
|
|
884
1148
|
}, z.ZodTypeDef, {
|
|
@@ -888,6 +1152,8 @@ export declare const bindingsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
888
1152
|
environment?: string;
|
|
889
1153
|
/** Optional entrypoint class name for named exports */
|
|
890
1154
|
entrypoint?: string;
|
|
1155
|
+
/** Ask Wrangler local development to connect this binding to the remote service */
|
|
1156
|
+
remote?: boolean;
|
|
891
1157
|
/** @internal Reference marker for ref() bindings */
|
|
892
1158
|
__ref?: unknown;
|
|
893
1159
|
}>>>;
|
|
@@ -1217,19 +1483,39 @@ export declare const bindingsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1217
1483
|
}>]>>>;
|
|
1218
1484
|
}, "strip", z.ZodTypeAny, {
|
|
1219
1485
|
kv?: Record<string, string | {
|
|
1486
|
+
previewId?: string | undefined;
|
|
1487
|
+
remote?: boolean | undefined;
|
|
1220
1488
|
id: string;
|
|
1221
1489
|
} | {
|
|
1490
|
+
previewId?: string | undefined;
|
|
1491
|
+
remote?: boolean | undefined;
|
|
1222
1492
|
name: string;
|
|
1223
1493
|
}> | undefined;
|
|
1224
1494
|
d1?: Record<string, string | {
|
|
1495
|
+
previewDatabaseId?: string | undefined;
|
|
1496
|
+
migrationsTable?: string | undefined;
|
|
1497
|
+
migrationsDir?: string | undefined;
|
|
1498
|
+
remote?: boolean | undefined;
|
|
1225
1499
|
id: string;
|
|
1226
1500
|
} | {
|
|
1501
|
+
previewDatabaseId?: string | undefined;
|
|
1502
|
+
migrationsTable?: string | undefined;
|
|
1503
|
+
migrationsDir?: string | undefined;
|
|
1504
|
+
remote?: boolean | undefined;
|
|
1227
1505
|
name: string;
|
|
1228
1506
|
}> | undefined;
|
|
1229
|
-
r2?: Record<string, string
|
|
1507
|
+
r2?: Record<string, string | {
|
|
1508
|
+
bucketName: string;
|
|
1509
|
+
previewBucketName?: string | undefined;
|
|
1510
|
+
jurisdiction?: string | undefined;
|
|
1511
|
+
remote?: boolean | undefined;
|
|
1512
|
+
}> | undefined;
|
|
1230
1513
|
durableObjects?: Record<string, DurableObjectBindingInput> | undefined;
|
|
1231
1514
|
queues?: {
|
|
1232
|
-
producers?: Record<string, string
|
|
1515
|
+
producers?: Record<string, string | {
|
|
1516
|
+
queue: string;
|
|
1517
|
+
remote?: boolean | undefined;
|
|
1518
|
+
}> | undefined;
|
|
1233
1519
|
consumers?: {
|
|
1234
1520
|
queue: string;
|
|
1235
1521
|
maxBatchSize?: number | undefined;
|
|
@@ -1262,6 +1548,8 @@ export declare const bindingsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1262
1548
|
environment?: string;
|
|
1263
1549
|
/** Optional entrypoint class name for named exports */
|
|
1264
1550
|
entrypoint?: string;
|
|
1551
|
+
/** Ask Wrangler local development to connect this binding to the remote service */
|
|
1552
|
+
remote?: boolean;
|
|
1265
1553
|
/** @internal Reference marker for ref() bindings */
|
|
1266
1554
|
__ref?: unknown;
|
|
1267
1555
|
}> | undefined;
|
|
@@ -1344,19 +1632,39 @@ export declare const bindingsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1344
1632
|
}> | undefined;
|
|
1345
1633
|
}, {
|
|
1346
1634
|
kv?: Record<string, string | {
|
|
1635
|
+
previewId?: string | undefined;
|
|
1636
|
+
remote?: boolean | undefined;
|
|
1347
1637
|
id: string;
|
|
1348
1638
|
} | {
|
|
1639
|
+
previewId?: string | undefined;
|
|
1640
|
+
remote?: boolean | undefined;
|
|
1349
1641
|
name: string;
|
|
1350
1642
|
}> | undefined;
|
|
1351
1643
|
d1?: Record<string, string | {
|
|
1644
|
+
previewDatabaseId?: string | undefined;
|
|
1645
|
+
migrationsTable?: string | undefined;
|
|
1646
|
+
migrationsDir?: string | undefined;
|
|
1647
|
+
remote?: boolean | undefined;
|
|
1352
1648
|
id: string;
|
|
1353
1649
|
} | {
|
|
1650
|
+
previewDatabaseId?: string | undefined;
|
|
1651
|
+
migrationsTable?: string | undefined;
|
|
1652
|
+
migrationsDir?: string | undefined;
|
|
1653
|
+
remote?: boolean | undefined;
|
|
1354
1654
|
name: string;
|
|
1355
1655
|
}> | undefined;
|
|
1356
|
-
r2?: Record<string, string
|
|
1656
|
+
r2?: Record<string, string | {
|
|
1657
|
+
bucketName: string;
|
|
1658
|
+
previewBucketName?: string | undefined;
|
|
1659
|
+
jurisdiction?: string | undefined;
|
|
1660
|
+
remote?: boolean | undefined;
|
|
1661
|
+
}> | undefined;
|
|
1357
1662
|
durableObjects?: Record<string, DurableObjectBindingInput> | undefined;
|
|
1358
1663
|
queues?: {
|
|
1359
|
-
producers?: Record<string, string
|
|
1664
|
+
producers?: Record<string, string | {
|
|
1665
|
+
queue: string;
|
|
1666
|
+
remote?: boolean | undefined;
|
|
1667
|
+
}> | undefined;
|
|
1360
1668
|
consumers?: {
|
|
1361
1669
|
queue: string;
|
|
1362
1670
|
maxBatchSize?: number | undefined;
|
|
@@ -1389,6 +1697,8 @@ export declare const bindingsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1389
1697
|
environment?: string;
|
|
1390
1698
|
/** Optional entrypoint class name for named exports */
|
|
1391
1699
|
entrypoint?: string;
|
|
1700
|
+
/** Ask Wrangler local development to connect this binding to the remote service */
|
|
1701
|
+
remote?: boolean;
|
|
1392
1702
|
/** @internal Reference marker for ref() bindings */
|
|
1393
1703
|
__ref?: unknown;
|
|
1394
1704
|
}> | undefined;
|
|
@@ -1476,6 +1786,8 @@ export type D1Binding = z.infer<typeof d1BindingSchema>;
|
|
|
1476
1786
|
export type DurableObjectBinding = z.infer<typeof durableObjectBindingSchema>;
|
|
1477
1787
|
export type HyperdriveBinding = z.infer<typeof hyperdriveBindingSchema>;
|
|
1478
1788
|
export type KVBinding = z.infer<typeof kvBindingSchema>;
|
|
1789
|
+
export type R2Binding = z.infer<typeof r2BindingSchema>;
|
|
1790
|
+
export type QueueProducer = z.infer<typeof queueProducerSchema>;
|
|
1479
1791
|
export type QueueConsumer = z.infer<typeof queueConsumerSchema>;
|
|
1480
1792
|
export type QueuesConfig = z.infer<typeof queuesConfigSchema>;
|
|
1481
1793
|
export type RateLimitBinding = z.infer<typeof rateLimitBindingSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema-bindings.d.ts","sourceRoot":"","sources":["../../src/config/schema-bindings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB;;;GAGG;AACH,MAAM,MAAM,yBAAyB,GAClC,MAAM,GACN;IACA,oCAAoC;IACpC,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAC1B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAA;IAC5B,8DAA8D;IAC9D,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,CAAA;CACvB,CAAA;AAEJ;;;GAGG;AACH,eAAO,MAAM,0BAA0B,+EAgBtC,CAAA;AAED;;;GAGG;AACH,eAAO,MAAM,mBAAmB;IAC/B,iCAAiC;;IAEjC;;;OAGG;;IAEH;;;OAGG;;IAEH;;;OAGG;;IAEH,2DAA2D;;IAE3D,2CAA2C;;IAE3C,uCAAuC;;;;;;;;;;;;;;;;;;EAEtC,CAAA;AAEF;;GAEG;AACH,eAAO,MAAM,kBAAkB;IAC9B;;;;OAIG;;
|
|
1
|
+
{"version":3,"file":"schema-bindings.d.ts","sourceRoot":"","sources":["../../src/config/schema-bindings.ts"],"names":[],"mappings":"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"}
|