@applitools/nml-client 1.9.4 → 1.9.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 +32 -0
- package/package.json +8 -4
- package/types/types.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.9.5](https://github.com/Applitools-Dev/sdk/compare/js/nml-client@1.9.4...js/nml-client@1.9.5) (2025-06-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* nml-client depends on core-base ([#2995](https://github.com/Applitools-Dev/sdk/issues/2995)) ([1f7cf69](https://github.com/Applitools-Dev/sdk/commit/1f7cf6930709a40a498dd1f525132648aa593af0))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/spec-driver-webdriver bumped to 1.2.6
|
|
14
|
+
|
|
15
|
+
* @applitools/core-base bumped to 1.25.4
|
|
16
|
+
#### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* Differentiate Between Invalid and Missing API Key Errors ([6ac17d4](https://github.com/Applitools-Dev/sdk/commit/6ac17d40d7aff45b3de5c949dc7d4673b9739bfd))
|
|
19
|
+
* export issues for ts js with legacy solution ([#3016](https://github.com/Applitools-Dev/sdk/issues/3016)) ([a3a9daf](https://github.com/Applitools-Dev/sdk/commit/a3a9daf9c3361bb1f253499c1335a1434ec520d1))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
* @applitools/test-server bumped to 1.2.3
|
|
24
|
+
#### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* basic auth protected resources | FLD-2761 | FMRI-120 ([#2444](https://github.com/Applitools-Dev/sdk/issues/2444)) ([b48cf49](https://github.com/Applitools-Dev/sdk/commit/b48cf49dec50bbf1ed2ba111608a48cf09962565))
|
|
27
|
+
* export issues for ts js with legacy solution ([#3016](https://github.com/Applitools-Dev/sdk/issues/3016)) ([a3a9daf](https://github.com/Applitools-Dev/sdk/commit/a3a9daf9c3361bb1f253499c1335a1434ec520d1))
|
|
28
|
+
* storybook navigation timeouts ([#2701](https://github.com/Applitools-Dev/sdk/issues/2701)) ([64e3a40](https://github.com/Applitools-Dev/sdk/commit/64e3a40a524ae76ec457ae9c2d1170fbaea5e982))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
* @applitools/req bumped to 1.7.13
|
|
33
|
+
|
|
34
|
+
|
|
3
35
|
## [1.9.4](https://github.com/Applitools-Dev/sdk/compare/js/nml-client@1.9.3...js/nml-client@1.9.4) (2025-05-11)
|
|
4
36
|
|
|
5
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/nml-client",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.5",
|
|
4
4
|
"description": "Client to integrate the SDKs to the Native Mobile Library (NML)",
|
|
5
5
|
"homepage": "https://applitools.com",
|
|
6
6
|
"bugs": {
|
|
@@ -37,17 +37,21 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@applitools/logger": "2.1.4",
|
|
40
|
-
"@applitools/req": "1.7.
|
|
40
|
+
"@applitools/req": "1.7.13",
|
|
41
41
|
"@applitools/utils": "1.8.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@applitools/
|
|
45
|
-
"@applitools/
|
|
44
|
+
"@applitools/core-base": "1.25.4",
|
|
45
|
+
"@applitools/spec-driver-webdriver": "^1.2.6",
|
|
46
|
+
"@applitools/test-server": "^1.2.3",
|
|
46
47
|
"@applitools/test-utils": "^1.5.17",
|
|
47
48
|
"@types/node": "^12.20.55",
|
|
48
49
|
"nock": "^13.3.2",
|
|
49
50
|
"webdriver": "^7.31.1"
|
|
50
51
|
},
|
|
52
|
+
"peerDependencies": {
|
|
53
|
+
"@applitools/core-base": "1.25.4"
|
|
54
|
+
},
|
|
51
55
|
"engines": {
|
|
52
56
|
"node": ">=12.13.0"
|
|
53
57
|
},
|
package/types/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Size, Location, Region } from '@applitools/utils';
|
|
2
|
-
import { TestError } from '@applitools/core-base';
|
|
2
|
+
import type { TestError } from '@applitools/core-base';
|
|
3
3
|
import { type Logger } from '@applitools/logger';
|
|
4
4
|
import { type Proxy } from '@applitools/req';
|
|
5
5
|
export interface NMLClient {
|