type MakeOptional<T, K> = Omit<T, K> & Partial<Pick<T, K>>;
Defined in: packages/db/src/types.ts:914
T
K extends keyof T