Convex 1.13.0 missing optional in types
convex 1.13.0.Take
await ctx.db.insert('messages', message); for example.Here is the expected type that
ctx.db.insert() expects for message:await ctx.db.insert('messages', { author: 'Sam', body: 'test' }); is no longer valid because I need to explicitly define id, name, postId even though they can be undefined.Is there a way to restore the previous optional behaviour?
