// Copyright © 2022-2026 Partium, Inc. DBA Partium /** * The projection of the part data. */ export type PartDataProjection = 'partiumId' | 'images' | 'supplierDiscovery' | 'identifiers' | 'enrichedAttributes'; /** * The request for the get part data request. */ export interface GetPartDataRequest { /** * The organization of the part. */ organization?: string; /** * The id of the part. */ id?: string; /** * The partium id of the part. */ partiumId?: string; /** * The projection of the part data. */ projection: PartDataProjection[]; /** * The language used to resolve translated attribute names and values. */ language?: string; /** * Ordered fallback languages used when the preferred language is missing. */ fallbackLanguages?: string[]; }