Nyora (JavaScript) - v0.1.1
    Preparing search index...

    Interface OtaManifest

    The OTA manifest published by the parser feed.

    Mirrors GET /manifest.json on the OTA feed: a version plus one entry per downloadable artifact, each carrying its URL, expected SHA-256, and byte size.

    interface OtaManifest {
        version: number;
        bundle?: OtaArtifact;
        sources?: OtaArtifact;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Any additional manifest fields are preserved.

    Index

    Properties

    version: number

    Monotonic feed version.

    bundle?: OtaArtifact

    The parser bundle artifact descriptor.

    sources?: OtaArtifact

    The source catalog artifact descriptor.