@bool-ts/core 2.3.2 → 2.3.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.
- package/dist/index.js +3 -3
- package/dist/index.js.map +3 -3
- package/package.json +2 -2
- package/src/entities/application.ts +1 -0
package/package.json
CHANGED
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "tsc --emitDeclarationOnly && bun run app.build.ts",
|
|
43
|
-
"test:server": "bun --hot run __test/server/index.ts",
|
|
43
|
+
"test:server": "bun --hot run __test/server/booljs/index.ts",
|
|
44
44
|
"test:socket": "bun --hot run __test/client/socket.ts"
|
|
45
45
|
},
|
|
46
46
|
"types": "./dist/index.d.ts",
|
|
47
|
-
"version": "2.3.
|
|
47
|
+
"version": "2.3.3"
|
|
48
48
|
}
|
|
@@ -870,6 +870,7 @@ export class Application<TRootClass extends Object = Object> {
|
|
|
870
870
|
.set(responseBodyArgsKey, undefined);
|
|
871
871
|
} else {
|
|
872
872
|
context.set(routeModelArgsKey, routeResult.model);
|
|
873
|
+
context.set(paramsArgsKey, routeResult.parameters);
|
|
873
874
|
|
|
874
875
|
const authResult = await this.#pipesEnforcer({
|
|
875
876
|
type: "GUARDS",
|