@applitools/eyes-images 4.31.45 → 4.31.47

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,70 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.31.47](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.31.46...js/eyes-images@4.31.47) (2026-06-15)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/nml-client bumped to 1.11.32
9
+
10
+ * @applitools/core-base bumped to 1.35.2
11
+ #### Bug Fixes
12
+
13
+ * re-trigger release for packages missed in the AD-14089 release | AD-14089 ([#3925](https://github.com/Applitools-Dev/sdk/issues/3925)) ([0880c34](https://github.com/Applitools-Dev/sdk/commit/0880c34b66221025e70ca7e3e3fab7b45a9f8d9e))
14
+ * @applitools/ec-client bumped to 1.12.34
15
+
16
+ * @applitools/core bumped to 4.65.1
17
+
18
+ * @applitools/eyes bumped to 1.43.3
19
+
20
+
21
+ ## [4.31.46](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.31.45...js/eyes-images@4.31.46) (2026-06-14)
22
+
23
+
24
+ ### Dependencies
25
+
26
+ * @applitools/dom-snapshot bumped to 4.17.3
27
+ #### Bug Fixes
28
+
29
+ * capture opaque-origin sandboxed blob iframes in UFG | FLD-4606 ([#3916](https://github.com/Applitools-Dev/sdk/issues/3916)) ([9296f7e](https://github.com/Applitools-Dev/sdk/commit/9296f7ef9fe3aa3889402009860ef5e3276f0303))
30
+
31
+
32
+
33
+ * @applitools/snippets bumped to 2.9.3
34
+ #### Bug Fixes
35
+
36
+ * capture opaque-origin sandboxed blob iframes in UFG | FLD-4606 ([#3916](https://github.com/Applitools-Dev/sdk/issues/3916)) ([9296f7e](https://github.com/Applitools-Dev/sdk/commit/9296f7ef9fe3aa3889402009860ef5e3276f0303))
37
+ * @applitools/core bumped to 4.65.0
38
+ #### Features
39
+
40
+ * add useLatestEnvBaseline to session startInfo | AD-14089 ([#3887](https://github.com/Applitools-Dev/sdk/issues/3887)) ([b15b9af](https://github.com/Applitools-Dev/sdk/commit/b15b9af34328193f6705c90a26c24aa1e4b23d1c))
41
+
42
+
43
+ #### Bug Fixes
44
+
45
+ * capture opaque-origin sandboxed blob iframes in UFG | FLD-4606 ([#3916](https://github.com/Applitools-Dev/sdk/issues/3916)) ([9296f7e](https://github.com/Applitools-Dev/sdk/commit/9296f7ef9fe3aa3889402009860ef5e3276f0303))
46
+
47
+
48
+
49
+ * @applitools/driver bumped to 1.26.3
50
+
51
+ * @applitools/spec-driver-webdriver bumped to 1.6.3
52
+
53
+ * @applitools/spec-driver-selenium bumped to 1.8.3
54
+
55
+ * @applitools/spec-driver-playwright bumped to 1.9.3
56
+
57
+ * @applitools/spec-driver-puppeteer bumped to 1.8.3
58
+
59
+ * @applitools/screenshoter bumped to 3.12.22
60
+
61
+ * @applitools/nml-client bumped to 1.11.31
62
+
63
+ * @applitools/ec-client bumped to 1.12.33
64
+
65
+ * @applitools/eyes bumped to 1.43.2
66
+
67
+
3
68
  ## [4.31.45](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.31.44...js/eyes-images@4.31.45) (2026-06-09)
4
69
 
5
70
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-images",
3
- "version": "4.31.45",
3
+ "version": "4.31.47",
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.43.1"
43
+ "@applitools/eyes": "1.43.3"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@applitools/api-extractor": "^1.2.22",
package/types/index.d.ts CHANGED
@@ -106,7 +106,7 @@ export class Eyes {
106
106
  getBaselineName(): string;
107
107
  setBaselineName(baselineName: string): void;
108
108
  getBaselineEnvName(): string;
109
- setBaselineEnvName(baselineEnvName: string): void;
109
+ setBaselineEnvName(baselineEnvName: string, options?: undefined | BaselineEnvOptions): void;
110
110
  getBranchName(): string;
111
111
  setBranchName(branchName: string): void;
112
112
  getHostApp(): string;
@@ -254,7 +254,7 @@ export class Configuration implements Required<ConfigurationPlain> {
254
254
  get baselineEnvName(): string;
255
255
  set baselineEnvName(baselineEnvName: string);
256
256
  getBaselineEnvName(): string;
257
- setBaselineEnvName(baselineEnvName: string): Configuration;
257
+ setBaselineEnvName(baselineEnvName: string, options?: undefined | BaselineEnvOptions): Configuration;
258
258
  get batch(): BatchInfoPlain;
259
259
  set batch(batch: BatchInfoPlain);
260
260
  getBatch(): BatchInfo;
@@ -1357,6 +1357,7 @@ export const TargetImage: {
1357
1357
  url(imageUrl: string): CheckSettingsImage;
1358
1358
  url(imageUrl: URL): CheckSettingsImage;
1359
1359
  };
1360
+ export type BaselineEnvOptions = { useLatestEnvBaseline?: undefined | boolean; };
1360
1361
  export type CutProviderPlain = { top: number; right: number; bottom: number; left: number; } | { x: number; y: number; width: number; height: number; };
1361
1362
  export class CutProvider implements Required<{
1362
1363
  x: number;