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

25 lines
905 B
Text

/**
* Options added to the Browser SDK's init options that are specific for Replay.
* Note: This type was moved to @sentry/core to avoid a circular dependency between Browser and Replay.
*/
export type BrowserClientReplayOptions = {
/**
* The sample rate for session-long replays.
* 1.0 will record all sessions and 0 will record none.
*/
replaysSessionSampleRate?: number;
/**
* The sample rate for sessions that has had an error occur.
* This is independent of `sessionSampleRate`.
* 1.0 will record all sessions and 0 will record none.
*/
replaysOnErrorSampleRate?: number;
};
export type BrowserClientProfilingOptions = {
/**
* The sample rate for profiling
* 1.0 will profile all transactions and 0 will profile none.
*/
profilesSampleRate?: number;
};
//# sourceMappingURL=browseroptions.d.ts.map