@server/next 0.24.0 → 0.24.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@server/next",
3
- "version": "0.24.0",
3
+ "version": "0.24.1",
4
4
  "description": "A fully-fledged web server with routing, file uploads, sessions, static files, schema validation, websockets, testing, etc.",
5
5
  "homepage": "https://server-js.com/",
6
6
  "repository": "https://github.com/franciscop/server-next.git",
package/src/index.d.ts CHANGED
@@ -66,7 +66,7 @@ type ExtractPathParams<Path extends string> =
66
66
  type ParamTypeMap = {
67
67
  string: string;
68
68
  number: number;
69
- boolean: boolean;
69
+ date: Date;
70
70
  };
71
71
 
72
72
  type InferParamType<T extends string> = T extends keyof ParamTypeMap