@replit/river 0.212.0 → 0.212.2
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-S6I4XLQG.js → chunk-6KQ3NG67.js} +3 -2
- package/dist/{chunk-S6I4XLQG.js.map → chunk-6KQ3NG67.js.map} +1 -1
- package/dist/{chunk-FW4QYF33.js → chunk-JPNTEDEA.js} +21 -7
- package/dist/{chunk-FW4QYF33.js.map → chunk-JPNTEDEA.js.map} +1 -1
- package/dist/codec/index.js +2 -2
- package/dist/router/index.cjs +2 -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 +1 -1
- package/dist/testUtil/index.cjs +16 -2
- package/dist/testUtil/index.cjs.map +1 -1
- package/dist/testUtil/index.js +3 -3
- package/dist/transport/impls/ws/client.cjs +16 -2
- package/dist/transport/impls/ws/client.cjs.map +1 -1
- package/dist/transport/impls/ws/client.js +2 -2
- 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 +2 -2
- package/dist/transport/index.cjs +16 -2
- package/dist/transport/index.cjs.map +1 -1
- package/dist/transport/index.js +3 -3
- package/package.json +1 -1
|
@@ -990,6 +990,7 @@ function _createRecursiveProxy(callback, path) {
|
|
|
990
990
|
// property access, recurse and add field to path
|
|
991
991
|
get(_obj, key) {
|
|
992
992
|
if (typeof key !== "string") return void 0;
|
|
993
|
+
if (key === "then") return void 0;
|
|
993
994
|
return _createRecursiveProxy(callback, [...path, key]);
|
|
994
995
|
},
|
|
995
996
|
// hit the end, let's invoke the handler
|
|
@@ -1997,7 +1998,7 @@ function createServerHandshakeOptions(schema, validate) {
|
|
|
1997
1998
|
}
|
|
1998
1999
|
|
|
1999
2000
|
// package.json
|
|
2000
|
-
var version = "0.212.
|
|
2001
|
+
var version = "0.212.2";
|
|
2001
2002
|
|
|
2002
2003
|
export {
|
|
2003
2004
|
generateId,
|
|
@@ -2038,4 +2039,4 @@ export {
|
|
|
2038
2039
|
createConnectionTelemetryInfo,
|
|
2039
2040
|
getTracer
|
|
2040
2041
|
};
|
|
2041
|
-
//# sourceMappingURL=chunk-
|
|
2042
|
+
//# sourceMappingURL=chunk-6KQ3NG67.js.map
|