@valon-technologies/gestalt
    Preparing search index...

    Interface StepAppConfig<RunInput, Steps>

    interface StepAppConfig<
        RunInput extends object = EmptyInput,
        Steps extends WorkflowSteps = EmptySteps,
    > {
        name: string;
        operation: string;
        input?: (
            scope: StepScope<RunInput, Steps>,
        ) => Record<string, unknown> | StepRefProxy;
        connection?: string;
        instance?: string;
        credentialMode?: string;
    }

    Type Parameters

    • RunInput extends object = EmptyInput
    • Steps extends WorkflowSteps = EmptySteps
    Index

    Properties

    name: string
    operation: string
    input?: (
        scope: StepScope<RunInput, Steps>,
    ) => Record<string, unknown> | StepRefProxy
    connection?: string
    instance?: string
    credentialMode?: string