/** * Statistics for a single package */ export interface PackageStatsV3 { /** * Total number of artifacts/versions in the package * @format int64 */ artifactsCount?: number; /** * Total download count for the package * @format int64 */ downloadCount?: number; /** * Package UUID * @format uuid */ id: string; /** * Total size of the package (human-readable format) */ size?: string; }