@applitools/eyes-puppeteer 1.15.0 → 1.15.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.15.1 - 2023/4/6
15
+
16
+ ### Features
17
+ ### Bug fixes
18
+ - Fixed issue with css fetching for dom capture
19
+
14
20
  ## 1.15.0 - 2023/4/4
15
21
 
16
22
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-puppeteer",
3
- "version": "1.15.0",
3
+ "version": "1.15.1",
4
4
  "description": "Applitools Eyes SDK for Puppeteer",
5
5
  "keywords": [
6
6
  "eyes-puppeteer",
@@ -55,14 +55,14 @@
55
55
  "postpublish": "bongo send-release-notification --name 'puppeteer'"
56
56
  },
57
57
  "dependencies": {
58
- "@applitools/eyes": "1.1.2",
58
+ "@applitools/eyes": "1.1.3",
59
59
  "@applitools/spec-driver-puppeteer": "1.1.52"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@applitools/api-extractor": "1.2.12",
63
63
  "@applitools/bongo": "^3.0.3",
64
- "@applitools/sdk-coverage-tests": "3.0.0",
65
- "@applitools/test-utils": "1.5.15",
64
+ "@applitools/sdk-coverage-tests": "3.0.1",
65
+ "@applitools/test-utils": "1.5.16",
66
66
  "@types/node": "^12.20.55",
67
67
  "puppeteer": "^18.0.5"
68
68
  },
package/types/index.d.ts CHANGED
@@ -1419,7 +1419,7 @@ export class TestResults implements Required<TestResultsPlain> {
1419
1419
  getNoneMatches(): number;
1420
1420
  get url(): string;
1421
1421
  getUrl(): string;
1422
- get server(): { serverUrl: string; apiKey: string; proxy?: undefined | { url: string; username?: undefined | string; password?: undefined | string; }; agentId?: undefined | string; };
1422
+ get server(): { serverUrl: string; apiKey: string; agentId?: undefined | string; proxy?: undefined | { url: string; username?: undefined | string; password?: undefined | string; }; };
1423
1423
  get keepIfDuplicate(): boolean;
1424
1424
  isPassed(): boolean;
1425
1425
  delete(): Promise<void>;