Agent Client Protocol - v0.18.2
    Preparing search index...

    Type Alias NesDocumentEventCapabilities

    Document event capabilities the agent wants to receive.

    type NesDocumentEventCapabilities = {
        _meta?: { [key: string]: unknown } | null;
        didChange?: NesDocumentDidChangeCapabilities | null;
        didClose?: NesDocumentDidCloseCapabilities | null;
        didFocus?: NesDocumentDidFocusCapabilities | null;
        didOpen?: NesDocumentDidOpenCapabilities | null;
        didSave?: NesDocumentDidSaveCapabilities | null;
    }
    Index

    Properties

    _meta?: { [key: string]: unknown } | null

    The _meta property is reserved by ACP to allow clients and agents to attach additional metadata to their interactions. Implementations MUST NOT make assumptions about values at these keys.

    See protocol docs: Extensibility

    Whether the agent wants document/didChange events, and the sync kind.

    Whether the agent wants document/didClose events.

    Whether the agent wants document/didFocus events.

    Whether the agent wants document/didOpen events.

    Whether the agent wants document/didSave events.