@applitools/eyes-puppeteer 1.8.4 → 1.8.5

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,17 @@
3
3
  ## Unreleased
4
4
 
5
5
 
6
+ ## 1.8.5 - 2021/10/30
7
+
8
+ - updated to @applitools/eyes-sdk-core@12.23.22 (from 12.23.18)
9
+ - updated to @applitools/utils@1.2.4 (from 1.2.3)
10
+ - updated to @applitools/visual-grid-client@15.8.41 (from 15.8.37)
11
+ - updated to @applitools/eyes-api@1.1.5 (from 1.1.4)
12
+ - updated to @applitools/eyes-sdk-core@12.23.23 (from 12.23.22)
13
+ - updated to @applitools/visual-grid-client@15.8.42 (from 15.8.41)
14
+ - updated to @applitools/eyes-sdk-core@12.23.24 (from 12.23.23)
15
+ - updated to @applitools/visual-grid-client@15.8.43 (from 15.8.42)
16
+
6
17
  ## 1.8.4 - 2021/10/20
7
18
 
8
19
  - updated to @applitools/eyes-sdk-core@12.23.18 (from 12.23.17)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-puppeteer",
3
- "version": "1.8.4",
3
+ "version": "1.8.5",
4
4
  "description": "Applitools Eyes SDK for Puppeteer",
5
5
  "keywords": [
6
6
  "eyes-puppeteer",
@@ -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-puppeteer"
23
24
  },
24
25
  "license": "SEE LICENSE IN LICENSE",
25
26
  "author": {
@@ -63,17 +64,17 @@
63
64
  }
64
65
  },
65
66
  "dependencies": {
66
- "@applitools/eyes-api": "1.1.4",
67
- "@applitools/eyes-sdk-core": "12.23.18",
68
- "@applitools/utils": "1.2.3",
69
- "@applitools/visual-grid-client": "15.8.37"
67
+ "@applitools/eyes-api": "1.1.5",
68
+ "@applitools/eyes-sdk-core": "12.23.24",
69
+ "@applitools/utils": "1.2.4",
70
+ "@applitools/visual-grid-client": "15.8.43"
70
71
  },
71
72
  "devDependencies": {
72
73
  "@applitools/api-extractor": "1.1.3",
73
74
  "@applitools/scripts": "1.0.1",
74
75
  "@applitools/sdk-coverage-tests": "2.3.15",
75
- "@applitools/sdk-release-kit": "0.13.3",
76
- "@applitools/sdk-shared": "0.9.6",
76
+ "@applitools/sdk-release-kit": "0.13.4",
77
+ "@applitools/sdk-shared": "0.9.7",
77
78
  "@applitools/test-utils": "1.0.9",
78
79
  "@types/mocha": "^9.0.0",
79
80
  "@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;
@@ -1926,6 +1930,7 @@ export type ImageRotationPlain = -270 | -180 | -90 | 0 | 90 | 180 | 270;
1926
1930
 
1927
1931
  export type IosDeviceNamePlain =
1928
1932
  | 'iPad (7th generation)'
1933
+ | 'iPad (9th generation)'
1929
1934
  | 'iPad Air (2nd generation)'
1930
1935
  | 'iPad Pro (12.9-inch) (3rd generation)'
1931
1936
  | 'iPhone 11'
@@ -1935,6 +1940,9 @@ export type IosDeviceNamePlain =
1935
1940
  | 'iPhone 12 Pro'
1936
1941
  | 'iPhone 12 Pro Max'
1937
1942
  | 'iPhone 12 mini'
1943
+ | 'iPhone 13'
1944
+ | 'iPhone 13 Pro'
1945
+ | 'iPhone 13 Pro Max'
1938
1946
  | 'iPhone 7'
1939
1947
  | 'iPhone 8'
1940
1948
  | 'iPhone X'
@@ -2079,9 +2087,6 @@ export function RunnerOptions(): RunnerOptionsFluent;
2079
2087
 
2080
2088
  export function closeBatch(spec: {
2081
2089
  closeBatches(options: {
2082
- batchIds: string[];
2083
- serverUrl?: string;
2084
- apiKey?: string;
2085
- proxy?: ProxySettingsPlain;
2090
+ settings: {batchIds: string[]; serverUrl?: string; apiKey?: string; proxy?: ProxySettingsPlain};
2086
2091
  }): Promise<void>;
2087
2092
  }): {(options: {batchIds: string[]; serverUrl?: string; apiKey?: string; proxy?: ProxySettingsPlain}): Promise<void>};