Skip to content

Commit a927eeb

Browse files
fix: make everything optional
1 parent 3e854b3 commit a927eeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ export type SupabaseClientOptions = {
1616
/**
1717
* The Postgres schema which your tables belong to. Must be on the list of exposed schemas in Supabase. Defaults to 'public'.
1818
*/
19-
db: {
19+
db?: {
2020
schema: string
2121
}
2222

23-
auth: {
23+
auth?: {
2424
/**
2525
* Automatically refreshes the token for logged in users.
2626
*/

0 commit comments

Comments
 (0)