edmaxlabs-core 2.5.2 → 2.5.3

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/dist/index.cjs CHANGED
@@ -2328,7 +2328,7 @@ var StorageRef = class {
2328
2328
  const res = await new HttpsRequest({
2329
2329
  method: "POST" /* POST */,
2330
2330
  endpoint: this.app.getBaseUrl() + "/storage/file/upload",
2331
- headers: { authorization: this.app.getConfig().token, project: this.app.getConfig().project },
2331
+ headers: { authorization: this.app.getConfig().token, "x-project": this.app.getConfig().project },
2332
2332
  file: srcFile,
2333
2333
  isMultipart: true
2334
2334
  }).sendRequest();