Member Junction
    Preparing search index...

    Options passed through to RuntimeSchemaManager. Defaults are conservative: skip git commit and restart so the caller can test without side-effects. Production callers should override.

    interface PipelineExecutionOptions {
        SkipGitCommit?: boolean;
        SkipRestart?: boolean;
        Source?: string;
    }
    Index

    Properties

    SkipGitCommit?: boolean

    Skip creating a git commit for the migration file. Default: false (commit is created in production).

    SkipRestart?: boolean

    Skip restarting MJAPI after the pipeline completes. Set to true when running integration tests or in dev workbench mode. Default: false.

    Note: if the API restarts, the calling agent run will be terminated. The entity will still be created — the restart only affects in-flight requests. Future agent runs will see the new entity.

    Source?: string

    Source tag written into MJ: Entity Settings after a successful create. Defaults to 'DatabaseDesigner'; pass 'AgentManager' when invoked via the Agent Manager sub-agent relationship.