elasticsearch-store 0.84.3 → 0.85.1

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/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  > An API for managing an elasticsearch index, with versioning and migration support.
6
6
 
7
- This a package within the [Teraslice](https://github.com/terascope/teraslice) monorepo. See our [documentation](https://terascope.github.io/teraslice/docs/packages/elasticsearch-store/overview) for more information or the [issues](https://github.com/terascope/teraslice/issues?q=is%3Aopen+is%3Aissue+label%3Apkg%2Felasticsearch-store) associated with this package
7
+ This is a package within the [Teraslice](https://github.com/terascope/teraslice) monorepo. See our [documentation](https://terascope.github.io/teraslice/docs/packages/elasticsearch-store/overview) for more information or the [issues](https://github.com/terascope/teraslice/issues?q=is%3Aopen+is%3Aissue+label%3Apkg%2Felasticsearch-store) associated with this package
8
8
 
9
9
  ## Contributing
10
10
 
@@ -73,19 +73,19 @@ export declare class Client {
73
73
  /**
74
74
  * Returns search hits that match the query defined in the request.
75
75
  * @param SearchParams
76
- * @returns Array of Record<string, any>
76
+ * @returns {Record<string,any>[]}
77
77
  */
78
78
  search<T = Record<string, unknown>>(params: ClientParams.SearchParams): Promise<ClientResponse.SearchResponse<T>>;
79
79
  /**
80
80
  * The multi search execution of several searches within the same API request
81
81
  * @param MSearchParams
82
- * @returns Array of Record<string, any>
82
+ * @returns {Record<string,any>[]}
83
83
  */
84
84
  msearch(params: ClientParams.MSearchParams): Promise<ClientResponse.MSearchResponse>;
85
85
  /**
86
86
  * The multi get execution of multiple-get searches from a single API request
87
87
  * @param MGetParams
88
- * @returns Array of Record<string, any>
88
+ * @returns {Record<string,any>[]}
89
89
  */
90
90
  mget(params: ClientParams.MGetParams): Promise<ClientResponse.MGetResponse>;
91
91
  /**
@@ -175,7 +175,7 @@ class Client {
175
175
  /**
176
176
  * Returns search hits that match the query defined in the request.
177
177
  * @param SearchParams
178
- * @returns Array of Record<string, any>
178
+ * @returns {Record<string,any>[]}
179
179
  */
180
180
  async search(params) {
181
181
  const parsedParams = methods.convertSearchParams(params, this.distributionMeta);
@@ -185,7 +185,7 @@ class Client {
185
185
  /**
186
186
  * The multi search execution of several searches within the same API request
187
187
  * @param MSearchParams
188
- * @returns Array of Record<string, any>
188
+ * @returns {Record<string,any>[]}
189
189
  */
190
190
  async msearch(params) {
191
191
  const parsedParams = methods.convertMSearchParams(params, this.distributionMeta);
@@ -195,7 +195,7 @@ class Client {
195
195
  /**
196
196
  * The multi get execution of multiple-get searches from a single API request
197
197
  * @param MGetParams
198
- * @returns Array of Record<string, any>
198
+ * @returns {Record<string,any>[]}
199
199
  */
200
200
  async mget(params) {
201
201
  const parsedParams = methods.convertMGetParams(params, this.distributionMeta);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "elasticsearch-store",
3
3
  "displayName": "Elasticsearch Store",
4
- "version": "0.84.3",
4
+ "version": "0.85.1",
5
5
  "description": "An API for managing an elasticsearch index, with versioning and migration support.",
6
6
  "homepage": "https://github.com/terascope/teraslice/tree/master/packages/elasticsearch-store#readme",
7
7
  "bugs": {
@@ -29,10 +29,10 @@
29
29
  "test:watch": "ts-scripts test --watch . --"
30
30
  },
31
31
  "dependencies": {
32
- "@terascope/data-mate": "^0.56.3",
33
- "@terascope/data-types": "^0.50.3",
34
- "@terascope/types": "^0.17.3",
35
- "@terascope/utils": "^0.59.3",
32
+ "@terascope/data-mate": "^0.57.1",
33
+ "@terascope/data-types": "^0.51.0",
34
+ "@terascope/types": "^0.18.0",
35
+ "@terascope/utils": "^0.60.0",
36
36
  "ajv": "^6.12.6",
37
37
  "elasticsearch6": "npm:@elastic/elasticsearch@^6.7.0",
38
38
  "elasticsearch7": "npm:@elastic/elasticsearch@^7.0.0",
@@ -41,7 +41,7 @@
41
41
  "opensearch2": "npm:@opensearch-project/opensearch@^2.2.1",
42
42
  "setimmediate": "^1.0.5",
43
43
  "uuid": "^9.0.1",
44
- "xlucene-translator": "^0.44.3"
44
+ "xlucene-translator": "^0.45.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/uuid": "^9.0.8"