@h3ravel/http 11.15.0-alpha.16 → 11.17.0-alpha.16
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.d.ts +1 -1
- package/dist/index.js +0 -5
- package/package.json +8 -10
- package/dist/index.cjs +0 -4240
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/// <reference path="./app.globals.d.ts" />
|
|
2
2
|
import { Command } from "@h3ravel/musket";
|
|
3
3
|
import { CacheOptions, ClassConstructor, DotNestedKeys, DotNestedValue, GenericObject, IApplication, IHeaderBag, IHttpContext, IHttpResponse, IMiddleware, IParamBag, IRequest, IResponsable, IResponse, IRoute, ISessionManager, IUrl, MessagesForRules, RequestMethod, RequestObject, ResponseObject, RulesForData } from "@h3ravel/contracts";
|
|
4
|
+
import { ResponseCodes } from "@h3ravel/foundation";
|
|
4
5
|
import { DateTime } from "@h3ravel/support";
|
|
5
6
|
import { EventHandlerRequest, H3Event, HTTPResponse } from "h3";
|
|
6
|
-
import { ResponseCodes } from "@h3ravel/foundation";
|
|
7
7
|
|
|
8
8
|
//#region src/Commands/FireCommand.d.ts
|
|
9
9
|
declare class FireCommand extends Command {
|
package/dist/index.js
CHANGED
|
@@ -9,7 +9,6 @@ import { Response as Response$1 } from "@h3ravel/support/facades";
|
|
|
9
9
|
import { Arr, DateTime, InvalidArgumentException, Obj, RuntimeException, Str, data_get, data_set, safeDot } from "@h3ravel/support";
|
|
10
10
|
import { H3Event, getQuery, getRequestIP, getRequestProtocol, getRouterParams, parseCookies } from "h3";
|
|
11
11
|
import path from "node:path";
|
|
12
|
-
import { fileURLToPath } from "node:url";
|
|
13
12
|
//#region src/Commands/FireCommand.ts
|
|
14
13
|
var FireCommand = class extends Command {
|
|
15
14
|
/**
|
|
@@ -2337,10 +2336,6 @@ var InputBag = class extends ParamBag {
|
|
|
2337
2336
|
}
|
|
2338
2337
|
};
|
|
2339
2338
|
//#endregion
|
|
2340
|
-
//#region ../../node_modules/.pnpm/tsdown@0.22.2_tsx@4.20.6_typescript@6.0.3_unrun@0.2.15_@emnapi+core@1.11.0_@emnapi+runtime@1.11.0_/node_modules/tsdown/esm-shims.js
|
|
2341
|
-
const getFilename = () => fileURLToPath(import.meta.url);
|
|
2342
|
-
const __filename = /* @__PURE__ */ getFilename();
|
|
2343
|
-
//#endregion
|
|
2344
2339
|
//#region src/Utilities/FileBag.ts
|
|
2345
2340
|
/**
|
|
2346
2341
|
* FileBag is a container for uploaded files
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h3ravel/http",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.17.0-alpha.16",
|
|
4
4
|
"description": "HTTP kernel, middleware pipeline, request/response classes for H3ravel.",
|
|
5
5
|
"h3ravel": {
|
|
6
6
|
"providers": [
|
|
@@ -8,9 +8,7 @@
|
|
|
8
8
|
]
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
|
-
"main": "./dist/index.cjs",
|
|
12
11
|
"types": "./dist/index.d.ts",
|
|
13
|
-
"module": "./dist/index.js",
|
|
14
12
|
"exports": {
|
|
15
13
|
".": {
|
|
16
14
|
"import": "./dist/index.js",
|
|
@@ -41,24 +39,24 @@
|
|
|
41
39
|
"laravel"
|
|
42
40
|
],
|
|
43
41
|
"dependencies": {
|
|
44
|
-
"@h3ravel/contracts": "^
|
|
45
|
-
"@h3ravel/support": "^
|
|
42
|
+
"@h3ravel/contracts": "^2.0.0-alpha.16",
|
|
43
|
+
"@h3ravel/support": "^2.0.0-alpha.16",
|
|
46
44
|
"@h3ravel/musket": "^1.29.0-alpha.15",
|
|
47
|
-
"@h3ravel/shared": "^
|
|
48
|
-
"@h3ravel/session": "^
|
|
45
|
+
"@h3ravel/shared": "^2.0.0-alpha.16",
|
|
46
|
+
"@h3ravel/session": "^2.0.0-alpha.16",
|
|
49
47
|
"h3": "2.0.1-rc.5",
|
|
50
48
|
"srvx": "^0.8.2"
|
|
51
49
|
},
|
|
52
50
|
"peerDependencies": {
|
|
53
|
-
"@h3ravel/validation": "^
|
|
54
|
-
"@h3ravel/foundation": "^
|
|
51
|
+
"@h3ravel/validation": "^2.0.0-alpha.16",
|
|
52
|
+
"@h3ravel/foundation": "^2.0.0-alpha.16"
|
|
55
53
|
},
|
|
56
54
|
"devDependencies": {
|
|
57
55
|
"typescript": "^6.0.0"
|
|
58
56
|
},
|
|
59
57
|
"scripts": {
|
|
60
58
|
"build": "tsdown --config-loader unrun",
|
|
61
|
-
"dev": "
|
|
59
|
+
"dev": "tsdown --watch --config-loader unrun",
|
|
62
60
|
"start": "node dist/index.js",
|
|
63
61
|
"lint": "eslint . --ext .ts",
|
|
64
62
|
"test": "jest --passWithNoTests",
|