@supabase/storage-js 2.110.0 → 2.110.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/dist/index.cjs +2 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -2
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +1 -2
- 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 +3 -3
- package/src/lib/version.ts +1 -1
- package/src/packages/StorageFileApi.ts +1 -2
package/dist/index.cjs
CHANGED
|
@@ -1116,8 +1116,7 @@ var StorageFileApi = class extends BaseApiClient {
|
|
|
1116
1116
|
* @category Storage
|
|
1117
1117
|
* @subcategory File Buckets
|
|
1118
1118
|
* @param path The full path and file name of the file to be downloaded. For example `folder/image.png`.
|
|
1119
|
-
* @param options
|
|
1120
|
-
* @param options.cacheNonce Append a cache nonce parameter to the URL to invalidate the cache.
|
|
1119
|
+
* @param options Optional settings: `transform` to transform the asset before serving it to the client, and `cacheNonce` to append a cache nonce parameter to the URL to invalidate the cache.
|
|
1121
1120
|
* @param parameters Additional fetch parameters like signal for cancellation. Supports standard fetch options including cache control.
|
|
1122
1121
|
* @returns BlobDownloadBuilder instance for downloading the file
|
|
1123
1122
|
*
|
|
@@ -1599,7 +1598,7 @@ var StorageFileApi = class extends BaseApiClient {
|
|
|
1599
1598
|
|
|
1600
1599
|
//#endregion
|
|
1601
1600
|
//#region src/lib/version.ts
|
|
1602
|
-
const version = "2.110.
|
|
1601
|
+
const version = "2.110.1";
|
|
1603
1602
|
|
|
1604
1603
|
//#endregion
|
|
1605
1604
|
//#region src/lib/constants.ts
|