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

    Type Alias CommandExecWriteParams

    Write stdin bytes to a running command/exec session, close stdin, or both.

    type CommandExecWriteParams = {
        closeStdin?: boolean;
        deltaBase64?: string | null;
        processId: string;
    }
    Index

    Properties

    closeStdin?: boolean

    Close stdin after writing deltaBase64, if present.

    deltaBase64?: string | null

    Optional base64-encoded stdin bytes to write.

    processId: string

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