Interface TemporalJobRef

Reference to a server job that produces a large diff or runs a rollback.

interface TemporalJobRef {
    artifactRefs?: readonly string[];
    jobRunId: string;
    status?:
        | "failed"
        | "accepted"
        | "running"
        | "successful"
        | "dismissed";
}

Properties

artifactRefs?: readonly string[]

Links to artifacts (diff pages, rollback evidence) when produced.

jobRunId: string
status?:
    | "failed"
    | "accepted"
    | "running"
    | "successful"
    | "dismissed"

Stable status code if the server reports one inline.