wrangler 3.44.0 → 3.45.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wrangler",
3
- "version": "3.44.0",
3
+ "version": "3.45.0",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "wrangler",
@@ -96,7 +96,7 @@
96
96
  "source-map": "0.6.1",
97
97
  "xxhash-wasm": "^1.0.1",
98
98
  "@cloudflare/kv-asset-handler": "0.3.1",
99
- "miniflare": "3.20240329.0"
99
+ "miniflare": "3.20240329.1"
100
100
  },
101
101
  "devDependencies": {
102
102
  "@cloudflare/ai": "^1.0.35",
@@ -187,7 +187,7 @@
187
187
  "yargs": "^17.7.2",
188
188
  "yoga-layout": "file:../../vendor/yoga-layout-2.0.0-beta.1.tgz",
189
189
  "@cloudflare/cli": "1.1.1",
190
- "@cloudflare/pages-shared": "^0.11.23",
190
+ "@cloudflare/pages-shared": "^0.11.24",
191
191
  "@cloudflare/workers-tsconfig": "0.0.0"
192
192
  },
193
193
  "optionalDependencies": {
@@ -753,7 +753,7 @@ attributes?: { name?: string, domain?: string }
753
753
  * NOTE: You will need the `CLOUDFLARE_API_KEY` environment
754
754
  * variable set
755
755
  */
756
- declare function deploy({ directory, accountId, projectName, branch, skipCaching, commitMessage, commitHash, commitDirty, functionsDirectory: customFunctionsDirectory, bundle, }: PagesDeployOptions): Promise<{
756
+ declare function deploy({ directory, accountId, projectName, branch, skipCaching, commitMessage, commitHash, commitDirty, functionsDirectory: customFunctionsDirectory, bundle, args, }: PagesDeployOptions): Promise<{
757
757
  url: string;
758
758
  id: string;
759
759
  environment: "production" | "preview";
@@ -2679,6 +2679,10 @@ declare interface PagesDeployOptions {
2679
2679
  * Default: true
2680
2680
  */
2681
2681
  bundle?: boolean;
2682
+ /**
2683
+ * Command line args passed to the `pages deploy` cmd
2684
+ */
2685
+ args?: Record<string, unknown>;
2682
2686
  }
2683
2687
 
2684
2688
  declare type _Params<ParamsArray extends [unknown?]> = ParamsArray extends [infer P] ? P : undefined;