@alwaysmeticulous/api 2.40.3 → 2.41.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,3 +6,4 @@ export { ReplayableEvent } from "./sdk-bundle-api/bidirectional/replayable-event
|
|
|
6
6
|
export { SDKReplayTimelineEntry, SDKReplayTimelineData, } from "./sdk-bundle-api/bundle-to-sdk/timeline.types";
|
|
7
7
|
export { HarEntry, HarLog, HarRequest, HarResponse, } from "./sdk-bundle-api/sdk-to-bundle/har-log";
|
|
8
8
|
export { Cookie, SessionData, UrlHistoryEvent, WindowData, } from "./sdk-bundle-api/sdk-to-bundle/session-data";
|
|
9
|
+
export { Replay } from "./replay/replay.types";
|
|
@@ -20,6 +20,11 @@ export interface ReplayDiffData {
|
|
|
20
20
|
screenshotAssertionsOptions?: ScreenshotAssertionsOptions;
|
|
21
21
|
screenshotDiffResults?: ScreenshotDiffResult[];
|
|
22
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* Differs from ScreenshotComparisonOptions in that
|
|
25
|
+
* ScreenshotComparisonOptions specifies the test run or base replay id
|
|
26
|
+
* to compare to, while ScreenshotAssertionsOptions does not.
|
|
27
|
+
*/
|
|
23
28
|
export type ScreenshotAssertionsOptions = {
|
|
24
29
|
enabled: false;
|
|
25
30
|
} | ScreenshotAssertionsEnabledOptions;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.41.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": "778895a7cd6a010538e338f9b2da225e71c53f48"
|
|
39
39
|
}
|