@ably/chat - v1.4.0
    Preparing search index...

    Interface ChatClientOptions

    Configuration options for the chat client.

    interface ChatClientOptions {
        idempotentRestPublishing?: boolean;
        logHandler?: LogHandler;
        logLevel?: LogLevel;
    }
    Index

    Properties

    idempotentRestPublishing?: boolean

    When true, the SDK generates a unique idempotency identifier for each send/update/delete call and sends it with the request. If the request is retried internally across fallback hosts, the same identifier is used, allowing the server to deduplicate the attempt.

    The identifier is regenerated for each new call.

    false
    
    logHandler?: LogHandler

    A custom log handler that will be used to log messages from the client.

    The client will log messages to the console.
    
    logLevel?: LogLevel

    The minimum log level at which messages will be logged.

    LogLevel.error