Rocky_Mountain_Vending/.pnpm-store/v10/files/c7/ed66fb3ed1d55166fb29d539b57916277801a485e1e555e80110d8c7af8f53d138a209e5e636dcdfdd7a14ddb44c67b3eaae401c6244363bdbe52b791b7775
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

21 lines
No EOL
736 B
Text

interface RequestDataIncludeOptions {
cookies?: boolean;
data?: boolean;
headers?: boolean;
ip?: boolean;
query_string?: boolean;
url?: boolean;
}
type RequestDataIntegrationOptions = {
/**
* Controls what data is pulled from the request and added to the event.
*/
include?: RequestDataIncludeOptions;
};
/**
* Add data about a request to an event. Primarily for use in Node-based SDKs, but included in `@sentry/core`
* so it can be used in cross-platform SDKs like `@sentry/nextjs`.
*/
export declare const requestDataIntegration: (options?: RequestDataIntegrationOptions | undefined) => import("../types-hoist/integration").Integration;
export {};
//# sourceMappingURL=requestdata.d.ts.map