@supabase/storage-js 3.0.0-next.7 → 3.0.0-next.9

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.d.cts CHANGED
@@ -1943,7 +1943,7 @@ declare class StorageAnalyticsClient extends BaseApiClient<StorageError> {
1943
1943
  * ```typescript
1944
1944
  * import { createClient } from '@supabase/supabase-js'
1945
1945
  *
1946
- * const supabase = createClient('https://xyzcompany.supabase.co', 'publishable-or-anon-key')
1946
+ * const supabase = createClient('https://xyzcompany.supabase.co', 'your-publishable-key')
1947
1947
  * const { data, error } = await supabase.storage.analytics.listBuckets()
1948
1948
  * ```
1949
1949
  *
@@ -2399,7 +2399,7 @@ declare class StorageVectorsClient extends VectorBucketApi {
2399
2399
  * ```typescript
2400
2400
  * import { createClient } from '@supabase/supabase-js'
2401
2401
  *
2402
- * const supabase = createClient('https://xyzcompany.supabase.co', 'publishable-or-anon-key')
2402
+ * const supabase = createClient('https://xyzcompany.supabase.co', 'your-publishable-key')
2403
2403
  * const bucket = supabase.storage.vectors.from('embeddings-prod')
2404
2404
  * ```
2405
2405
  *
@@ -2842,7 +2842,7 @@ declare class StorageClient extends StorageBucketApi {
2842
2842
  * ```ts
2843
2843
  * import { createClient } from '@supabase/supabase-js'
2844
2844
  *
2845
- * const supabase = createClient('https://xyzcompany.supabase.co', 'publishable-or-anon-key')
2845
+ * const supabase = createClient('https://xyzcompany.supabase.co', 'your-publishable-key')
2846
2846
  * const avatars = supabase.storage.from('avatars')
2847
2847
  * ```
2848
2848
  *
@@ -2851,7 +2851,7 @@ declare class StorageClient extends StorageBucketApi {
2851
2851
  * import { StorageClient } from '@supabase/storage-js'
2852
2852
  *
2853
2853
  * const storage = new StorageClient('https://xyzcompany.supabase.co/storage/v1', {
2854
- * apikey: 'publishable-or-anon-key',
2854
+ * apikey: 'your-publishable-key',
2855
2855
  * })
2856
2856
  * const avatars = storage.from('avatars')
2857
2857
  * ```
package/dist/index.d.mts CHANGED
@@ -1943,7 +1943,7 @@ declare class StorageAnalyticsClient extends BaseApiClient<StorageError> {
1943
1943
  * ```typescript
1944
1944
  * import { createClient } from '@supabase/supabase-js'
1945
1945
  *
1946
- * const supabase = createClient('https://xyzcompany.supabase.co', 'publishable-or-anon-key')
1946
+ * const supabase = createClient('https://xyzcompany.supabase.co', 'your-publishable-key')
1947
1947
  * const { data, error } = await supabase.storage.analytics.listBuckets()
1948
1948
  * ```
1949
1949
  *
@@ -2399,7 +2399,7 @@ declare class StorageVectorsClient extends VectorBucketApi {
2399
2399
  * ```typescript
2400
2400
  * import { createClient } from '@supabase/supabase-js'
2401
2401
  *
2402
- * const supabase = createClient('https://xyzcompany.supabase.co', 'publishable-or-anon-key')
2402
+ * const supabase = createClient('https://xyzcompany.supabase.co', 'your-publishable-key')
2403
2403
  * const bucket = supabase.storage.vectors.from('embeddings-prod')
2404
2404
  * ```
2405
2405
  *
@@ -2842,7 +2842,7 @@ declare class StorageClient extends StorageBucketApi {
2842
2842
  * ```ts
2843
2843
  * import { createClient } from '@supabase/supabase-js'
2844
2844
  *
2845
- * const supabase = createClient('https://xyzcompany.supabase.co', 'publishable-or-anon-key')
2845
+ * const supabase = createClient('https://xyzcompany.supabase.co', 'your-publishable-key')
2846
2846
  * const avatars = supabase.storage.from('avatars')
2847
2847
  * ```
2848
2848
  *
@@ -2851,7 +2851,7 @@ declare class StorageClient extends StorageBucketApi {
2851
2851
  * import { StorageClient } from '@supabase/storage-js'
2852
2852
  *
2853
2853
  * const storage = new StorageClient('https://xyzcompany.supabase.co/storage/v1', {
2854
- * apikey: 'publishable-or-anon-key',
2854
+ * apikey: 'your-publishable-key',
2855
2855
  * })
2856
2856
  * const avatars = storage.from('avatars')
2857
2857
  * ```
package/dist/index.mjs CHANGED
@@ -1486,7 +1486,7 @@ var StorageFileApi = class extends BaseApiClient {
1486
1486
 
1487
1487
  //#endregion
1488
1488
  //#region src/lib/version.ts
1489
- const version = "3.0.0-next.7";
1489
+ const version = "3.0.0-next.9";
1490
1490
 
1491
1491
  //#endregion
1492
1492
  //#region src/lib/constants.ts
@@ -1812,7 +1812,7 @@ var StorageAnalyticsClient = class extends BaseApiClient {
1812
1812
  * ```typescript
1813
1813
  * import { createClient } from '@supabase/supabase-js'
1814
1814
  *
1815
- * const supabase = createClient('https://xyzcompany.supabase.co', 'publishable-or-anon-key')
1815
+ * const supabase = createClient('https://xyzcompany.supabase.co', 'your-publishable-key')
1816
1816
  * const { data, error } = await supabase.storage.analytics.listBuckets()
1817
1817
  * ```
1818
1818
  *
@@ -2347,7 +2347,7 @@ var StorageVectorsClient = class extends VectorBucketApi {
2347
2347
  * ```typescript
2348
2348
  * import { createClient } from '@supabase/supabase-js'
2349
2349
  *
2350
- * const supabase = createClient('https://xyzcompany.supabase.co', 'publishable-or-anon-key')
2350
+ * const supabase = createClient('https://xyzcompany.supabase.co', 'your-publishable-key')
2351
2351
  * const bucket = supabase.storage.vectors.from('embeddings-prod')
2352
2352
  * ```
2353
2353
  *
@@ -2844,7 +2844,7 @@ var StorageClient = class extends StorageBucketApi {
2844
2844
  * ```ts
2845
2845
  * import { createClient } from '@supabase/supabase-js'
2846
2846
  *
2847
- * const supabase = createClient('https://xyzcompany.supabase.co', 'publishable-or-anon-key')
2847
+ * const supabase = createClient('https://xyzcompany.supabase.co', 'your-publishable-key')
2848
2848
  * const avatars = supabase.storage.from('avatars')
2849
2849
  * ```
2850
2850
  *
@@ -2853,7 +2853,7 @@ var StorageClient = class extends StorageBucketApi {
2853
2853
  * import { StorageClient } from '@supabase/storage-js'
2854
2854
  *
2855
2855
  * const storage = new StorageClient('https://xyzcompany.supabase.co/storage/v1', {
2856
- * apikey: 'publishable-or-anon-key',
2856
+ * apikey: 'your-publishable-key',
2857
2857
  * })
2858
2858
  * const avatars = storage.from('avatars')
2859
2859
  * ```