@openfin/node-adapter 42.100.93 → 42.100.95
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/out/node-adapter.js +7 -1
- package/package.json +2 -2
package/out/node-adapter.js
CHANGED
|
@@ -7023,6 +7023,12 @@ class System extends base_1$m.EmitterBase {
|
|
|
7023
7023
|
async serveAsset(options) {
|
|
7024
7024
|
return (await this.wire.sendAction('serve-asset', { options })).payload.data;
|
|
7025
7025
|
}
|
|
7026
|
+
/**
|
|
7027
|
+
* Launches the Log Uploader. Full documentation can be found [here](https://resources.here.io/docs/core/develop/debug/log-uploader/).
|
|
7028
|
+
*/
|
|
7029
|
+
async launchLogUploader(options) {
|
|
7030
|
+
return (await this.wire.sendAction('launch-log-uploader', { options })).payload.data;
|
|
7031
|
+
}
|
|
7026
7032
|
}
|
|
7027
7033
|
system.System = System;
|
|
7028
7034
|
|
|
@@ -17882,7 +17888,7 @@ class NodeEnvironment extends BaseEnvironment_1 {
|
|
|
17882
17888
|
};
|
|
17883
17889
|
}
|
|
17884
17890
|
getAdapterVersionSync() {
|
|
17885
|
-
return "42.100.
|
|
17891
|
+
return "42.100.95";
|
|
17886
17892
|
}
|
|
17887
17893
|
observeBounds(element, onChange) {
|
|
17888
17894
|
throw new Error('Method not implemented.');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfin/node-adapter",
|
|
3
|
-
"version": "42.100.
|
|
3
|
+
"version": "42.100.95",
|
|
4
4
|
"description": "See README.md",
|
|
5
5
|
"main": "out/node-adapter.js",
|
|
6
6
|
"types": "out/node-adapter.d.ts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"author": "OpenFin",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@types/node": "^20.14.2",
|
|
27
|
-
"@openfin/core": "42.100.
|
|
27
|
+
"@openfin/core": "42.100.95",
|
|
28
28
|
"lodash": "^4.17.21",
|
|
29
29
|
"ws": "^7.3.0"
|
|
30
30
|
}
|