@supabase/supabase-js 2.110.3-canary.0 → 2.110.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/README.md +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/umd/supabase.js +3 -3
- package/package.json +6 -6
- package/src/SupabaseClient.ts +2 -2
- package/src/lib/version.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supabase/supabase-js",
|
|
3
|
-
"version": "2.110.3
|
|
3
|
+
"version": "2.110.3",
|
|
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/
|
|
63
|
-
"@supabase/
|
|
64
|
-
"@supabase/
|
|
65
|
-
"@supabase/storage-js": "2.110.3
|
|
66
|
-
"@supabase/
|
|
62
|
+
"@supabase/auth-js": "2.110.3",
|
|
63
|
+
"@supabase/functions-js": "2.110.3",
|
|
64
|
+
"@supabase/postgrest-js": "2.110.3",
|
|
65
|
+
"@supabase/storage-js": "2.110.3",
|
|
66
|
+
"@supabase/realtime-js": "2.110.3"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@arethetypeswrong/cli": "^0.18.2",
|
package/src/SupabaseClient.ts
CHANGED
|
@@ -165,9 +165,9 @@ export default class SupabaseClient<
|
|
|
165
165
|
* ```
|
|
166
166
|
*
|
|
167
167
|
* @exampleDescription Custom fetch implementation
|
|
168
|
-
* `supabase-js` uses the
|
|
168
|
+
* `supabase-js` uses the runtime's global `fetch` to make HTTP requests,
|
|
169
169
|
* but an alternative `fetch` implementation can be provided as an option.
|
|
170
|
-
* This is
|
|
170
|
+
* This is useful in environments where the global `fetch` is unavailable or where you want to customize request behavior.
|
|
171
171
|
*
|
|
172
172
|
* @example Custom fetch implementation
|
|
173
173
|
* ```js
|
package/src/lib/version.ts
CHANGED
|
@@ -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.3
|
|
7
|
+
export const version = '2.110.3'
|