@makehq/sdk
    Preparing search index...

    Type Alias Blueprint

    Represents a complete scenario blueprint. Blueprints define the structure and behavior of scenarios.

    type Blueprint = {
        flow: BlueprintNode[];
        interface: ScenarioInteface;
        io?: {
            input_spec: DataStructureField[];
            output_spec: DataStructureField[];
        };
        metadata: Record<string, JSONValue>;
        name: string;
        scheduling: Scheduling;
    }
    Index

    Properties

    The main flow of nodes in the blueprint

    interface: ScenarioInteface

    Interface configuration for the blueprint

    io?: { input_spec: DataStructureField[]; output_spec: DataStructureField[] }
    metadata: Record<string, JSONValue>

    Metadata for the blueprint

    name: string

    Name of the blueprint

    scheduling: Scheduling

    Scheduling configuration for the blueprint