@forklaunch/core 0.2.25 → 0.2.27
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/lib/eslint.config.d.mts +1 -1
- package/lib/src/cache/index.d.ts +1 -0
- package/lib/src/cache/index.d.ts.map +1 -1
- package/lib/src/cache/index.js +1 -0
- package/lib/src/cache/utils/cacheKey.d.ts +2 -0
- package/lib/src/cache/utils/cacheKey.d.ts.map +1 -0
- package/lib/src/cache/utils/cacheKey.js +3 -0
- package/lib/src/controllers/interfaces/controller.interface.d.ts +3 -15
- package/lib/src/controllers/interfaces/controller.interface.d.ts.map +1 -1
- package/lib/src/http/application/expressLikeApplication.d.ts +3 -2
- package/lib/src/http/application/expressLikeApplication.d.ts.map +1 -1
- package/lib/src/http/application/expressLikeApplication.js +3 -1
- package/lib/src/http/guards/isConstrainedForklaunchRouter.d.ts +4 -0
- package/lib/src/http/guards/isConstrainedForklaunchRouter.d.ts.map +1 -0
- package/lib/src/http/guards/isConstrainedForklaunchRouter.js +5 -0
- package/lib/src/http/guards/isExpressLikeSchemaHandler.d.ts.map +1 -1
- package/lib/src/http/guards/isExpressLikeSchemaHandler.js +1 -5
- package/lib/src/http/guards/isForklaunchExpressLikeRouter.d.ts +5 -0
- package/lib/src/http/guards/isForklaunchExpressLikeRouter.d.ts.map +1 -0
- package/lib/src/http/guards/isForklaunchExpressLikeRouter.js +6 -0
- package/lib/src/http/interfaces/expressLikeRouter.interface.d.ts +2 -2
- package/lib/src/http/interfaces/expressLikeRouter.interface.d.ts.map +1 -1
- package/lib/src/http/middleware/request/auth.middleware.d.ts.map +1 -1
- package/lib/src/http/middleware/request/auth.middleware.js +2 -1
- package/lib/src/http/router/expressLikeRouter.d.ts +7 -5
- package/lib/src/http/router/expressLikeRouter.d.ts.map +1 -1
- package/lib/src/http/router/expressLikeRouter.js +69 -16
- package/lib/src/http/types/apiDefinition.types.d.ts +6 -2
- package/lib/src/http/types/apiDefinition.types.d.ts.map +1 -1
- package/lib/src/http/types/expressLikeRouter.types.d.ts +24 -8
- package/lib/src/http/types/expressLikeRouter.types.d.ts.map +1 -1
- package/lib/src/http/types/router.types.d.ts +4 -1
- package/lib/src/http/types/router.types.d.ts.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +16 -16
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@forklaunch/core",
|
3
|
-
"version": "0.2.
|
3
|
+
"version": "0.2.27",
|
4
4
|
"description": "forklaunch-js core package. Contains useful building blocks.",
|
5
5
|
"files": [
|
6
6
|
"lib"
|
@@ -17,30 +17,30 @@
|
|
17
17
|
},
|
18
18
|
"homepage": "https://github.com/forklaunch/forklaunch-js#readme",
|
19
19
|
"dependencies": {
|
20
|
-
"@mikro-orm/core": "^6.
|
20
|
+
"@mikro-orm/core": "^6.4.0",
|
21
21
|
"cors": "^2.8.5",
|
22
|
-
"jose": "^5.
|
23
|
-
"openapi3-ts": "^4.
|
22
|
+
"jose": "^5.9.6",
|
23
|
+
"openapi3-ts": "^4.4.0",
|
24
24
|
"redis": "^4.7.0",
|
25
|
-
"uuid": "^
|
26
|
-
"@forklaunch/common": "0.1.
|
27
|
-
"@forklaunch/validator": "0.3.
|
25
|
+
"uuid": "^11.0.3",
|
26
|
+
"@forklaunch/common": "0.1.11",
|
27
|
+
"@forklaunch/validator": "0.3.9"
|
28
28
|
},
|
29
29
|
"devDependencies": {
|
30
|
-
"@eslint/js": "^9.
|
30
|
+
"@eslint/js": "^9.14.0",
|
31
31
|
"@types/cors": "^2.8.17",
|
32
|
-
"@types/jest": "^29.5.
|
33
|
-
"@types/qs": "^6.9.
|
32
|
+
"@types/jest": "^29.5.14",
|
33
|
+
"@types/qs": "^6.9.17",
|
34
34
|
"@types/uuid": "^10.0.0",
|
35
|
-
"globals": "^15.
|
35
|
+
"globals": "^15.12.0",
|
36
36
|
"jest": "^29.7.0",
|
37
37
|
"prettier": "^3.3.3",
|
38
|
-
"testcontainers": "^10.
|
39
|
-
"ts-jest": "^29.2.
|
38
|
+
"testcontainers": "^10.14.0",
|
39
|
+
"ts-jest": "^29.2.5",
|
40
40
|
"ts-node": "^10.9.2",
|
41
|
-
"typedoc": "^0.26.
|
42
|
-
"typescript": "^5.
|
43
|
-
"typescript-eslint": "^8.
|
41
|
+
"typedoc": "^0.26.11",
|
42
|
+
"typescript": "^5.6.3",
|
43
|
+
"typescript-eslint": "^8.14.0"
|
44
44
|
},
|
45
45
|
"directories": {
|
46
46
|
"test": "tests"
|