Skip to content

Commit

Permalink
fix: upgrade postgrest-js to rc.4 (#1296)
Browse files Browse the repository at this point in the history
  • Loading branch information
avallete authored Oct 28, 2024
1 parent 3eda615 commit e2c2206
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@supabase/auth-js": "2.65.1",
"@supabase/functions-js": "2.4.3",
"@supabase/node-fetch": "2.6.15",
"@supabase/postgrest-js": "1.17.0-rc.3",
"@supabase/postgrest-js": "1.17.0-rc.4",
"@supabase/realtime-js": "2.10.7",
"@supabase/storage-js": "2.7.1"
},
Expand Down
6 changes: 5 additions & 1 deletion test/index.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,12 @@ const supabase = createClient<Database>(URL, KEY)

// referencing missing column
{
type SelectQueryError<Message extends string> = { error: true } & Message

const res = await supabase.from('users').select('username, dat')
expectType<PostgrestSingleResponse<"column 'dat' does not exist on 'users'."[]>>(res)
expectType<
PostgrestSingleResponse<SelectQueryError<"column 'dat' does not exist on 'users'.">[]>
>(res)
}

// one-to-one relationship
Expand Down

0 comments on commit e2c2206

Please sign in to comment.