@applitools/nml-client 1.5.11 → 1.5.12
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 +43 -0
- package/package.json +5 -5
- package/types/types.d.ts +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.5.12](https://github.com/applitools/eyes.sdk.javascript1/compare/js/nml-client@1.5.11...js/nml-client@1.5.12) (2023-09-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Code Refactoring
|
|
7
|
+
|
|
8
|
+
* use Uint8Array instead of Buffer for binary data representation ([#1928](https://github.com/applitools/eyes.sdk.javascript1/issues/1928)) ([d1472ab](https://github.com/applitools/eyes.sdk.javascript1/commit/d1472ab8fd49e9a240e99a44dbf1d180b6c7a54b))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/utils bumped to 1.6.1
|
|
14
|
+
#### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* add browser entry point declaration and test ([#1933](https://github.com/applitools/eyes.sdk.javascript1/issues/1933)) ([5ba0720](https://github.com/applitools/eyes.sdk.javascript1/commit/5ba0720d62a9af8a9a2e1c2437c569e6ab19afd8))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
#### Code Refactoring
|
|
20
|
+
|
|
21
|
+
* use Uint8Array instead of Buffer for binary data representation ([#1928](https://github.com/applitools/eyes.sdk.javascript1/issues/1928)) ([d1472ab](https://github.com/applitools/eyes.sdk.javascript1/commit/d1472ab8fd49e9a240e99a44dbf1d180b6c7a54b))
|
|
22
|
+
* @applitools/logger bumped to 2.0.11
|
|
23
|
+
#### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* add browser entry point declaration and test ([#1933](https://github.com/applitools/eyes.sdk.javascript1/issues/1933)) ([5ba0720](https://github.com/applitools/eyes.sdk.javascript1/commit/5ba0720d62a9af8a9a2e1c2437c569e6ab19afd8))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
* @applitools/req bumped to 1.6.1
|
|
30
|
+
#### Bug Fixes
|
|
31
|
+
|
|
32
|
+
* add browser entry point declaration and test ([#1933](https://github.com/applitools/eyes.sdk.javascript1/issues/1933)) ([5ba0720](https://github.com/applitools/eyes.sdk.javascript1/commit/5ba0720d62a9af8a9a2e1c2437c569e6ab19afd8))
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
* @applitools/driver bumped to 1.14.2
|
|
37
|
+
#### Code Refactoring
|
|
38
|
+
|
|
39
|
+
* use Uint8Array instead of Buffer for binary data representation ([#1928](https://github.com/applitools/eyes.sdk.javascript1/issues/1928)) ([d1472ab](https://github.com/applitools/eyes.sdk.javascript1/commit/d1472ab8fd49e9a240e99a44dbf1d180b6c7a54b))
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
* @applitools/spec-driver-webdriver bumped to 1.0.46
|
|
44
|
+
|
|
45
|
+
|
|
3
46
|
## [1.5.11](https://github.com/applitools/eyes.sdk.javascript1/compare/js/nml-client@1.5.10...js/nml-client@1.5.11) (2023-09-21)
|
|
4
47
|
|
|
5
48
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/nml-client",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.12",
|
|
4
4
|
"description": "Client to integrate the SDKs to the Native Mobile Library (NML)",
|
|
5
5
|
"homepage": "https://applitools.com",
|
|
6
6
|
"bugs": {
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
"test": "run --top-level mocha './test/**/*.spec.ts' --parallel --jobs ${MOCHA_JOBS:-15}"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@applitools/logger": "2.0.
|
|
40
|
-
"@applitools/req": "1.6.
|
|
41
|
-
"@applitools/utils": "1.6.
|
|
39
|
+
"@applitools/logger": "2.0.11",
|
|
40
|
+
"@applitools/req": "1.6.1",
|
|
41
|
+
"@applitools/utils": "1.6.1"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@applitools/spec-driver-webdriver": "^1.0.
|
|
44
|
+
"@applitools/spec-driver-webdriver": "^1.0.46",
|
|
45
45
|
"@applitools/test-server": "^1.2.2",
|
|
46
46
|
"@applitools/test-utils": "^1.5.17",
|
|
47
47
|
"@types/node": "^12.20.55",
|
package/types/types.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
import type { Size, Location, Region } from '@applitools/utils';
|
|
3
2
|
import { type Logger } from '@applitools/logger';
|
|
4
3
|
import { type Proxy } from '@applitools/req';
|
|
@@ -78,7 +77,7 @@ export type ScreenshotSettings = {
|
|
|
78
77
|
name?: string;
|
|
79
78
|
};
|
|
80
79
|
export type Screenshot = {
|
|
81
|
-
image:
|
|
80
|
+
image: string;
|
|
82
81
|
size?: Size;
|
|
83
82
|
name?: string;
|
|
84
83
|
source?: string;
|