@karmaniverous/jeeves
    Preparing search index...

    Interface ConfigApplyRequest

    Request shape for the config apply handler.

    interface ConfigApplyRequest {
        patch: Record<string, unknown>;
        replace?: boolean;
    }
    Index

    Properties

    Properties

    patch: Record<string, unknown>

    Config patch to apply (deep-merged with existing config).

    replace?: boolean

    When true, replace the entire config instead of merging.