Rocky_Mountain_Vending/.pnpm-store/v10/files/3b/a0548aabf08edcab9b9f578e0c3f08ff1832e01e85554f5e5462efd87698c646ee1e4347c44a0bc25045cc857420f83ae22cde9f82648ebd6acbb9b17bd9b7
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

29 lines
No EOL
777 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