@graffy/core 0.16.20-alpha.4 → 0.16.20-alpha.5

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/types/index.d.ts +1 -1
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graffy/core",
3
3
  "description": "The main module for Graffy, a library for intuitive real-time data APIs.",
4
4
  "author": "aravind (https://github.com/aravindet)",
5
- "version": "0.16.20-alpha.4",
5
+ "version": "0.16.20-alpha.5",
6
6
  "main": "./index.cjs",
7
7
  "exports": {
8
8
  "import": "./index.mjs",
@@ -16,8 +16,8 @@
16
16
  },
17
17
  "license": "Apache-2.0",
18
18
  "dependencies": {
19
- "@graffy/common": "0.16.20-alpha.4",
20
- "@graffy/stream": "0.16.20-alpha.4",
19
+ "@graffy/common": "0.16.20-alpha.5",
20
+ "@graffy/stream": "0.16.20-alpha.5",
21
21
  "debug": "^4.3.7"
22
22
  }
23
23
  }
package/types/index.d.ts CHANGED
@@ -76,7 +76,7 @@ type ReadResult<S, Q> = S extends GraffyCollection<AnyObject>
76
76
  ? Q extends Array<AnyObject> | { $key: Key }
77
77
  ? ResultArray<S[string] & { $key: Key }>
78
78
  : S[string] & { $key: Key }
79
- : S extends AnyObject
79
+ : Q extends AnyObject
80
80
  ? { [K in keyof S & keyof Q]: ReadResult<S[K], Q[K]> }
81
81
  : S;
82
82