@applitools/eyes-webdriverio 5.36.3 → 5.37.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/CHANGELOG.md +7 -0
- package/package.json +3 -3
- package/types/index.d.ts +1 -7
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,13 @@
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
+
## 5.37.0 - 2022/10/18
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
- Drop support for Android 9 and Android 10 specific devices
|
|
17
|
+
### Bug fixes
|
|
18
|
+
- Fixed error that was happening when test results were deleted
|
|
19
|
+
|
|
13
20
|
## 5.36.3 - 2022/10/13
|
|
14
21
|
|
|
15
22
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-webdriverio",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.37.0",
|
|
4
4
|
"description": "Applitools Eyes SDK for WebdriverIO",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eyes-webdriverio",
|
|
@@ -116,8 +116,8 @@
|
|
|
116
116
|
}
|
|
117
117
|
},
|
|
118
118
|
"dependencies": {
|
|
119
|
-
"@applitools/core": "1.
|
|
120
|
-
"@applitools/eyes-api": "1.
|
|
119
|
+
"@applitools/core": "1.2.0",
|
|
120
|
+
"@applitools/eyes-api": "1.9.0",
|
|
121
121
|
"@applitools/spec-driver-webdriverio": "1.4.1"
|
|
122
122
|
},
|
|
123
123
|
"devDependencies": {
|
package/types/index.d.ts
CHANGED
|
@@ -686,19 +686,13 @@ export enum IosVersion {
|
|
|
686
686
|
ONE_VERSION_BACK = 'latest-1',
|
|
687
687
|
LATEST_ONE_VERSION_BACK = 'latest-1'
|
|
688
688
|
}
|
|
689
|
-
export type AndroidDeviceNamePlain = "Galaxy Note 10" | "Galaxy Note 10 Plus" | "Galaxy
|
|
689
|
+
export type AndroidDeviceNamePlain = "Galaxy Note 10" | "Galaxy Note 10 Plus" | "Galaxy S10" | "Galaxy S10 Plus" | "Galaxy S20" | "Galaxy S22" | "Galaxy Tab S7" | "Pixel 3 XL" | "Pixel 4" | "Pixel 4 XL" | "Pixel 5" | "Sony Xperia 10 II" | "Pixel 6" | "Galaxy S20 Plus" | "Galaxy S21" | "Galaxy S21 Plus" | "Galaxy S21 Ultra" | "Galaxy S22 Plus" | "Galaxy Tab S8" | "Xiaomi Redmi Note 11" | "Xiaomi Redmi Note 11 Pro";
|
|
690
690
|
export enum AndroidDeviceName {
|
|
691
691
|
Pixel_3_XL = 'Pixel 3 XL',
|
|
692
692
|
Pixel_4 = 'Pixel 4',
|
|
693
693
|
Pixel_4_XL = 'Pixel 4 XL',
|
|
694
694
|
Pixel_5 = 'Pixel 5',
|
|
695
695
|
Pixel_6 = 'Pixel 6',
|
|
696
|
-
Galaxy_Note_8 = 'Galaxy Note 8',
|
|
697
|
-
Galaxy_Note_9 = 'Galaxy Note 9',
|
|
698
|
-
Galaxy_S8 = 'Galaxy S8',
|
|
699
|
-
Galaxy_S8_Plus = 'Galaxy S8 Plus',
|
|
700
|
-
Galaxy_S9 = 'Galaxy S9',
|
|
701
|
-
Galaxy_S9_Plus = 'Galaxy S9 Plus',
|
|
702
696
|
Galaxy_S10 = 'Galaxy S10',
|
|
703
697
|
Galaxy_S10_Plus = 'Galaxy S10 Plus',
|
|
704
698
|
Galaxy_Note_10 = 'Galaxy Note 10',
|