nvent 1.0.0-alpha.4 → 1.0.0-alpha.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/dist/module.json
CHANGED
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
* The browser never needs to know about the internal iii port — all traffic
|
|
10
10
|
* flows through the Nuxt server origin.
|
|
11
11
|
*/
|
|
12
|
-
declare const _default:
|
|
12
|
+
declare const _default: any;
|
|
13
13
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineWebSocketHandler } from "h3";
|
|
2
1
|
import { createBrowserAuthToken } from "../utils/browserAuthToken.js";
|
|
2
|
+
import { useRuntimeConfig, defineWebSocketHandler } from "#imports";
|
|
3
3
|
export default defineWebSocketHandler({
|
|
4
4
|
open(peer) {
|
|
5
5
|
const { nvent } = useRuntimeConfig();
|
|
@@ -13,5 +13,5 @@
|
|
|
13
13
|
* all subsequent messages so the browser never needs to know about port 3112
|
|
14
14
|
* or the join protocol.
|
|
15
15
|
*/
|
|
16
|
-
declare const _default:
|
|
16
|
+
declare const _default: any;
|
|
17
17
|
export default _default;
|