@gphone/sdk
    Preparing search index...

    Interface CatalogEntry

    One installable app as an operator's catalog server describes it — everything installFromCatalog needs to build the manifest itself, without ever running the bundle to ask it. See registry.ts's installVerified: the manifest is built from these fields, never from import()ing fetched code.

    interface CatalogEntry {
        bundleUrl: string;
        color: string;
        description: string;
        icon?: string;
        id: string;
        name: string;
        networkHosts?: readonly string[];
        permissions: (
            | "account"
            | "admin"
            | "call"
            | "camera"
            | "contacts"
            | "highscores"
            | "location"
            | "mail"
            | "marketplace"
            | "media"
            | "messages"
            | "notifications"
            | "reports"
            | "social"
            | "storage"
            | "app-events"
            | "app-registry"
            | "clock"
            | "devtools"
            | "display"
            | "keybinds"
            | "navigation"
            | "notification-settings"
            | "system-hardware"
            | "theme"
            | "wallpaper"
        )[];
        requiresNetwork?: boolean;
        sha256: string;
        version: string;
    }
    Index
    bundleUrl: string
    color: string
    description: string
    icon?: string
    id: string
    name: string
    networkHosts?: readonly string[]

    GPHONE-24: the exact origins the installed add-on's frame may fetch(). See AppManifest.networkHosts.

    permissions: (
        | "account"
        | "admin"
        | "call"
        | "camera"
        | "contacts"
        | "highscores"
        | "location"
        | "mail"
        | "marketplace"
        | "media"
        | "messages"
        | "notifications"
        | "reports"
        | "social"
        | "storage"
        | "app-events"
        | "app-registry"
        | "clock"
        | "devtools"
        | "display"
        | "keybinds"
        | "navigation"
        | "notification-settings"
        | "system-hardware"
        | "theme"
        | "wallpaper"
    )[]

    What this app discloses it reaches for — shown to a player before they install it.

    requiresNetwork?: boolean

    Whether the phone should block this app while signal is out. Defaults to false.

    sha256: string

    Lowercase hex SHA-256 of the exact bytes at bundleUrl. Required — installFromCatalog refuses to import a bundle without one.

    version: string