wrangler 3.66.0 → 3.67.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.
@@ -247,29 +247,6 @@
247
247
  },
248
248
  "type": "array"
249
249
  },
250
- "constellation": {
251
- "default": "`[]`",
252
- "description": "Specifies Constellation projects that are bound to this Worker environment.\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.",
253
- "items": {
254
- "additionalProperties": false,
255
- "properties": {
256
- "binding": {
257
- "description": "The binding name used to refer to the project in the Worker.",
258
- "type": "string"
259
- },
260
- "project_id": {
261
- "description": "The id of the project.",
262
- "type": "string"
263
- }
264
- },
265
- "required": [
266
- "binding",
267
- "project_id"
268
- ],
269
- "type": "object"
270
- },
271
- "type": "array"
272
- },
273
250
  "d1_databases": {
274
251
  "default": "`[]`",
275
252
  "description": "Specifies D1 databases that are bound to this Worker environment.\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.",
@@ -962,7 +939,6 @@
962
939
  "build",
963
940
  "cloudchamber",
964
941
  "compatibility_flags",
965
- "constellation",
966
942
  "d1_databases",
967
943
  "define",
968
944
  "dispatch_namespaces",
@@ -1179,29 +1155,6 @@
1179
1155
  "configPath": {
1180
1156
  "type": "string"
1181
1157
  },
1182
- "constellation": {
1183
- "default": "`[]`",
1184
- "description": "Specifies Constellation projects that are bound to this Worker environment.\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.",
1185
- "items": {
1186
- "additionalProperties": false,
1187
- "properties": {
1188
- "binding": {
1189
- "description": "The binding name used to refer to the project in the Worker.",
1190
- "type": "string"
1191
- },
1192
- "project_id": {
1193
- "description": "The id of the project.",
1194
- "type": "string"
1195
- }
1196
- },
1197
- "required": [
1198
- "binding",
1199
- "project_id"
1200
- ],
1201
- "type": "object"
1202
- },
1203
- "type": "array"
1204
- },
1205
1158
  "d1_databases": {
1206
1159
  "default": "`[]`",
1207
1160
  "description": "Specifies D1 databases that are bound to this Worker environment.\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.",
@@ -2232,29 +2185,6 @@
2232
2185
  },
2233
2186
  "type": "array"
2234
2187
  },
2235
- "constellation": {
2236
- "default": "`[]`",
2237
- "description": "Specifies Constellation projects that are bound to this Worker environment.\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.",
2238
- "items": {
2239
- "additionalProperties": false,
2240
- "properties": {
2241
- "binding": {
2242
- "description": "The binding name used to refer to the project in the Worker.",
2243
- "type": "string"
2244
- },
2245
- "project_id": {
2246
- "description": "The id of the project.",
2247
- "type": "string"
2248
- }
2249
- },
2250
- "required": [
2251
- "binding",
2252
- "project_id"
2253
- ],
2254
- "type": "object"
2255
- },
2256
- "type": "array"
2257
- },
2258
2188
  "d1_databases": {
2259
2189
  "default": "`[]`",
2260
2190
  "description": "Specifies D1 databases that are bound to this Worker environment.\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wrangler",
3
- "version": "3.66.0",
3
+ "version": "3.67.0",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "wrangler",
@@ -65,8 +65,8 @@
65
65
  "unenv": "npm:unenv-nightly@1.10.0-1717606461.a117952",
66
66
  "workerd": "1.20240718.0",
67
67
  "xxhash-wasm": "^1.0.1",
68
- "@cloudflare/kv-asset-handler": "0.3.4",
69
- "miniflare": "3.20240718.0"
68
+ "miniflare": "3.20240718.0",
69
+ "@cloudflare/kv-asset-handler": "0.3.4"
70
70
  },
71
71
  "devDependencies": {
72
72
  "@cloudflare/types": "^6.18.4",
@@ -135,8 +135,6 @@ declare type Binding = {
135
135
  } & Omit<CfD1Database, "binding">) | ({
136
136
  type: "vectorize";
137
137
  } & Omit<CfVectorize, "binding">) | ({
138
- type: "constellation";
139
- } & Omit<CfConstellation, "binding">) | ({
140
138
  type: "hyperdrive";
141
139
  } & Omit<CfHyperdrive, "binding">) | ({
142
140
  type: "service";
@@ -415,11 +413,6 @@ declare type CfCapnp = {
415
413
  compiled_schema?: never;
416
414
  };
417
415
 
418
- declare interface CfConstellation {
419
- binding: string;
420
- project_id: string;
421
- }
422
-
423
416
  declare interface CfD1Database {
424
417
  binding: string;
425
418
  database_id: string;
@@ -941,8 +934,6 @@ declare function deploy({ directory, accountId, projectName, branch, skipCaching
941
934
  url: string;
942
935
  id: string;
943
936
  environment: "production" | "preview";
944
- project_id: string;
945
- project_name: string;
946
937
  build_config: {
947
938
  build_command: string;
948
939
  destination_dir: string;
@@ -953,6 +944,8 @@ declare function deploy({ directory, accountId, projectName, branch, skipCaching
953
944
  };
954
945
  created_on: string;
955
946
  production_branch: string;
947
+ project_id: string;
948
+ project_name: string;
956
949
  deployment_trigger: {
957
950
  metadata: {
958
951
  branch: string;
@@ -1891,21 +1884,6 @@ declare interface EnvironmentNonInheritable {
1891
1884
  /** The name of the index. */
1892
1885
  index_name: string;
1893
1886
  }[];
1894
- /**
1895
- * Specifies Constellation projects that are bound to this Worker environment.
1896
- *
1897
- * NOTE: This field is not automatically inherited from the top level environment,
1898
- * and so must be specified in every named environment.
1899
- *
1900
- * @default `[]`
1901
- * @nonInheritable
1902
- */
1903
- constellation: {
1904
- /** The binding name used to refer to the project in the Worker. */
1905
- binding: string;
1906
- /** The id of the project. */
1907
- project_id: string;
1908
- }[];
1909
1887
  /**
1910
1888
  * Specifies Hyperdrive configs that are bound to this Worker environment.
1911
1889
  *
@@ -2508,7 +2486,7 @@ export declare type GetPlatformProxyOptions = {
2508
2486
  */
2509
2487
  configPath?: string;
2510
2488
  /**
2511
- * Flag to indicate the utility to read a json config file (`wrangler.json`)
2489
+ * Flag to indicate the utility to read a json config file (`wrangler.json`/`wrangler.jsonc`)
2512
2490
  * instead of the toml one (`wrangler.toml`)
2513
2491
  *
2514
2492
  * Note: this feature is experimental