@applitools/eyes-playwright 1.42.5 → 1.43.0

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,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.43.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes-playwright@1.42.5...js/eyes-playwright@1.43.0) (2026-01-14)
4
+
5
+
6
+ ### Features
7
+
8
+ * 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))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/core bumped to 4.54.3
14
+ #### Bug Fixes
15
+
16
+ * `close`/`getResults` race condition ([#3450](https://github.com/Applitools-Dev/sdk/issues/3450)) ([2e5437d](https://github.com/Applitools-Dev/sdk/commit/2e5437dcfde6fda58d76227659ee249bfa3885a7))
17
+ * @applitools/eyes bumped to 1.37.0
18
+ #### Features
19
+
20
+ * 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))
21
+
22
+
23
+
24
+
3
25
  ## [1.42.5](https://github.com/Applitools-Dev/sdk/compare/js/eyes-playwright@1.42.4...js/eyes-playwright@1.42.5) (2026-01-11)
4
26
 
5
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-playwright",
3
- "version": "1.42.5",
3
+ "version": "1.43.0",
4
4
  "description": "Applitools Eyes SDK for Playwright",
5
5
  "keywords": [
6
6
  "eyes-playwright",
@@ -59,7 +59,7 @@
59
59
  "up:framework": "echo \"$(jq '.devDependencies.playwright = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
60
60
  },
61
61
  "dependencies": {
62
- "@applitools/eyes": "1.36.20",
62
+ "@applitools/eyes": "1.37.0",
63
63
  "@applitools/req": "1.8.7",
64
64
  "@applitools/spec-driver-playwright": "1.7.10",
65
65
  "@applitools/utils": "1.14.1",
package/types/index.d.ts CHANGED
@@ -1187,6 +1187,7 @@ export type BatchInfoPlain = {
1187
1187
  startedAt?: undefined | string | Date;
1188
1188
  notifyOnCompletion?: undefined | boolean;
1189
1189
  properties?: undefined | Array<PropertyDataPlain>;
1190
+ buildId?: undefined | string;
1190
1191
  };
1191
1192
  export class BatchInfo implements Required<BatchInfoPlain> {
1192
1193
  constructor();
@@ -1220,6 +1221,10 @@ export class BatchInfo implements Required<BatchInfoPlain> {
1220
1221
  setProperties(properties: Array<PropertyDataPlain>): BatchInfo;
1221
1222
  addProperty(name: string, value: string): BatchInfo;
1222
1223
  addProperty(prop: PropertyDataPlain): BatchInfo;
1224
+ get buildId(): string;
1225
+ set buildId(buildId: string);
1226
+ getBuildId(): string;
1227
+ setBuildId(buildId: string): BatchInfo;
1223
1228
  }
1224
1229
  export type Image = {
1225
1230
  image: string | Buffer | URL;