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

    Interface GrasshopperParsedIORaw

    Parsed input/output structure with raw schemas.

    loadWarnings / loadErrors carry the server's definition-load diagnostics (missing plugin, broken component, etc.) from the /io response. They are distinct from per-input parse failures (InputParseError): these come from the server loading the definition, those from the client typing an input.

    interface GrasshopperParsedIORaw {
        inputs: InputParamSchema[];
        loadErrors?: string[];
        loadWarnings?: string[];
        outputs: OutputParamSchema[];
    }
    Index

    Properties

    loadErrors?: string[]

    Server-side definition-load errors, if any (e.g. missing plugin).

    loadWarnings?: string[]

    Server-side definition-load warnings, if any.