import type { ListParams } from '@timeback/internal-client-infra'; /** * List params for endpoints that support the `search` query param. * * NOTE: Timeback currently only honors `search` on a small subset of * OneRoster endpoints. Use `ListParamsNoSearch` everywhere else to avoid * misleading/ignored params. */ export type ListParamsWithSearch = ListParams; /** * List params for endpoints that do NOT support the `search` query param. * Passing `search` should be a type error. */ export type ListParamsNoSearch = Omit, 'search'>; //# sourceMappingURL=list-params.d.ts.map