@applitools/eyes 1.18.0 → 1.19.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 CHANGED
@@ -1,5 +1,53 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.19.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.18.0...js/eyes@1.19.0) (2024-05-01)
4
+
5
+
6
+ ### Features
7
+
8
+ * ability to override baseline parameters per environment ([#2332](https://github.com/Applitools-Dev/sdk/issues/2332)) ([43b8b18](https://github.com/Applitools-Dev/sdk/commit/43b8b189fb3c9dd19aa3be372e8fcc0fe8edfa50))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/dom-snapshot bumped to 4.11.1
14
+ #### Bug Fixes
15
+
16
+ * support for using unicode and just using escape with numbers ([#2241](https://github.com/Applitools-Dev/sdk/issues/2241)) ([c59f47f](https://github.com/Applitools-Dev/sdk/commit/c59f47f73585d7f308c43c9ee1845e097a2111a3))
17
+ * @applitools/driver bumped to 1.17.2
18
+ #### Bug Fixes
19
+
20
+ * cache nml client per driver ([#2336](https://github.com/Applitools-Dev/sdk/issues/2336)) ([02c09a5](https://github.com/Applitools-Dev/sdk/commit/02c09a53eb6ca6340c93365908f4c485ab389c21))
21
+ * @applitools/core-base bumped to 1.13.0
22
+ #### Features
23
+
24
+ * `matchTimeout` ([#2309](https://github.com/Applitools-Dev/sdk/issues/2309)) ([626529e](https://github.com/Applitools-Dev/sdk/commit/626529e839fd2a96ac0de98332f42873c0f387a4))
25
+ * @applitools/spec-driver-webdriver bumped to 1.1.7
26
+
27
+ * @applitools/spec-driver-selenium bumped to 1.5.78
28
+
29
+ * @applitools/spec-driver-puppeteer bumped to 1.4.7
30
+
31
+ * @applitools/screenshoter bumped to 3.8.31
32
+
33
+ * @applitools/nml-client bumped to 1.8.4
34
+
35
+ * @applitools/ec-client bumped to 1.8.4
36
+
37
+ * @applitools/core bumped to 4.14.0
38
+ #### Features
39
+
40
+ * `matchTimeout` ([#2309](https://github.com/Applitools-Dev/sdk/issues/2309)) ([626529e](https://github.com/Applitools-Dev/sdk/commit/626529e839fd2a96ac0de98332f42873c0f387a4))
41
+
42
+
43
+ #### Bug Fixes
44
+
45
+ * cache nml client per driver ([#2336](https://github.com/Applitools-Dev/sdk/issues/2336)) ([02c09a5](https://github.com/Applitools-Dev/sdk/commit/02c09a53eb6ca6340c93365908f4c485ab389c21))
46
+ * support for using unicode and just using escape with numbers ([#2241](https://github.com/Applitools-Dev/sdk/issues/2241)) ([c59f47f](https://github.com/Applitools-Dev/sdk/commit/c59f47f73585d7f308c43c9ee1845e097a2111a3))
47
+
48
+
49
+
50
+
3
51
  ## [1.18.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes-v1.17.2...js/eyes@1.18.0) (2024-04-15)
4
52
 
5
53
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes",
3
- "version": "1.18.0",
3
+ "version": "1.19.0",
4
4
  "keywords": [
5
5
  "applitools",
6
6
  "eyes",
@@ -45,12 +45,12 @@
45
45
  "test": "run --top-level mocha './test/**/*.spec.ts'"
46
46
  },
47
47
  "dependencies": {
48
- "@applitools/core": "4.12.2",
49
- "@applitools/logger": "2.0.15",
50
- "@applitools/utils": "1.7.1"
48
+ "@applitools/core": "4.14.0",
49
+ "@applitools/logger": "2.0.16",
50
+ "@applitools/utils": "1.7.2"
51
51
  },
52
52
  "devDependencies": {
53
- "@applitools/req": "^1.6.6",
53
+ "@applitools/req": "^1.6.7",
54
54
  "@types/node": "^12.20.55"
55
55
  },
56
56
  "engines": {
@@ -6,6 +6,16 @@ import { AndroidDeviceName } from '../enums/AndroidDeviceName';
6
6
  import { AndroidVersion } from '../enums/AndroidVersion';
7
7
  import { ScreenOrientation } from '../enums/ScreenOrientation';
8
8
  import { IosMultiDeviceTarget } from '../enums/IosMultiDeviceTarget';
9
+ type RenderInfoBase = {
10
+ /** @internal */
11
+ hostOS?: string;
12
+ /** @internal */
13
+ hostOSInfo?: string;
14
+ /** @internal */
15
+ hostApp?: string;
16
+ /** @internal */
17
+ hostAppInfo?: string;
18
+ };
9
19
  export type DesktopBrowserInfo = {
10
20
  name?: BrowserType;
11
21
  width: number;
@@ -39,5 +49,6 @@ export type AndroidDeviceInfo = {
39
49
  export type IOSMultiDeviceInfo = {
40
50
  deviceName: IosMultiDeviceTarget;
41
51
  };
42
- export type RenderInfoLegacy = DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | AndroidDeviceInfo | ChromeEmulationInfoLegacy;
43
- export type RenderInfo = DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | AndroidDeviceInfo | IOSMultiDeviceInfo;
52
+ export type RenderInfoLegacy = RenderInfoBase & (DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | AndroidDeviceInfo | ChromeEmulationInfoLegacy);
53
+ export type RenderInfo = RenderInfoBase & (DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | AndroidDeviceInfo | IOSMultiDeviceInfo);
54
+ export {};