AbstractProtectedaddAppend (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.
Protected AbstractInternalInternal 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
ProtectedokBuild a success ActionResultSimple, carrying the (mutated) params back.
Executes the action with the provided parameters.
The action execution parameters including context
Promise resolving to the action result
Abstract base carrying the param-extraction + result-mapping helpers shared by every Predictive Studio action. Concrete actions implement
InternalRunActionand their own engine/deps factory seams.