@emeryld/rrroutes-client 2.5.2 → 2.5.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.
@@ -124,7 +124,7 @@ export type BuildMeta<Names extends string = string> = {
124
124
  };
125
125
  /** Object shape the user passes to hooks and helpers (params/query are optional). */
126
126
  export type ArgsFor<L extends AnyLeafLowProfile> = Prettify<(InferParams<L> extends never ? {} : {
127
- params: InferParams<L>;
127
+ params: Partial<InferParams<L>>;
128
128
  }) & (InferQuery<L> extends never ? {} : {
129
129
  query: InferQuery<L>;
130
130
  })>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emeryld/rrroutes-client",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -19,8 +19,8 @@
19
19
  "dist"
20
20
  ],
21
21
  "dependencies": {
22
- "@emeryld/rrroutes-contract": "^2.5.0",
23
- "zod": "^4.1.13"
22
+ "@emeryld/rrroutes-contract": "^2.5.1",
23
+ "zod": "^4.2.1"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "@tanstack/react-query": "^5.87.4",