find-itch-games
    Preparing search index...

    Interface IItchUpload

    The specific file/channel that was installed.

    interface IItchUpload {
        id: number;
        storage?: IItchUploadStorage;
        host?: string;
        filename?: string;
        displayName?: string;
        size?: number;
        channelName?: string;
        buildId?: number;
        build?: IItchBuild;
        type?: IItchUploadType;
        preorder?: boolean;
        demo?: boolean;
        platforms?: IItchPlatforms;
        createdAt?: string;
        updatedAt?: string;
    }
    Index
    id: number
    host?: string

    Only set for external storage.

    filename?: string

    Original file name, e.g. Overland_x64.zip.

    displayName?: string

    Name set by the developer, e.g. Overland for Windows 64-bit.

    size?: number

    Size in bytes; for wharf uploads this is the archive size.

    channelName?: string

    Set only for wharf (butler-pushed) uploads.

    buildId?: number
    build?: IItchBuild
    preorder?: boolean
    demo?: boolean
    platforms?: IItchPlatforms
    createdAt?: string
    updatedAt?: string