Anchorage API reference
    Preparing search index...

    What the provider actually reported when a route could not be attested.

    Every field is optional because an attestation failure is defined by what is MISSING. A Worker splitting traffic across two versions has percentages but no single routed version; an unrouted hostname has neither; a routed script built without the fleet digest binding has everything except specDigest. The refusal carries whichever of those the provider did answer, so an operator reading the failure sees the drift rather than a bare "mismatch".

    interface ObservedActiveRoute {
        artifactVersion?: string;
        routedScriptName?: string;
        specDigest?: string;
        trafficSplit?: readonly Readonly<
            { artifactVersion: string; percentage: number },
        >[];
    }
    Index

    Properties

    artifactVersion?: string
    routedScriptName?: string
    specDigest?: string
    trafficSplit?: readonly Readonly<
        { artifactVersion: string; percentage: number },
    >[]