Status to params mapping creator

[scripting/Status to params mapping creator]


Creates mapping to be used with scripting/Params copier to map from a previous action's result to a param for a next action.


Input ports

  • action params: {string: any}

    Params of the previous action. Example: { ... "result-path": "foo.bar" ... }

  • mapping key: string

    The key in params of the next action to receive the result of the specified action from its status. Example: "foobar"

Output ports

  • mapping: {string: string}

    The mapping the copy a previous action result from its status to a next action's params. Example: { "foobar": "foo.bar" }

Last updated