@edgible-team/sdk
    Preparing search index...

    Interface AgentReleaseInfo

    The latest published agent release for a device type (GET /agent-releases/{deviceType}), unwrapped from the { success, release } envelope. This is the exact version DevicesClient.updateAgent resolves latest to.

    interface AgentReleaseInfo {
        deviceType: AgentReleaseDeviceType;
        publishedAt?: string;
        sha256?: string;
        sizeBytes?: number;
        version: string;
    }
    Index

    Properties

    The build channel this release belongs to.

    publishedAt?: string

    ISO-8601 publish timestamp, when known.

    sha256?: string

    Hex sha256 of the release artifact, when the manifest carries one.

    sizeBytes?: number

    Size of the release artifact in bytes, when known.

    version: string

    The published version string (e.g. a semver or build tag).