@emeryld/rrroutes-client 2.8.4 → 2.8.6

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.
@@ -246,7 +246,7 @@ export type BuiltCommon<L extends AnyLeafLowProfile> = {
246
246
  */
247
247
  setData: (...args: SetDataArgs<L>) => DataShape<L> | undefined;
248
248
  /** Type-only metadata preserved on built leaves for inference/introspection. */
249
- __rrroutesLeaf: L;
249
+ leaf: L;
250
250
  };
251
251
  /** Hook+helpers for a standard GET endpoint. */
252
252
  export type BuiltQuery<L extends AnyLeafLowProfile> = BuiltCommon<L> & {
@@ -299,7 +299,7 @@ export type BuiltLeafLike = {
299
299
  setData: (...args: any[]) => any;
300
300
  useEndpoint: (...args: any[]) => any;
301
301
  fetch: (...args: any[]) => Promise<any>;
302
- __rrroutesLeaf: AnyLeafLowProfile;
302
+ leaf: AnyLeafLowProfile;
303
303
  };
304
304
  export type BuiltLeafMap = Record<string, BuiltLeafLike>;
305
305
  /** Per-leaf request shape sent to the batch endpoint. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emeryld/rrroutes-client",
3
- "version": "2.8.4",
3
+ "version": "2.8.6",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -19,7 +19,7 @@
19
19
  "dist"
20
20
  ],
21
21
  "dependencies": {
22
- "@emeryld/rrroutes-contract": "^2.6.6",
22
+ "@emeryld/rrroutes-contract": "^2.7.0",
23
23
  "zod": "^4.3.6"
24
24
  },
25
25
  "peerDependencies": {