@nodus-lib/nodus 0.0.6 → 0.0.8
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/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/logger/nodus-server-caller.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { nodus_proxy
|
|
1
|
+
export { nodus_proxy } from "./next/nodus_proxy";
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.nodus_proxy = void 0;
|
|
4
4
|
var nodus_proxy_1 = require("./next/nodus_proxy");
|
|
5
|
-
Object.defineProperty(exports, "
|
|
5
|
+
Object.defineProperty(exports, "nodus_proxy", { enumerable: true, get: function () { return nodus_proxy_1.nodus_proxy; } });
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.nodus_server_caller = nodus_server_caller;
|
|
4
4
|
function nodus_server_caller({ data, url, key }) {
|
|
5
|
-
void fetch(`
|
|
5
|
+
void fetch(`http://localhost:8080/sdk/${url}?key=${key}`, {
|
|
6
6
|
method: "POST",
|
|
7
7
|
headers: {
|
|
8
8
|
"Content-Type": "application/json",
|