@applitools/eyes-puppeteer 1.11.0 → 1.11.1
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 +6 -0
- package/package.json +4 -4
- package/types/index.d.ts +3 -3
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-puppeteer",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.1",
|
|
4
4
|
"description": "Applitools Eyes SDK for Puppeteer",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eyes-puppeteer",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@applitools/core": "1.0.
|
|
66
|
-
"@applitools/eyes-api": "1.7.
|
|
67
|
-
"@applitools/spec-driver-puppeteer": "1.1.
|
|
65
|
+
"@applitools/core": "1.0.9",
|
|
66
|
+
"@applitools/eyes-api": "1.7.10",
|
|
67
|
+
"@applitools/spec-driver-puppeteer": "1.1.12"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@applitools/api-extractor": "1.2.11",
|
package/types/index.d.ts
CHANGED
|
@@ -539,8 +539,8 @@ export const Target: {
|
|
|
539
539
|
shadow(selector: string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }): CheckSettings;
|
|
540
540
|
};
|
|
541
541
|
export class BatchClose {
|
|
542
|
-
static close(settings: { batchIds: Array<string>; serverUrl
|
|
543
|
-
constructor(options?: { batchIds: Array<string>; serverUrl
|
|
542
|
+
static close(settings: { batchIds: Array<string>; serverUrl: string; apiKey: string; proxy?: ProxySettingsPlain; }): Promise<void>;
|
|
543
|
+
constructor(options?: { batchIds: Array<string>; serverUrl: string; apiKey: string; proxy?: ProxySettingsPlain; });
|
|
544
544
|
close(): Promise<void>;
|
|
545
545
|
setBatchIds(batchIds: Array<string>): BatchClose;
|
|
546
546
|
setUrl(serverUrl: string): BatchClose;
|
|
@@ -1370,7 +1370,7 @@ export class Logger {
|
|
|
1370
1370
|
tag(name: string, value: any): void;
|
|
1371
1371
|
extend(label?: string): Logger;
|
|
1372
1372
|
}
|
|
1373
|
-
export function closeBatch(spec:
|
|
1373
|
+
export function closeBatch(spec: BatchCloseSpec): (options: { batchIds: Array<string>; serverUrl: string; apiKey: string; proxy?: ProxySettingsPlain; }) => Promise<void>;
|
|
1374
1374
|
export abstract class EyesRunner {
|
|
1375
1375
|
getAllTestResults(throwErr?: boolean): Promise<TestResultsSummary>;
|
|
1376
1376
|
}
|