// Copyright © 2022-2026 Partium, Inc. DBA Partium import { EnrichmentJobType } from './enrichment-job'; /** * Request for creating a data enrichment job. */ export interface CreateEnrichmentJobRequest { /** * The CSV file containing the part-ids to enrich. */ csvFile: File; /** * Optional type of the enrichment job. */ jobType?: EnrichmentJobType; /** * Organization identifier when explicitly selecting an organization. */ organization?: string; }