Type Alias NetworkVersion

NetworkVersion: {
    build: number;
    class: "Version";
    major: number;
    minor: number;
}

An object representing software versioning. Used in the ConnectPacket to allow the client to inform the server the minimum Archipelago version it supports.

Type declaration

  • Readonlybuild: number

    The build/patch component of the version number. (e.g., 0.0.X)

  • Readonlyclass: "Version"

    Apparently required to be present to ensure the Archipelago server parses this object correctly.

  • Readonlymajor: number

    The major component of the version number. (e.g., X.0.0)

  • Readonlyminor: number

    The minor component of the version number. (e.g., 0.X.0)

Archipelago does not follow a semver versioning standard.