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

12 lines
No EOL
486 B
Text

import type { DataCategory } from './datacategory';
export type EventDropReason = 'before_send' | 'event_processor' | 'network_error' | 'queue_overflow' | 'ratelimit_backoff' | 'sample_rate' | 'send_error' | 'internal_sdk_error' | 'buffer_overflow';
export type Outcome = {
reason: EventDropReason;
category: DataCategory;
quantity: number;
};
export type ClientReport = {
timestamp: number;
discarded_events: Outcome[];
};
//# sourceMappingURL=clientreport.d.ts.map