@replit/river 0.26.7 → 0.26.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/{chunk-I3Z6XQVK.js → chunk-CATCCJAL.js} +3 -3
- package/dist/{chunk-F32IOMOX.js → chunk-NHXIQELK.js} +2 -2
- package/dist/{chunk-KMH4I245.js → chunk-QEVXZ3I7.js} +4 -3
- package/dist/chunk-QEVXZ3I7.js.map +1 -0
- package/dist/{chunk-C7OSTU6D.js → chunk-QXQG6ZFZ.js} +2 -2
- package/dist/{chunk-X4TDCNNT.js → chunk-SIRVFV3D.js} +4 -4
- package/dist/{chunk-JJX4ALPO.js → chunk-XMXSGTU2.js} +4 -4
- package/dist/{chunk-NHM3XC6K.js → chunk-ZFSQNWYX.js} +2 -2
- package/dist/{chunk-NHM3XC6K.js.map → chunk-ZFSQNWYX.js.map} +1 -1
- package/dist/router/index.cjs +1 -1
- package/dist/router/index.cjs.map +1 -1
- package/dist/router/index.d.cts +1 -1
- package/dist/router/index.d.ts +1 -1
- package/dist/router/index.js +2 -2
- package/dist/transport/impls/ws/client.cjs +3 -2
- package/dist/transport/impls/ws/client.cjs.map +1 -1
- package/dist/transport/impls/ws/client.js +5 -5
- package/dist/transport/impls/ws/server.cjs +3 -2
- package/dist/transport/impls/ws/server.cjs.map +1 -1
- package/dist/transport/impls/ws/server.js +5 -5
- package/dist/transport/index.cjs +1 -1
- package/dist/transport/index.cjs.map +1 -1
- package/dist/transport/index.js +5 -5
- package/dist/util/testHelpers.cjs +1 -1
- package/dist/util/testHelpers.cjs.map +1 -1
- package/dist/util/testHelpers.js +3 -3
- package/package.json +1 -1
- package/dist/chunk-KMH4I245.js.map +0 -1
- /package/dist/{chunk-I3Z6XQVK.js.map → chunk-CATCCJAL.js.map} +0 -0
- /package/dist/{chunk-F32IOMOX.js.map → chunk-NHXIQELK.js.map} +0 -0
- /package/dist/{chunk-C7OSTU6D.js.map → chunk-QXQG6ZFZ.js.map} +0 -0
- /package/dist/{chunk-X4TDCNNT.js.map → chunk-SIRVFV3D.js.map} +0 -0
- /package/dist/{chunk-JJX4ALPO.js.map → chunk-XMXSGTU2.js.map} +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ClientTransport
|
|
3
|
-
} from "../../../chunk-
|
|
3
|
+
} from "../../../chunk-XMXSGTU2.js";
|
|
4
4
|
import {
|
|
5
5
|
WebSocketConnection
|
|
6
|
-
} from "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
6
|
+
} from "../../../chunk-QEVXZ3I7.js";
|
|
7
|
+
import "../../../chunk-CATCCJAL.js";
|
|
8
8
|
import "../../../chunk-KTS4HBYE.js";
|
|
9
|
-
import "../../../chunk-
|
|
10
|
-
import "../../../chunk-
|
|
9
|
+
import "../../../chunk-NHXIQELK.js";
|
|
10
|
+
import "../../../chunk-ZFSQNWYX.js";
|
|
11
11
|
import "../../../chunk-4PVU7J25.js";
|
|
12
12
|
|
|
13
13
|
// transport/impls/ws/client.ts
|
|
@@ -103,6 +103,7 @@ var Connection = class {
|
|
|
103
103
|
};
|
|
104
104
|
|
|
105
105
|
// transport/impls/ws/connection.ts
|
|
106
|
+
var WS_HEALTHY_CLOSE_CODE = 1e3;
|
|
106
107
|
var WebSocketConnection = class extends Connection {
|
|
107
108
|
ws;
|
|
108
109
|
extras;
|
|
@@ -149,7 +150,7 @@ var WebSocketConnection = class extends Connection {
|
|
|
149
150
|
return true;
|
|
150
151
|
}
|
|
151
152
|
close() {
|
|
152
|
-
this.ws.close();
|
|
153
|
+
this.ws.close(WS_HEALTHY_CLOSE_CODE);
|
|
153
154
|
}
|
|
154
155
|
};
|
|
155
156
|
|
|
@@ -678,7 +679,7 @@ var SessionNoConnection = class extends IdentifiedSessionWithGracePeriod {
|
|
|
678
679
|
var import_api = require("@opentelemetry/api");
|
|
679
680
|
|
|
680
681
|
// package.json
|
|
681
|
-
var version = "0.26.
|
|
682
|
+
var version = "0.26.8";
|
|
682
683
|
|
|
683
684
|
// tracing/index.ts
|
|
684
685
|
function createSessionTelemetryInfo(sessionId, to, from, propagationCtx) {
|