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
13 lines
518 B
Plaintext
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
|