@applitools/eyes-nightwatch 1.26.8 → 1.26.10

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,69 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.26.10](https://github.com/Applitools-Dev/sdk/compare/js/eyes-nightwatch@1.26.9...js/eyes-nightwatch@1.26.10) (2025-10-09)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/dom-snapshot bumped to 4.13.9
9
+ #### Bug Fixes
10
+
11
+ * verbose Unknown CSS object model logging | AD-11542 | FLD-3687 ([#3261](https://github.com/Applitools-Dev/sdk/issues/3261)) ([ba85d32](https://github.com/Applitools-Dev/sdk/commit/ba85d3287a81af109db1a7b407e5ead20f395d9f))
12
+ * @applitools/nml-client bumped to 1.11.8
13
+
14
+ * @applitools/core-base bumped to 1.28.2
15
+ #### Bug Fixes
16
+
17
+ * various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
18
+ * @applitools/core bumped to 4.50.1
19
+ #### Bug Fixes
20
+
21
+ * various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
22
+
23
+
24
+
25
+ * @applitools/ec-client bumped to 1.12.10
26
+
27
+ * @applitools/eyes bumped to 1.36.10
28
+ #### Bug Fixes
29
+
30
+ * various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
31
+
32
+
33
+
34
+
35
+ ## [1.26.9](https://github.com/Applitools-Dev/sdk/compare/js/eyes-nightwatch@1.26.8...js/eyes-nightwatch@1.26.9) (2025-10-01)
36
+
37
+
38
+ ### Dependencies
39
+
40
+ * @applitools/screenshoter bumped to 3.12.6
41
+ #### Bug Fixes
42
+
43
+ * wait after scroll | FLD-3594 ([#3252](https://github.com/Applitools-Dev/sdk/issues/3252)) ([e452422](https://github.com/Applitools-Dev/sdk/commit/e4524229b64e40d9b9596a92bfa94daf5824286a))
44
+ * @applitools/nml-client bumped to 1.11.7
45
+
46
+ * @applitools/core-base bumped to 1.28.1
47
+ #### Bug Fixes
48
+
49
+ * unexpected concurrency values from server | AD-11465 ([#3248](https://github.com/Applitools-Dev/sdk/issues/3248)) ([0dd28c7](https://github.com/Applitools-Dev/sdk/commit/0dd28c7b297d5ad3aabc6b87e427e3e09a993825))
50
+ * @applitools/core bumped to 4.49.0
51
+ #### Features
52
+
53
+ * storybook addon ([#3104](https://github.com/Applitools-Dev/sdk/issues/3104)) ([16e09cb](https://github.com/Applitools-Dev/sdk/commit/16e09cba8928c3a24b9e0d9d41e0936fbaec2773))
54
+
55
+
56
+ #### Bug Fixes
57
+
58
+ * duplicate concurrency warnings ([#3255](https://github.com/Applitools-Dev/sdk/issues/3255)) ([ef2f94a](https://github.com/Applitools-Dev/sdk/commit/ef2f94ab4137c78396583f166344285beeb49be7))
59
+
60
+
61
+
62
+ * @applitools/ec-client bumped to 1.12.9
63
+
64
+ * @applitools/eyes bumped to 1.36.9
65
+
66
+
3
67
  ## [1.26.8](https://github.com/Applitools-Dev/sdk/compare/js/eyes-nightwatch@1.26.7...js/eyes-nightwatch@1.26.8) (2025-09-22)
4
68
 
5
69
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-nightwatch",
3
- "version": "1.26.8",
3
+ "version": "1.26.10",
4
4
  "description": "Applitools Eyes SDK for Nightwatch.js",
5
5
  "keywords": [
6
6
  "eyes-nightwatch",
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@applitools/driver": "1.23.5",
47
- "@applitools/eyes": "1.36.8",
47
+ "@applitools/eyes": "1.36.10",
48
48
  "@applitools/spec-driver-webdriver": "1.4.5",
49
49
  "@applitools/utils": "1.12.0",
50
50
  "webdriver": "7.31.1"
package/types/index.d.ts CHANGED
@@ -1094,6 +1094,8 @@ export enum DynamicTextType {
1094
1094
  Currency = 'Currency'
1095
1095
  }
1096
1096
  export class EyesError extends Error {
1097
+ constructor(message: string, reason?: undefined | string);
1098
+ readonly reason: string;
1097
1099
  }
1098
1100
  export class TestFailedError extends EyesError {
1099
1101
  constructor(message: string, results: TestResultsPlain);