@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 CHANGED
@@ -11,6 +11,12 @@
11
11
 
12
12
 
13
13
 
14
+ ## 1.11.1 - 2022/9/26
15
+
16
+ ### Features
17
+ ### Bug fixes
18
+ - Fixed minor issues
19
+
14
20
  ## 1.11.0 - 2022/9/23
15
21
 
16
22
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-puppeteer",
3
- "version": "1.11.0",
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.5",
66
- "@applitools/eyes-api": "1.7.9",
67
- "@applitools/spec-driver-puppeteer": "1.1.11"
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?: string; apiKey?: string; proxy?: ProxySettingsPlain; }): Promise<void>;
543
- constructor(options?: { batchIds: Array<string>; serverUrl?: string; apiKey?: string; proxy?: ProxySettingsPlain; });
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: { closeBatches(options: { settings: { batchIds: Array<string>; serverUrl?: string; apiKey?: string; proxy?: ProxySettingsPlain; }; }): Promise<void>; }): (options: { batchIds: Array<string>; serverUrl?: string; apiKey?: string; proxy?: ProxySettingsPlain; }) => Promise<void>;
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
  }