@applitools/eyes-selenium 4.66.13 → 4.66.14

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,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.66.14](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-selenium@4.66.13...js/eyes-selenium@4.66.14) (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
+
3
15
  ## [4.66.13](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-selenium@4.66.12...js/eyes-selenium@4.66.13) (2023-07-18)
4
16
 
5
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-selenium",
3
- "version": "4.66.13",
3
+ "version": "4.66.14",
4
4
  "description": "Applitools Eyes SDK for Selenium WebDriver",
5
5
  "keywords": [
6
6
  "eyes-selenium",
@@ -49,17 +49,17 @@
49
49
  "up:framework": "run --top-level add-silent selenium-webdriver"
50
50
  },
51
51
  "dependencies": {
52
- "@applitools/eyes": "1.6.2",
53
- "@applitools/spec-driver-selenium": "1.5.52"
52
+ "@applitools/eyes": "1.6.3",
53
+ "@applitools/spec-driver-selenium": "1.5.53"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@applitools/api-extractor": "^1.2.21",
57
- "@applitools/bongo": "^5.0.4",
57
+ "@applitools/bongo": "^5.1.4",
58
58
  "@applitools/sdk-coverage-tests": "^3.1.0",
59
59
  "@applitools/test-utils": "^1.5.17",
60
60
  "@types/node": "^12.20.55",
61
61
  "@types/selenium-webdriver": "^4.1.1",
62
- "chromedriver": "^114.0.1",
62
+ "chromedriver": "^114.0.3",
63
63
  "selenium-webdriver": "4.4.0"
64
64
  },
65
65
  "peerDependencies": {
package/types/index.d.ts CHANGED
@@ -664,29 +664,6 @@ export class BatchClose {
664
664
  setProxy(proxy: ProxySettingsPlain): BatchClose;
665
665
  }
666
666
  export const closeBatch: (options: { batchIds: Array<string>; serverUrl: string; apiKey: string; proxy?: undefined | ProxySettingsPlain; }) => Promise<void>;
667
- export type AccessibilityGuidelinesVersionPlain = "WCAG_2_0" | "WCAG_2_1";
668
- export enum AccessibilityGuidelinesVersion {
669
- WCAG_2_0 = 'WCAG_2_0',
670
- WCAG_2_1 = 'WCAG_2_1'
671
- }
672
- export type AccessibilityLevelPlain = "AA" | "AAA";
673
- export enum AccessibilityLevel {
674
- AA = 'AA',
675
- AAA = 'AAA'
676
- }
677
- export type AccessibilityRegionTypePlain = "IgnoreContrast" | "RegularText" | "LargeText" | "BoldText" | "GraphicalObject";
678
- export enum AccessibilityRegionType {
679
- IgnoreContrast = 'IgnoreContrast',
680
- RegularText = 'RegularText',
681
- LargeText = 'LargeText',
682
- BoldText = 'BoldText',
683
- GraphicalObject = 'GraphicalObject'
684
- }
685
- export type AccessibilityStatusPlain = "Passed" | "Failed";
686
- export enum AccessibilityStatus {
687
- Passed = 'Passed',
688
- Failed = 'Failed'
689
- }
690
667
  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";
691
668
  export enum BrowserType {
692
669
  CHROME = 'chrome',
@@ -887,12 +864,35 @@ export enum StitchMode {
887
864
  RESIZE = 'Resize',
888
865
  Resize = 'Resize'
889
866
  }
890
- export type TestResultsStatusPlain = AccessibilityStatusPlain;
867
+ export type TestResultsStatusPlain = "Passed" | "Unresolved" | "Failed";
891
868
  export enum TestResultsStatus {
892
869
  Passed = 'Passed',
893
870
  Unresolved = 'Unresolved',
894
871
  Failed = 'Failed'
895
872
  }
873
+ export type AccessibilityGuidelinesVersionPlain = "WCAG_2_0" | "WCAG_2_1";
874
+ export enum AccessibilityGuidelinesVersion {
875
+ WCAG_2_0 = 'WCAG_2_0',
876
+ WCAG_2_1 = 'WCAG_2_1'
877
+ }
878
+ export type AccessibilityLevelPlain = "AA" | "AAA";
879
+ export enum AccessibilityLevel {
880
+ AA = 'AA',
881
+ AAA = 'AAA'
882
+ }
883
+ export type AccessibilityRegionTypePlain = "IgnoreContrast" | "RegularText" | "LargeText" | "BoldText" | "GraphicalObject";
884
+ export enum AccessibilityRegionType {
885
+ IgnoreContrast = 'IgnoreContrast',
886
+ RegularText = 'RegularText',
887
+ LargeText = 'LargeText',
888
+ BoldText = 'BoldText',
889
+ GraphicalObject = 'GraphicalObject'
890
+ }
891
+ export type AccessibilityStatusPlain = "Passed" | "Failed";
892
+ export enum AccessibilityStatus {
893
+ Passed = 'Passed',
894
+ Failed = 'Failed'
895
+ }
896
896
  export class EyesError extends Error {
897
897
  }
898
898
  export class TestFailedError extends EyesError {
@@ -1540,7 +1540,7 @@ export type TestResultsPlain = {
1540
1540
  readonly id?: undefined | string;
1541
1541
  readonly name?: undefined | string;
1542
1542
  readonly secretToken?: undefined | string;
1543
- readonly status?: undefined | AccessibilityStatusPlain;
1543
+ readonly status?: undefined | TestResultsStatusPlain;
1544
1544
  readonly appName?: undefined | string;
1545
1545
  readonly batchId?: undefined | string;
1546
1546
  readonly batchName?: undefined | string;
@@ -1567,7 +1567,7 @@ export type TestResultsPlain = {
1567
1567
  readonly layoutMatches?: undefined | number;
1568
1568
  readonly noneMatches?: undefined | number;
1569
1569
  readonly url?: undefined | string;
1570
- readonly server?: undefined | { serverUrl: string; apiKey: string; proxy?: undefined | ProxySettingsPlain; };
1570
+ readonly server?: undefined | { eyesServerUrl: string; apiKey: string; proxy?: undefined | ProxySettingsPlain; };
1571
1571
  readonly keepIfDuplicate?: undefined | boolean;
1572
1572
  };
1573
1573
  export class TestResults implements Required<TestResultsPlain> {
@@ -1663,7 +1663,7 @@ export class TestResults implements Required<TestResultsPlain> {
1663
1663
  getUrl(): string;
1664
1664
  setUrl(_url: string): void;
1665
1665
  get server(): {
1666
- serverUrl: string;
1666
+ eyesServerUrl: string;
1667
1667
  apiKey: string;
1668
1668
  agentId?: undefined | string;
1669
1669
  proxy?: undefined | { url: string; username?: undefined | string; password?: undefined | string; };