@supabase/supabase-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supabase/supabase-js",
3
- "version": "2.110.0",
3
+ "version": "2.110.1",
4
4
  "description": "Isomorphic Javascript SDK for Supabase",
5
5
  "keywords": [
6
6
  "javascript",
@@ -59,11 +59,11 @@
59
59
  "directory": "packages/core/supabase-js"
60
60
  },
61
61
  "dependencies": {
62
- "@supabase/auth-js": "2.110.0",
63
- "@supabase/postgrest-js": "2.110.0",
64
- "@supabase/functions-js": "2.110.0",
65
- "@supabase/storage-js": "2.110.0",
66
- "@supabase/realtime-js": "2.110.0"
62
+ "@supabase/auth-js": "2.110.1",
63
+ "@supabase/postgrest-js": "2.110.1",
64
+ "@supabase/storage-js": "2.110.1",
65
+ "@supabase/realtime-js": "2.110.1",
66
+ "@supabase/functions-js": "2.110.1"
67
67
  },
68
68
  "devDependencies": {
69
69
  "@arethetypeswrong/cli": "^0.18.2",
@@ -135,8 +135,8 @@
135
135
  "test:cjs": "node test/module-resolution.test.cjs && node test/module-resolution-cors.test.cjs",
136
136
  "test:hermes-compat": "node test/bundle-hermes-compat.test.cjs",
137
137
  "test:module-resolution": "npm run test:exports && npm run test:esm && npm run test:cjs && npm run test:hermes-compat",
138
- "docs": "typedoc --entryPoints src/index.ts --entryPoints src/cors.ts --out docs/v2",
139
- "docs:json": "typedoc --entryPoints src/index.ts --entryPoints src/cors.ts --json docs/v2/spec.json --excludeExternals",
138
+ "docs": "typedoc --options ../../../typedoc.base.mjs --entryPoints src/index.ts --entryPoints src/cors.ts --out docs/v2",
139
+ "docs:json": "typedoc --options ../../../typedoc.base.mjs --entryPoints src/index.ts --entryPoints src/cors.ts --json docs/v2/spec.json --excludeExternals",
140
140
  "serve:coverage": "pnpm nx test:coverage supabase-js && pnpm dlx serve test/coverage",
141
141
  "update:test-deps": "pnpm run update:test-deps:expo && pnpm run update:test-deps:next && pnpm run update:test-deps:deno && pnpm run update:test-deps:bun",
142
142
  "update:test-deps:expo": "cd test/integration/expo && pnpm install --ignore-workspace",
@@ -102,14 +102,15 @@ export default class SupabaseClient<
102
102
  *
103
103
  * @param supabaseUrl The unique Supabase URL which is supplied when you create a new project in your project dashboard.
104
104
  * @param supabaseKey The unique Supabase Key which is supplied when you create a new project in your project dashboard.
105
- * @param options.db.schema You can switch in between schemas. The schema needs to be on the list of exposed schemas inside Supabase.
106
- * @param options.auth.autoRefreshToken Set to "true" if you want to automatically refresh the token before expiring.
107
- * @param options.auth.persistSession Set to "true" if you want to automatically save the user session into local storage.
108
- * @param options.auth.detectSessionInUrl Set to "true" if you want to automatically detects OAuth grants in the URL and signs in the user.
109
- * @param options.realtime Options passed along to realtime-js constructor.
110
- * @param options.storage Options passed along to the storage-js constructor.
111
- * @param options.global.fetch A custom fetch implementation.
112
- * @param options.global.headers Any additional headers to send with each network request.
105
+ * @param options Optional configuration for the client:
106
+ * - `db.schema` You can switch in between schemas. The schema needs to be on the list of exposed schemas inside Supabase.
107
+ * - `auth.autoRefreshToken` Set to `true` if you want to automatically refresh the token before expiring.
108
+ * - `auth.persistSession` Set to `true` if you want to automatically save the user session into local storage.
109
+ * - `auth.detectSessionInUrl` Set to `true` if you want to automatically detect OAuth grants in the URL and sign in the user.
110
+ * - `realtime` Options passed along to the realtime-js constructor.
111
+ * - `storage` Options passed along to the storage-js constructor.
112
+ * - `global.fetch` A custom fetch implementation.
113
+ * - `global.headers` — Any additional headers to send with each network request.
113
114
  *
114
115
  * @example Creating a client
115
116
  * ```js
@@ -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 = '2.110.0'
7
+ export const version = '2.110.1'