import { BaseFilterable, OperatorMap } from "../../../dal"; import { FindParams, SelectParams } from "../../common"; export interface AdminGetViewConfigurationParams extends SelectParams { } export interface AdminGetViewConfigurationsParams extends FindParams, BaseFilterable { /** * IDs to filter view configurations by. */ id?: string | string[]; /** * Entity to filter by. */ entity?: string | string[]; /** * Name to filter by. */ name?: string | string[]; /** * User ID to filter by. */ user_id?: string | string[] | null; /** * Filter by system default status. */ is_system_default?: boolean; /** * Date filters for when the view configuration was created. */ created_at?: OperatorMap; /** * Date filters for when the view configuration was updated. */ updated_at?: OperatorMap; } //# sourceMappingURL=queries.d.ts.map