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

    Interface ModuleIdentity

    interface ModuleIdentity {
        id: string;
        kind: "plugin";
        plugin: PluginIdentity;
        labels?: Record<string, string>;
    }
    Index

    Properties

    Properties

    id: string

    Unique module instance id for this module run (per process/deployment). Example: "telegram-01", "stage-ui-2f7c9".

    kind: "plugin"

    Module identity kind. For now only plugin-backed modules are supported.

    Plugin identity associated with this module instance.

    labels?: Record<string, string>

    K8s-style labels for routing and policy selectors. Example: { env: "prod", app: "telegram", devtools: "true" }.