@sentry/replay
Advanced tools
Comparing version 0.5.16 to 0.5.17
@@ -224,12 +224,22 @@ /// <reference types="lodash" /> | ||
}): Omit<CaptureReplayEventParams, 'includeReplayStartTimestamp' | 'segmentId' | 'replayId'>; | ||
runFlush(): Promise<void>; | ||
/** | ||
* Flushes replay event buffer to Sentry. | ||
* | ||
* Performance events are only added right before flushing - this is probably | ||
* Performance events are only added right before flushing - this is | ||
* due to the buffered performance observer events. | ||
*/ | ||
flushUpdate: () => Promise<void>; | ||
throttledFlushUpdate: import("lodash").DebouncedFunc<() => Promise<void>>; | ||
runFlush(): Promise<void>; | ||
/** | ||
* Flush recording data to Sentry. Creates a lock so that only a single flush | ||
* can be active at a time. | ||
*/ | ||
flush: () => Promise<void>; | ||
/** | ||
* A throttled `flush()` that is called after a flush is completed and there | ||
* are other queued flushes. | ||
* | ||
* Instead of calling a flush for every <n> queued flush, condense it to a single call | ||
*/ | ||
throttledFlush: import("lodash").DebouncedFunc<() => Promise<void>>; | ||
/** | ||
* Send replay attachment using `fetch()` | ||
@@ -242,4 +252,4 @@ */ | ||
*/ | ||
sendReplay(replayId: string, events: RecordedEvents, segmentId: number): Promise<true | undefined>; | ||
sendReplay(replayId: string, events: RecordedEvents, segmentId: number): Promise<unknown>; | ||
} | ||
export {}; |
{ | ||
"name": "@sentry/replay", | ||
"version": "0.5.16", | ||
"version": "0.5.17", | ||
"description": "User replays for Sentry", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
444047
34
4412