@applitools/eyes-webdriverio 5.32.12 → 5.33.0

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
@@ -3,6 +3,13 @@
3
3
  ## Unreleased
4
4
 
5
5
 
6
+ ## 5.33.0 - 2021/11/5
7
+
8
+ - updated to @applitools/eyes-api@1.1.5 (from 1.1.4)
9
+ - updated to @applitools/eyes-sdk-core@12.23.24 (from 12.23.18)
10
+ - updated to @applitools/utils@1.2.4 (from 1.2.3)
11
+ - updated to @applitools/visual-grid-client@15.8.43 (from 15.8.37)
12
+
6
13
  ## 5.32.12 - 2021/10/20
7
14
 
8
15
  - updated to @applitools/dom-snapshot@4.5.10 (from 4.5.9)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-webdriverio",
3
- "version": "5.32.12",
3
+ "version": "5.33.0",
4
4
  "description": "Applitools Eyes SDK for WebdriverIO",
5
5
  "keywords": [
6
6
  "eyes-webdriverio",
@@ -19,7 +19,8 @@
19
19
  },
20
20
  "repository": {
21
21
  "type": "git",
22
- "url": "git@github.com:applitools/eyes.sdk.javascript1.git"
22
+ "url": "git@github.com:applitools/eyes.sdk.javascript1.git",
23
+ "directory": "packages/eyes-webdriverio-5"
23
24
  },
24
25
  "license": "SEE LICENSE IN LICENSE",
25
26
  "author": {
@@ -70,17 +71,17 @@
70
71
  },
71
72
  "dependencies": {
72
73
  "@applitools/dom-snapshot": "4.5.10",
73
- "@applitools/eyes-api": "1.1.4",
74
- "@applitools/eyes-sdk-core": "12.23.18",
75
- "@applitools/utils": "1.2.3",
76
- "@applitools/visual-grid-client": "15.8.37"
74
+ "@applitools/eyes-api": "1.1.5",
75
+ "@applitools/eyes-sdk-core": "12.23.24",
76
+ "@applitools/utils": "1.2.4",
77
+ "@applitools/visual-grid-client": "15.8.43"
77
78
  },
78
79
  "devDependencies": {
79
80
  "@applitools/api-extractor": "1.1.3",
80
81
  "@applitools/scripts": "1.0.1",
81
82
  "@applitools/sdk-coverage-tests": "^2.3.15",
82
- "@applitools/sdk-release-kit": "^0.13.3",
83
- "@applitools/sdk-shared": "0.9.6",
83
+ "@applitools/sdk-release-kit": "^0.13.4",
84
+ "@applitools/sdk-shared": "0.9.7",
84
85
  "@applitools/test-utils": "1.0.9",
85
86
  "@types/mocha": "^9.0.0",
86
87
  "@typescript-eslint/eslint-plugin": "^4.15.1",
package/types/index.d.ts CHANGED
@@ -120,6 +120,7 @@ export enum FailureReport {
120
120
 
121
121
  export enum IosDeviceName {
122
122
  iPad_7 = 'iPad (7th generation)',
123
+ iPad_9 = 'iPad (9th generation)',
123
124
  iPad_Air_2 = 'iPad Air (2nd generation)',
124
125
  iPad_Pro_3 = 'iPad Pro (12.9-inch) (3rd generation)',
125
126
  iPhone_11 = 'iPhone 11',
@@ -129,6 +130,9 @@ export enum IosDeviceName {
129
130
  iPhone_12_Pro = 'iPhone 12 Pro',
130
131
  iPhone_12_Pro_Max = 'iPhone 12 Pro Max',
131
132
  iPhone_12_mini = 'iPhone 12 mini',
133
+ iPhone_13 = 'iPhone 13',
134
+ iPhone_13_Pro = 'iPhone 13 Pro',
135
+ iPhone_13_Pro_Max = 'iPhone 13 Pro Max',
132
136
  iPhone_7 = 'iPhone 7',
133
137
  iPhone_8 = 'iPhone 8',
134
138
  iPhone_X = 'iPhone X',
@@ -243,7 +247,7 @@ export class BatchClose {
243
247
  setBatchIds(batchIds: string[]): this;
244
248
  setProxy(proxy: ProxySettingsPlain): this;
245
249
  setUrl(serverUrl: string): this;
246
- static close(options: {
250
+ static close(settings: {
247
251
  batchIds: string[];
248
252
  serverUrl?: string;
249
253
  apiKey?: string;
@@ -1945,6 +1949,7 @@ export type ImageRotationPlain = -270 | -180 | -90 | 0 | 90 | 180 | 270;
1945
1949
 
1946
1950
  export type IosDeviceNamePlain =
1947
1951
  | 'iPad (7th generation)'
1952
+ | 'iPad (9th generation)'
1948
1953
  | 'iPad Air (2nd generation)'
1949
1954
  | 'iPad Pro (12.9-inch) (3rd generation)'
1950
1955
  | 'iPhone 11'
@@ -1954,6 +1959,9 @@ export type IosDeviceNamePlain =
1954
1959
  | 'iPhone 12 Pro'
1955
1960
  | 'iPhone 12 Pro Max'
1956
1961
  | 'iPhone 12 mini'
1962
+ | 'iPhone 13'
1963
+ | 'iPhone 13 Pro'
1964
+ | 'iPhone 13 Pro Max'
1957
1965
  | 'iPhone 7'
1958
1966
  | 'iPhone 8'
1959
1967
  | 'iPhone X'
@@ -2098,9 +2106,6 @@ export function RunnerOptions(): RunnerOptionsFluent;
2098
2106
 
2099
2107
  export function closeBatch(spec: {
2100
2108
  closeBatches(options: {
2101
- batchIds: string[];
2102
- serverUrl?: string;
2103
- apiKey?: string;
2104
- proxy?: ProxySettingsPlain;
2109
+ settings: {batchIds: string[]; serverUrl?: string; apiKey?: string; proxy?: ProxySettingsPlain};
2105
2110
  }): Promise<void>;
2106
2111
  }): {(options: {batchIds: string[]; serverUrl?: string; apiKey?: string; proxy?: ProxySettingsPlain}): Promise<void>};