Contextual event data in custom code event
In the event code for a custom code event, is it possible to pass context data in the trigger function, to be available in the action code, in the same way that extension code can:
trigger({
swipeAngle: 90 // the value would be the detected angle
});
(from Launch Documentation )
In the action code, this context does not seem to be available - the event object has only $type and $rule.