@supabase/storage-js 2.103.1 → 2.103.2-canary.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/dist/index.cjs +2 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2 -3
- package/dist/index.mjs.map +1 -1
- package/dist/umd/supabase.js +1 -1
- package/package.json +1 -1
- package/src/lib/version.ts +1 -1
- package/src/packages/StorageFileApi.ts +3 -11
package/dist/index.cjs
CHANGED
|
@@ -965,8 +965,7 @@ var StorageFileApi = class extends BaseApiClient {
|
|
|
965
965
|
if (options === null || options === void 0 ? void 0 : options.download) query.set("download", options.download === true ? "" : options.download);
|
|
966
966
|
if ((options === null || options === void 0 ? void 0 : options.cacheNonce) != null) query.set("cacheNonce", String(options.cacheNonce));
|
|
967
967
|
const queryString = query.toString();
|
|
968
|
-
|
|
969
|
-
return { signedUrl: encodeURI(`${_this8.url}${returnedPath}${queryString ? `&${queryString}` : ""}`) };
|
|
968
|
+
return { signedUrl: encodeURI(`${_this8.url}${data.signedURL}${queryString ? `&${queryString}` : ""}`) };
|
|
970
969
|
});
|
|
971
970
|
}
|
|
972
971
|
/**
|
|
@@ -1455,7 +1454,7 @@ var StorageFileApi = class extends BaseApiClient {
|
|
|
1455
1454
|
|
|
1456
1455
|
//#endregion
|
|
1457
1456
|
//#region src/lib/version.ts
|
|
1458
|
-
const version = "2.103.
|
|
1457
|
+
const version = "2.103.2-canary.0";
|
|
1459
1458
|
|
|
1460
1459
|
//#endregion
|
|
1461
1460
|
//#region src/lib/constants.ts
|