Membrane SDK - v0.8.0
    Preparing search index...

    Function getFlowNodeSpec

    • Parameters

      • node: {
            type?: string;
            version?: number;
            name?: string;
            description?: string;
            config?: any;
            concurrency?: number;
            onError?: "continue" | "stop";
            ui?: any;
            inputSchema?: any;
            outputSchema?: any;
            outputExample?: any;
            links?: { key?: string; filter?: any; name?: string }[];
            isCustomized?: boolean;
        }
        • Optionaltype?: string

          Type of the node this blueprint describes.

        • Optionalversion?: number

          Version of the node type implementation.

        • Optionalname?: string

          Name of the node summarizing its purpose.

        • Optionaldescription?: string

          Description of what the node does.

        • Optionalconfig?: any

          Default node configuration.

        • Optionalconcurrency?: number

          How many concurrent runs of this node are allowed in parallel.

        • OptionalonError?: "continue" | "stop"

          Behavior of the node when it encounters an error.

        • Optionalui?: any

          UI settings for this node.

        • OptionalinputSchema?: any

          Input this node receives from previous nodes (calculated)

        • OptionaloutputSchema?: any

          Output this node produces (calculated)

        • OptionaloutputExample?: any

          Example of the output node produces

        • Optionallinks?: { key?: string; filter?: any; name?: string }[]

          Links to nodes that run after the current node.

        • OptionalisCustomized?: boolean

      Returns FlowNodeSpec