// Copyright © 2022-2026 Partium, Inc. DBA Partium import { EnrichmentJobType } from './enrichment-job'; /** * Request to trigger a single-part enrichment job. */ export interface TriggerEnrichmentJobRequest { /** * Type of the enrichment job. */ type: EnrichmentJobType; /** * List of part ids to enrich. */ partIds: string[]; /** * Whether the job should be visible in the enrichment dashboard. */ visible?: boolean; /** * Optional list of attribute identifiers used for attribute enrichment jobs. */ attributeIds?: string[]; /** * Organization identifier when explicitly selecting an organization. */ organization?: string; }