miniflare 0.0.0-e4fe35cc5 → 0.0.0-e7ea6005c
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/README.md +11 -0
- package/dist/src/index.d.ts +243 -78
- package/dist/src/index.js +164 -79
- package/dist/src/index.js.map +3 -3
- package/dist/src/workers/assets/assets-kv.worker.js +5 -1
- package/dist/src/workers/assets/assets-kv.worker.js.map +1 -1
- package/dist/src/workers/assets/assets.worker.js +76 -21
- package/dist/src/workers/assets/assets.worker.js.map +1 -1
- package/dist/src/workers/assets/router.worker.js +69 -4
- package/dist/src/workers/assets/router.worker.js.map +2 -2
- package/dist/src/workers/cache/cache.worker.js +6 -5
- package/dist/src/workers/cache/cache.worker.js.map +2 -2
- package/dist/src/workers/core/entry.worker.js +5 -2
- package/dist/src/workers/core/entry.worker.js.map +1 -1
- package/dist/src/workers/queues/broker.worker.js +4 -2
- package/dist/src/workers/queues/broker.worker.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -574,6 +574,17 @@ parameter in module format Workers.
|
|
|
574
574
|
have at most one consumer. If a `string[]` of queue names is specified,
|
|
575
575
|
default consumer options will be used.
|
|
576
576
|
|
|
577
|
+
#### Assets
|
|
578
|
+
|
|
579
|
+
- `directory?: string`
|
|
580
|
+
Path to serve Workers static asset files from.
|
|
581
|
+
|
|
582
|
+
- `binding?: string`
|
|
583
|
+
Binding name to inject as a `Fetcher` binding to allow access to static assets from within the Worker.
|
|
584
|
+
|
|
585
|
+
- `assetOptions?: { html_handling?: HTMLHandlingOptions, not_found_handling?: NotFoundHandlingOptions}`
|
|
586
|
+
Configuration for file-based asset routing - see [docs](https://developers.cloudflare.com/workers/static-assets/routing/#routing-configuration) for options
|
|
587
|
+
|
|
577
588
|
#### Analytics Engine, Sending Email, Vectorize and Workers for Platforms
|
|
578
589
|
|
|
579
590
|
_Not yet supported_
|
package/dist/src/index.d.ts
CHANGED
|
@@ -58,21 +58,28 @@ export declare class __MiniflareFunctionWrapper {
|
|
|
58
58
|
|
|
59
59
|
export declare type AnyHeaders = http.IncomingHttpHeaders | string[];
|
|
60
60
|
|
|
61
|
+
export declare type AssetReverseMap = {
|
|
62
|
+
[pathHash: string]: {
|
|
63
|
+
filePath: string;
|
|
64
|
+
contentType: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
|
|
61
68
|
export declare const ASSETS_PLUGIN: Plugin<typeof AssetsOptionsSchema>;
|
|
62
69
|
|
|
63
70
|
export declare const AssetsOptionsSchema: z.ZodObject<{
|
|
64
71
|
assets: z.ZodOptional<z.ZodObject<{
|
|
65
72
|
workerName: z.ZodOptional<z.ZodString>;
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
routingConfig: z.ZodObject<{
|
|
73
|
+
directory: z.ZodEffects<z.ZodString, string, string>;
|
|
74
|
+
binding: z.ZodOptional<z.ZodString>;
|
|
75
|
+
routingConfig: z.ZodOptional<z.ZodObject<{
|
|
69
76
|
has_user_worker: z.ZodOptional<z.ZodBoolean>;
|
|
70
77
|
}, "strip", z.ZodTypeAny, {
|
|
71
78
|
has_user_worker?: boolean;
|
|
72
79
|
}, {
|
|
73
80
|
has_user_worker?: boolean;
|
|
74
|
-
}
|
|
75
|
-
assetConfig: z.ZodObject<{
|
|
81
|
+
}>>;
|
|
82
|
+
assetConfig: z.ZodOptional<z.ZodObject<{
|
|
76
83
|
html_handling: z.ZodOptional<z.ZodEnum<["auto-trailing-slash", "force-trailing-slash", "drop-trailing-slash", "none"]>>;
|
|
77
84
|
not_found_handling: z.ZodOptional<z.ZodEnum<["single-page-application", "404-page", "none"]>>;
|
|
78
85
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -81,55 +88,55 @@ export declare const AssetsOptionsSchema: z.ZodObject<{
|
|
|
81
88
|
}, {
|
|
82
89
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash";
|
|
83
90
|
not_found_handling?: "none" | "single-page-application" | "404-page";
|
|
84
|
-
}
|
|
91
|
+
}>>;
|
|
85
92
|
}, "strip", z.ZodTypeAny, {
|
|
86
|
-
|
|
87
|
-
|
|
93
|
+
directory: string;
|
|
94
|
+
workerName?: string | undefined;
|
|
95
|
+
binding?: string | undefined;
|
|
96
|
+
routingConfig?: {
|
|
88
97
|
has_user_worker?: boolean;
|
|
89
|
-
};
|
|
90
|
-
assetConfig
|
|
98
|
+
} | undefined;
|
|
99
|
+
assetConfig?: {
|
|
91
100
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash";
|
|
92
101
|
not_found_handling?: "none" | "single-page-application" | "404-page";
|
|
93
|
-
};
|
|
94
|
-
workerName?: string | undefined;
|
|
95
|
-
bindingName?: string | undefined;
|
|
102
|
+
} | undefined;
|
|
96
103
|
}, {
|
|
97
|
-
|
|
98
|
-
|
|
104
|
+
directory: string;
|
|
105
|
+
workerName?: string | undefined;
|
|
106
|
+
binding?: string | undefined;
|
|
107
|
+
routingConfig?: {
|
|
99
108
|
has_user_worker?: boolean;
|
|
100
|
-
};
|
|
101
|
-
assetConfig
|
|
109
|
+
} | undefined;
|
|
110
|
+
assetConfig?: {
|
|
102
111
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash";
|
|
103
112
|
not_found_handling?: "none" | "single-page-application" | "404-page";
|
|
104
|
-
};
|
|
105
|
-
workerName?: string | undefined;
|
|
106
|
-
bindingName?: string | undefined;
|
|
113
|
+
} | undefined;
|
|
107
114
|
}>>;
|
|
108
115
|
}, "strip", z.ZodTypeAny, {
|
|
109
116
|
assets?: {
|
|
110
|
-
|
|
111
|
-
|
|
117
|
+
directory: string;
|
|
118
|
+
workerName?: string | undefined;
|
|
119
|
+
binding?: string | undefined;
|
|
120
|
+
routingConfig?: {
|
|
112
121
|
has_user_worker?: boolean;
|
|
113
|
-
};
|
|
114
|
-
assetConfig
|
|
122
|
+
} | undefined;
|
|
123
|
+
assetConfig?: {
|
|
115
124
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash";
|
|
116
125
|
not_found_handling?: "none" | "single-page-application" | "404-page";
|
|
117
|
-
};
|
|
118
|
-
workerName?: string | undefined;
|
|
119
|
-
bindingName?: string | undefined;
|
|
126
|
+
} | undefined;
|
|
120
127
|
} | undefined;
|
|
121
128
|
}, {
|
|
122
129
|
assets?: {
|
|
123
|
-
|
|
124
|
-
|
|
130
|
+
directory: string;
|
|
131
|
+
workerName?: string | undefined;
|
|
132
|
+
binding?: string | undefined;
|
|
133
|
+
routingConfig?: {
|
|
125
134
|
has_user_worker?: boolean;
|
|
126
|
-
};
|
|
127
|
-
assetConfig
|
|
135
|
+
} | undefined;
|
|
136
|
+
assetConfig?: {
|
|
128
137
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash";
|
|
129
138
|
not_found_handling?: "none" | "single-page-application" | "404-page";
|
|
130
|
-
};
|
|
131
|
-
workerName?: string | undefined;
|
|
132
|
-
bindingName?: string | undefined;
|
|
139
|
+
} | undefined;
|
|
133
140
|
} | undefined;
|
|
134
141
|
}>;
|
|
135
142
|
|
|
@@ -141,7 +148,19 @@ export declare function base64Encode(value: string): string;
|
|
|
141
148
|
|
|
142
149
|
export { BodyInit }
|
|
143
150
|
|
|
144
|
-
|
|
151
|
+
/**
|
|
152
|
+
* The Asset Manifest and Asset Reverse Map are used to map a request path to an asset.
|
|
153
|
+
* 1. Hash path of request
|
|
154
|
+
* 2. Use this path hash to find the manifest entry
|
|
155
|
+
* 3. Get content hash from manifest entry
|
|
156
|
+
* 4a. In prod, use content hash to get asset from KV
|
|
157
|
+
* 4b. In dev, we fake out the KV store and use the file system instead.
|
|
158
|
+
* Use content hash to get file path from asset reverse map.
|
|
159
|
+
*/
|
|
160
|
+
export declare const buildAssetManifest: (dir: string) => Promise<{
|
|
161
|
+
encodedAssetManifest: Uint8Array;
|
|
162
|
+
assetsReverseMap: AssetReverseMap;
|
|
163
|
+
}>;
|
|
145
164
|
|
|
146
165
|
export declare const CACHE_PLUGIN: Plugin<typeof CacheOptionsSchema, typeof CacheSharedOptionsSchema>;
|
|
147
166
|
|
|
@@ -666,6 +685,10 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
666
685
|
}>, "many">>;
|
|
667
686
|
unsafeEvalBinding: z.ZodOptional<z.ZodString>;
|
|
668
687
|
unsafeUseModuleFallbackService: z.ZodOptional<z.ZodBoolean>;
|
|
688
|
+
/** Used to set the vitest pool worker SELF binding to point to the router worker if there are assets.
|
|
689
|
+
(If there are assets but we're not using vitest, the miniflare entry worker can point directly to RW.)
|
|
690
|
+
*/
|
|
691
|
+
hasAssetsAndIsVitest: z.ZodOptional<z.ZodBoolean>;
|
|
669
692
|
}, "strip", z.ZodTypeAny, {
|
|
670
693
|
name?: string | undefined;
|
|
671
694
|
rootPath?: undefined;
|
|
@@ -745,6 +768,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
745
768
|
}[] | undefined;
|
|
746
769
|
unsafeEvalBinding?: string | undefined;
|
|
747
770
|
unsafeUseModuleFallbackService?: boolean | undefined;
|
|
771
|
+
hasAssetsAndIsVitest?: boolean | undefined;
|
|
748
772
|
}, {
|
|
749
773
|
name?: string | undefined;
|
|
750
774
|
rootPath?: string | undefined;
|
|
@@ -824,6 +848,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
824
848
|
}[] | undefined;
|
|
825
849
|
unsafeEvalBinding?: string | undefined;
|
|
826
850
|
unsafeUseModuleFallbackService?: boolean | undefined;
|
|
851
|
+
hasAssetsAndIsVitest?: boolean | undefined;
|
|
827
852
|
}>>, ({
|
|
828
853
|
modules: {
|
|
829
854
|
type: "ESModule" | "CommonJS" | "NodeJsCompatModule" | "Text" | "Data" | "CompiledWasm" | "PythonModule" | "PythonRequirement";
|
|
@@ -910,6 +935,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
910
935
|
}[] | undefined;
|
|
911
936
|
unsafeEvalBinding?: string | undefined;
|
|
912
937
|
unsafeUseModuleFallbackService?: boolean | undefined;
|
|
938
|
+
hasAssetsAndIsVitest?: boolean | undefined;
|
|
913
939
|
}) | ({
|
|
914
940
|
script: string;
|
|
915
941
|
scriptPath?: string | undefined;
|
|
@@ -999,6 +1025,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
999
1025
|
}[] | undefined;
|
|
1000
1026
|
unsafeEvalBinding?: string | undefined;
|
|
1001
1027
|
unsafeUseModuleFallbackService?: boolean | undefined;
|
|
1028
|
+
hasAssetsAndIsVitest?: boolean | undefined;
|
|
1002
1029
|
}) | ({
|
|
1003
1030
|
scriptPath: string;
|
|
1004
1031
|
modules?: boolean | undefined;
|
|
@@ -1087,6 +1114,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1087
1114
|
}[] | undefined;
|
|
1088
1115
|
unsafeEvalBinding?: string | undefined;
|
|
1089
1116
|
unsafeUseModuleFallbackService?: boolean | undefined;
|
|
1117
|
+
hasAssetsAndIsVitest?: boolean | undefined;
|
|
1090
1118
|
}), ({
|
|
1091
1119
|
modules: {
|
|
1092
1120
|
type: "ESModule" | "CommonJS" | "NodeJsCompatModule" | "Text" | "Data" | "CompiledWasm" | "PythonModule" | "PythonRequirement";
|
|
@@ -1192,6 +1220,7 @@ export declare const CoreOptionsSchema: z.ZodEffects<z.ZodIntersection<z.ZodUnio
|
|
|
1192
1220
|
}[] | undefined;
|
|
1193
1221
|
unsafeEvalBinding?: string | undefined;
|
|
1194
1222
|
unsafeUseModuleFallbackService?: boolean | undefined;
|
|
1223
|
+
hasAssetsAndIsVitest?: boolean | undefined;
|
|
1195
1224
|
}>;
|
|
1196
1225
|
|
|
1197
1226
|
export declare const CoreSharedOptionsSchema: z.ZodObject<{
|
|
@@ -1475,6 +1504,30 @@ export declare function getGlobalServices({ sharedOptions, allWorkerRoutes, fall
|
|
|
1475
1504
|
|
|
1476
1505
|
export declare function getMiniflareObjectBindings(unsafeStickyBlobs: boolean): Worker_Binding[];
|
|
1477
1506
|
|
|
1507
|
+
/**
|
|
1508
|
+
* Computes the Node.js compatibility mode we are running.
|
|
1509
|
+
*
|
|
1510
|
+
* NOTES:
|
|
1511
|
+
* - The v2 mode is configured via `nodejs_compat_v2` compat flag or via `nodejs_compat` plus a compatibility date of Sept 23rd. 2024 or later.
|
|
1512
|
+
* - See `EnvironmentInheritable` for `nodeCompat` and `noBundle`.
|
|
1513
|
+
*
|
|
1514
|
+
* @param compatibilityDateStr The compatibility date
|
|
1515
|
+
* @param compatibilityFlags The compatibility flags
|
|
1516
|
+
* @param opts.nodeCompat Whether the legacy node_compat arg is being used
|
|
1517
|
+
* @returns the mode and flags to indicate specific configuration for validating.
|
|
1518
|
+
*/
|
|
1519
|
+
export declare function getNodeCompat(compatibilityDate: string | undefined, // Default to some arbitrary old date
|
|
1520
|
+
compatibilityFlags: string[], opts?: {
|
|
1521
|
+
nodeCompat?: boolean;
|
|
1522
|
+
}): {
|
|
1523
|
+
mode: NodeJSCompatMode;
|
|
1524
|
+
hasNodejsAlsFlag: boolean;
|
|
1525
|
+
hasNodejsCompatFlag: boolean;
|
|
1526
|
+
hasNodejsCompatV2Flag: boolean;
|
|
1527
|
+
hasNoNodejsCompatV2Flag: boolean;
|
|
1528
|
+
hasExperimentalNodejsCompatV2Flag: boolean;
|
|
1529
|
+
};
|
|
1530
|
+
|
|
1478
1531
|
export declare function getPersistPath(pluginName: string, tmpPath: string, persist: Persistence): string;
|
|
1479
1532
|
|
|
1480
1533
|
export declare function getRootPath(opts: unknown): string;
|
|
@@ -1673,6 +1726,11 @@ export declare interface LogOptions {
|
|
|
1673
1726
|
suffix?: string;
|
|
1674
1727
|
}
|
|
1675
1728
|
|
|
1729
|
+
export declare type ManifestEntry = {
|
|
1730
|
+
pathHash: Uint8Array;
|
|
1731
|
+
contentHash: Uint8Array;
|
|
1732
|
+
};
|
|
1733
|
+
|
|
1676
1734
|
export declare interface MatcherRegExps {
|
|
1677
1735
|
include: RegExp[];
|
|
1678
1736
|
exclude: RegExp[];
|
|
@@ -1797,6 +1855,17 @@ export declare interface Network {
|
|
|
1797
1855
|
|
|
1798
1856
|
export declare const NODE_PLATFORM_IMPL: PlatformImpl<ReadableStream_2>;
|
|
1799
1857
|
|
|
1858
|
+
/**
|
|
1859
|
+
* We can provide Node.js compatibility in a number of different modes:
|
|
1860
|
+
* - "legacy" - this mode adds compile-time polyfills that are not well maintained and cannot work with workerd runtime builtins.
|
|
1861
|
+
* - "als": this mode tells the workerd runtime to enable only the Async Local Storage builtin library (accessible via `node:async_hooks`).
|
|
1862
|
+
* - "v1" - this mode tells the workerd runtime to enable some Node.js builtin libraries (accessible only via `node:...` imports) but no globals.
|
|
1863
|
+
* - "v2" - this mode tells the workerd runtime to enable more Node.js builtin libraries (accessible both with and without the `node:` prefix)
|
|
1864
|
+
* and also some Node.js globals such as `Buffer`; it also turns on additional compile-time polyfills for those that are not provided by the runtime.
|
|
1865
|
+
* - null - no Node.js compatibility.
|
|
1866
|
+
*/
|
|
1867
|
+
export declare type NodeJSCompatMode = "legacy" | "als" | "v1" | "v2" | null;
|
|
1868
|
+
|
|
1800
1869
|
export declare class NoOpLog extends Log {
|
|
1801
1870
|
constructor();
|
|
1802
1871
|
protected log(): void;
|
|
@@ -2364,6 +2433,7 @@ export declare const PLUGINS: {
|
|
|
2364
2433
|
}>, "many">>;
|
|
2365
2434
|
unsafeEvalBinding: z.ZodOptional<z.ZodString>;
|
|
2366
2435
|
unsafeUseModuleFallbackService: z.ZodOptional<z.ZodBoolean>;
|
|
2436
|
+
hasAssetsAndIsVitest: z.ZodOptional<z.ZodBoolean>;
|
|
2367
2437
|
}, "strip", z.ZodTypeAny, {
|
|
2368
2438
|
name?: string | undefined;
|
|
2369
2439
|
rootPath?: undefined;
|
|
@@ -2443,6 +2513,7 @@ export declare const PLUGINS: {
|
|
|
2443
2513
|
}[] | undefined;
|
|
2444
2514
|
unsafeEvalBinding?: string | undefined;
|
|
2445
2515
|
unsafeUseModuleFallbackService?: boolean | undefined;
|
|
2516
|
+
hasAssetsAndIsVitest?: boolean | undefined;
|
|
2446
2517
|
}, {
|
|
2447
2518
|
name?: string | undefined;
|
|
2448
2519
|
rootPath?: string | undefined;
|
|
@@ -2522,6 +2593,7 @@ export declare const PLUGINS: {
|
|
|
2522
2593
|
}[] | undefined;
|
|
2523
2594
|
unsafeEvalBinding?: string | undefined;
|
|
2524
2595
|
unsafeUseModuleFallbackService?: boolean | undefined;
|
|
2596
|
+
hasAssetsAndIsVitest?: boolean | undefined;
|
|
2525
2597
|
}>>, ({
|
|
2526
2598
|
modules: {
|
|
2527
2599
|
type: "ESModule" | "CommonJS" | "NodeJsCompatModule" | "Text" | "Data" | "CompiledWasm" | "PythonModule" | "PythonRequirement";
|
|
@@ -2608,6 +2680,7 @@ export declare const PLUGINS: {
|
|
|
2608
2680
|
}[] | undefined;
|
|
2609
2681
|
unsafeEvalBinding?: string | undefined;
|
|
2610
2682
|
unsafeUseModuleFallbackService?: boolean | undefined;
|
|
2683
|
+
hasAssetsAndIsVitest?: boolean | undefined;
|
|
2611
2684
|
}) | ({
|
|
2612
2685
|
script: string;
|
|
2613
2686
|
scriptPath?: string | undefined;
|
|
@@ -2697,6 +2770,7 @@ export declare const PLUGINS: {
|
|
|
2697
2770
|
}[] | undefined;
|
|
2698
2771
|
unsafeEvalBinding?: string | undefined;
|
|
2699
2772
|
unsafeUseModuleFallbackService?: boolean | undefined;
|
|
2773
|
+
hasAssetsAndIsVitest?: boolean | undefined;
|
|
2700
2774
|
}) | ({
|
|
2701
2775
|
scriptPath: string;
|
|
2702
2776
|
modules?: boolean | undefined;
|
|
@@ -2785,6 +2859,7 @@ export declare const PLUGINS: {
|
|
|
2785
2859
|
}[] | undefined;
|
|
2786
2860
|
unsafeEvalBinding?: string | undefined;
|
|
2787
2861
|
unsafeUseModuleFallbackService?: boolean | undefined;
|
|
2862
|
+
hasAssetsAndIsVitest?: boolean | undefined;
|
|
2788
2863
|
}), ({
|
|
2789
2864
|
modules: {
|
|
2790
2865
|
type: "ESModule" | "CommonJS" | "NodeJsCompatModule" | "Text" | "Data" | "CompiledWasm" | "PythonModule" | "PythonRequirement";
|
|
@@ -2890,6 +2965,7 @@ export declare const PLUGINS: {
|
|
|
2890
2965
|
}[] | undefined;
|
|
2891
2966
|
unsafeEvalBinding?: string | undefined;
|
|
2892
2967
|
unsafeUseModuleFallbackService?: boolean | undefined;
|
|
2968
|
+
hasAssetsAndIsVitest?: boolean | undefined;
|
|
2893
2969
|
}>, z.ZodObject<{
|
|
2894
2970
|
rootPath: z.ZodOptional<z.ZodEffects<z.ZodString, undefined, string>>;
|
|
2895
2971
|
host: z.ZodOptional<z.ZodString>;
|
|
@@ -3053,22 +3129,39 @@ export declare const PLUGINS: {
|
|
|
3053
3129
|
queueName: string;
|
|
3054
3130
|
deliveryDelay?: number | undefined;
|
|
3055
3131
|
}>>, z.ZodArray<z.ZodString, "many">, z.ZodRecord<z.ZodString, z.ZodString>]>>;
|
|
3056
|
-
queueConsumers: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3132
|
+
queueConsumers: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
3057
3133
|
maxBatchSize: z.ZodOptional<z.ZodNumber>;
|
|
3058
3134
|
maxBatchTimeout: z.ZodOptional<z.ZodNumber>;
|
|
3059
3135
|
maxRetires: z.ZodOptional<z.ZodNumber>;
|
|
3136
|
+
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
3060
3137
|
deadLetterQueue: z.ZodOptional<z.ZodString>;
|
|
3061
3138
|
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
3062
3139
|
}, "strip", z.ZodTypeAny, {
|
|
3063
3140
|
maxBatchSize?: number | undefined;
|
|
3064
3141
|
maxBatchTimeout?: number | undefined;
|
|
3065
3142
|
maxRetires?: number | undefined;
|
|
3143
|
+
maxRetries?: number | undefined;
|
|
3066
3144
|
deadLetterQueue?: string | undefined;
|
|
3067
3145
|
retryDelay?: number | undefined;
|
|
3068
3146
|
}, {
|
|
3069
3147
|
maxBatchSize?: number | undefined;
|
|
3070
3148
|
maxBatchTimeout?: number | undefined;
|
|
3071
3149
|
maxRetires?: number | undefined;
|
|
3150
|
+
maxRetries?: number | undefined;
|
|
3151
|
+
deadLetterQueue?: string | undefined;
|
|
3152
|
+
retryDelay?: number | undefined;
|
|
3153
|
+
}>, Omit<{
|
|
3154
|
+
maxBatchSize?: number | undefined;
|
|
3155
|
+
maxBatchTimeout?: number | undefined;
|
|
3156
|
+
maxRetires?: number | undefined;
|
|
3157
|
+
maxRetries?: number | undefined;
|
|
3158
|
+
deadLetterQueue?: string | undefined;
|
|
3159
|
+
retryDelay?: number | undefined;
|
|
3160
|
+
}, "maxRetires">, {
|
|
3161
|
+
maxBatchSize?: number | undefined;
|
|
3162
|
+
maxBatchTimeout?: number | undefined;
|
|
3163
|
+
maxRetires?: number | undefined;
|
|
3164
|
+
maxRetries?: number | undefined;
|
|
3072
3165
|
deadLetterQueue?: string | undefined;
|
|
3073
3166
|
retryDelay?: number | undefined;
|
|
3074
3167
|
}>>, z.ZodArray<z.ZodString, "many">]>>;
|
|
@@ -3077,13 +3170,14 @@ export declare const PLUGINS: {
|
|
|
3077
3170
|
queueName: string;
|
|
3078
3171
|
deliveryDelay?: number | undefined;
|
|
3079
3172
|
}> | undefined;
|
|
3080
|
-
queueConsumers?: string[] | Record<string, {
|
|
3173
|
+
queueConsumers?: string[] | Record<string, Omit<{
|
|
3081
3174
|
maxBatchSize?: number | undefined;
|
|
3082
3175
|
maxBatchTimeout?: number | undefined;
|
|
3083
3176
|
maxRetires?: number | undefined;
|
|
3177
|
+
maxRetries?: number | undefined;
|
|
3084
3178
|
deadLetterQueue?: string | undefined;
|
|
3085
3179
|
retryDelay?: number | undefined;
|
|
3086
|
-
}
|
|
3180
|
+
}, "maxRetires">> | undefined;
|
|
3087
3181
|
}, {
|
|
3088
3182
|
queueProducers?: string[] | Record<string, string> | Record<string, {
|
|
3089
3183
|
queueName: string;
|
|
@@ -3093,6 +3187,7 @@ export declare const PLUGINS: {
|
|
|
3093
3187
|
maxBatchSize?: number | undefined;
|
|
3094
3188
|
maxBatchTimeout?: number | undefined;
|
|
3095
3189
|
maxRetires?: number | undefined;
|
|
3190
|
+
maxRetries?: number | undefined;
|
|
3096
3191
|
deadLetterQueue?: string | undefined;
|
|
3097
3192
|
retryDelay?: number | undefined;
|
|
3098
3193
|
}> | undefined;
|
|
@@ -3158,16 +3253,16 @@ export declare const PLUGINS: {
|
|
|
3158
3253
|
assets: Plugin<z.ZodObject<{
|
|
3159
3254
|
assets: z.ZodOptional<z.ZodObject<{
|
|
3160
3255
|
workerName: z.ZodOptional<z.ZodString>;
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
routingConfig: z.ZodObject<{
|
|
3256
|
+
directory: z.ZodEffects<z.ZodString, string, string>;
|
|
3257
|
+
binding: z.ZodOptional<z.ZodString>;
|
|
3258
|
+
routingConfig: z.ZodOptional<z.ZodObject<{
|
|
3164
3259
|
has_user_worker: z.ZodOptional<z.ZodBoolean>;
|
|
3165
3260
|
}, "strip", z.ZodTypeAny, {
|
|
3166
3261
|
has_user_worker?: boolean;
|
|
3167
3262
|
}, {
|
|
3168
3263
|
has_user_worker?: boolean;
|
|
3169
|
-
}
|
|
3170
|
-
assetConfig: z.ZodObject<{
|
|
3264
|
+
}>>;
|
|
3265
|
+
assetConfig: z.ZodOptional<z.ZodObject<{
|
|
3171
3266
|
html_handling: z.ZodOptional<z.ZodEnum<["auto-trailing-slash", "force-trailing-slash", "drop-trailing-slash", "none"]>>;
|
|
3172
3267
|
not_found_handling: z.ZodOptional<z.ZodEnum<["single-page-application", "404-page", "none"]>>;
|
|
3173
3268
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3176,55 +3271,55 @@ export declare const PLUGINS: {
|
|
|
3176
3271
|
}, {
|
|
3177
3272
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash";
|
|
3178
3273
|
not_found_handling?: "none" | "single-page-application" | "404-page";
|
|
3179
|
-
}
|
|
3274
|
+
}>>;
|
|
3180
3275
|
}, "strip", z.ZodTypeAny, {
|
|
3181
|
-
|
|
3182
|
-
|
|
3276
|
+
directory: string;
|
|
3277
|
+
workerName?: string | undefined;
|
|
3278
|
+
binding?: string | undefined;
|
|
3279
|
+
routingConfig?: {
|
|
3183
3280
|
has_user_worker?: boolean;
|
|
3184
|
-
};
|
|
3185
|
-
assetConfig
|
|
3281
|
+
} | undefined;
|
|
3282
|
+
assetConfig?: {
|
|
3186
3283
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash";
|
|
3187
3284
|
not_found_handling?: "none" | "single-page-application" | "404-page";
|
|
3188
|
-
};
|
|
3189
|
-
workerName?: string | undefined;
|
|
3190
|
-
bindingName?: string | undefined;
|
|
3285
|
+
} | undefined;
|
|
3191
3286
|
}, {
|
|
3192
|
-
|
|
3193
|
-
|
|
3287
|
+
directory: string;
|
|
3288
|
+
workerName?: string | undefined;
|
|
3289
|
+
binding?: string | undefined;
|
|
3290
|
+
routingConfig?: {
|
|
3194
3291
|
has_user_worker?: boolean;
|
|
3195
|
-
};
|
|
3196
|
-
assetConfig
|
|
3292
|
+
} | undefined;
|
|
3293
|
+
assetConfig?: {
|
|
3197
3294
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash";
|
|
3198
3295
|
not_found_handling?: "none" | "single-page-application" | "404-page";
|
|
3199
|
-
};
|
|
3200
|
-
workerName?: string | undefined;
|
|
3201
|
-
bindingName?: string | undefined;
|
|
3296
|
+
} | undefined;
|
|
3202
3297
|
}>>;
|
|
3203
3298
|
}, "strip", z.ZodTypeAny, {
|
|
3204
3299
|
assets?: {
|
|
3205
|
-
|
|
3206
|
-
|
|
3300
|
+
directory: string;
|
|
3301
|
+
workerName?: string | undefined;
|
|
3302
|
+
binding?: string | undefined;
|
|
3303
|
+
routingConfig?: {
|
|
3207
3304
|
has_user_worker?: boolean;
|
|
3208
|
-
};
|
|
3209
|
-
assetConfig
|
|
3305
|
+
} | undefined;
|
|
3306
|
+
assetConfig?: {
|
|
3210
3307
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash";
|
|
3211
3308
|
not_found_handling?: "none" | "single-page-application" | "404-page";
|
|
3212
|
-
};
|
|
3213
|
-
workerName?: string | undefined;
|
|
3214
|
-
bindingName?: string | undefined;
|
|
3309
|
+
} | undefined;
|
|
3215
3310
|
} | undefined;
|
|
3216
3311
|
}, {
|
|
3217
3312
|
assets?: {
|
|
3218
|
-
|
|
3219
|
-
|
|
3313
|
+
directory: string;
|
|
3314
|
+
workerName?: string | undefined;
|
|
3315
|
+
binding?: string | undefined;
|
|
3316
|
+
routingConfig?: {
|
|
3220
3317
|
has_user_worker?: boolean;
|
|
3221
|
-
};
|
|
3222
|
-
assetConfig
|
|
3318
|
+
} | undefined;
|
|
3319
|
+
assetConfig?: {
|
|
3223
3320
|
html_handling?: "none" | "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash";
|
|
3224
3321
|
not_found_handling?: "none" | "single-page-application" | "404-page";
|
|
3225
|
-
};
|
|
3226
|
-
workerName?: string | undefined;
|
|
3227
|
-
bindingName?: string | undefined;
|
|
3322
|
+
} | undefined;
|
|
3228
3323
|
} | undefined;
|
|
3229
3324
|
}>>;
|
|
3230
3325
|
};
|
|
@@ -3290,44 +3385,78 @@ export declare const QueueBindings: {
|
|
|
3290
3385
|
|
|
3291
3386
|
export declare type QueueConsumer = z.infer<typeof QueueConsumerSchema>;
|
|
3292
3387
|
|
|
3293
|
-
export declare const QueueConsumerOptionsSchema: z.ZodObject<{
|
|
3388
|
+
export declare const QueueConsumerOptionsSchema: z.ZodEffects<z.ZodObject<{
|
|
3294
3389
|
maxBatchSize: z.ZodOptional<z.ZodNumber>;
|
|
3295
3390
|
maxBatchTimeout: z.ZodOptional<z.ZodNumber>;
|
|
3296
3391
|
maxRetires: z.ZodOptional<z.ZodNumber>;
|
|
3392
|
+
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
3297
3393
|
deadLetterQueue: z.ZodOptional<z.ZodString>;
|
|
3298
3394
|
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
3299
3395
|
}, "strip", z.ZodTypeAny, {
|
|
3300
3396
|
maxBatchSize?: number | undefined;
|
|
3301
3397
|
maxBatchTimeout?: number | undefined;
|
|
3302
3398
|
maxRetires?: number | undefined;
|
|
3399
|
+
maxRetries?: number | undefined;
|
|
3303
3400
|
deadLetterQueue?: string | undefined;
|
|
3304
3401
|
retryDelay?: number | undefined;
|
|
3305
3402
|
}, {
|
|
3306
3403
|
maxBatchSize?: number | undefined;
|
|
3307
3404
|
maxBatchTimeout?: number | undefined;
|
|
3308
3405
|
maxRetires?: number | undefined;
|
|
3406
|
+
maxRetries?: number | undefined;
|
|
3407
|
+
deadLetterQueue?: string | undefined;
|
|
3408
|
+
retryDelay?: number | undefined;
|
|
3409
|
+
}>, Omit<{
|
|
3410
|
+
maxBatchSize?: number | undefined;
|
|
3411
|
+
maxBatchTimeout?: number | undefined;
|
|
3412
|
+
maxRetires?: number | undefined;
|
|
3413
|
+
maxRetries?: number | undefined;
|
|
3414
|
+
deadLetterQueue?: string | undefined;
|
|
3415
|
+
retryDelay?: number | undefined;
|
|
3416
|
+
}, "maxRetires">, {
|
|
3417
|
+
maxBatchSize?: number | undefined;
|
|
3418
|
+
maxBatchTimeout?: number | undefined;
|
|
3419
|
+
maxRetires?: number | undefined;
|
|
3420
|
+
maxRetries?: number | undefined;
|
|
3309
3421
|
deadLetterQueue?: string | undefined;
|
|
3310
3422
|
retryDelay?: number | undefined;
|
|
3311
3423
|
}>;
|
|
3312
3424
|
|
|
3313
3425
|
export declare type QueueConsumers = Map<string, z.infer<typeof QueueConsumerSchema>>;
|
|
3314
3426
|
|
|
3315
|
-
export declare const QueueConsumerSchema: z.ZodIntersection<z.ZodObject<{
|
|
3427
|
+
export declare const QueueConsumerSchema: z.ZodIntersection<z.ZodEffects<z.ZodObject<{
|
|
3316
3428
|
maxBatchSize: z.ZodOptional<z.ZodNumber>;
|
|
3317
3429
|
maxBatchTimeout: z.ZodOptional<z.ZodNumber>;
|
|
3318
3430
|
maxRetires: z.ZodOptional<z.ZodNumber>;
|
|
3431
|
+
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
3319
3432
|
deadLetterQueue: z.ZodOptional<z.ZodString>;
|
|
3320
3433
|
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
3321
3434
|
}, "strip", z.ZodTypeAny, {
|
|
3322
3435
|
maxBatchSize?: number | undefined;
|
|
3323
3436
|
maxBatchTimeout?: number | undefined;
|
|
3324
3437
|
maxRetires?: number | undefined;
|
|
3438
|
+
maxRetries?: number | undefined;
|
|
3325
3439
|
deadLetterQueue?: string | undefined;
|
|
3326
3440
|
retryDelay?: number | undefined;
|
|
3327
3441
|
}, {
|
|
3328
3442
|
maxBatchSize?: number | undefined;
|
|
3329
3443
|
maxBatchTimeout?: number | undefined;
|
|
3330
3444
|
maxRetires?: number | undefined;
|
|
3445
|
+
maxRetries?: number | undefined;
|
|
3446
|
+
deadLetterQueue?: string | undefined;
|
|
3447
|
+
retryDelay?: number | undefined;
|
|
3448
|
+
}>, Omit<{
|
|
3449
|
+
maxBatchSize?: number | undefined;
|
|
3450
|
+
maxBatchTimeout?: number | undefined;
|
|
3451
|
+
maxRetires?: number | undefined;
|
|
3452
|
+
maxRetries?: number | undefined;
|
|
3453
|
+
deadLetterQueue?: string | undefined;
|
|
3454
|
+
retryDelay?: number | undefined;
|
|
3455
|
+
}, "maxRetires">, {
|
|
3456
|
+
maxBatchSize?: number | undefined;
|
|
3457
|
+
maxBatchTimeout?: number | undefined;
|
|
3458
|
+
maxRetires?: number | undefined;
|
|
3459
|
+
maxRetries?: number | undefined;
|
|
3331
3460
|
deadLetterQueue?: string | undefined;
|
|
3332
3461
|
retryDelay?: number | undefined;
|
|
3333
3462
|
}>, z.ZodObject<{
|
|
@@ -3338,22 +3467,39 @@ export declare const QueueConsumerSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
3338
3467
|
workerName: string;
|
|
3339
3468
|
}>>;
|
|
3340
3469
|
|
|
3341
|
-
export declare const QueueConsumersSchema: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
3470
|
+
export declare const QueueConsumersSchema: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodEffects<z.ZodObject<{
|
|
3342
3471
|
maxBatchSize: z.ZodOptional<z.ZodNumber>;
|
|
3343
3472
|
maxBatchTimeout: z.ZodOptional<z.ZodNumber>;
|
|
3344
3473
|
maxRetires: z.ZodOptional<z.ZodNumber>;
|
|
3474
|
+
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
3345
3475
|
deadLetterQueue: z.ZodOptional<z.ZodString>;
|
|
3346
3476
|
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
3347
3477
|
}, "strip", z.ZodTypeAny, {
|
|
3348
3478
|
maxBatchSize?: number | undefined;
|
|
3349
3479
|
maxBatchTimeout?: number | undefined;
|
|
3350
3480
|
maxRetires?: number | undefined;
|
|
3481
|
+
maxRetries?: number | undefined;
|
|
3351
3482
|
deadLetterQueue?: string | undefined;
|
|
3352
3483
|
retryDelay?: number | undefined;
|
|
3353
3484
|
}, {
|
|
3354
3485
|
maxBatchSize?: number | undefined;
|
|
3355
3486
|
maxBatchTimeout?: number | undefined;
|
|
3356
3487
|
maxRetires?: number | undefined;
|
|
3488
|
+
maxRetries?: number | undefined;
|
|
3489
|
+
deadLetterQueue?: string | undefined;
|
|
3490
|
+
retryDelay?: number | undefined;
|
|
3491
|
+
}>, Omit<{
|
|
3492
|
+
maxBatchSize?: number | undefined;
|
|
3493
|
+
maxBatchTimeout?: number | undefined;
|
|
3494
|
+
maxRetires?: number | undefined;
|
|
3495
|
+
maxRetries?: number | undefined;
|
|
3496
|
+
deadLetterQueue?: string | undefined;
|
|
3497
|
+
retryDelay?: number | undefined;
|
|
3498
|
+
}, "maxRetires">, {
|
|
3499
|
+
maxBatchSize?: number | undefined;
|
|
3500
|
+
maxBatchTimeout?: number | undefined;
|
|
3501
|
+
maxRetires?: number | undefined;
|
|
3502
|
+
maxRetries?: number | undefined;
|
|
3357
3503
|
deadLetterQueue?: string | undefined;
|
|
3358
3504
|
retryDelay?: number | undefined;
|
|
3359
3505
|
}>, z.ZodObject<{
|
|
@@ -3503,22 +3649,39 @@ export declare const QueuesOptionsSchema: z.ZodObject<{
|
|
|
3503
3649
|
queueName: string;
|
|
3504
3650
|
deliveryDelay?: number | undefined;
|
|
3505
3651
|
}>>, z.ZodArray<z.ZodString, "many">, z.ZodRecord<z.ZodString, z.ZodString>]>>;
|
|
3506
|
-
queueConsumers: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3652
|
+
queueConsumers: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
3507
3653
|
maxBatchSize: z.ZodOptional<z.ZodNumber>;
|
|
3508
3654
|
maxBatchTimeout: z.ZodOptional<z.ZodNumber>;
|
|
3509
3655
|
maxRetires: z.ZodOptional<z.ZodNumber>;
|
|
3656
|
+
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
3510
3657
|
deadLetterQueue: z.ZodOptional<z.ZodString>;
|
|
3511
3658
|
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
3512
3659
|
}, "strip", z.ZodTypeAny, {
|
|
3513
3660
|
maxBatchSize?: number | undefined;
|
|
3514
3661
|
maxBatchTimeout?: number | undefined;
|
|
3515
3662
|
maxRetires?: number | undefined;
|
|
3663
|
+
maxRetries?: number | undefined;
|
|
3516
3664
|
deadLetterQueue?: string | undefined;
|
|
3517
3665
|
retryDelay?: number | undefined;
|
|
3518
3666
|
}, {
|
|
3519
3667
|
maxBatchSize?: number | undefined;
|
|
3520
3668
|
maxBatchTimeout?: number | undefined;
|
|
3521
3669
|
maxRetires?: number | undefined;
|
|
3670
|
+
maxRetries?: number | undefined;
|
|
3671
|
+
deadLetterQueue?: string | undefined;
|
|
3672
|
+
retryDelay?: number | undefined;
|
|
3673
|
+
}>, Omit<{
|
|
3674
|
+
maxBatchSize?: number | undefined;
|
|
3675
|
+
maxBatchTimeout?: number | undefined;
|
|
3676
|
+
maxRetires?: number | undefined;
|
|
3677
|
+
maxRetries?: number | undefined;
|
|
3678
|
+
deadLetterQueue?: string | undefined;
|
|
3679
|
+
retryDelay?: number | undefined;
|
|
3680
|
+
}, "maxRetires">, {
|
|
3681
|
+
maxBatchSize?: number | undefined;
|
|
3682
|
+
maxBatchTimeout?: number | undefined;
|
|
3683
|
+
maxRetires?: number | undefined;
|
|
3684
|
+
maxRetries?: number | undefined;
|
|
3522
3685
|
deadLetterQueue?: string | undefined;
|
|
3523
3686
|
retryDelay?: number | undefined;
|
|
3524
3687
|
}>>, z.ZodArray<z.ZodString, "many">]>>;
|
|
@@ -3527,13 +3690,14 @@ export declare const QueuesOptionsSchema: z.ZodObject<{
|
|
|
3527
3690
|
queueName: string;
|
|
3528
3691
|
deliveryDelay?: number | undefined;
|
|
3529
3692
|
}> | undefined;
|
|
3530
|
-
queueConsumers?: string[] | Record<string, {
|
|
3693
|
+
queueConsumers?: string[] | Record<string, Omit<{
|
|
3531
3694
|
maxBatchSize?: number | undefined;
|
|
3532
3695
|
maxBatchTimeout?: number | undefined;
|
|
3533
3696
|
maxRetires?: number | undefined;
|
|
3697
|
+
maxRetries?: number | undefined;
|
|
3534
3698
|
deadLetterQueue?: string | undefined;
|
|
3535
3699
|
retryDelay?: number | undefined;
|
|
3536
|
-
}
|
|
3700
|
+
}, "maxRetires">> | undefined;
|
|
3537
3701
|
}, {
|
|
3538
3702
|
queueProducers?: string[] | Record<string, string> | Record<string, {
|
|
3539
3703
|
queueName: string;
|
|
@@ -3543,6 +3707,7 @@ export declare const QueuesOptionsSchema: z.ZodObject<{
|
|
|
3543
3707
|
maxBatchSize?: number | undefined;
|
|
3544
3708
|
maxBatchTimeout?: number | undefined;
|
|
3545
3709
|
maxRetires?: number | undefined;
|
|
3710
|
+
maxRetries?: number | undefined;
|
|
3546
3711
|
deadLetterQueue?: string | undefined;
|
|
3547
3712
|
retryDelay?: number | undefined;
|
|
3548
3713
|
}> | undefined;
|