Member Junction
    Preparing search index...

    Interface CredentialsAgentContextInput

    The plain, component-supplied snapshot used to build the agent context. By construction this contains ONLY non-sensitive navigation/metadata + definition names — there is no field here for a credential secret, password, token, key value, or even an individual credential's name, so none can be published.

    interface CredentialsAgentContextInput {
        ActiveTab: "types" | "audit" | "overview" | "credentials" | "categories";
        CategoryCount: number;
        CategoryNames: readonly string[];
        CredentialCount: number;
        ExpiringSoonCount: number;
        IsLoading: boolean;
        TabLabel: string;
        TypeCount: number;
        TypeNames: readonly string[];
    }
    Index

    Properties

    ActiveTab: "types" | "audit" | "overview" | "credentials" | "categories"

    The currently active tab id (overview/credentials/types/categories/audit).

    CategoryCount: number

    Count of credential categories defined.

    CategoryNames: readonly string[]

    Credential CATEGORY names (organizational definitions).

    CredentialCount: number

    Count of active credentials (a count only — never the credentials themselves).

    ExpiringSoonCount: number

    Count of credentials expiring soon (count only).

    IsLoading: boolean

    Whether the dashboard is currently loading.

    TabLabel: string

    Human-readable label for the active tab.

    TypeCount: number

    Count of credential types defined.

    TypeNames: readonly string[]

    Credential-TYPE names (reusable definitions — e.g. "OAuth 2.0", "API Key"). Safe: these are schema definitions, not credential records or secrets.