I have an Auth0 post login trigger with multiple facets being addressed in a flow of dedicated actions. there's some distinctions in the context that should be applied in those different facets (which address the login is coming from for example). how can i make the distinction in the first action (SiteA, SiteB etc) and then use this info in subsequent actions?
trying to apply it to the idToken didn't work for me, nor trying to set it directly to the event object.
I've ended up using api.cache.set
with a short ttl.
I can access it between actions of the same trigger and it's scoped to the trigger it was set in.