@applitools/eyes-puppeteer 1.17.13 → 1.17.15

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
@@ -1,5 +1,46 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.17.15](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-puppeteer@1.17.14...js/eyes-puppeteer@1.17.15) (2023-07-21)
4
+
5
+
6
+ ### Code Refactoring
7
+
8
+ * ufg client ([#1780](https://github.com/applitools/eyes.sdk.javascript1/issues/1780)) ([d60cf16](https://github.com/applitools/eyes.sdk.javascript1/commit/d60cf1616741a96b152a1548760bb98116e5c3f9))
9
+
10
+
11
+ ### Dependencies
12
+
13
+
14
+
15
+ ## [1.17.14](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-puppeteer@1.17.13...js/eyes-puppeteer@1.17.14) (2023-07-18)
16
+
17
+
18
+ ### Dependencies
19
+
20
+ * @applitools/req bumped from 1.4.0 to 1.5.0
21
+ #### Features
22
+
23
+ * support retries on stuck requests ([be673bb](https://github.com/applitools/eyes.sdk.javascript1/commit/be673bb505c9b21d6aea37d86e88513e95e3cb02))
24
+ * @applitools/ufg-client bumped from 1.4.1 to 1.5.0
25
+ #### Features
26
+
27
+ * support retries on stuck requests ([be673bb](https://github.com/applitools/eyes.sdk.javascript1/commit/be673bb505c9b21d6aea37d86e88513e95e3cb02))
28
+
29
+
30
+
31
+ * @applitools/eyes bumped from 1.6.1 to 1.6.2
32
+
33
+ * @applitools/core bumped from 3.6.1 to 3.6.2
34
+
35
+ * @applitools/core-base bumped from 1.4.0 to 1.4.1
36
+
37
+ * @applitools/ec-client bumped from 1.7.0 to 1.7.1
38
+
39
+ * @applitools/tunnel-client bumped from 1.1.0 to 1.1.1
40
+
41
+ * @applitools/nml-client bumped from 1.5.2 to 1.5.3
42
+
43
+
3
44
  ## [1.17.13](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-puppeteer@1.17.12...js/eyes-puppeteer@1.17.13) (2023-07-13)
4
45
 
5
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-puppeteer",
3
- "version": "1.17.13",
3
+ "version": "1.17.15",
4
4
  "description": "Applitools Eyes SDK for Puppeteer",
5
5
  "keywords": [
6
6
  "eyes-puppeteer",
@@ -42,12 +42,12 @@
42
42
  "up:framework": "run --top-level add-silent puppeteer"
43
43
  },
44
44
  "dependencies": {
45
- "@applitools/eyes": "1.6.1",
46
- "@applitools/spec-driver-puppeteer": "1.1.69"
45
+ "@applitools/eyes": "1.6.3",
46
+ "@applitools/spec-driver-puppeteer": "1.1.70"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@applitools/api-extractor": "^1.2.21",
50
- "@applitools/bongo": "^5.0.4",
50
+ "@applitools/bongo": "^5.1.4",
51
51
  "@applitools/sdk-coverage-tests": "^3.1.0",
52
52
  "@applitools/test-utils": "^1.5.17",
53
53
  "@types/node": "^12.20.55",
package/types/index.d.ts CHANGED
@@ -665,29 +665,6 @@ export class BatchClose {
665
665
  setProxy(proxy: ProxySettingsPlain): BatchClose;
666
666
  }
667
667
  export const closeBatch: (options: { batchIds: Array<string>; serverUrl: string; apiKey: string; proxy?: undefined | ProxySettingsPlain; }) => Promise<void>;
668
- export type AccessibilityGuidelinesVersionPlain = "WCAG_2_0" | "WCAG_2_1";
669
- export enum AccessibilityGuidelinesVersion {
670
- WCAG_2_0 = 'WCAG_2_0',
671
- WCAG_2_1 = 'WCAG_2_1'
672
- }
673
- export type AccessibilityLevelPlain = "AA" | "AAA";
674
- export enum AccessibilityLevel {
675
- AA = 'AA',
676
- AAA = 'AAA'
677
- }
678
- export type AccessibilityRegionTypePlain = "IgnoreContrast" | "RegularText" | "LargeText" | "BoldText" | "GraphicalObject";
679
- export enum AccessibilityRegionType {
680
- IgnoreContrast = 'IgnoreContrast',
681
- RegularText = 'RegularText',
682
- LargeText = 'LargeText',
683
- BoldText = 'BoldText',
684
- GraphicalObject = 'GraphicalObject'
685
- }
686
- export type AccessibilityStatusPlain = "Passed" | "Failed";
687
- export enum AccessibilityStatus {
688
- Passed = 'Passed',
689
- Failed = 'Failed'
690
- }
691
668
  export type BrowserTypePlain = "chrome" | "chrome-one-version-back" | "chrome-two-versions-back" | "firefox" | "firefox-one-version-back" | "firefox-two-versions-back" | "ie" | "ie10" | "edge" | "edgechromium" | "edgelegacy" | "edgechromium-one-version-back" | "edgechromium-two-versions-back" | "safari" | "safari-earlyaccess" | "safari-one-version-back" | "safari-two-versions-back";
692
669
  export enum BrowserType {
693
670
  CHROME = 'chrome',
@@ -888,12 +865,35 @@ export enum StitchMode {
888
865
  RESIZE = 'Resize',
889
866
  Resize = 'Resize'
890
867
  }
891
- export type TestResultsStatusPlain = AccessibilityStatusPlain;
868
+ export type TestResultsStatusPlain = "Passed" | "Unresolved" | "Failed";
892
869
  export enum TestResultsStatus {
893
870
  Passed = 'Passed',
894
871
  Unresolved = 'Unresolved',
895
872
  Failed = 'Failed'
896
873
  }
874
+ export type AccessibilityGuidelinesVersionPlain = "WCAG_2_0" | "WCAG_2_1";
875
+ export enum AccessibilityGuidelinesVersion {
876
+ WCAG_2_0 = 'WCAG_2_0',
877
+ WCAG_2_1 = 'WCAG_2_1'
878
+ }
879
+ export type AccessibilityLevelPlain = "AA" | "AAA";
880
+ export enum AccessibilityLevel {
881
+ AA = 'AA',
882
+ AAA = 'AAA'
883
+ }
884
+ export type AccessibilityRegionTypePlain = "IgnoreContrast" | "RegularText" | "LargeText" | "BoldText" | "GraphicalObject";
885
+ export enum AccessibilityRegionType {
886
+ IgnoreContrast = 'IgnoreContrast',
887
+ RegularText = 'RegularText',
888
+ LargeText = 'LargeText',
889
+ BoldText = 'BoldText',
890
+ GraphicalObject = 'GraphicalObject'
891
+ }
892
+ export type AccessibilityStatusPlain = "Passed" | "Failed";
893
+ export enum AccessibilityStatus {
894
+ Passed = 'Passed',
895
+ Failed = 'Failed'
896
+ }
897
897
  export class EyesError extends Error {
898
898
  }
899
899
  export class TestFailedError extends EyesError {
@@ -1541,7 +1541,7 @@ export type TestResultsPlain = {
1541
1541
  readonly id?: undefined | string;
1542
1542
  readonly name?: undefined | string;
1543
1543
  readonly secretToken?: undefined | string;
1544
- readonly status?: undefined | AccessibilityStatusPlain;
1544
+ readonly status?: undefined | TestResultsStatusPlain;
1545
1545
  readonly appName?: undefined | string;
1546
1546
  readonly batchId?: undefined | string;
1547
1547
  readonly batchName?: undefined | string;
@@ -1568,7 +1568,7 @@ export type TestResultsPlain = {
1568
1568
  readonly layoutMatches?: undefined | number;
1569
1569
  readonly noneMatches?: undefined | number;
1570
1570
  readonly url?: undefined | string;
1571
- readonly server?: undefined | { serverUrl: string; apiKey: string; proxy?: undefined | ProxySettingsPlain; };
1571
+ readonly server?: undefined | { eyesServerUrl: string; apiKey: string; proxy?: undefined | ProxySettingsPlain; };
1572
1572
  readonly keepIfDuplicate?: undefined | boolean;
1573
1573
  };
1574
1574
  export class TestResults implements Required<TestResultsPlain> {
@@ -1664,7 +1664,7 @@ export class TestResults implements Required<TestResultsPlain> {
1664
1664
  getUrl(): string;
1665
1665
  setUrl(_url: string): void;
1666
1666
  get server(): {
1667
- serverUrl: string;
1667
+ eyesServerUrl: string;
1668
1668
  apiKey: string;
1669
1669
  agentId?: undefined | string;
1670
1670
  proxy?: undefined | { url: string; username?: undefined | string; password?: undefined | string; };