@toa.io/core 1.0.0-alpha.154 → 1.0.0-alpha.156

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": "@toa.io/core",
3
- "version": "1.0.0-alpha.154",
3
+ "version": "1.0.0-alpha.156",
4
4
  "description": "Toa Core",
5
5
  "author": "temich <tema.gurtovoy@gmail.com>",
6
6
  "homepage": "https://github.com/toa-io/toa#readme",
@@ -26,5 +26,5 @@
26
26
  "error-value": "0.3.0",
27
27
  "openspan": "1.0.0-alpha.93"
28
28
  },
29
- "gitHead": "01832fc47f9906d6a63180d5c2813db86763506a"
29
+ "gitHead": "687ebdf64b8fbc177e3a802440ecd6c96d6b068f"
30
30
  }
@@ -8,6 +8,8 @@ properties:
8
8
  type: string
9
9
  search:
10
10
  type: string
11
+ sample:
12
+ type: number
11
13
  omit:
12
14
  type: integer
13
15
  minimum: 0
package/types/query.d.ts CHANGED
@@ -4,6 +4,8 @@ declare namespace toa.core {
4
4
  id?: string
5
5
  version?: number
6
6
  criteria?: Object
7
+ search?: string
8
+ sample?: number
7
9
  omit?: number
8
10
  limit?: number
9
11
  sort?: string[]
@@ -4,6 +4,7 @@ export interface Query {
4
4
  id?: string
5
5
  criteria?: string
6
6
  search?: string
7
+ sample?: number
7
8
  omit?: number
8
9
  limit?: number
9
10
  sort?: Array<string>
@@ -31,6 +31,7 @@ declare namespace toa.core {
31
31
  version?: number
32
32
  criteria?: ast.Node
33
33
  search?: string
34
+ sample?: number
34
35
  options?: Object
35
36
  }
36
37