@adonisjs/http-server 7.0.2 → 7.0.3
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.
|
@@ -3324,6 +3324,9 @@ var RoutesStore = class {
|
|
|
3324
3324
|
}
|
|
3325
3325
|
};
|
|
3326
3326
|
|
|
3327
|
+
// src/router/lookup_store/main.ts
|
|
3328
|
+
import Macroable7 from "@poppinss/macroable";
|
|
3329
|
+
|
|
3327
3330
|
// src/router/lookup_store/url_builder.ts
|
|
3328
3331
|
import { RuntimeException as RuntimeException5 } from "@poppinss/utils";
|
|
3329
3332
|
var UrlBuilder = class {
|
|
@@ -3547,7 +3550,7 @@ var RouteFinder = class {
|
|
|
3547
3550
|
};
|
|
3548
3551
|
|
|
3549
3552
|
// src/router/lookup_store/main.ts
|
|
3550
|
-
var LookupStore = class {
|
|
3553
|
+
var LookupStore = class extends Macroable7 {
|
|
3551
3554
|
/**
|
|
3552
3555
|
* List of route finders grouped by domains
|
|
3553
3556
|
*/
|
|
@@ -3561,6 +3564,7 @@ var LookupStore = class {
|
|
|
3561
3564
|
*/
|
|
3562
3565
|
#qsParser;
|
|
3563
3566
|
constructor(encryption, qsParser) {
|
|
3567
|
+
super();
|
|
3564
3568
|
this.#encryption = encryption;
|
|
3565
3569
|
this.#qsParser = qsParser;
|
|
3566
3570
|
}
|
|
@@ -3633,8 +3637,8 @@ var LookupStore = class {
|
|
|
3633
3637
|
};
|
|
3634
3638
|
|
|
3635
3639
|
// src/router/matchers.ts
|
|
3636
|
-
import
|
|
3637
|
-
var RouteMatchers = class extends
|
|
3640
|
+
import Macroable8 from "@poppinss/macroable";
|
|
3641
|
+
var RouteMatchers = class extends Macroable8 {
|
|
3638
3642
|
/**
|
|
3639
3643
|
* Enforce value to be a number and also casts it to number data
|
|
3640
3644
|
* type
|
|
@@ -3941,7 +3945,7 @@ var Router = class extends LookupStore {
|
|
|
3941
3945
|
|
|
3942
3946
|
// src/http_context/main.ts
|
|
3943
3947
|
import { inspect } from "node:util";
|
|
3944
|
-
import
|
|
3948
|
+
import Macroable9 from "@poppinss/macroable";
|
|
3945
3949
|
import { RuntimeException as RuntimeException7 } from "@poppinss/utils";
|
|
3946
3950
|
|
|
3947
3951
|
// src/http_context/local_storage.ts
|
|
@@ -3975,7 +3979,7 @@ var asyncLocalStorage = {
|
|
|
3975
3979
|
};
|
|
3976
3980
|
|
|
3977
3981
|
// src/http_context/main.ts
|
|
3978
|
-
var HttpContext = class extends
|
|
3982
|
+
var HttpContext = class extends Macroable9 {
|
|
3979
3983
|
constructor(request, response, logger, containerResolver) {
|
|
3980
3984
|
super();
|
|
3981
3985
|
this.request = request;
|
|
@@ -4438,4 +4442,4 @@ export {
|
|
|
4438
4442
|
Server,
|
|
4439
4443
|
defineConfig
|
|
4440
4444
|
};
|
|
4441
|
-
//# sourceMappingURL=chunk-
|
|
4445
|
+
//# sourceMappingURL=chunk-KYYKTJYU.js.map
|