You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A `Supabase.Client` holds general information about Supabase, that can be used to intereact with any of the children integrations, for example: `Supabase.Storage` or `Supabase.UI`.
27
29
28
-
`Supabase.Client` is defined as:
29
-
30
-
-`:base_url` - The base url of the Supabase API, it is usually in the form `https://<app-name>.supabase.io`.
31
-
-`:api_key` - The API key used to authenticate requests to the Supabase API.
32
-
-`:access_token` - Token with specific permissions to access the Supabase API, it is usually the same as the API key.
33
-
-`:db` - default database options
34
-
-`:schema` - default schema to use, defaults to `"public"`
35
-
-`:global` - global options config
36
-
-`:headers` - additional headers to use on each request
37
-
-`:auth` - authentication options
38
-
-`:auto_refresh_token` - automatically refresh the token when it expires, defaults to `true`
39
-
-`:debug` - enable debug mode, defaults to `false`
40
-
-`:detect_session_in_url` - detect session in URL, defaults to `true`
41
-
-`:flow_type` - authentication flow type, defaults to `"web"`
42
-
-`:persist_session` - persist session, defaults to `true`
0 commit comments