-
-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problems with stricter typing introduced in v2.47.11 #1351
Comments
We were able to fix this by using the new type ResolveFilterValue<
Schema extends PublicSchema,
Row extends Record<string, unknown>,
ColumnName extends string,
> = ColumnName extends `${infer RelationshipTable}.${infer Remainder}`
? Remainder extends `${infer _}.${infer _}` ? ResolveFilterValue<Schema, Row, Remainder>
: ResolveFilterRelationshipValue<Schema, RelationshipTable, Remainder>
: ColumnName extends keyof Row ? Row[ColumnName]
: never
type ResolveFilterRelationshipValue<
Schema extends PublicSchema,
RelationshipTable extends string,
RelationshipColumn extends string,
> = Schema['Tables'] & Schema['Views'] extends infer TablesAndViews
? RelationshipTable extends keyof TablesAndViews
? 'Row' extends keyof TablesAndViews[RelationshipTable]
? RelationshipColumn extends keyof TablesAndViews[RelationshipTable]['Row']
? TablesAndViews[RelationshipTable]['Row'][RelationshipColumn]
: unknown
: unknown
: unknown
: never
export async function deleteEntity<
TableName extends string & keyof PublicTables,
Column extends string & keyof PublicTables[TableName]['Row'],
Value extends ResolveFilterValue<PublicSchema, PublicTables[TableName]['Row'], Column> extends
never ? NonNullable<unknown>
: NonNullable<ResolveFilterValue<PublicSchema, PublicTables[TableName]['Row'], Column>>,
>(
table: TableName,
column: Column,
value: Value,
): Promise<void> {
const { error } = await supabaseAdmin
.from(table)
.delete()
.eq(column, value)
if (error) {
throw new Error(`Failed to delete entity: ${error.message}`)
}
} |
It'd be useful to have them exported too I guess. Having lots of issues with it too. |
@thisislvca, I've created a PR for both types: supabase/postgrest-js#596 If the PR is merged, I will also create a PR for supabase-js to also export these types. |
Ah thanks a lot man 🔥 |
Bug report
Describe the bug
We have a lot of utility functions such as (simplified):
as well as more generic versions such as:
which worked fine before 2.47.11, but with the stricter typing we get this error:
The error message is not helpful with debugging this problem and, so far, we were not able to fix this ourselves.
System information
The text was updated successfully, but these errors were encountered: