import { Condition } from './Condition'; import { Sort } from './Sort'; export type ObjectSearchRequest = { conditions: Condition[]; excludedFields: string[]; sorts: Sort[]; offset?: null | number; count?: null | number; };