@travetto/model-query 8.0.0-alpha.27 → 8.0.0-alpha.28

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/model-query",
3
- "version": "8.0.0-alpha.27",
3
+ "version": "8.0.0-alpha.28",
4
4
  "type": "module",
5
5
  "description": "Datastore abstraction for advanced query support.",
6
6
  "keywords": [
@@ -28,8 +28,8 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@travetto/di": "^8.0.0-alpha.22",
31
- "@travetto/model": "^8.0.0-alpha.25",
32
- "@travetto/schema": "^8.0.0-alpha.24"
31
+ "@travetto/model": "^8.0.0-alpha.26",
32
+ "@travetto/schema": "^8.0.0-alpha.25"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "@travetto/test": "^8.0.0-alpha.23"
@@ -12,7 +12,7 @@ export type IndexField<T extends ModelType> = IndexClauseRaw<RetainPrimitiveFiel
12
12
  /**
13
13
  * Index options
14
14
  */
15
- export interface QueryIndexConfig<T extends ModelType> extends IndexConfig<'query'> {
15
+ export interface QueryIndexConfig<T extends ModelType> extends IndexConfig<'query', T> {
16
16
  /**
17
17
  * Fields and sort order
18
18
  */