@emeryld/rrroutes-client 2.7.0 → 2.7.1

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.
@@ -126,7 +126,7 @@ export type BuildMeta<Names extends string = string> = {
126
126
  export type ArgsFor<L extends AnyLeafLowProfile> = Prettify<(InferParams<L> extends never ? {} : {
127
127
  params: Partial<InferParams<L>>;
128
128
  }) & (InferQuery<L> extends never ? {} : {
129
- query: InferQuery<L>;
129
+ query: InferQuery<L> | undefined;
130
130
  })>;
131
131
  /** Variadic tuple representation that omits the argument entirely when not needed. */
132
132
  export type ArgsTuple<L extends AnyLeafLowProfile> = keyof ArgsFor<L> extends never ? [] : [args: ArgsFor<L>];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emeryld/rrroutes-client",
3
- "version": "2.7.0",
3
+ "version": "2.7.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",