run action sequence from snippet

As of Skuid 12, .run() supports 2 parameters as follows:

skuid.actionSequences.getByName(“WriteLogSequence”).run(namedInputs, context);where context looks like:<br alt="" name="" rel="" target="" title="" type="" value="" /><pre alt="" name="" rel="" target="" title="" type="" value="">{ row: {}, model: {} }Prior to this, both namedInputs and context were expected as the 1st parameter, so this is a change in Skuid 12 (possibly dates back to 11.2, actually).  If you have a context object in your JS, this will allow your called action sequence to be context aware.

Can you please add this to the documentation.