@replit/river 0.26.4 → 0.26.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/{chunk-65EMTMCV.js → chunk-7KB7DHFZ.js} +4 -9
- package/dist/chunk-7KB7DHFZ.js.map +1 -0
- package/dist/{chunk-DS5LF6PS.js → chunk-AZ3ILPXP.js} +5 -5
- package/dist/chunk-AZ3ILPXP.js.map +1 -0
- package/dist/{chunk-PXRKBNWN.js → chunk-FA2IRWCM.js} +2 -2
- package/dist/{chunk-RSCUADHY.js → chunk-IPOUVVKT.js} +3 -3
- package/dist/{chunk-HPOR6FST.js → chunk-PZEYFHAB.js} +6 -6
- package/dist/chunk-PZEYFHAB.js.map +1 -0
- package/dist/{chunk-CYD6GTCU.js → chunk-QEWSUVWV.js} +2 -2
- package/dist/{chunk-CYD6GTCU.js.map → chunk-QEWSUVWV.js.map} +1 -1
- package/dist/{chunk-42SXIIHP.js → chunk-XRZ52TYH.js} +7 -7
- package/dist/chunk-XRZ52TYH.js.map +1 -0
- package/dist/router/index.cjs +3 -8
- 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 +10 -15
- 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 +9 -14
- package/dist/transport/impls/ws/server.cjs.map +1 -1
- package/dist/transport/impls/ws/server.js +5 -5
- package/dist/transport/index.cjs +11 -16
- package/dist/transport/index.cjs.map +1 -1
- package/dist/transport/index.js +5 -5
- package/dist/util/testHelpers.cjs +8 -13
- package/dist/util/testHelpers.cjs.map +1 -1
- package/dist/util/testHelpers.js +3 -3
- package/package.json +1 -1
- package/dist/chunk-42SXIIHP.js.map +0 -1
- package/dist/chunk-65EMTMCV.js.map +0 -1
- package/dist/chunk-DS5LF6PS.js.map +0 -1
- package/dist/chunk-HPOR6FST.js.map +0 -1
- /package/dist/{chunk-PXRKBNWN.js.map → chunk-FA2IRWCM.js.map} +0 -0
- /package/dist/{chunk-RSCUADHY.js.map → chunk-IPOUVVKT.js.map} +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ClientTransport
|
|
3
|
-
} from "../../../chunk-
|
|
3
|
+
} from "../../../chunk-PZEYFHAB.js";
|
|
4
4
|
import {
|
|
5
5
|
WebSocketConnection
|
|
6
|
-
} from "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
6
|
+
} from "../../../chunk-QEWSUVWV.js";
|
|
7
|
+
import "../../../chunk-IPOUVVKT.js";
|
|
8
8
|
import "../../../chunk-TAH2GVTJ.js";
|
|
9
|
-
import "../../../chunk-
|
|
10
|
-
import "../../../chunk-
|
|
9
|
+
import "../../../chunk-XRZ52TYH.js";
|
|
10
|
+
import "../../../chunk-7KB7DHFZ.js";
|
|
11
11
|
import "../../../chunk-4PVU7J25.js";
|
|
12
12
|
|
|
13
13
|
// transport/impls/ws/client.ts
|
|
@@ -186,10 +186,7 @@ var ControlMessageHandshakeRequestSchema = import_typebox.Type.Object({
|
|
|
186
186
|
expectedSessionState: import_typebox.Type.Object({
|
|
187
187
|
// what the client expects the server to send next
|
|
188
188
|
nextExpectedSeq: import_typebox.Type.Integer(),
|
|
189
|
-
|
|
190
|
-
// are nextSentSeq here
|
|
191
|
-
// what the server expects the client to send next
|
|
192
|
-
nextSentSeq: import_typebox.Type.Optional(import_typebox.Type.Integer())
|
|
189
|
+
nextSentSeq: import_typebox.Type.Integer()
|
|
193
190
|
}),
|
|
194
191
|
metadata: import_typebox.Type.Optional(import_typebox.Type.Unknown())
|
|
195
192
|
});
|
|
@@ -225,9 +222,7 @@ var ControlMessageHandshakeResponseSchema = import_typebox.Type.Object({
|
|
|
225
222
|
import_typebox.Type.Object({
|
|
226
223
|
ok: import_typebox.Type.Literal(false),
|
|
227
224
|
reason: import_typebox.Type.String(),
|
|
228
|
-
|
|
229
|
-
// are sending code here
|
|
230
|
-
code: import_typebox.Type.Optional(HandshakeErrorResponseCodes)
|
|
225
|
+
code: HandshakeErrorResponseCodes
|
|
231
226
|
})
|
|
232
227
|
])
|
|
233
228
|
});
|
|
@@ -673,7 +668,7 @@ var SessionNoConnection = class extends IdentifiedSessionWithGracePeriod {
|
|
|
673
668
|
var import_api = require("@opentelemetry/api");
|
|
674
669
|
|
|
675
670
|
// package.json
|
|
676
|
-
var version = "0.26.
|
|
671
|
+
var version = "0.26.5";
|
|
677
672
|
|
|
678
673
|
// tracing/index.ts
|
|
679
674
|
function createSessionTelemetryInfo(sessionId, to, from, propagationCtx) {
|
|
@@ -826,13 +821,13 @@ var SessionConnected = class extends IdentifiedSession {
|
|
|
826
821
|
this.conn.addCloseListener(this.listeners.onConnectionClosed);
|
|
827
822
|
this.conn.addErrorListener(this.listeners.onConnectionErrored);
|
|
828
823
|
if (this.sendBuffer.length > 0) {
|
|
829
|
-
this.log?.
|
|
830
|
-
`sending ${this.sendBuffer.length} buffered messages`,
|
|
824
|
+
this.log?.info(
|
|
825
|
+
`sending ${this.sendBuffer.length} buffered messages, starting at seq ${this.nextSeq()}`,
|
|
831
826
|
this.loggingMetadata
|
|
832
827
|
);
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
828
|
+
for (const msg of this.sendBuffer) {
|
|
829
|
+
this.conn.send(this.options.codec.toBuffer(msg));
|
|
830
|
+
}
|
|
836
831
|
}
|
|
837
832
|
this.isActivelyHeartbeating = false;
|
|
838
833
|
this.heartbeatHandle = setInterval(() => {
|
|
@@ -1647,7 +1642,7 @@ var ServerTransport = class extends Transport {
|
|
|
1647
1642
|
}
|
|
1648
1643
|
let connectCase = "new session";
|
|
1649
1644
|
const clientNextExpectedSeq = msg.payload.expectedSessionState.nextExpectedSeq;
|
|
1650
|
-
const clientNextSentSeq = msg.payload.expectedSessionState.nextSentSeq
|
|
1645
|
+
const clientNextSentSeq = msg.payload.expectedSessionState.nextSentSeq;
|
|
1651
1646
|
if (this.options.enableTransparentSessionReconnects && oldSession && oldSession.id === msg.payload.sessionId) {
|
|
1652
1647
|
connectCase = "transparent reconnection";
|
|
1653
1648
|
const ourNextSeq = oldSession.nextSeq();
|