@alwaysmeticulous/api 2.178.0 → 2.181.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export { TestRunChunkStatus } from "./replay/test-run-chunk.types";
|
|
|
6
6
|
export * from "./sdk-bundle-api/sdk-to-bundle/test-run-environment";
|
|
7
7
|
export { ReplayableEvent } from "./sdk-bundle-api/bidirectional/replayable-event";
|
|
8
8
|
export { HarEntry, HarLog, HarRequest, HarResponse, } from "./sdk-bundle-api/sdk-to-bundle/har-log";
|
|
9
|
-
export { Cookie, SessionData, UrlHistoryEvent, WindowData, ApplicationSpecificData, StorageEntry, EarlyRequest, SerializedIDBValidKey, IDBObjectStoreMetadata, IDBObjectStoreSnapshot, IDBIndexSnapshot, CustomData, CustomUserEvent, } from "./sdk-bundle-api/sdk-to-bundle/session-data";
|
|
9
|
+
export { Cookie, SessionData, UrlHistoryEvent, WindowData, ApplicationSpecificData, StorageEntry, EarlyRequest, SerializedIDBValidKey, IDBObjectStoreMetadata, IDBObjectStoreSnapshot, IDBObjectStoreWithEntries, IDBIndexSnapshot, CustomData, CustomUserEvent, } from "./sdk-bundle-api/sdk-to-bundle/session-data";
|
|
10
10
|
export { SequenceNumber, WebSocketConnectionData, WebSocketConnectionEvent, WebSocketConnectionCreatedEvent, WebSocketConnectionOpenedEvent, EncodedArrayBuffer, EncodedBlob, WebSocketConnectionMessageEvent, WebSocketConnectionErrorEvent, WebSocketConnectionClosedEvent, } from "./sdk-bundle-api/sdk-to-bundle/websocket-data";
|
|
11
11
|
export { Replay } from "./replay/replay.types";
|
|
12
12
|
export { ScreenshotAssertionsOptions, ScreenshotAssertionsEnabledOptions, ScreenshottingEnabledOptions, StoryboardOptions, ScreenshotDiffOptions, ElementToIgnore, CSSSelectorToIgnore, } from "./sdk-bundle-api/sdk-to-bundle/screenshotting-options";
|
|
@@ -132,6 +132,10 @@ export type IDBObjectStoreSnapshot = Omit<IDBObjectStoreMetadata, "serialize" |
|
|
|
132
132
|
entries: {
|
|
133
133
|
key?: SerializedIDBValidKey;
|
|
134
134
|
value: string;
|
|
135
|
+
valueMeta?: {
|
|
136
|
+
values?: unknown;
|
|
137
|
+
referentialEqualities?: unknown;
|
|
138
|
+
};
|
|
135
139
|
}[];
|
|
136
140
|
/**
|
|
137
141
|
* This is only present on IDB snapshots taken since ~Dec 2024.
|
|
@@ -141,6 +145,10 @@ export type IDBObjectStoreSnapshot = Omit<IDBObjectStoreMetadata, "serialize" |
|
|
|
141
145
|
*/
|
|
142
146
|
indexes?: IDBIndexSnapshot[];
|
|
143
147
|
};
|
|
148
|
+
/**
|
|
149
|
+
* @deprecated Use {@link IDBObjectStoreSnapshot} instead.
|
|
150
|
+
*/
|
|
151
|
+
export type IDBObjectStoreWithEntries = IDBObjectStoreSnapshot;
|
|
144
152
|
export type IDBIndexSnapshot = {
|
|
145
153
|
name: string;
|
|
146
154
|
keyPath: string | string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.181.0",
|
|
4
4
|
"description": "Meticulous API types",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "545087fa8443d0eb23356c7c716076ebbf498736"
|
|
39
39
|
}
|