Rocky_Mountain_Vending/.pnpm-store/v10/files/d4/13e163b88225c9046e1c0adaf66061525b4dbce66a9d06d7258e00ab8f33238d5a2f5c9912bd62f8c1ecb919313c76f046c267fa7f0016ef564e47faccd745
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
494 B
Text

import { 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