@alwaysmeticulous/sdk-bundles-api 2.44.0 → 2.45.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.
@@ -20,6 +20,11 @@ export interface ReplayAndStoreResultsResult {
20
20
  * Empty if screenshottingOptions.enabled was false.
21
21
  */
22
22
  screenshotDiffResultsByBaseReplayId: Record<string, ScreenshotDiffResult[]>;
23
+ /**
24
+ * The total number of screenshots taken during the replay.
25
+ * This will be 0 if `screenshottingOptions.enabled` was false.
26
+ */
27
+ totalNumberOfScreenshots: number;
23
28
  }
24
29
  export interface BeforeUserEventResult {
25
30
  /**
@@ -24,4 +24,5 @@ export interface TestRunProgress {
24
24
  }
25
25
  export interface DetailedTestCaseResult extends TestCaseResult {
26
26
  screenshotDiffResultsByBaseReplayId: Record<string, ScreenshotDiffResult[]>;
27
+ totalNumberOfScreenshots: number;
27
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.44.0",
3
+ "version": "2.45.0",
4
4
  "description": "Meticulous common types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -19,18 +19,14 @@
19
19
  "depcheck": "depcheck --ignore-patterns=dist"
20
20
  },
21
21
  "devDependencies": {
22
- "@alwaysmeticulous/api": "^2.44.0"
22
+ "@alwaysmeticulous/api": "^2.44.1"
23
23
  },
24
24
  "peerDependencies": {
25
- "loglevel": "^1.8.0",
26
- "puppeteer": "^19.7.5"
25
+ "loglevel": "^1.8.0"
27
26
  },
28
27
  "peerDependenciesMeta": {
29
28
  "loglevel": {
30
29
  "optional": true
31
- },
32
- "puppeteer": {
33
- "optional": true
34
30
  }
35
31
  },
36
32
  "author": {
@@ -50,5 +46,5 @@
50
46
  "bugs": {
51
47
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
52
48
  },
53
- "gitHead": "3895b3036d7c97609f83e8b41593995eba5062ba"
49
+ "gitHead": "3cfa8654dc5bf8a1426c4a3e2458d2ced7c94205"
54
50
  }