@applitools/eyes-nightwatch 1.27.8 → 1.27.9

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,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.27.9](https://github.com/Applitools-Dev/sdk/compare/js/eyes-nightwatch@1.27.8...js/eyes-nightwatch@1.27.9) (2026-07-08)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/nml-client bumped to 1.11.35
9
+
10
+ * @applitools/core-base bumped to 1.36.1
11
+ #### Bug Fixes
12
+
13
+ * forward Exact match-level tuning to the server across JS + Java | FLD-4685 ([#3974](https://github.com/Applitools-Dev/sdk/issues/3974)) ([fea351c](https://github.com/Applitools-Dev/sdk/commit/fea351c76c80f63bf658d9573b3d34e0537e0cce))
14
+ * @applitools/core bumped to 4.66.1
15
+ #### Bug Fixes
16
+
17
+ * stop UFG old-infra retry after a retry fails | AD-14675 ([#3970](https://github.com/Applitools-Dev/sdk/issues/3970)) ([1531893](https://github.com/Applitools-Dev/sdk/commit/1531893cc9c098f3ade329ceae7164600c184fa5))
18
+
19
+
20
+
21
+ * @applitools/ec-client bumped to 1.12.37
22
+
23
+ * @applitools/eyes bumped to 1.43.6
24
+ #### Bug Fixes
25
+
26
+ * forward Exact match-level tuning to the server across JS + Java | FLD-4685 ([#3974](https://github.com/Applitools-Dev/sdk/issues/3974)) ([fea351c](https://github.com/Applitools-Dev/sdk/commit/fea351c76c80f63bf658d9573b3d34e0537e0cce))
27
+
28
+
29
+
30
+
3
31
  ## [1.27.8](https://github.com/Applitools-Dev/sdk/compare/js/eyes-nightwatch@1.27.7...js/eyes-nightwatch@1.27.8) (2026-06-28)
4
32
 
5
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-nightwatch",
3
- "version": "1.27.8",
3
+ "version": "1.27.9",
4
4
  "description": "Applitools Eyes SDK for Nightwatch.js",
5
5
  "keywords": [
6
6
  "eyes-nightwatch",
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@applitools/driver": "1.26.5",
47
- "@applitools/eyes": "1.43.5",
47
+ "@applitools/eyes": "1.43.6",
48
48
  "@applitools/spec-driver-webdriver": "1.6.5",
49
49
  "@applitools/utils": "1.15.1",
50
50
  "webdriver": "7.31.1"
package/types/index.d.ts CHANGED
@@ -176,6 +176,7 @@ export type CheckSettingsImagePlain = {
176
176
  name?: undefined | string;
177
177
  region?: undefined | RegionPlain | LegacyRegionPlain;
178
178
  matchLevel?: undefined | MatchLevelPlain;
179
+ exact?: undefined | ExactMatchSettingsPlain;
179
180
  useDom?: undefined | boolean;
180
181
  sendDom?: undefined | boolean;
181
182
  enablePatterns?: undefined | boolean;
@@ -221,6 +222,7 @@ export type CheckSettingsAutomationPlain = {
221
222
  name?: undefined | string;
222
223
  region?: undefined | (RegionPlain | LegacyRegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: undefined | string; shadow?: undefined | EyesSelector<Selector>; frame?: undefined | EyesSelector<Selector>; })));
223
224
  matchLevel?: undefined | MatchLevelPlain;
225
+ exact?: undefined | ExactMatchSettingsPlain;
224
226
  useDom?: undefined | boolean;
225
227
  sendDom?: undefined | boolean;
226
228
  enablePatterns?: undefined | boolean;
@@ -410,7 +412,7 @@ export class CheckSettingsAutomation {
410
412
  }>): CheckSettingsAutomation;
411
413
  matchLevel(matchLevel: MatchLevelPlain): CheckSettingsAutomation;
412
414
  layout(): CheckSettingsAutomation;
413
- exact(): CheckSettingsAutomation;
415
+ exact(exact?: undefined | ExactMatchSettingsPlain): CheckSettingsAutomation;
414
416
  strict(): CheckSettingsAutomation;
415
417
  ignoreColors(): CheckSettingsAutomation;
416
418
  dynamic(): CheckSettingsAutomation;
@@ -1348,7 +1350,7 @@ export class CheckSettingsImage {
1348
1350
  }>): CheckSettingsImage;
1349
1351
  matchLevel(matchLevel: MatchLevelPlain): CheckSettingsImage;
1350
1352
  layout(): CheckSettingsImage;
1351
- exact(): CheckSettingsImage;
1353
+ exact(exact?: undefined | ExactMatchSettingsPlain): CheckSettingsImage;
1352
1354
  strict(): CheckSettingsImage;
1353
1355
  ignoreColors(): CheckSettingsImage;
1354
1356
  dynamic(): CheckSettingsImage;
@@ -1410,24 +1412,28 @@ export class FixedCutProvider extends CutProvider {
1410
1412
  export class UnscaledFixedCutProvider extends CutProvider {
1411
1413
  scale(): UnscaledFixedCutProvider;
1412
1414
  }
1413
- export type ExactMatchSettingsPlain = { minDiffIntensity: number; minDiffWidth: number; minDiffHeight: number; matchThreshold: number; };
1414
- export class ExactMatchSettings implements Required<ExactMatchSettingsPlain> {
1415
+ export type ExactMatchSettingsPlain = { minDiffIntensity?: undefined | number; minDiffWidth?: undefined | number; minDiffHeight?: undefined | number; matchThreshold?: undefined | number; };
1416
+ export class ExactMatchSettings implements ExactMatchSettingsPlain {
1415
1417
  constructor(settings: ExactMatchSettingsPlain);
1416
- get minDiffIntensity(): number;
1417
- set minDiffIntensity(minDiffIntensity: number);
1418
- getMinDiffIntensity(): number;
1418
+ get minDiffIntensity(): undefined | number;
1419
+ set minDiffIntensity(minDiffIntensity: undefined | number);
1420
+ getMinDiffIntensity(): undefined | number;
1421
+ setMinDiffIntensity(value: undefined): void;
1419
1422
  setMinDiffIntensity(value: number): void;
1420
- get minDiffWidth(): number;
1421
- set minDiffWidth(minDiffWidth: number);
1422
- getMinDiffWidth(): number;
1423
+ get minDiffWidth(): undefined | number;
1424
+ set minDiffWidth(minDiffWidth: undefined | number);
1425
+ getMinDiffWidth(): undefined | number;
1426
+ setMinDiffWidth(value: undefined): void;
1423
1427
  setMinDiffWidth(value: number): void;
1424
- get minDiffHeight(): number;
1425
- set minDiffHeight(minDiffHeight: number);
1426
- getMinDiffHeight(): number;
1428
+ get minDiffHeight(): undefined | number;
1429
+ set minDiffHeight(minDiffHeight: undefined | number);
1430
+ getMinDiffHeight(): undefined | number;
1431
+ setMinDiffHeight(value: undefined): void;
1427
1432
  setMinDiffHeight(value: number): void;
1428
- get matchThreshold(): number;
1429
- set matchThreshold(matchThreshold: number);
1430
- getMatchThreshold(): number;
1433
+ get matchThreshold(): undefined | number;
1434
+ set matchThreshold(matchThreshold: undefined | number);
1435
+ getMatchThreshold(): undefined | number;
1436
+ setMatchThreshold(value: undefined): void;
1431
1437
  setMatchThreshold(value: number): void;
1432
1438
  }
1433
1439
  export type FloatingMatchSettingsPlain = {