wrangler 3.104.0 → 3.105.1
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 +9 -7
- package/wrangler-dist/cli.d.ts +6 -0
- package/wrangler-dist/cli.js +320 -99
- package/wrangler-dist/cli.js.map +4 -4
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.105.1",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -56,14 +56,14 @@
|
|
56
56
|
"esbuild": "0.17.19",
|
57
57
|
"path-to-regexp": "6.3.0",
|
58
58
|
"unenv": "2.0.0-rc.0",
|
59
|
-
"workerd": "1.
|
59
|
+
"workerd": "1.20250124.0",
|
60
60
|
"@cloudflare/kv-asset-handler": "0.3.4",
|
61
|
-
"miniflare": "3.
|
61
|
+
"miniflare": "3.20250124.0"
|
62
62
|
},
|
63
63
|
"devDependencies": {
|
64
64
|
"@aws-sdk/client-s3": "^3.721.0",
|
65
65
|
"@cloudflare/types": "6.18.4",
|
66
|
-
"@cloudflare/workers-types": "^4.
|
66
|
+
"@cloudflare/workers-types": "^4.20250121.0",
|
67
67
|
"@cspotcode/source-map-support": "0.8.1",
|
68
68
|
"@iarna/toml": "^3.0.0",
|
69
69
|
"@microsoft/api-extractor": "^7.47.0",
|
@@ -77,6 +77,7 @@
|
|
77
77
|
"@types/mime": "^3.0.4",
|
78
78
|
"@types/minimatch": "^5.1.2",
|
79
79
|
"@types/node": "^18.19.59",
|
80
|
+
"@types/node-forge": "^1.3.11",
|
80
81
|
"@types/prompts": "^2.0.14",
|
81
82
|
"@types/resolve": "^1.20.6",
|
82
83
|
"@types/shell-quote": "^1.7.2",
|
@@ -109,6 +110,7 @@
|
|
109
110
|
"minimatch": "^5.1.0",
|
110
111
|
"mock-socket": "^9.3.1",
|
111
112
|
"msw": "2.4.3",
|
113
|
+
"node-forge": "^1.3.1",
|
112
114
|
"open": "^8.4.0",
|
113
115
|
"p-queue": "^7.2.0",
|
114
116
|
"patch-console": "^1.0.0",
|
@@ -137,12 +139,12 @@
|
|
137
139
|
"yargs": "^17.7.2",
|
138
140
|
"@cloudflare/cli": "1.1.1",
|
139
141
|
"@cloudflare/eslint-config-worker": "1.1.0",
|
140
|
-
"@cloudflare/
|
141
|
-
"@cloudflare/
|
142
|
+
"@cloudflare/pages-shared": "^0.13.3",
|
143
|
+
"@cloudflare/workers-shared": "0.12.4",
|
142
144
|
"@cloudflare/workers-tsconfig": "0.0.0"
|
143
145
|
},
|
144
146
|
"peerDependencies": {
|
145
|
-
"@cloudflare/workers-types": "^4.
|
147
|
+
"@cloudflare/workers-types": "^4.20250121.0"
|
146
148
|
},
|
147
149
|
"peerDependenciesMeta": {
|
148
150
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -26000,12 +26000,18 @@ declare type RoutingConfig = z.infer<typeof RoutingConfigSchema>;
|
|
26000
26000
|
declare const RoutingConfigSchema: z.ZodObject<{
|
26001
26001
|
has_user_worker: z.ZodOptional<z.ZodBoolean>;
|
26002
26002
|
invoke_user_worker_ahead_of_assets: z.ZodOptional<z.ZodBoolean>;
|
26003
|
+
account_id: z.ZodOptional<z.ZodNumber>;
|
26004
|
+
script_id: z.ZodOptional<z.ZodNumber>;
|
26003
26005
|
}, "strip", z.ZodTypeAny, {
|
26004
26006
|
has_user_worker?: boolean;
|
26005
26007
|
invoke_user_worker_ahead_of_assets?: boolean;
|
26008
|
+
account_id?: number;
|
26009
|
+
script_id?: number;
|
26006
26010
|
}, {
|
26007
26011
|
has_user_worker?: boolean;
|
26008
26012
|
invoke_user_worker_ahead_of_assets?: boolean;
|
26013
|
+
account_id?: number;
|
26014
|
+
script_id?: number;
|
26009
26015
|
}>;
|
26010
26016
|
|
26011
26017
|
/**
|