@applitools/eyes 1.38.3 → 1.38.4
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/dist/enums/DeviceName.js +1 -0
- package/package.json +1 -1
- package/types/enums/DeviceName.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.38.4](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.38.3...js/eyes@1.38.4) (2026-02-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* add iphone 15 chrome emulation | FLD-4087 ([#3525](https://github.com/Applitools-Dev/sdk/issues/3525)) ([ddcc6c0](https://github.com/Applitools-Dev/sdk/commit/ddcc6c012d1874241433ca274508ece38f2dd222))
|
|
9
|
+
|
|
3
10
|
## [1.38.3](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.38.2...js/eyes@1.38.3) (2026-02-16)
|
|
4
11
|
|
|
5
12
|
|
package/dist/enums/DeviceName.js
CHANGED
|
@@ -108,4 +108,5 @@ var DeviceNameEnum;
|
|
|
108
108
|
DeviceNameEnum["Xiaomi_Poco_X3"] = "Xiaomi Poco X3";
|
|
109
109
|
DeviceNameEnum["iPhone_5_SE"] = "iPhone 5/SE";
|
|
110
110
|
DeviceNameEnum["Pixel_7"] = "Pixel 7";
|
|
111
|
+
DeviceNameEnum["iPhone_15"] = "iPhone 15";
|
|
111
112
|
})(DeviceNameEnum || (exports.DeviceNameEnum = DeviceNameEnum = {}));
|
package/package.json
CHANGED
|
@@ -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}`;
|