@bool-ts/core 2.2.1 → 2.2.2

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/package.json CHANGED
@@ -43,5 +43,5 @@
43
43
  "test": "bun --hot run __test/index.ts"
44
44
  },
45
45
  "types": "./dist/index.d.ts",
46
- "version": "2.2.1"
46
+ "version": "2.2.2"
47
47
  }
@@ -1587,7 +1587,9 @@ export class Application<TRootClass extends Object = Object> {
1587
1587
  );
1588
1588
 
1589
1589
  if (route) {
1590
- context.set(paramsArgsKey, route.parameters).set(routeModelArgsKey, route.model);
1590
+ context
1591
+ .set(paramsArgsKey, route.parameters, { isPassthrough: true })
1592
+ .set(routeModelArgsKey, route.model);
1591
1593
  }
1592
1594
 
1593
1595
  const httpServer =