mineos-market-client
    Preparing search index...

    Type Alias Publication

    Complete publication details including metadata, dependencies, and statistics

    type Publication = {
        fileId: number;
        publicationName: string;
        userName: string;
        version: number;
        categoryId: PublicationCategory;
        sourceUrl: string;
        path: string;
        licenseId: License;
        timestamp: number;
        initialDescription: string;
        translatedDescription: string;
        dependenciesData?: Record<string, Dependency>;
        dependencies?: number[];
        allDependencies?: number[];
        iconUrl?: string;
        averageRating?: number;
        whatsNew?: string;
        whatsNewVersion?: number;
        downloads: number;
    }
    Index

    Properties

    fileId: number

    Publication's unique file identifier

    publicationName: string

    Name of the publication

    userName: string

    Username of the publication's author

    version: number

    Current version number of the publication

    Category identifier of the publication

    sourceUrl: string

    URL to the source code repository

    path: string

    Path to the main file or entry point

    licenseId: License

    License identifier associated with the publication

    timestamp: number

    Publication creation timestamp

    initialDescription: string

    Original description text

    translatedDescription: string

    Translated description text

    dependenciesData?: Record<string, Dependency>

    Map of dependency data indexed by dependency ID

    dependencies?: number[]

    List of direct dependency file IDs

    allDependencies?: number[]

    List of all dependency file IDs (including transitive)

    iconUrl?: string

    URL to the publication's icon image

    averageRating?: number

    Average rating score from reviews

    whatsNew?: string

    Description of recent changes

    whatsNewVersion?: number

    Version number when whatsNew was last updated

    downloads: number

    Total number of downloads