@applitools/eyes-webdriverio 5.42.1 → 5.42.2

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/CHANGELOG.md CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
 
12
12
 
13
+ ## 5.42.2 - 2023/3/7
14
+
15
+ ### Features
16
+ - Added `Resize` value to `StitchMode` enum
17
+ ### Bug fixes
18
+
13
19
  ## 5.42.1 - 2023/3/7
14
20
 
15
21
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-webdriverio",
3
- "version": "5.42.1",
3
+ "version": "5.42.2",
4
4
  "description": "Applitools Eyes SDK for WebdriverIO",
5
5
  "keywords": [
6
6
  "eyes-webdriverio",
@@ -111,8 +111,8 @@
111
111
  "postversion": "bongo postversion"
112
112
  },
113
113
  "dependencies": {
114
- "@applitools/core": "2.3.13",
115
- "@applitools/eyes-api": "1.13.11",
114
+ "@applitools/core": "2.3.14",
115
+ "@applitools/eyes-api": "1.13.12",
116
116
  "@applitools/spec-driver-webdriverio": "1.4.30"
117
117
  },
118
118
  "devDependencies": {
package/types/index.d.ts CHANGED
@@ -192,7 +192,7 @@ export type ConfigurationPlain = {
192
192
  matchTimeout?: undefined | number;
193
193
  forceFullPageScreenshot?: undefined | boolean;
194
194
  waitBeforeScreenshots?: undefined | number;
195
- stitchMode?: undefined | "Scroll" | "CSS";
195
+ stitchMode?: undefined | "Scroll" | "CSS" | "Resize";
196
196
  hideScrollbars?: undefined | boolean;
197
197
  hideCaret?: undefined | boolean;
198
198
  stitchOverlap?: undefined | number;
@@ -744,10 +744,13 @@ export enum SessionType {
744
744
  SEQUENTIAL = 'SEQUENTIAL',
745
745
  PROGRESSION = 'PROGRESSION'
746
746
  }
747
- export type StitchModePlain = "Scroll" | "CSS";
747
+ export type StitchModePlain = "Scroll" | "CSS" | "Resize";
748
748
  export enum StitchMode {
749
749
  SCROLL = 'Scroll',
750
- CSS = 'CSS'
750
+ Scroll = 'Scroll',
751
+ CSS = 'CSS',
752
+ RESIZE = 'Resize',
753
+ Resize = 'Resize'
751
754
  }
752
755
  export type TestResultsStatusPlain = "Passed" | "Failed" | "Unresolved";
753
756
  export enum TestResultsStatus {