@recordreplay/protocol
Advanced tools
Comparing version 0.15.0 to 0.15.1
@@ -206,2 +206,6 @@ import { MappedLocation, PointDescription } from "./Debugger"; | ||
/** | ||
* For Proxy objects, the target and handler. | ||
*/ | ||
proxyState?: ProxyStateData; | ||
/** | ||
* For Promise objects, the resolution state. | ||
@@ -301,2 +305,15 @@ */ | ||
/** | ||
* The internal state data of a proxy. | ||
*/ | ||
export interface ProxyStateData { | ||
/** | ||
* The target value the proxy was initialized with. May reference an object or null. | ||
*/ | ||
target: Value; | ||
/** | ||
* The handler value the proxy was initialized with. May reference an object or null. | ||
*/ | ||
handler: Value; | ||
} | ||
/** | ||
* Block of data from this pause which might be useful to the protocol client. | ||
@@ -303,0 +320,0 @@ * To reduce the number of back-and-forth calls required over the protocol, |
{ | ||
"name": "@recordreplay/protocol", | ||
"version": "0.15.0", | ||
"version": "0.15.1", | ||
"description": "Definition of the protocol used by the Record Replay web service", | ||
@@ -5,0 +5,0 @@ "author": "", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
414828
9842