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