Member Junction
    Preparing search index...

    Read seam for loading the bindings + their models that maintenance evaluates. Wraps RunView in production; tests inject canned rows. Returns null for a missing single lookup (mirrors RunView's non-throwing contract).

    interface IMaintenanceLoader {
        loadBinding(
            bindingId: string,
            contextUser?: UserInfo,
            provider?: IMetadataProvider,
        ): Promise<MJMLModelScoringBindingEntity>;
        loadBindings(
            mode?: MaintenanceBindingMode,
            contextUser?: UserInfo,
            provider?: IMetadataProvider,
        ): Promise<MJMLModelScoringBindingEntity[]>;
        loadModel(
            modelId: string,
            contextUser?: UserInfo,
            provider?: IMetadataProvider,
        ): Promise<MJMLModelEntity>;
    }

    Implemented by

    Index

    Methods