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>
12 lines
No EOL
486 B
Text
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 |