Rocky_Mountain_Vending/.pnpm-store/v10/files/77/d02ec21e620706642d53c933010bfaa7ab6daf036f586ba2ba84ad66cfcd35b971c3ae22cf02fa9e912013383a78e3aca0439117645d29463b883b574ed611
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

32 lines
820 B
Text

/**
* Request data included in an event as sent to Sentry.
*/
export interface RequestEventData {
url?: string;
method?: string;
data?: unknown;
query_string?: QueryParams;
cookies?: Record<string, string>;
env?: Record<string, string>;
headers?: {
[key: string]: string;
};
}
export type QueryParams = string | {
[key: string]: string;
} | Array<[
string,
string
]>;
/**
* Request data that is considered safe for `span.data` on `http.client` spans
* and for `http` breadcrumbs
* See https://develop.sentry.dev/sdk/data-handling/#structuring-data
*/
export type SanitizedRequestData = {
url: string;
'http.method': string;
'http.fragment'?: string;
'http.query'?: string;
};
//# sourceMappingURL=request.d.ts.map