Files
klz-cables.com/.pnpm-store/v10/files/d0/b3413ca190eea74bcd717a04d53e6eb86b2b0740611d8130a1a2ca47217f26c918c845e4ec2e36a737d7c371ce7d7a9db5f5dd50dd60760d7d975c168b0378
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

12 lines
510 B
Plaintext

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' | 'ignored' | 'invalid';
export type Outcome = {
reason: EventDropReason;
category: DataCategory;
quantity: number;
};
export type ClientReport = {
timestamp: number;
discarded_events: Outcome[];
};
//# sourceMappingURL=clientreport.d.ts.map