@applitools/nml-client 1.5.11 → 1.5.13

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,60 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.5.13](https://github.com/applitools/eyes.sdk.javascript1/compare/js/nml-client@1.5.12...js/nml-client@1.5.13) (2023-09-29)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/driver bumped to 1.14.3
9
+ #### Bug Fixes
10
+
11
+ * force native on get environment ([#1939](https://github.com/applitools/eyes.sdk.javascript1/issues/1939)) ([f42854e](https://github.com/applitools/eyes.sdk.javascript1/commit/f42854eacc769751447204143cb4d50113edc732))
12
+ * @applitools/spec-driver-webdriver bumped to 1.0.47
13
+
14
+
15
+ ## [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)
16
+
17
+
18
+ ### Code Refactoring
19
+
20
+ * 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))
21
+
22
+
23
+ ### Dependencies
24
+
25
+ * @applitools/utils bumped to 1.6.1
26
+ #### Bug Fixes
27
+
28
+ * 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))
29
+
30
+
31
+ #### Code Refactoring
32
+
33
+ * 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))
34
+ * @applitools/logger bumped to 2.0.11
35
+ #### Bug Fixes
36
+
37
+ * 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))
38
+
39
+
40
+
41
+ * @applitools/req bumped to 1.6.1
42
+ #### Bug Fixes
43
+
44
+ * 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))
45
+
46
+
47
+
48
+ * @applitools/driver bumped to 1.14.2
49
+ #### Code Refactoring
50
+
51
+ * 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))
52
+
53
+
54
+
55
+ * @applitools/spec-driver-webdriver bumped to 1.0.46
56
+
57
+
3
58
  ## [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
59
 
5
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/nml-client",
3
- "version": "1.5.11",
3
+ "version": "1.5.13",
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.10",
40
- "@applitools/req": "1.6.0",
41
- "@applitools/utils": "1.6.0"
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.45",
44
+ "@applitools/spec-driver-webdriver": "^1.0.47",
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: Buffer | string;
80
+ image: string;
82
81
  size?: Size;
83
82
  name?: string;
84
83
  source?: string;