Rocky_Mountain_Vending/.pnpm-store/v10/files/be/3b7b78f2fca11dfd96bbca3338be91d2703e0d4f2b929b45b67ddc9f720e48010fc6fe37fd52174633c201c792dfbf372e6bdc3fd5d6d795b09c5a0cccff98
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
2.1 KiB
Text

interface Options {
/**
* Keys that have been provided in the Sentry bundler plugin via the the `applicationKey` option, identifying your bundles.
*
* - Webpack plugin: https://www.npmjs.com/package/@sentry/webpack-plugin#applicationkey
* - Vite plugin: https://www.npmjs.com/package/@sentry/vite-plugin#applicationkey
* - Esbuild plugin: https://www.npmjs.com/package/@sentry/esbuild-plugin#applicationkey
* - Rollup plugin: https://www.npmjs.com/package/@sentry/rollup-plugin#applicationkey
*/
filterKeys: string[];
/**
* Defines how the integration should behave. "Third-Party Stack Frames" are stack frames that did not come from files marked with a matching bundle key.
*
* You can define the behaviour with one of 4 modes:
* - `drop-error-if-contains-third-party-frames`: Drop error events that contain at least one third-party stack frame.
* - `drop-error-if-exclusively-contains-third-party-frames`: Drop error events that exclusively contain third-party stack frames.
* - `apply-tag-if-contains-third-party-frames`: Keep all error events, but apply a `third_party_code: true` tag in case the error contains at least one third-party stack frame.
* - `apply-tag-if-exclusively-contains-third-party-frames`: Keep all error events, but apply a `third_party_code: true` tag in case the error contains exclusively third-party stack frames.
*
* If you chose the mode to only apply tags, the tags can then be used in Sentry to filter your issue stream by entering `!third_party_code:True` in the search bar.
*/
behaviour: 'drop-error-if-contains-third-party-frames' | 'drop-error-if-exclusively-contains-third-party-frames' | 'apply-tag-if-contains-third-party-frames' | 'apply-tag-if-exclusively-contains-third-party-frames';
}
/**
* This integration allows you to filter out, or tag error events that do not come from user code marked with a bundle key via the Sentry bundler plugins.
*/
export declare const thirdPartyErrorFilterIntegration: (options: Options) => import("..").Integration;
export {};
//# sourceMappingURL=third-party-errors-filter.d.ts.map