@applitools/eyes-selenium 4.82.20 → 4.82.22

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,65 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.82.22](https://github.com/Applitools-Dev/sdk/compare/js/eyes-selenium@4.82.21...js/eyes-selenium@4.82.22) (2026-01-19)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/driver bumped to 1.25.0
9
+ #### Features
10
+
11
+ * multi-page support - FLD-3827 ([#3410](https://github.com/Applitools-Dev/sdk/issues/3410)) ([a55b982](https://github.com/Applitools-Dev/sdk/commit/a55b9827c2218c11da5ed61b38bf12a70ce4c8db))
12
+ * @applitools/spec-driver-puppeteer bumped to 1.7.0
13
+ #### Features
14
+
15
+ * multi-page support - FLD-3827 ([#3410](https://github.com/Applitools-Dev/sdk/issues/3410)) ([a55b982](https://github.com/Applitools-Dev/sdk/commit/a55b9827c2218c11da5ed61b38bf12a70ce4c8db))
16
+
17
+
18
+
19
+ * @applitools/core bumped to 4.55.0
20
+ #### Features
21
+
22
+ * multi-page support - FLD-3827 ([#3410](https://github.com/Applitools-Dev/sdk/issues/3410)) ([a55b982](https://github.com/Applitools-Dev/sdk/commit/a55b9827c2218c11da5ed61b38bf12a70ce4c8db))
23
+
24
+
25
+
26
+ * @applitools/dom-snapshot bumped to 4.15.6
27
+
28
+ * @applitools/spec-driver-webdriver bumped to 1.5.5
29
+
30
+ * @applitools/spec-driver-selenium bumped to 1.7.11
31
+
32
+ * @applitools/screenshoter bumped to 3.12.12
33
+
34
+ * @applitools/nml-client bumped to 1.11.15
35
+
36
+ * @applitools/ec-client bumped to 1.12.17
37
+
38
+ * @applitools/eyes bumped to 1.38.0
39
+ #### Features
40
+
41
+ * multi-page support - FLD-3827 ([#3410](https://github.com/Applitools-Dev/sdk/issues/3410)) ([a55b982](https://github.com/Applitools-Dev/sdk/commit/a55b9827c2218c11da5ed61b38bf12a70ce4c8db))
42
+
43
+
44
+
45
+
46
+ ## [4.82.21](https://github.com/Applitools-Dev/sdk/compare/js/eyes-selenium@4.82.20...js/eyes-selenium@4.82.21) (2026-01-14)
47
+
48
+
49
+ ### Dependencies
50
+
51
+ * @applitools/core bumped to 4.54.3
52
+ #### Bug Fixes
53
+
54
+ * `close`/`getResults` race condition ([#3450](https://github.com/Applitools-Dev/sdk/issues/3450)) ([2e5437d](https://github.com/Applitools-Dev/sdk/commit/2e5437dcfde6fda58d76227659ee249bfa3885a7))
55
+ * @applitools/eyes bumped to 1.37.0
56
+ #### Features
57
+
58
+ * expose buildId in BatchInfo type | FLD-4020 ([#3466](https://github.com/Applitools-Dev/sdk/issues/3466)) ([7868ba0](https://github.com/Applitools-Dev/sdk/commit/7868ba08de9a9d348c42d8eac5a953dce44844d0))
59
+
60
+
61
+
62
+
3
63
  ## [4.82.20](https://github.com/Applitools-Dev/sdk/compare/js/eyes-selenium@4.82.19...js/eyes-selenium@4.82.20) (2026-01-11)
4
64
 
5
65
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-selenium",
3
- "version": "4.82.20",
3
+ "version": "4.82.22",
4
4
  "description": "Applitools Eyes SDK for Selenium WebDriver",
5
5
  "keywords": [
6
6
  "eyes-selenium",
@@ -41,8 +41,8 @@
41
41
  "up:framework": "echo \"$(jq '.devDependencies[\"selenium-webdriver\"] = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
42
42
  },
43
43
  "dependencies": {
44
- "@applitools/eyes": "1.36.20",
45
- "@applitools/spec-driver-selenium": "1.7.10"
44
+ "@applitools/eyes": "1.38.0",
45
+ "@applitools/spec-driver-selenium": "1.7.11"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@applitools/api-extractor": "^1.2.22",
package/types/index.d.ts CHANGED
@@ -1186,6 +1186,7 @@ export type BatchInfoPlain = {
1186
1186
  startedAt?: undefined | string | Date;
1187
1187
  notifyOnCompletion?: undefined | boolean;
1188
1188
  properties?: undefined | Array<PropertyDataPlain>;
1189
+ buildId?: undefined | string;
1189
1190
  };
1190
1191
  export class BatchInfo implements Required<BatchInfoPlain> {
1191
1192
  constructor();
@@ -1219,6 +1220,10 @@ export class BatchInfo implements Required<BatchInfoPlain> {
1219
1220
  setProperties(properties: Array<PropertyDataPlain>): BatchInfo;
1220
1221
  addProperty(name: string, value: string): BatchInfo;
1221
1222
  addProperty(prop: PropertyDataPlain): BatchInfo;
1223
+ get buildId(): string;
1224
+ set buildId(buildId: string);
1225
+ getBuildId(): string;
1226
+ setBuildId(buildId: string): BatchInfo;
1222
1227
  }
1223
1228
  export type Image = {
1224
1229
  image: string | URL | Buffer;