@oneblink/sdk-core
    Preparing search index...

    Type Alias FlowInstanceNodeMeta

    type FlowInstanceNodeMeta = {
        description: string;
        isAfterClarificationRequiredStep: boolean;
        isAfterDeniedStep: boolean;
        isClarificationRequiredInConcurrentStep: boolean;
        isConcurrentWithNext: boolean;
        isConcurrentWithPrevious: boolean;
        isDeniedInConcurrentStep: boolean;
        parentStepLabelsId: string;
        status?: { label: string; value: string };
    }
    Index

    Properties

    description: string

    Description of node's state

    isAfterClarificationRequiredStep: boolean

    Flow has been sent for clarification in previous step

    isAfterDeniedStep: boolean

    Flow has been denied in previous step

    isClarificationRequiredInConcurrentStep: boolean

    Approval requires clarification in step (always false if node is not concurrent)

    isConcurrentWithNext: boolean

    Node is concurrent with next node in flow

    isConcurrentWithPrevious: boolean

    Node is concurrent with previous node in flow

    isDeniedInConcurrentStep: boolean

    Approval is denied in this step (always false if node is not concurrent)

    parentStepLabelsId: string

    An alternate id for parent that uses concurrent node labels e.g Node Label 1_Node Label 2

    status?: { label: string; value: string }

    The label and value of status e.g {label: 'Approved', value: 'APPROVED'}