AIRI Server API - v0.10.2
    Preparing search index...

    Interface ModulePermissionError

    Describes a single authorization failure produced by host-side permission checks.

    Protocol expectations:

    • area, action, and key identify the denied operation
    • reason is intended for user-facing or diagnostic context and may be localized
    • recoverable indicates whether the caller may reasonably retry after obtaining consent, reconfiguration, or a state change
    • plugins should not treat reason as a stable machine-readable code
    interface ModulePermissionError {
        area: ModulePermissionArea;
        action: string;
        key: string;
        reason?: Localizable;
        recoverable?: boolean;
    }
    Index

    Properties

    action: string
    key: string
    reason?: Localizable
    recoverable?: boolean