@aklinker1/zeta 2.1.1 → 2.1.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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aklinker1/zeta",
3
3
  "description": "Composable, testable, OpenAPI-first backend framework with validation built-in",
4
- "version": "2.1.1",
4
+ "version": "2.1.2",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "packageManager": "bun@1.3.5",
@@ -59,7 +59,7 @@
59
59
  "@opentelemetry/sdk-trace-node": "^2.5.0",
60
60
  "@opentelemetry/semantic-conventions": "^1.39.0",
61
61
  "@types/bun": "latest",
62
- "@typescript/native-preview": "^7.0.0-dev.20251114.1",
62
+ "@typescript/native-preview": "^7.0.0-dev.20260202.1",
63
63
  "changelogen": "^0.6.2",
64
64
  "cookie": "^1.1.1",
65
65
  "dedent": "^1.7.1",
@@ -96,7 +96,7 @@ export function getRawParams(
96
96
  for (const key in params) {
97
97
  // Rename rou3's _ to ** to match type-system
98
98
  const outKey = key === "_" ? "**" : key;
99
- res[outKey] = decodeURIComponent(params[key]);
99
+ res[outKey] = decodeURIComponent(params[key]!);
100
100
  }
101
101
  return res;
102
102
  }