@applitools/eyes-images 4.31.37 → 4.31.38

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,49 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.31.38](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.31.37...js/eyes-images@4.31.38) (2026-04-23)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/req bumped to 1.10.0
9
+ #### Features
10
+
11
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
12
+ * @applitools/ufg-client bumped to 1.21.0
13
+ #### Features
14
+
15
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
16
+
17
+
18
+
19
+ * @applitools/core bumped to 4.60.0
20
+ #### Features
21
+
22
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
23
+
24
+
25
+
26
+ * @applitools/nml-client bumped to 1.11.25
27
+
28
+ * @applitools/tunnel-client bumped to 1.11.11
29
+
30
+ * @applitools/core-base bumped to 1.33.0
31
+ #### Features
32
+
33
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
34
+
35
+
36
+
37
+ * @applitools/ec-client bumped to 1.12.26
38
+
39
+ * @applitools/eyes bumped to 1.39.0
40
+ #### Features
41
+
42
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
43
+
44
+
45
+
46
+
3
47
  ## [4.31.37](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.31.36...js/eyes-images@4.31.37) (2026-04-16)
4
48
 
5
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-images",
3
- "version": "4.31.37",
3
+ "version": "4.31.38",
4
4
  "description": "The simplest implementation of Applitools Eyes SDK, uploads images for validation",
5
5
  "keywords": [
6
6
  "eyes-images",
@@ -40,7 +40,7 @@
40
40
  "test:coverage": "APPLITOOLS_SHOW_LOGS=true APPLITOOLS_LOG_FILE=\"./logs/$(uuidgen).log\" APPLITOOLS_BATCH_NAME='JS Coverage Tests: eyes-images' APPLITOOLS_BATCH_ID=$(uuidgen) MOCHA_GROUP=coverage run --top-level mocha './test/generated-coverage/*.spec.{js,ts}' --parallel --jobs ${MOCHA_JOBS:-15}"
41
41
  },
42
42
  "dependencies": {
43
- "@applitools/eyes": "1.38.15"
43
+ "@applitools/eyes": "1.39.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@applitools/api-extractor": "^1.2.22",
package/types/index.d.ts CHANGED
@@ -198,7 +198,7 @@ export type ConfigurationPlain = {
198
198
  ignoreDisplacements?: undefined | boolean;
199
199
  ignoreGitMergeBase?: undefined | boolean;
200
200
  isDisabled?: undefined | boolean;
201
- layoutBreakpoints?: undefined | boolean | Array<number> | { breakpoints: boolean | Array<number>; reload?: undefined | boolean; };
201
+ layoutBreakpoints?: undefined | boolean | Array<number> | { breakpoints: boolean | Array<number>; heightBreakpoints?: undefined | boolean; reload?: undefined | boolean; };
202
202
  matchLevel?: undefined | MatchLevelPlain;
203
203
  matchTimeout?: undefined | number;
204
204
  mobileOptions?: undefined | { keepNavigationBar?: undefined | boolean; };
@@ -387,12 +387,12 @@ export class Configuration implements Required<ConfigurationPlain> {
387
387
  set isDisabled(isDisabled: boolean);
388
388
  getIsDisabled(): boolean;
389
389
  setIsDisabled(isDisabled: boolean): Configuration;
390
- get layoutBreakpoints(): boolean | Array<number> | { breakpoints: boolean | Array<number>; reload?: undefined | boolean; };
391
- set layoutBreakpoints(layoutBreakpoints: boolean | Array<number> | { breakpoints: boolean | Array<number>; reload?: undefined | boolean; });
392
- getLayoutBreakpoints(): boolean | Array<number> | { breakpoints: boolean | Array<number>; reload?: undefined | boolean; };
390
+ get layoutBreakpoints(): boolean | Array<number> | { breakpoints: boolean | Array<number>; heightBreakpoints?: undefined | boolean; reload?: undefined | boolean; };
391
+ set layoutBreakpoints(layoutBreakpoints: boolean | Array<number> | { breakpoints: boolean | Array<number>; heightBreakpoints?: undefined | boolean; reload?: undefined | boolean; });
392
+ getLayoutBreakpoints(): boolean | Array<number> | { breakpoints: boolean | Array<number>; heightBreakpoints?: undefined | boolean; reload?: undefined | boolean; };
393
393
  setLayoutBreakpoints(layoutBreakpoints: boolean): Configuration;
394
394
  setLayoutBreakpoints(layoutBreakpoints: Array<number>): Configuration;
395
- setLayoutBreakpoints(layoutBreakpoints: { breakpoints: boolean | Array<number>; reload?: undefined | boolean; }): Configuration;
395
+ setLayoutBreakpoints(layoutBreakpoints: { breakpoints: boolean | Array<number>; heightBreakpoints?: undefined | boolean; reload?: undefined | boolean; }): Configuration;
396
396
  get matchLevel(): MatchLevelPlain;
397
397
  set matchLevel(matchLevel: MatchLevelPlain);
398
398
  getMatchLevel(): MatchLevel;