@supabase/supabase-js 2.104.0-canary.0 → 2.104.0-canary.2
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.cjs +9 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -8
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +8 -8
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/umd/supabase.js +8 -8
- package/package.json +6 -6
- package/src/SupabaseClient.ts +1 -1
- package/src/index.ts +6 -1
- 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.104.0-canary.
|
|
3
|
+
"version": "2.104.0-canary.2",
|
|
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": "2.104.0-canary.
|
|
84
|
-
"@supabase/functions-js": "2.104.0-canary.
|
|
85
|
-
"@supabase/postgrest-js": "2.104.0-canary.
|
|
86
|
-
"@supabase/realtime-js": "2.104.0-canary.
|
|
87
|
-
"@supabase/storage-js": "2.104.0-canary.
|
|
83
|
+
"@supabase/auth-js": "2.104.0-canary.2",
|
|
84
|
+
"@supabase/functions-js": "2.104.0-canary.2",
|
|
85
|
+
"@supabase/postgrest-js": "2.104.0-canary.2",
|
|
86
|
+
"@supabase/realtime-js": "2.104.0-canary.2",
|
|
87
|
+
"@supabase/storage-js": "2.104.0-canary.2"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
90
|
"jsr": "^0.13.5",
|
package/src/SupabaseClient.ts
CHANGED
|
@@ -271,7 +271,7 @@ export default class SupabaseClient<
|
|
|
271
271
|
* ```ts
|
|
272
272
|
* import { createClient } from '@supabase/supabase-js'
|
|
273
273
|
*
|
|
274
|
-
* const supabase = createClient('https://xyzcompany.supabase.co', '
|
|
274
|
+
* const supabase = createClient('https://xyzcompany.supabase.co', 'publishable-or-anon-key')
|
|
275
275
|
*
|
|
276
276
|
* const { data } = await supabase.from('profiles').select('*')
|
|
277
277
|
* ```
|
package/src/index.ts
CHANGED
|
@@ -7,8 +7,13 @@ export type {
|
|
|
7
7
|
PostgrestResponse,
|
|
8
8
|
PostgrestSingleResponse,
|
|
9
9
|
PostgrestMaybeSingleResponse,
|
|
10
|
+
PostgrestBuilder,
|
|
11
|
+
PostgrestFilterBuilder,
|
|
12
|
+
PostgrestTransformBuilder,
|
|
13
|
+
PostgrestQueryBuilder,
|
|
10
14
|
} from '@supabase/postgrest-js'
|
|
11
15
|
export { PostgrestError } from '@supabase/postgrest-js'
|
|
16
|
+
export { StorageApiError } from '@supabase/storage-js'
|
|
12
17
|
export type { FunctionInvokeOptions } from '@supabase/functions-js'
|
|
13
18
|
export {
|
|
14
19
|
FunctionsHttpError,
|
|
@@ -34,7 +39,7 @@ export type {
|
|
|
34
39
|
* ```ts
|
|
35
40
|
* import { createClient } from '@supabase/supabase-js'
|
|
36
41
|
*
|
|
37
|
-
* const supabase = createClient('https://xyzcompany.supabase.co', '
|
|
42
|
+
* const supabase = createClient('https://xyzcompany.supabase.co', 'publishable-or-anon-key')
|
|
38
43
|
* const { data, error } = await supabase.from('profiles').select('*')
|
|
39
44
|
* ```
|
|
40
45
|
*/
|
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.104.0-canary.
|
|
7
|
+
export const version = '2.104.0-canary.2'
|