@cumulus/es-client 16.0.3-alpha.0 → 16.1.2

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/.nycrc.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "extends": "../../nyc.config.js",
3
+ "include": [
4
+ "*.js",
5
+ "lib/*.js"
6
+ ],
7
+ "exclude-after-remap": false,
8
+ "statements": 87.0,
9
+ "functions": 87.0,
10
+ "branches": 73.0,
11
+ "lines": 87.0
12
+ }
@@ -28,6 +28,10 @@
28
28
  }
29
29
  }
30
30
  },
31
+ "meta": {
32
+ "type": "object",
33
+ "dynamic": false
34
+ },
31
35
  "timestamp": {
32
36
  "type": "date"
33
37
  }
@@ -266,6 +270,10 @@
266
270
  "published": {
267
271
  "type": "boolean"
268
272
  },
273
+ "queryFields": {
274
+ "type": "object",
275
+ "dynamic": false
276
+ },
269
277
  "duration": {
270
278
  "type": "float"
271
279
  },
@@ -349,6 +357,10 @@
349
357
  "published": {
350
358
  "type": "boolean"
351
359
  },
360
+ "queryFields": {
361
+ "type": "object",
362
+ "dynamic": false
363
+ },
352
364
  "duration": {
353
365
  "type": "float"
354
366
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cumulus/es-client",
3
- "version": "16.0.3-alpha.0",
3
+ "version": "16.1.2",
4
4
  "description": "Utilities for working with Elasticsearch",
5
5
  "keywords": [
6
6
  "CUMULUS",
@@ -19,7 +19,8 @@
19
19
  },
20
20
  "scripts": {
21
21
  "test": "../../node_modules/.bin/ava",
22
- "test:coverage": "../../node_modules/.bin/nyc npm test"
22
+ "test:coverage": "../../node_modules/.bin/nyc npm test",
23
+ "coverage": "python ../../scripts/coverage_handler/coverage.py"
23
24
  },
24
25
  "ava": {
25
26
  "files": [
@@ -30,10 +31,10 @@
30
31
  "author": "Cumulus Authors",
31
32
  "license": "Apache-2.0",
32
33
  "dependencies": {
33
- "@cumulus/common": "16.0.3-alpha.0",
34
- "@cumulus/errors": "16.0.3-alpha.0",
35
- "@cumulus/logger": "16.0.3-alpha.0",
36
- "@cumulus/message": "16.0.3-alpha.0",
34
+ "@cumulus/common": "16.1.2",
35
+ "@cumulus/errors": "16.1.2",
36
+ "@cumulus/logger": "16.1.2",
37
+ "@cumulus/message": "16.1.2",
37
38
  "@elastic/elasticsearch": "^5.6.20",
38
39
  "aws-elasticsearch-connector": "8.2.0",
39
40
  "aws-sdk": "^2.585.0",
@@ -42,9 +43,9 @@
42
43
  "p-limit": "^1.2.0"
43
44
  },
44
45
  "devDependencies": {
45
- "@cumulus/aws-client": "16.0.3-alpha.0",
46
- "@cumulus/test-data": "16.0.3-alpha.0",
46
+ "@cumulus/aws-client": "16.1.2",
47
+ "@cumulus/test-data": "16.1.2",
47
48
  "p-each-series": "^2.1.0"
48
49
  },
49
- "gitHead": "81be18bf42487473dce42432781672da91fbecd0"
50
+ "gitHead": "3abc9c84572564db45073f448fe374ab9fad44e2"
50
51
  }