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

@alwaysmeticulous/api

Package Overview
Dependencies
Maintainers
5
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alwaysmeticulous/api - npm Package Compare versions

Comparing version 2.114.0 to 2.116.0

dist/sdk-bundle-api/sdk-to-bundle/websocket-data.d.ts

3

dist/index.d.ts

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