@emeryld/rrroutes-server 2.3.12 → 2.3.14
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/index.cjs +19 -70
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +19 -70
- package/dist/index.js.map +1 -1
- package/dist/routesV3.server.d.ts +0 -4
- package/package.json +2 -2
|
@@ -107,10 +107,6 @@ export type LeafFromKey<R extends {
|
|
|
107
107
|
}>;
|
|
108
108
|
/** Optional-ify types if your core returns `never` when a schema isn't defined */
|
|
109
109
|
type Maybe<T> = [T] extends [never] ? void : T;
|
|
110
|
-
/** @internal Useful for focused testing */
|
|
111
|
-
export declare const __queryNormalizationTestUtils: {
|
|
112
|
-
normalizeQueryForSchema: (schema: unknown, value: unknown) => unknown;
|
|
113
|
-
};
|
|
114
110
|
/**
|
|
115
111
|
* Unique symbol used to stash ctx on res.locals.
|
|
116
112
|
* (Symbols are safer than string keys against collisions.)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emeryld/rrroutes-server",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.14",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"dist"
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@emeryld/rrroutes-contract": "^2.4.
|
|
20
|
+
"@emeryld/rrroutes-contract": "^2.4.19",
|
|
21
21
|
"jose": "^6.1.3",
|
|
22
22
|
"socket.io": "^4.8.1",
|
|
23
23
|
"zod": "^4.1.13"
|