/** * A Conan package (PKGID). */ export interface ConanPackageMetadataV3 { /** * The stable UUID of the package row. * @format uuid */ id: string; /** * The newest finalized package revision hash. */ latestPackageRevision?: string; /** * Build options parsed from conaninfo.txt. */ options?: { [key: string]: any; }; /** * The package id hash. */ packageId: string; /** * Build settings parsed from conaninfo.txt. */ settings?: { [key: string]: any; }; /** * Size of the latest finalized package revision. */ size?: string; }