Frodo Library - v4.0.0-24
    Preparing search index...

    Interface WorkflowSkeleton

    interface WorkflowSkeleton {
        _rev: number;
        childType: boolean;
        description: string;
        displayName: string;
        id: string;
        mutable: boolean;
        name: string;
        staticNodes: {
            endNode: WorkflowStaticNode;
            startNode: WorkflowStaticNode;
            uiConfig: Record<string, StepStaticNode>;
        };
        status: "published"
        | "draft";
        steps: WorkflowStep[];
        type?: string;
    }
    Index

    Properties

    _rev: number
    childType: boolean
    description: string
    displayName: string
    id: string
    mutable: boolean
    name: string
    staticNodes: {
        endNode: WorkflowStaticNode;
        startNode: WorkflowStaticNode;
        uiConfig: Record<string, StepStaticNode>;
    }
    status: "published" | "draft"
    steps: WorkflowStep[]
    type?: string