/** * A Conan package (PKGID) detail. The package revisions are listed via the package-revisions endpoint. */ export interface ConanPackageDetailV3 { /** * Total downloads across every finalized package revision of this package. * @format int64 */ downloadCount?: number; /** * The stable UUID of the package row. * @format uuid */ id: string; /** * Most recent download time (Unix milliseconds), if any. * @format int64 */ lastDownloadedAt?: number | null; /** * Build options parsed from conaninfo.txt. */ options?: { [key: string]: any; }; packageId: string; /** * Number of finalized package revisions (PREVs) of this package. * @format int64 */ packageRevisionCount?: number; recipeRevision?: string; /** * Build settings parsed from conaninfo.txt. */ settings?: { [key: string]: any; }; size?: string; }