fix(db-mongodb): exists query on checkbox fields (#12567)

This commit is contained in:
Jarrod Flesch
2025-05-27 11:19:09 -04:00
committed by GitHub
parent b61ef13481
commit f2b6c4a707
4 changed files with 60 additions and 1 deletions

View File

@@ -730,6 +730,7 @@ export interface TextField {
export interface CheckboxField {
id: string;
checkbox: boolean;
checkboxNotRequired?: boolean | null;
updatedAt: string;
createdAt: string;
}
@@ -2318,6 +2319,7 @@ export interface LocalizedTabsBlockSelect<T extends boolean = true> {
*/
export interface CheckboxFieldsSelect<T extends boolean = true> {
checkbox?: T;
checkboxNotRequired?: T;
updatedAt?: T;
createdAt?: T;
}