@alwaysmeticulous/api
Advanced tools
Comparing version 2.114.0 to 2.116.0
@@ -8,3 +8,4 @@ export { Organization } from "./organization.types"; | ||
export { HarEntry, HarLog, HarRequest, HarResponse, } from "./sdk-bundle-api/sdk-to-bundle/har-log"; | ||
export { Cookie, SessionData, UrlHistoryEvent, WindowData, ApplicationSpecificData, StorageEntry, EarlyRequest, SequenceNumber, WebSocketConnectionData, WebSocketConnectionEvent, } from "./sdk-bundle-api/sdk-to-bundle/session-data"; | ||
export { Cookie, SessionData, UrlHistoryEvent, WindowData, ApplicationSpecificData, StorageEntry, EarlyRequest, } from "./sdk-bundle-api/sdk-to-bundle/session-data"; | ||
export { SequenceNumber, WebSocketConnectionData, WebSocketConnectionEvent, WebSocketConnectionCreatedEvent, WebSocketConnectionOpenedEvent, WebSocketConnectionMessageEvent, WebSocketConnectionErrorEvent, WebSocketConnectionClosedEvent, } from "./sdk-bundle-api/sdk-to-bundle/websocket-data"; | ||
export { Replay } from "./replay/replay.types"; | ||
@@ -11,0 +12,0 @@ export { ScreenshotAssertionsOptions, ScreenshotAssertionsEnabledOptions, ScreenshottingEnabledOptions, StoryboardOptions, ScreenshotDiffOptions, ElementToIgnore, CSSSelectorToIgnore, } from "./sdk-bundle-api/sdk-to-bundle/screenshotting-options"; |
import { ReplayableEvent } from "../bidirectional/replayable-event"; | ||
import { HarLog } from "./har-log"; | ||
import { WebSocketConnectionData } from "./websocket-data"; | ||
export interface SessionData { | ||
@@ -94,20 +95,1 @@ userEvents: { | ||
} | ||
export type SequenceNumber = number; | ||
export interface WebSocketConnectionData { | ||
id: SequenceNumber; | ||
url: string; | ||
events: WebSocketConnectionEvent[]; | ||
} | ||
export interface WebSocketConnectionEvent { | ||
/** | ||
* The time in milliseconds since the start of the session. | ||
* | ||
* During simulations, we consider the "created" event to have been replayed whenever the browser calls | ||
* `new WebSocket()` and all other events are replayed at a time relative to the "created" event's timestamp. | ||
* | ||
* E.g. the "opened" event is replayed at ("opened".timestamp - "created".timestamp) milliseconds after the browser calls `new WebSocket()`. | ||
*/ | ||
timestamp: number; | ||
type: "created" | "opened" | "message-sent" | "message-received" | "closed" | "error"; | ||
data?: string; | ||
} |
{ | ||
"name": "@alwaysmeticulous/api", | ||
"version": "2.114.0", | ||
"version": "2.116.0", | ||
"description": "Meticulous API types", | ||
@@ -38,3 +38,3 @@ "license": "ISC", | ||
}, | ||
"gitHead": "ec71e1186c70d923c01f0b0d79c042443e027b06" | ||
"gitHead": "7ca969d9bf0f4c0aeb1ac63f7df260f5e895476f" | ||
} |
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
31664
48
671