@travetto/model-indexed 8.0.0-alpha.12 → 8.0.0-alpha.13

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-indexed",
3
- "version": "8.0.0-alpha.12",
3
+ "version": "8.0.0-alpha.13",
4
4
  "type": "module",
5
5
  "description": "Basic indexing support for model sources that support it.",
6
6
  "keywords": [
@@ -26,12 +26,12 @@
26
26
  "directory": "module/model-indexed"
27
27
  },
28
28
  "dependencies": {
29
- "@travetto/model": "^8.0.0-alpha.11",
29
+ "@travetto/model": "^8.0.0-alpha.12",
30
30
  "@travetto/registry": "^8.0.0-alpha.11",
31
- "@travetto/schema": "^8.0.0-alpha.11"
31
+ "@travetto/schema": "^8.0.0-alpha.12"
32
32
  },
33
33
  "peerDependencies": {
34
- "@travetto/cli": "^8.0.0-alpha.16",
34
+ "@travetto/cli": "^8.0.0-alpha.17",
35
35
  "@travetto/test": "^8.0.0-alpha.11"
36
36
  },
37
37
  "peerDependenciesMeta": {
package/src/types/list.ts CHANGED
@@ -6,6 +6,10 @@ export interface ModelPageOptions<O = string> {
6
6
  offset?: O;
7
7
  }
8
8
 
9
+ /**
10
+ * Result of a page request.
11
+ * @virtual true
12
+ */
9
13
  export interface ModelPageResult<T extends ModelType> {
10
14
  items: T[];
11
15
  nextOffset?: string;