When using the dbgenerated function with uuidv7() from Postgres v18 the update method don't work
const { mutate: updateTodo } = client.todo.useUpdate();
model Todo {
id String @id @default(dbgenerated("uuidv7()")) // this is from Postgres v18
...
}
When using with autoincriment with type Int the update works normally
const { mutate: updateTest } = client.test.useUpdate();
model Test {
id Int @id @default(autoincrement())
...
}