@supabase/supabase-js 3.0.0-next.1 → 3.0.0-next.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supabase/supabase-js",
3
- "version": "3.0.0-next.1",
3
+ "version": "3.0.0-next.3",
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.1",
84
- "@supabase/functions-js": "3.0.0-next.1",
85
- "@supabase/postgrest-js": "3.0.0-next.1",
86
- "@supabase/realtime-js": "3.0.0-next.1",
87
- "@supabase/storage-js": "3.0.0-next.1"
83
+ "@supabase/auth-js": "3.0.0-next.3",
84
+ "@supabase/functions-js": "3.0.0-next.3",
85
+ "@supabase/postgrest-js": "3.0.0-next.3",
86
+ "@supabase/realtime-js": "3.0.0-next.3",
87
+ "@supabase/storage-js": "3.0.0-next.3"
88
88
  },
89
89
  "devDependencies": {
90
90
  "jsr": "^0.13.5",
@@ -328,6 +328,7 @@ export default class SupabaseClient<
328
328
  this.realtime = this._initRealtimeClient({
329
329
  headers: this.headers,
330
330
  accessToken: this._getAccessToken.bind(this),
331
+ fetch: this.fetch,
331
332
  ...settings.realtime,
332
333
  })
333
334
  if (this.accessToken) {
@@ -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.1'
7
+ export const version = '3.0.0-next.3'