@applitools/eyes-browser 1.6.8 → 1.6.10
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 +182 -0
- package/dist/index.js +1105 -1108
- package/package.json +3 -3
- package/types/input/CheckSettings.d.ts +0 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-browser",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"applitools",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"test": "run playwright test"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@applitools/eyes": "1.38.
|
|
54
|
+
"@applitools/eyes": "1.38.13"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@applitools/test-server": "1.4.
|
|
57
|
+
"@applitools/test-server": "1.4.2",
|
|
58
58
|
"@playwright/test": "1.55.1",
|
|
59
59
|
"@types/node": "^12.20.55",
|
|
60
60
|
"@types/path-browserify": "^1.0.1",
|
|
@@ -96,10 +96,6 @@ export type CheckSettingsAutomation<TSpec extends Core.SpecType, TRegionReferenc
|
|
|
96
96
|
ufgOptions?: {
|
|
97
97
|
[key: string]: any;
|
|
98
98
|
};
|
|
99
|
-
/** @deprecated */
|
|
100
|
-
nmgOptions?: {
|
|
101
|
-
[key: string]: any;
|
|
102
|
-
};
|
|
103
99
|
useSystemScreenshot?: boolean;
|
|
104
100
|
hooks?: {
|
|
105
101
|
beforeCaptureScreenshot: string;
|
|
@@ -253,12 +249,6 @@ export declare class CheckSettingsAutomationFluent<TSpec extends Core.SpecType =
|
|
|
253
249
|
[key: string]: any;
|
|
254
250
|
}): this;
|
|
255
251
|
/** @deprecated */
|
|
256
|
-
nmgOption(key: string, value: any): this;
|
|
257
|
-
/** @deprecated */
|
|
258
|
-
nmgOptions(options: {
|
|
259
|
-
[key: string]: any;
|
|
260
|
-
}): this;
|
|
261
|
-
/** @deprecated */
|
|
262
252
|
visualGridOption(key: string, value: any): this;
|
|
263
253
|
/** @deprecated */
|
|
264
254
|
visualGridOptions(options: {
|