import type { ArtifactType } from '../schemas/ArtifactType'; import type { PackageType } from '../schemas/PackageType'; /** * Artifact Metadata */ export interface RegistryArtifactMetadata { artifactType?: ArtifactType; /** * Timestamp in milliseconds when the registry was soft-deleted */ deletedAt?: string; /** * @format int64 */ downloadsCount?: number; isPublic: boolean; isQuarantined?: boolean; labels?: string[]; lastModified?: string; latestVersion: string; name: string; packageType: PackageType; registryIdentifier: string; registryPath: string; registryUUID: string; uuid: string; }