Is there a way to self-inspect from within a rule condition?
For instance,
1) Can I access the rule name and log it to the console?
2) Within a custom event rule can I get at the event type on which the condition will be met?
in other words ,
if (_satellite._container.rules[0].events[0].modulePath === "core/src/lib/events/customEvent.js") {
console.log ( _satellite._container.rules[0].events[0].settings.type );
}
Yes, I know these are internals. I'm wondering if the information is accessible in a supported manner.