@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;
@@ -0,0 +1,5 @@
1
+ import { Project } from "../project.types";
2
+ export interface Replay {
3
+ id: string;
4
+ project: Project;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -78,6 +78,7 @@ export interface TestRun {
78
78
  id: string;
79
79
  status: TestRunStatus;
80
80
  project: Project;
81
+ configData: TestRunConfigData;
81
82
  resultData?: {
82
83
  results: TestCaseResult[];
83
84
  [key: string]: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/api",
3
- "version": "2.40.3",
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": "b7055372caa771a9d69856d53933021f134a7388"
38
+ "gitHead": "778895a7cd6a010538e338f9b2da225e71c53f48"
39
39
  }