Boatstack TypeScript SDK
    Preparing search index...

    Interface TransitionDefinition

    Selects an operator when its guard is true and records its intended target relation. Higher priority controls deterministic selection among admissible transitions.

    interface TransitionDefinition {
        description?: string;
        guard: Predicate;
        id: string;
        operator: string;
        priority: number;
        requires?: { authorities?: string[] };
        target: Predicate;
        work?: string;
    }
    Index
    description?: string
    guard: Predicate
    id: string
    operator: string
    priority: number
    requires?: { authorities?: string[] }
    target: Predicate
    work?: string