Member Junction
    Preparing search index...

    Interface MJAIAgentChannelEntity_IChannelUIConfig

    Channel-definition-level presentation/chrome config.

    Stored as a JSON object in the UIConfig column of the MJ: AI Agent Channels entity. CodeGen emits a strongly-typed UIConfigObject accessor on AIAgentChannelEntity that returns MJAIAgentChannelEntity_IChannelUIConfig | null.

    Distinct from the channel's ConfigSchema column, which validates the per-session AIAgentSessionChannel.Config state-of-record. This bag is the channel-definition's own UI chrome, read in-memory by the host when rendering channel tabs. Extensible with no DB change — add future chrome fields here.

    interface MJAIAgentChannelEntity_IChannelUIConfig {
        Color?: string;
        DisplayName?: string;
        GroupName?: string;
        Icon?: string;
        SortOrder?: number;
    }
    Index

    Properties

    Color?: string

    Chrome accent. Prefer a semantic design-token name (e.g. "--mj-brand-primary"); hex allowed but discouraged.

    DisplayName?: string

    Human label for the tab/chrome. Null → fall back to the channel's Name.

    GroupName?: string

    Optional group for clustering channels in the UI. Null → ungrouped.

    Icon?: string

    Font Awesome class, e.g. "fa-solid fa-satellite-dish".

    SortOrder?: number

    Display order within a group/list.