@applitools/eyes-testcafe 6.3.43 → 6.3.44

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
@@ -13,6 +13,40 @@
13
13
 
14
14
 
15
15
 
16
+ ## [6.3.44](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.3.43...js/eyes-testcafe@6.3.44) (2026-06-04)
17
+
18
+
19
+ ### Dependencies
20
+
21
+ * @applitools/nml-client bumped to 1.11.29
22
+
23
+ * @applitools/core-base bumped to 1.35.0
24
+ #### Features
25
+
26
+ * auto-accept UFG diffs from infra updates | AD-9583 ([#3797](https://github.com/Applitools-Dev/sdk/issues/3797)) ([fde553c](https://github.com/Applitools-Dev/sdk/commit/fde553c947aa3c040660ef5d07855fa4a1412399))
27
+ * @applitools/core bumped to 4.64.0
28
+ #### Features
29
+
30
+ * auto-accept UFG diffs from infra updates | AD-9583 ([#3797](https://github.com/Applitools-Dev/sdk/issues/3797)) ([fde553c](https://github.com/Applitools-Dev/sdk/commit/fde553c947aa3c040660ef5d07855fa4a1412399))
31
+ * support default match level from renderinfo | AD-13499 ([#3799](https://github.com/Applitools-Dev/sdk/issues/3799)) ([c7e8aeb](https://github.com/Applitools-Dev/sdk/commit/c7e8aeb3f231d9b4e6e368d7ae5f87115c5cad09))
32
+
33
+
34
+ #### Bug Fixes
35
+
36
+ * source hideCaret from settings.hideCaret in NML classic capture | AD-14053 ([#3878](https://github.com/Applitools-Dev/sdk/issues/3878)) ([f07b4f5](https://github.com/Applitools-Dev/sdk/commit/f07b4f5c90bb9b7de0300cef93f23dc833268a7c))
37
+
38
+
39
+
40
+ * @applitools/ec-client bumped to 1.12.31
41
+
42
+ * @applitools/eyes bumped to 1.43.0
43
+ #### Features
44
+
45
+ * auto-accept UFG diffs from infra updates | AD-9583 ([#3797](https://github.com/Applitools-Dev/sdk/issues/3797)) ([fde553c](https://github.com/Applitools-Dev/sdk/commit/fde553c947aa3c040660ef5d07855fa4a1412399))
46
+
47
+
48
+
49
+
16
50
  ## [6.3.43](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.3.42...js/eyes-testcafe@6.3.43) (2026-05-26)
17
51
 
18
52
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-testcafe",
3
- "version": "6.3.43",
3
+ "version": "6.3.44",
4
4
  "description": "Applitools Eyes SDK for TestCafe",
5
5
  "keywords": [
6
6
  "eyes-testcafe",
@@ -69,7 +69,7 @@
69
69
  },
70
70
  "dependencies": {
71
71
  "@applitools/driver": "1.26.2",
72
- "@applitools/eyes": "1.42.1",
72
+ "@applitools/eyes": "1.43.0",
73
73
  "@applitools/utils": "1.14.5"
74
74
  },
75
75
  "devDependencies": {
package/types/index.d.ts CHANGED
@@ -1799,6 +1799,7 @@ export type TestResultsPlain = {
1799
1799
  readonly url?: undefined | string;
1800
1800
  readonly server?: undefined | { eyesServerUrl: string; apiKey: string; proxy?: undefined | ProxySettingsPlain; };
1801
1801
  readonly keepIfDuplicate?: undefined | boolean;
1802
+ readonly isAutoAcceptedInfraUpdate?: undefined | boolean;
1802
1803
  };
1803
1804
  export class TestResults implements Required<TestResultsPlain> {
1804
1805
  get id(): string;
@@ -1899,6 +1900,8 @@ export class TestResults implements Required<TestResultsPlain> {
1899
1900
  useDnsCache?: undefined | boolean;
1900
1901
  };
1901
1902
  get keepIfDuplicate(): boolean;
1903
+ get isAutoAcceptedInfraUpdate(): boolean;
1904
+ getIsAutoAcceptedInfraUpdate(): boolean;
1902
1905
  isPassed(): boolean;
1903
1906
  delete(): Promise<void>;
1904
1907
  deleteSession(): Promise<void>;