@applitools/driver 1.10.4 → 1.10.6
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/package.json +3 -3
- package/types/context.d.ts +2 -1
- package/types/driver.d.ts +2 -1
- package/types/element.d.ts +1 -1
- package/types/fake/spec-driver.d.ts +1 -1
- package/types/helper-android.d.ts +1 -1
- package/types/helper-ios.d.ts +1 -1
- package/types/spec-driver.d.ts +2 -1
- package/types/types.d.ts +0 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/driver",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.6",
|
|
4
4
|
"description": "Applitools universal framework wrapper",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"applitools",
|
|
@@ -87,9 +87,9 @@
|
|
|
87
87
|
}
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@applitools/logger": "1.1.
|
|
90
|
+
"@applitools/logger": "1.1.27",
|
|
91
91
|
"@applitools/snippets": "2.4.5",
|
|
92
|
-
"@applitools/utils": "1.3.
|
|
92
|
+
"@applitools/utils": "1.3.13",
|
|
93
93
|
"semver": "7.3.7"
|
|
94
94
|
},
|
|
95
95
|
"devDependencies": {
|
package/types/context.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { Location, Size, Region
|
|
1
|
+
import type { Location, Size, Region } from '@applitools/utils';
|
|
2
|
+
import type { Cookie } from './types';
|
|
2
3
|
import { type SpecDriver, type WaitOptions } from './spec-driver';
|
|
3
4
|
import { type Driver } from './driver';
|
|
4
5
|
import { type Selector } from './selector';
|
package/types/driver.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import type { Size, Region
|
|
2
|
+
import type { Size, Region } from '@applitools/utils';
|
|
3
|
+
import type { ScreenOrientation, Cookie } from './types';
|
|
3
4
|
import { type Selector } from './selector';
|
|
4
5
|
import { type SpecDriver } from './spec-driver';
|
|
5
6
|
import { type Element } from './element';
|
package/types/element.d.ts
CHANGED
package/types/helper-ios.d.ts
CHANGED
package/types/spec-driver.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import type { Location, Size, Region
|
|
2
|
+
import type { Location, Size, Region } from '@applitools/utils';
|
|
3
|
+
import type { ScreenOrientation, Cookie } from './types';
|
|
3
4
|
import { type Selector } from './selector';
|
|
4
5
|
export declare type DriverInfo = {
|
|
5
6
|
sessionId?: string;
|
package/types/types.d.ts
CHANGED
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
export declare type Location = {
|
|
2
|
-
x: number;
|
|
3
|
-
y: number;
|
|
4
|
-
};
|
|
5
|
-
export declare type Size = {
|
|
6
|
-
width: number;
|
|
7
|
-
height: number;
|
|
8
|
-
};
|
|
9
|
-
export declare type Region = Location & Size;
|
|
10
1
|
export declare type ScreenOrientation = 'portrait' | 'landscape' | 'portrait-secondary' | 'landscape-secondary';
|
|
11
2
|
export declare type Cookie = {
|
|
12
3
|
name: string;
|