@edgible-team/sdk
    Preparing search index...

    Interface Middleware

    One stage of the request pipeline (architecture.md §5). Built-ins, in order: auth → idempotency → telemetry → retry → error-mapping; custom middlewares from ClientConfig.middleware run after these.

    interface Middleware {
        name: string;
        wrap(next: Handler): Handler;
    }
    Index

    Properties

    Methods

    Properties

    name: string

    Stable identifier, used in logs/diagnostics.

    Methods