Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sentry/replay

Package Overview
Dependencies
Maintainers
12
Versions
236
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/replay - npm Package Compare versions

Comparing version 0.5.16 to 0.5.17

20

dist/types/src/index.d.ts

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc