Skip to content

Commit e352180

Browse files
committed
Regenerated client
1 parent fea244f commit e352180

File tree

136 files changed

+626
-286
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+626
-286
lines changed

.babelrc

100644100755
File mode changed.

.gitignore

100644100755
File mode changed.

.openapi-generator-ignore

100644100755
File mode changed.

.openapi-generator/FILES

100644100755
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ docs/AggCompositeSource.md
88
docs/AggCompositeTerm.md
99
docs/AggTerms.md
1010
docs/Aggregation.md
11+
docs/AutocompleteRequest.md
1112
docs/BoolFilter.md
1213
docs/BulkResponse.md
1314
docs/DeleteDocumentRequest.md
@@ -57,6 +58,7 @@ src/model/AggCompositeSource.js
5758
src/model/AggCompositeTerm.js
5859
src/model/AggTerms.js
5960
src/model/Aggregation.js
61+
src/model/AutocompleteRequest.js
6062
src/model/BoolFilter.js
6163
src/model/BulkResponse.js
6264
src/model/DeleteDocumentRequest.js
@@ -98,6 +100,7 @@ test/model/AggCompositeSource.spec.js
98100
test/model/AggCompositeTerm.spec.js
99101
test/model/AggTerms.spec.js
100102
test/model/Aggregation.spec.js
103+
test/model/AutocompleteRequest.spec.js
101104
test/model/BoolFilter.spec.js
102105
test/model/BulkResponse.spec.js
103106
test/model/DeleteDocumentRequest.spec.js

.openapi-generator/VERSION

100644100755
File mode changed.

.travis.yml

100644100755
File mode changed.

README.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33
Сlient for Manticore Search.
44

5-
❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-javascript/tree/6.0.0
65

7-
❗ WARNING: the current version has breaking changes compared to the previous release https://github.com/manticoresoftware/manticoresearch-javascript/tree/5.0.0
6+
❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-javascript/tree/7.0.0
87

9-
## Requirements
8+
## Compatibility Table
109

1110
Minimum Manticore Search version is 2.5.1 with HTTP protocol enabled.
1211

1312
| **manticoresearch-javascript* | **Manticore Search** | **Node** | **Compatibility** |
1413
| ------------------------------ | ----------------------------------- | ------------------- | ------------------------|
1514
| `manticoresearch-dev` | `dev` (latest development version) | Node 18 or newer | ✅ Fully Compatible |
1615
| 6.0.0 or newer | 7.0.0 or newer | Node 18 or newer | ✅ Fully Compatible |
16+
| 6.0.0 or newer | 6.2.1 to 7.0.0 | Node 18 or newer | ⚠️ Partially Compatible |
1717
| 3.3.1 to 6.0.0 | 7.0.0 or newer | Node 10 or newer | ⚠️ Partially Compatible |
1818
| 3.3.1 to 6.0.0 | 6.2.1 to 7.0.0 | Node 10 or newer | ✅ Fully Compatible |
1919
| 3.0.0 to 3.3.1 | 6.2.0 or newer | Node 10 or newer | ⚠️ Partially Compatible |
@@ -22,7 +22,6 @@ Minimum Manticore Search version is 2.5.1 with HTTP protocol enabled.
2222
| 2.0.2 to 2.0.3 | 4.0.2 to 4.2.1 | Node 8 or newer | ⚠️ Partially Compatible |
2323
| 2.0.2 to 2.0.3 | 2.5.1 to 4.0.2 | Node 8 or newer | ✅ Fully Compatible |
2424

25-
2625
## Installation
2726

2827
```shell
@@ -75,14 +74,15 @@ All URIs are relative to *http://127.0.0.1:9308*
7574

7675
Class | Method | HTTP request | Description
7776
------------ | ------------- | ------------- | -------------
78-
*Manticoresearch.IndexApi* | [**bulk**](docs/IndexApi.md#bulk) | **POST** /bulk | Bulk index operations
79-
*Manticoresearch.IndexApi* | [**callDelete**](docs/IndexApi.md#callDelete) | **POST** /delete | Delete a document in an index
80-
*Manticoresearch.IndexApi* | [**insert**](docs/IndexApi.md#insert) | **POST** /insert | Create a new document in an index
81-
*Manticoresearch.IndexApi* | [**partialReplace**](docs/IndexApi.md#partialReplace) | **POST** /{index}/_update/{id} | Partially replaces a document in an index
82-
*Manticoresearch.IndexApi* | [**replace**](docs/IndexApi.md#replace) | **POST** /replace | Replace new document in an index
83-
*Manticoresearch.IndexApi* | [**update**](docs/IndexApi.md#update) | **POST** /update | Update a document in an index
84-
*Manticoresearch.SearchApi* | [**percolate**](docs/SearchApi.md#percolate) | **POST** /pq/{index}/search | Perform reverse search on a percolate index
85-
*Manticoresearch.SearchApi* | [**search**](docs/SearchApi.md#search) | **POST** /search | Performs a search on an index
77+
*Manticoresearch.IndexApi* | [**bulk**](docs/IndexApi.md#bulk) | **POST** /bulk | Bulk table operations
78+
*Manticoresearch.IndexApi* | [**callDelete**](docs/IndexApi.md#callDelete) | **POST** /delete | Delete a document in a table
79+
*Manticoresearch.IndexApi* | [**insert**](docs/IndexApi.md#insert) | **POST** /insert | Create a new document in a table
80+
*Manticoresearch.IndexApi* | [**partialReplace**](docs/IndexApi.md#partialReplace) | **POST** /{table}/_update/{id} | Partially replaces a document in a table
81+
*Manticoresearch.IndexApi* | [**replace**](docs/IndexApi.md#replace) | **POST** /replace | Replace new document in a table
82+
*Manticoresearch.IndexApi* | [**update**](docs/IndexApi.md#update) | **POST** /update | Update a document in a table
83+
*Manticoresearch.SearchApi* | [**autocomplete**](docs/SearchApi.md#autocomplete) | **POST** /autocomplete | Performs an autocomplete search on a table
84+
*Manticoresearch.SearchApi* | [**percolate**](docs/SearchApi.md#percolate) | **POST** /pq/{table}/search | Perform reverse search on a percolate table
85+
*Manticoresearch.SearchApi* | [**search**](docs/SearchApi.md#search) | **POST** /search | Performs a search on a table
8686
*Manticoresearch.UtilsApi* | [**sql**](docs/UtilsApi.md#sql) | **POST** /sql | Perform SQL requests
8787

8888

@@ -93,6 +93,7 @@ Class | Method | HTTP request | Description
9393
- [Manticoresearch.AggCompositeTerm](docs/AggCompositeTerm.md)
9494
- [Manticoresearch.AggTerms](docs/AggTerms.md)
9595
- [Manticoresearch.Aggregation](docs/Aggregation.md)
96+
- [Manticoresearch.AutocompleteRequest](docs/AutocompleteRequest.md)
9697
- [Manticoresearch.BoolFilter](docs/BoolFilter.md)
9798
- [Manticoresearch.BulkResponse](docs/BulkResponse.md)
9899
- [Manticoresearch.DeleteDocumentRequest](docs/DeleteDocumentRequest.md)

docs/AggComposite.md

100644100755
File mode changed.

docs/AggCompositeSource.md

100644100755
File mode changed.

docs/AggCompositeTerm.md

100644100755
File mode changed.

0 commit comments

Comments
 (0)