Member Junction
    Preparing search index...

    Options for the install command.

    interface InstallOptions {
        _skipDependencyResolution?: boolean;
        AllowDoubleUnderscoreSchema?: boolean;
        Source: string;
        Subpath?: string;
        Verbose?: boolean;
        Version?: string;
    }
    Index

    Properties

    _skipDependencyResolution?: boolean

    Set by the orchestrator when installing the pre-resolved members of a dependency graph in topological order — never set this directly. When true, the engine skips dependency resolution and installs ONLY this app, because each member's transitive dependencies were already resolved and installed ahead of it by the top-level call; re-resolving here would be redundant and (for cycles) could recurse without bound. Not exposed via the CLI. The leading underscore follows the same internal-use-only naming convention as RunViewParams._fromEngine.

    AllowDoubleUnderscoreSchema?: boolean

    Allow schema names starting with '__'. Dangerous; MJ-internal apps only.

    Source: string

    GitHub repository URL or app name (for registry lookup)

    Subpath?: string

    Path within the repository to the app's mj-app.json (and its migrations/metadata directories). Defaults to the repo root. Enables multiple apps per repository (e.g. CRM/HubSpot). When omitted, falls back to any subpath embedded in Source. Per-app identity (like Source/Version) — NOT a passthrough option.

    Verbose?: boolean

    Enable verbose output

    Version?: string

    Specific version to install (default: latest)