@applitools/eyes-browser 1.6.16 → 1.6.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-browser",
3
- "version": "1.6.16",
3
+ "version": "1.6.17",
4
4
  "type": "module",
5
5
  "keywords": [
6
6
  "applitools",
@@ -51,7 +51,7 @@
51
51
  "test": "run playwright test"
52
52
  },
53
53
  "dependencies": {
54
- "@applitools/eyes": "1.41.0"
54
+ "@applitools/eyes": "1.42.0"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@applitools/test-server": "1.4.3",
@@ -100,6 +100,7 @@ export type CheckSettingsAutomation<TSpec extends Core.SpecType, TRegionReferenc
100
100
  hooks?: {
101
101
  beforeCaptureScreenshot: string;
102
102
  };
103
+ /** @deprecated Use `Configuration.matchTimeout` instead */
103
104
  timeout?: number;
104
105
  waitBeforeCapture?: number | (() => Promise<void>);
105
106
  lazyLoad?: boolean | LazyLoadOptions;
@@ -217,6 +218,7 @@ export declare class CheckSettingsAutomationFluent<TSpec extends Core.SpecType =
217
218
  protected _settings: CheckSettingsAutomation<TSpec>;
218
219
  protected static readonly _spec: Core.SpecDriver<Core.SpecType>;
219
220
  protected _spec: Core.SpecDriver<TSpec>;
221
+ protected _usedDeprecations: string[];
220
222
  protected _isElementReference(value: any): value is ElementReference<TSpec>;
221
223
  protected _isSelectorReference(selector: any): selector is SelectorReference<TSpec>;
222
224
  protected _isFrameReference(value: any): value is FrameReference<TSpec>;
@@ -255,6 +257,9 @@ export declare class CheckSettingsAutomationFluent<TSpec extends Core.SpecType =
255
257
  [key: string]: any;
256
258
  }): this;
257
259
  useSystemScreenshot(useSystemScreenshot?: boolean): this;
260
+ /**
261
+ * @deprecated Use `Configuration.matchTimeout` during `eyes.open()` instead
262
+ */
258
263
  timeout(timeout: number): typeof this;
259
264
  waitBeforeCapture(waitBeforeCapture: number | (() => Promise<void>)): typeof this;
260
265
  lazyLoad(options?: LazyLoadOptions | boolean): typeof this;