export type BooleanInput = string | boolean | null | undefined; export type NumberInput = string | number | null | undefined; export type DateInput = string | Date | null | undefined; export type StringInput = string | null | undefined;