Datalayer VS Code Extension - v0.0.17
    Preparing search index...

    Interface BridgeRequestMessage

    Request envelope sent by the webview to invoke an IAgentRuntimesClient method on the extension host.

    interface BridgeRequestMessage {
        args: unknown[];
        method: string;
        requestId: string;
        type: "request";
    }
    Index

    Properties

    args: unknown[]

    Positional arguments, forwarded as a tuple to the target method.

    method: string

    Method name on IAgentRuntimesClient. Must be in the whitelist.

    requestId: string

    Correlation ID that matches the eventual response.

    type: "request"

    Message discriminator.