@applitools/eyes-images 4.31.45 → 4.31.46

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,52 @@
1
1
  # Changelog
2
2
 
3
+ ## [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)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/dom-snapshot bumped to 4.17.3
9
+ #### Bug Fixes
10
+
11
+ * 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))
12
+
13
+
14
+
15
+ * @applitools/snippets bumped to 2.9.3
16
+ #### Bug Fixes
17
+
18
+ * 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))
19
+ * @applitools/core bumped to 4.65.0
20
+ #### Features
21
+
22
+ * 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))
23
+
24
+
25
+ #### Bug Fixes
26
+
27
+ * 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))
28
+
29
+
30
+
31
+ * @applitools/driver bumped to 1.26.3
32
+
33
+ * @applitools/spec-driver-webdriver bumped to 1.6.3
34
+
35
+ * @applitools/spec-driver-selenium bumped to 1.8.3
36
+
37
+ * @applitools/spec-driver-playwright bumped to 1.9.3
38
+
39
+ * @applitools/spec-driver-puppeteer bumped to 1.8.3
40
+
41
+ * @applitools/screenshoter bumped to 3.12.22
42
+
43
+ * @applitools/nml-client bumped to 1.11.31
44
+
45
+ * @applitools/ec-client bumped to 1.12.33
46
+
47
+ * @applitools/eyes bumped to 1.43.2
48
+
49
+
3
50
  ## [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
51
 
5
52
 
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.46",
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.2"
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;