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

@recordreplay/protocol

Package Overview
Dependencies
Maintainers
5
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@recordreplay/protocol - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

21

js/protocol/Pause.d.ts

@@ -200,2 +200,6 @@ import { MappedLocation, PointDescription } from "./Debugger";

/**
* For Promise objects, the resolution state.
*/
promiseState?: PromiseStateData;
/**
* For Function objects, the name of the function.

@@ -270,2 +274,19 @@ * Omitted for functions with no name.

/**
* The possible states for a promise.
*/
export declare type PromiseState = "pending" | "fulfilled" | "rejected";
/**
* The internal state data of a promise.
*/
export interface PromiseStateData {
/**
* The resolution state.
*/
state: PromiseState;
/**
* The fulfilled/rejected value, if not pending.
*/
value?: Value;
}
/**
* Block of data from this pause which might be useful to the protocol client.

@@ -272,0 +293,0 @@ * To reduce the number of back-and-forth calls required over the protocol,

2

package.json
{
"name": "@recordreplay/protocol",
"version": "0.6.0",
"version": "0.6.1",
"description": "Definition of the protocol used by the Record Replay web service",

@@ -5,0 +5,0 @@ "author": "",

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