prorm API Reference
    Preparing search index...

    Interface ExtensionCatalogEntry

    interface ExtensionCatalogEntry {
        name: string;
        dialects: Dialect[];
        category: ExtensionCategory;
        description: string;
        installCommand?: string;
        isNativeSqlExtension?: boolean;
        minVersion?: string;
        docsUrl?: string;
    }
    Index
    name: string

    Canonical name, e.g. 'pg_trgm', 'postgis', 'audit_log'

    dialects: Dialect[]

    Dialects this entry genuinely applies to

    description: string

    One-line description of what it actually does

    installCommand?: string

    The real install/enable statement or command for this dialect family, e.g. "CREATE EXTENSION IF NOT EXISTS pg_trgm" or "INSTALL PLUGIN audit_log SONAME 'audit_log.so'". Omit if there's no single-statement install (e.g. it's a licensed server option toggled outside SQL).

    isNativeSqlExtension?: boolean

    true if this dialect only has a genuine CREATE EXTENSION-style SQL mechanism (Postgres-family). false/undefined means this entry documents the closest real equivalent (a plugin, a licensed option, a feature flag) rather than a literal SQL extension.

    minVersion?: string

    Minimum version where relevant, e.g. '9.6+'

    docsUrl?: string

    Official docs URL, when one exists