Action side channel data, like auth and other invocation context infromation provided by the invoker.

interface ActionContext {
    auth?: Record<string, any>;
    [additionalContext: string]: any;
}

Indexable

  • [additionalContext: string]: any

Properties

Properties

auth?: Record<string, any>

Information about the currently authenticated user if provided.