@supabase/supabase-js 3.0.0-next.13 → 3.0.0-next.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supabase/supabase-js",
3
- "version": "3.0.0-next.13",
3
+ "version": "3.0.0-next.15",
4
4
  "description": "Isomorphic Javascript SDK for Supabase",
5
5
  "keywords": [
6
6
  "javascript",
@@ -80,11 +80,11 @@
80
80
  "update:test-deps:bun": "cd test/integration/bun && bun install"
81
81
  },
82
82
  "dependencies": {
83
- "@supabase/auth-js": "3.0.0-next.13",
84
- "@supabase/functions-js": "3.0.0-next.13",
85
- "@supabase/postgrest-js": "3.0.0-next.13",
86
- "@supabase/realtime-js": "3.0.0-next.13",
87
- "@supabase/storage-js": "3.0.0-next.13"
83
+ "@supabase/auth-js": "3.0.0-next.15",
84
+ "@supabase/functions-js": "3.0.0-next.15",
85
+ "@supabase/postgrest-js": "3.0.0-next.15",
86
+ "@supabase/realtime-js": "3.0.0-next.15",
87
+ "@supabase/storage-js": "3.0.0-next.15"
88
88
  },
89
89
  "devDependencies": {
90
90
  "jsr": "^0.13.5",
@@ -10,6 +10,7 @@ import {
10
10
  type RealtimeChannelOptions,
11
11
  RealtimeClient,
12
12
  type RealtimeClientOptions,
13
+ type RealtimeRemoveChannelResponse,
13
14
  } from '@supabase/realtime-js'
14
15
  import { StorageClient as SupabaseStorageClient } from '@supabase/storage-js'
15
16
  import {
@@ -510,7 +511,7 @@ export default class SupabaseClient<
510
511
  * supabase.removeChannel(myChannel)
511
512
  * ```
512
513
  */
513
- removeChannel(channel: RealtimeChannel): Promise<'ok' | 'timed out' | 'error'> {
514
+ removeChannel(channel: RealtimeChannel): Promise<RealtimeRemoveChannelResponse> {
514
515
  return this.realtime.removeChannel(channel)
515
516
  }
516
517
 
@@ -527,7 +528,7 @@ export default class SupabaseClient<
527
528
  * supabase.removeAllChannels()
528
529
  * ```
529
530
  */
530
- removeAllChannels(): Promise<('ok' | 'timed out' | 'error')[]> {
531
+ removeAllChannels(): Promise<RealtimeRemoveChannelResponse[]> {
531
532
  return this.realtime.removeAllChannels()
532
533
  }
533
534
 
@@ -4,4 +4,4 @@
4
4
  // - Debugging and support (identifying which version is running)
5
5
  // - Telemetry and logging (version reporting in errors/analytics)
6
6
  // - Ensuring build artifacts match the published package version
7
- export const version = '3.0.0-next.13'
7
+ export const version = '3.0.0-next.15'