@adcp/sdk API Reference - v10.0.1
    Preparing search index...

    Interface ClientPreflightAdcpErrorInfo

    Protocol-shaped error metadata attached to SDK-local preflight throws. Mirrors the public TaskResult.adcpError fields without importing core task types into the errors module.

    interface ClientPreflightAdcpErrorInfo {
        code: string;
        message: string;
        recovery?: ClientPreflightAdcpErrorRecovery;
        field?: string;
        suggestion?: string;
        details?: Record<string, unknown>;
    }
    Index

    Properties

    code: string
    message: string
    field?: string
    suggestion?: string
    details?: Record<string, unknown>