/** * Request body for triggering an ES search backfill. */ export interface BackfillTriggerRequestInputV3 { /** * Entity types to backfill into Elasticsearch. */ entityTypes: Array<'FILE' | 'PACKAGE' | 'PACKAGE_VERSION' | 'REGISTRY'>; /** * If true, reset progress and re-index all rows from the beginning. */ reindexAll?: boolean; }