@runloop/remote-agents-sdk
    Preparing search index...

    Type Alias CommandExecOutputDeltaNotification

    Base64-encoded output chunk emitted for a streaming command/exec request.

    These notifications are connection-scoped. If the originating connection closes, the server terminates the process.

    type CommandExecOutputDeltaNotification = {
        capReached: boolean;
        deltaBase64: string;
        processId: string;
        stream: CommandExecOutputStream;
    }
    Index

    Properties

    capReached: boolean

    true on the final streamed chunk for a stream when outputBytesCap truncated later output on that stream.

    deltaBase64: string

    Base64-encoded output bytes.

    processId: string

    Client-supplied, connection-scoped processId from the original command/exec request.

    Output stream for this chunk.