@applitools/nml-client 1.11.22 → 1.11.23
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 +7 -0
- package/dist/server/requests.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.11.23](https://github.com/Applitools-Dev/sdk/compare/js/nml-client@1.11.22...js/nml-client@1.11.23) (2026-04-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* log nml responses | FLD-4433 ([#3757](https://github.com/Applitools-Dev/sdk/issues/3757)) ([70f0bcd](https://github.com/Applitools-Dev/sdk/commit/70f0bcdaa00b60f6fe8f2177b1713b92c8232c27))
|
|
9
|
+
|
|
3
10
|
## [1.11.22](https://github.com/Applitools-Dev/sdk/compare/js/nml-client@1.11.21...js/nml-client@1.11.22) (2026-03-29)
|
|
4
11
|
|
|
5
12
|
|
package/dist/server/requests.js
CHANGED
|
@@ -110,6 +110,7 @@ function makeNMLRequests({ settings, logger: mainLogger, }) {
|
|
|
110
110
|
logger,
|
|
111
111
|
});
|
|
112
112
|
const result = await response.json();
|
|
113
|
+
logger.log('Received response for "takeScreenshots" with body', result);
|
|
113
114
|
brokerUrl = result.nextPath;
|
|
114
115
|
let screenshots;
|
|
115
116
|
if (Number(result.protocolVersion) >= 2) {
|