@applitools/eyes-browser 1.6.0 → 1.6.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 +78 -0
- package/dist/index.js +2430 -3978
- package/package.json +4 -3
- package/types/enums/DeviceName.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-browser",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"applitools",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"test": "run playwright test"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@applitools/eyes": "1.38.
|
|
54
|
+
"@applitools/eyes": "1.38.5"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@applitools/test-server": "1.4.0",
|
|
@@ -82,7 +82,8 @@
|
|
|
82
82
|
"allowScripts": {
|
|
83
83
|
"@applitools/eyes>@applitools/core>ws>bufferutil": false,
|
|
84
84
|
"@applitools/eyes>@applitools/core>ws>utf-8-validate": false,
|
|
85
|
-
"core-js": false
|
|
85
|
+
"core-js": false,
|
|
86
|
+
"@applitools/eyes>@applitools/core>@applitools/core-base>@applitools/image>sharp": false
|
|
86
87
|
}
|
|
87
88
|
}
|
|
88
89
|
}
|
|
@@ -102,6 +102,7 @@ export declare enum DeviceNameEnum {
|
|
|
102
102
|
Xiaomi_Mi_Poco_X3_Pro = "Xiaomi Mi Poco X3 Pro",
|
|
103
103
|
Xiaomi_Poco_X3 = "Xiaomi Poco X3",
|
|
104
104
|
iPhone_5_SE = "iPhone 5/SE",
|
|
105
|
-
Pixel_7 = "Pixel 7"
|
|
105
|
+
Pixel_7 = "Pixel 7",
|
|
106
|
+
iPhone_15 = "iPhone 15"
|
|
106
107
|
}
|
|
107
108
|
export type DeviceName = `${DeviceNameEnum}`;
|