@adonisjs/http-server 7.0.0-4 → 7.0.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.
- package/build/{chunk-5PZNIOSV.js → chunk-OZEDU2EZ.js} +9 -5
- package/build/chunk-OZEDU2EZ.js.map +1 -0
- package/build/factories/main.js +3 -5
- package/build/factories/main.js.map +1 -1
- package/build/index.js +14 -4
- package/build/index.js.map +1 -1
- package/build/src/types/response.d.ts +2 -0
- package/package.json +28 -29
- package/build/chunk-5PZNIOSV.js.map +0 -1
|
@@ -9,7 +9,7 @@ import is from "@sindresorhus/is";
|
|
|
9
9
|
import Macroable4 from "@poppinss/macroable";
|
|
10
10
|
import Middleware from "@poppinss/middleware";
|
|
11
11
|
import { RuntimeException as RuntimeException2 } from "@poppinss/utils";
|
|
12
|
-
import { moduleCaller,
|
|
12
|
+
import { moduleCaller, moduleImporter } from "@adonisjs/fold";
|
|
13
13
|
|
|
14
14
|
// src/router/factories/use_return_value.ts
|
|
15
15
|
function useReturnValue(ctx) {
|
|
@@ -673,9 +673,13 @@ var Route = class extends Macroable4 {
|
|
|
673
673
|
*/
|
|
674
674
|
#resolveRouteHandle(handler) {
|
|
675
675
|
if (typeof handler === "string") {
|
|
676
|
+
const parts = handler.split(".");
|
|
677
|
+
const method = parts.length === 1 ? "handle" : parts.pop();
|
|
678
|
+
const moduleRefId = parts.join(".");
|
|
676
679
|
return {
|
|
677
680
|
reference: handler,
|
|
678
|
-
...
|
|
681
|
+
...moduleImporter(() => this.#app.import(moduleRefId), method).toHandleMethod(),
|
|
682
|
+
name: handler
|
|
679
683
|
};
|
|
680
684
|
}
|
|
681
685
|
if (Array.isArray(handler)) {
|
|
@@ -4380,8 +4384,8 @@ function defineConfig(config) {
|
|
|
4380
4384
|
maxAge: "2h",
|
|
4381
4385
|
path: "/",
|
|
4382
4386
|
httpOnly: true,
|
|
4383
|
-
secure:
|
|
4384
|
-
sameSite:
|
|
4387
|
+
secure: true,
|
|
4388
|
+
sameSite: "lax"
|
|
4385
4389
|
},
|
|
4386
4390
|
qs: {
|
|
4387
4391
|
parse: {
|
|
@@ -4434,4 +4438,4 @@ export {
|
|
|
4434
4438
|
Server,
|
|
4435
4439
|
defineConfig
|
|
4436
4440
|
};
|
|
4437
|
-
//# sourceMappingURL=chunk-
|
|
4441
|
+
//# sourceMappingURL=chunk-OZEDU2EZ.js.map
|