diesel-core 1.3.7 → 1.3.8

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.
@@ -1,6 +1,6 @@
1
1
  import { BunRequest, Server } from "bun";
2
2
  import type { ContextType, DieselT } from "./types";
3
- export default function handleRequest(req: BunRequest, server: Server, url: URL, diesel: DieselT): Promise<any>;
3
+ export default function handleRequest(req: BunRequest, server: Server, diesel: DieselT): Promise<any>;
4
4
  export declare function executeMiddlewares(middlewares: Function[], ctx: ContextType, server: Server): Promise<Response | null>;
5
5
  export declare function executeBunMiddlewares(middlewares: Function[], req: BunRequest, server: Server): Promise<any>;
6
6
  export declare function handleFilterRequest(diesel: DieselT, path: string, ctx: ContextType, server: Server): Promise<Response | undefined>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "diesel-core",
3
- "version": "1.3.7",
3
+ "version": "1.3.8",
4
4
  "description": "Web framework built on Web Standards",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",