@runloop/remote-agents-sdk
    Preparing search index...

    Type Alias AppInfo

    EXPERIMENTAL - app metadata returned by app-list APIs.

    type AppInfo = {
        appMetadata: AppMetadata | null;
        branding: AppBranding | null;
        description: string | null;
        distributionChannel: string | null;
        iconAssets: { [key in string]?: string } | null;
        iconDarkAssets: { [key in string]?: string } | null;
        id: string;
        installUrl: string | null;
        isAccessible: boolean;
        isEnabled: boolean;
        labels: { [key in string]?: string } | null;
        logoUrl: string | null;
        logoUrlDark: string | null;
        name: string;
        pluginDisplayNames: string[];
    }
    Index

    Properties

    appMetadata: AppMetadata | null
    branding: AppBranding | null
    description: string | null
    distributionChannel: string | null
    iconAssets: { [key in string]?: string } | null
    iconDarkAssets: { [key in string]?: string } | null
    id: string
    installUrl: string | null
    isAccessible: boolean
    isEnabled: boolean

    Whether this app is enabled in config.toml. Example:

    [apps.bad_app]
    enabled = false
    
    labels: { [key in string]?: string } | null
    logoUrl: string | null
    logoUrlDark: string | null
    name: string
    pluginDisplayNames: string[]