@replit/river 0.24.1 → 0.24.3
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-IYYQ7BII.js → chunk-DZNP3EI5.js} +2 -2
- package/dist/{chunk-IYYQ7BII.js.map → chunk-DZNP3EI5.js.map} +1 -1
- package/dist/{chunk-BGJDNLTJ.js → chunk-EHXKU4TW.js} +2 -2
- package/dist/{chunk-6YFPHVNO.js → chunk-FKBXIWWN.js} +3 -3
- package/dist/{chunk-227EQHH5.js → chunk-KVLCQ24J.js} +2 -2
- package/dist/{chunk-M7E6LQO2.js → chunk-LSHUPI6U.js} +32 -16
- package/dist/{chunk-M7E6LQO2.js.map → chunk-LSHUPI6U.js.map} +1 -1
- package/dist/{chunk-L664A3WA.js → chunk-TDFWZIXR.js} +4 -10
- package/dist/chunk-TDFWZIXR.js.map +1 -0
- package/dist/{chunk-HXOQQXL4.js → chunk-W3CY6PNC.js} +4 -4
- package/dist/{chunk-XOFF3UPL.js → chunk-XKHLA5MP.js} +4 -4
- package/dist/router/index.cjs +31 -15
- 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/uds/client.cjs +3 -9
- package/dist/transport/impls/uds/client.cjs.map +1 -1
- package/dist/transport/impls/uds/client.js +5 -5
- package/dist/transport/impls/uds/server.cjs +3 -9
- package/dist/transport/impls/uds/server.cjs.map +1 -1
- package/dist/transport/impls/uds/server.js +5 -5
- package/dist/transport/impls/ws/client.cjs +1 -1
- 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 +1 -1
- 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-L664A3WA.js.map +0 -1
- /package/dist/{chunk-BGJDNLTJ.js.map → chunk-EHXKU4TW.js.map} +0 -0
- /package/dist/{chunk-6YFPHVNO.js.map → chunk-FKBXIWWN.js.map} +0 -0
- /package/dist/{chunk-227EQHH5.js.map → chunk-KVLCQ24J.js.map} +0 -0
- /package/dist/{chunk-HXOQQXL4.js.map → chunk-W3CY6PNC.js.map} +0 -0
- /package/dist/{chunk-XOFF3UPL.js.map → chunk-XKHLA5MP.js.map} +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
UdsConnection
|
|
3
|
-
} from "../../../chunk-
|
|
3
|
+
} from "../../../chunk-TDFWZIXR.js";
|
|
4
4
|
import {
|
|
5
5
|
ClientTransport
|
|
6
|
-
} from "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
6
|
+
} from "../../../chunk-XKHLA5MP.js";
|
|
7
|
+
import "../../../chunk-FKBXIWWN.js";
|
|
8
8
|
import "../../../chunk-TAH2GVTJ.js";
|
|
9
|
-
import "../../../chunk-
|
|
10
|
-
import "../../../chunk-
|
|
9
|
+
import "../../../chunk-KVLCQ24J.js";
|
|
10
|
+
import "../../../chunk-DZNP3EI5.js";
|
|
11
11
|
import "../../../chunk-4PVU7J25.js";
|
|
12
12
|
|
|
13
13
|
// transport/impls/uds/client.ts
|
|
@@ -57,9 +57,6 @@ var Uint32LengthPrefixFraming = class extends import_node_stream.Transform {
|
|
|
57
57
|
cb();
|
|
58
58
|
}
|
|
59
59
|
_flush(cb) {
|
|
60
|
-
if (this.receivedBuffer.length) {
|
|
61
|
-
this.emit("error", new Error("got incomplete message while flushing"));
|
|
62
|
-
}
|
|
63
60
|
this.receivedBuffer = Buffer.alloc(0);
|
|
64
61
|
cb();
|
|
65
62
|
}
|
|
@@ -189,9 +186,6 @@ var UdsConnection = class extends Connection {
|
|
|
189
186
|
cb(msg);
|
|
190
187
|
}
|
|
191
188
|
});
|
|
192
|
-
this.sock.on("end", () => {
|
|
193
|
-
this.sock.destroy();
|
|
194
|
-
});
|
|
195
189
|
}
|
|
196
190
|
send(payload) {
|
|
197
191
|
if (this.framer.destroyed || !this.sock.writable || this.sock.closed) {
|
|
@@ -201,8 +195,8 @@ var UdsConnection = class extends Connection {
|
|
|
201
195
|
return true;
|
|
202
196
|
}
|
|
203
197
|
close() {
|
|
204
|
-
this.sock.
|
|
205
|
-
this.framer.
|
|
198
|
+
this.sock.destroy();
|
|
199
|
+
this.framer.destroy();
|
|
206
200
|
}
|
|
207
201
|
};
|
|
208
202
|
|
|
@@ -697,7 +691,7 @@ var SessionNoConnection = class extends IdentifiedSession {
|
|
|
697
691
|
var import_api = require("@opentelemetry/api");
|
|
698
692
|
|
|
699
693
|
// package.json
|
|
700
|
-
var version = "0.24.
|
|
694
|
+
var version = "0.24.3";
|
|
701
695
|
|
|
702
696
|
// tracing/index.ts
|
|
703
697
|
function createSessionTelemetryInfo(sessionId, to, from, propagationCtx) {
|