@recordreplay/protocol
Advanced tools
Comparing version 0.16.0 to 0.17.0
@@ -105,3 +105,3 @@ import { TimeStampedPoint } from "./Recording"; | ||
*/ | ||
export declare type RequestEvent = RequestOpenEvent | RequestRawHeaderEvent | RequestDestinationEvent | RequestResponseEvent | RequestResponseRawHeaderEvent | RequestDoneEvent | RequestFailedEvent | RequestResponseBody; | ||
export declare type RequestEvent = RequestOpenEvent | RequestRawHeaderEvent | RequestDestinationEvent | RequestResponseEvent | RequestResponseRawHeaderEvent | RequestDoneEvent | RequestFailedEvent | RequestResponseBodyEvent; | ||
/** | ||
@@ -210,3 +210,3 @@ * An event representing the beginning of a request. | ||
*/ | ||
export interface RequestResponseBody { | ||
export interface RequestResponseBodyEvent { | ||
/** | ||
@@ -218,2 +218,13 @@ * A tagged-union identifier for this event. | ||
/** | ||
* An event representing the presence of a request body for this | ||
* request, indicating a Network.getRequestBody command will not | ||
* throw an error for this request. | ||
*/ | ||
export interface RequestBodyEvent { | ||
/** | ||
* A tagged-union identifier for this event. | ||
*/ | ||
kind: "request-body"; | ||
} | ||
/** | ||
* An event representing the request having completed. | ||
@@ -220,0 +231,0 @@ */ |
@@ -147,2 +147,7 @@ import { SessionId } from "./Session"; | ||
recordingId: RecordingId; | ||
/** | ||
* Settings which can be used to configure the session in ways that are not | ||
* yet officially supported in the protocol. | ||
*/ | ||
experimentalSettings?: any; | ||
} | ||
@@ -149,0 +154,0 @@ export interface createSessionResult { |
{ | ||
"name": "@recordreplay/protocol", | ||
"version": "0.16.0", | ||
"version": "0.17.0", | ||
"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
444467
10554