@resistdesign/voltra
    Preparing search index...

    Type Alias NormalizedCloudFunctionEventData

    The normalized event data that is passed to the route handler.

    type NormalizedCloudFunctionEventData = {
        authInfo: AuthInfo;
        body: any;
        headers: Record<string, string[]>;
        method: string;
        path: string;
    }
    Index

    Properties

    authInfo: AuthInfo

    Auth info resolved from the incoming event.

    body: any

    Parsed body payload passed to handlers.

    headers: Record<string, string[]>

    Normalized headers keyed by lowercase header name.

    method: string

    HTTP method (e.g. GET, POST).

    path: string

    Request path string.