Selva Compute API Reference - v2.1.0
    Preparing search index...

    Interface InputParseError

    Per-input parse failure. The corresponding entry in inputs was filled with a safe default so the rest of the pipeline can keep going — but the caller should surface this so the user knows their definition has a misconfigured parameter.

    interface InputParseError {
        code?: string;
        inputName: string;
        message: string;
        paramType: string;
    }
    Index

    Properties

    code?: string

    Error code from the underlying RhinoComputeError, if available.

    inputName: string

    The input's name (or 'unknown' if the schema didn't have one).

    message: string

    Human-readable reason from the underlying RhinoComputeError.

    paramType: string

    The declared paramType from the raw schema.