Files
klz-cables.com/.pnpm-store/v10/files/30/da3e782c537078fdb8ac4545ed0aedddf944b6ff8637a2c8c7f82845e23b51f417d32ebd158ca3c78a87a290a442df24d7533bee559728eef3e7070eec4d5b
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

13 lines
518 B
Plaintext

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