ProtectedaddAppend (or overwrite) an output param on the run params.
ProtectedfailBuild a failure ActionResultSimple.
ProtectedfindLocate a param by case-insensitive, whitespace-tolerant name.
ProtectedgetRead a boolean param. Accepts native booleans and the usual truthy/falsey
string forms (true/1/yes, false/0/no); falls back to defaultValue.
ProtectedgetRead a JSON-object param. Accepts either an object value or a JSON string that
parses to an object. Returns undefined when missing or not an object.
ProtectedgetRead a numeric param. Returns undefined when missing or non-numeric so the
caller can apply its own default / required check.
ProtectedgetRead a string param (trimmed). Returns undefined when missing/empty so the
caller can branch on required-ness.
ProtectedInternalInternal method that must be implemented by derived action classes. This is where the actual action logic should be implemented.
The action execution parameters including typed context
Promise resolving to the action result
ProtectedmapMap the saved Record Process (+ optional scoring binding) onto output params + a
human-readable message. Always outputs the Record Process id + cron (the scheduled
run) and WroteColumn (whether a write-back column was bound). In write-back mode
it also outputs ScoringBindingID (the lineage row the model-prediction panel /
"Models in Production" dashboard read); in generic mode binding is null, so no
ScoringBindingID is emitted and the message reflects run-history-only output.
ProtectedokBuild a success ActionResultSimple, carrying the (mutated) params back.
ProtectedparseParse the optional Cadence param. A named cadence (Monthly / Weekly /
Daily, case-insensitive) is passed through; any other non-empty value is
treated as a raw cron expression ({ cron }). Returns undefined (helper
defaults to Monthly) when omitted.
ProtectedparseParse the optional ValueKind param (score | class); undefined defaults to score.
Executes the action with the provided parameters.
The action execution parameters including context
Promise resolving to the action result
ProtectedscheduleThe scheduling function. Overridable so tests inject a fake with no live DB.
Binds a trained
MJ: ML Modelsto a recurring scoring run: scores the target entity's rows on a cadence (default monthly). TheOutputFieldparam is optional — supply it to write the prediction into that target column (write-back mode), or omit it for generic output (predictions recorded inMJ: Process Run Detailsonly). Outputs:RecordProcessID(string),CronExpression(string),WroteColumn(boolean), and — write-back mode only —ScoringBindingID(string).