diff --git a/packages/core/src/database/utils.ts b/packages/core/src/database/utils.ts index 720a44d41..6dde30ea8 100644 --- a/packages/core/src/database/utils.ts +++ b/packages/core/src/database/utils.ts @@ -21,9 +21,18 @@ export const excludeAutoSetFields = (fields: readonly T[]) => ) ); -export const convertToPrimitive = (value: SchemaValue): SchemaValuePrimitive => { +/** + * Note `undefined` is removed from the acceptable list, + * since you should NOT call this function if ignoring the field is the desired behavior. + * Calling this function with `null` means an explicit `null` setting in database is expected. + * @param value The value to convert. + * @returns A primitive that can be saved into database. + */ +export const convertToPrimitive = ( + value: NonNullable | null +): NonNullable | null => { if (value === null) { - return value; + return null; } if (typeof value === 'object') { diff --git a/packages/schemas/src/foundations.ts b/packages/schemas/src/foundations.ts index 6451ef660..526cfb99e 100644 --- a/packages/schemas/src/foundations.ts +++ b/packages/schemas/src/foundations.ts @@ -1,4 +1,4 @@ -export type SchemaValuePrimitive = string | number | boolean | null; +export type SchemaValuePrimitive = string | number | boolean | undefined; export type SchemaValue = SchemaValuePrimitive | Record; export type SchemaLike = { [key in Key]: SchemaValue;