wrangler 4.42.2 → 4.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/wrangler-dist/cli.d.ts +14 -5
- package/wrangler-dist/cli.js +537 -468
- package/wrangler-dist/metafile-cjs.json +1 -1
package/package.json
CHANGED
package/wrangler-dist/cli.d.ts
CHANGED
|
@@ -1212,6 +1212,11 @@ type ContainerEngine = {
|
|
|
1212
1212
|
localDocker: DockerConfiguration;
|
|
1213
1213
|
} | string;
|
|
1214
1214
|
|
|
1215
|
+
/**
|
|
1216
|
+
* The compliance region to use for the API requests.
|
|
1217
|
+
*/
|
|
1218
|
+
type ComplianceConfig = Partial<Pick<Config, "compliance_region">>;
|
|
1219
|
+
|
|
1215
1220
|
/**
|
|
1216
1221
|
* A symbol to inherit a binding from the deployed worker.
|
|
1217
1222
|
*/
|
|
@@ -1743,6 +1748,7 @@ interface CommonYargsOptions {
|
|
|
1743
1748
|
"env-file": string[] | undefined;
|
|
1744
1749
|
"experimental-provision": boolean | undefined;
|
|
1745
1750
|
"experimental-remote-bindings": boolean | undefined;
|
|
1751
|
+
"experimental-auto-create": boolean;
|
|
1746
1752
|
}
|
|
1747
1753
|
type CommonYargsArgv = Argv<CommonYargsOptions>;
|
|
1748
1754
|
type RemoveIndex<T> = {
|
|
@@ -2011,11 +2017,6 @@ declare const unstable_pages: {
|
|
|
2011
2017
|
deploy: typeof deploy;
|
|
2012
2018
|
};
|
|
2013
2019
|
|
|
2014
|
-
/**
|
|
2015
|
-
* The compliance region to use for the API requests.
|
|
2016
|
-
*/
|
|
2017
|
-
type ComplianceConfig = Partial<Pick<Config, "compliance_region">>;
|
|
2018
|
-
|
|
2019
2020
|
type _Params<ParamsArray extends [unknown?]> = ParamsArray extends [infer P] ? P : undefined;
|
|
2020
2021
|
type _EventMethods = keyof Protocol.Events;
|
|
2021
2022
|
type DevToolsEvent<Method extends _EventMethods> = Method extends unknown ? {
|
|
@@ -2968,6 +2969,7 @@ type ExperimentalFlags = {
|
|
|
2968
2969
|
RESOURCES_PROVISION: boolean;
|
|
2969
2970
|
REMOTE_BINDINGS: boolean;
|
|
2970
2971
|
DEPLOY_REMOTE_DIFF_CHECK: boolean;
|
|
2972
|
+
AUTOCREATE_RESOURCES: boolean;
|
|
2971
2973
|
};
|
|
2972
2974
|
|
|
2973
2975
|
// Team names from https://wiki.cfdata.org/display/EW/Developer+Platform+Components+and+Pillar+Ownership
|
|
@@ -3224,6 +3226,13 @@ declare function createCLIParser(argv: string[]): {
|
|
|
3224
3226
|
readonly hidden: true;
|
|
3225
3227
|
readonly alias: readonly ["x-provision"];
|
|
3226
3228
|
};
|
|
3229
|
+
readonly "experimental-auto-create": {
|
|
3230
|
+
readonly describe: "Automatically provision draft bindings with new resources";
|
|
3231
|
+
readonly type: "boolean";
|
|
3232
|
+
readonly default: true;
|
|
3233
|
+
readonly hidden: true;
|
|
3234
|
+
readonly alias: "x-auto-create";
|
|
3235
|
+
};
|
|
3227
3236
|
};
|
|
3228
3237
|
};
|
|
3229
3238
|
|