@applitools/eyes 1.36.9 → 1.36.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,35 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.36.10](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.36.9...js/eyes@1.36.10) (2025-10-09)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/dom-snapshot bumped to 4.13.9
14
+ #### Bug Fixes
15
+
16
+ * 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))
17
+ * @applitools/core-base bumped to 1.28.2
18
+ #### Bug Fixes
19
+
20
+ * various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
21
+ * @applitools/nml-client bumped to 1.11.8
22
+
23
+ * @applitools/ec-client bumped to 1.12.10
24
+
25
+ * @applitools/core bumped to 4.50.1
26
+ #### Bug Fixes
27
+
28
+ * various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
29
+
30
+
31
+
32
+
3
33
  ## [1.36.9](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.36.8...js/eyes@1.36.9) (2025-10-01)
4
34
 
5
35
 
@@ -2,5 +2,11 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.EyesError = void 0;
4
4
  class EyesError extends Error {
5
+ constructor(message, reason) {
6
+ super();
7
+ this.name = this.constructor.name;
8
+ this.message = message;
9
+ this.reason = reason || 'internal';
10
+ }
5
11
  }
6
12
  exports.EyesError = EyesError;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes",
3
- "version": "1.36.9",
3
+ "version": "1.36.10",
4
4
  "keywords": [
5
5
  "applitools",
6
6
  "eyes",
@@ -46,7 +46,7 @@
46
46
  "test": "run --top-level mocha './test/**/*.spec.ts'"
47
47
  },
48
48
  "dependencies": {
49
- "@applitools/core": "4.49.0",
49
+ "@applitools/core": "4.50.1",
50
50
  "@applitools/logger": "2.2.4",
51
51
  "@applitools/utils": "1.12.0",
52
52
  "chalk": "4.1.2",
@@ -1,2 +1,4 @@
1
1
  export declare class EyesError extends Error {
2
+ readonly reason: string;
3
+ constructor(message: string, reason?: string);
2
4
  }