Skip to content

Commit 9451e54

Browse files
author
Me
committed
Regenerated the client
1 parent 832936a commit 9451e54

Some content is hidden

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

75 files changed

+892
-143
lines changed

.openapi-generator/FILES

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ README.md
66
docs/AggComposite.md
77
docs/AggCompositeSource.md
88
docs/AggCompositeTerm.md
9+
docs/AggDateHistogram.md
10+
docs/AggHistogram.md
911
docs/AggTerms.md
1012
docs/Aggregation.md
1113
docs/AutocompleteRequest.md
@@ -19,6 +21,7 @@ docs/GeoDistance.md
1921
docs/GeoDistanceLocationAnchor.md
2022
docs/Highlight.md
2123
docs/HighlightFieldOption.md
24+
docs/HighlightFields.md
2225
docs/HitsHits.md
2326
docs/IndexApi.md
2427
docs/InsertDocumentRequest.md
@@ -58,6 +61,8 @@ src/index.js
5861
src/model/AggComposite.js
5962
src/model/AggCompositeSource.js
6063
src/model/AggCompositeTerm.js
64+
src/model/AggDateHistogram.js
65+
src/model/AggHistogram.js
6166
src/model/AggTerms.js
6267
src/model/Aggregation.js
6368
src/model/AutocompleteRequest.js
@@ -71,6 +76,7 @@ src/model/GeoDistance.js
7176
src/model/GeoDistanceLocationAnchor.js
7277
src/model/Highlight.js
7378
src/model/HighlightFieldOption.js
79+
src/model/HighlightFields.js
7480
src/model/HitsHits.js
7581
src/model/InsertDocumentRequest.js
7682
src/model/Join.js
@@ -102,6 +108,8 @@ test/api/UtilsApi.spec.js
102108
test/model/AggComposite.spec.js
103109
test/model/AggCompositeSource.spec.js
104110
test/model/AggCompositeTerm.spec.js
111+
test/model/AggDateHistogram.spec.js
112+
test/model/AggHistogram.spec.js
105113
test/model/AggTerms.spec.js
106114
test/model/Aggregation.spec.js
107115
test/model/AutocompleteRequest.spec.js
@@ -115,6 +123,7 @@ test/model/GeoDistance.spec.js
115123
test/model/GeoDistanceLocationAnchor.spec.js
116124
test/model/Highlight.spec.js
117125
test/model/HighlightFieldOption.spec.js
126+
test/model/HighlightFields.spec.js
118127
test/model/HitsHits.spec.js
119128
test/model/InsertDocumentRequest.spec.js
120129
test/model/Join.spec.js

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.3.0-SNAPSHOT
1+
7.14.0

.project

Lines changed: 0 additions & 11 deletions
This file was deleted.

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2020-2023, Manticore Software LTD
3+
Copyright (c) 2020-2025, Manticore Software LTD
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Сlient for Manticore Search.
44

55

6-
❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-javascript/tree/8.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/8.1.0
77

88
## Compatibility Table
99

@@ -12,10 +12,8 @@ Minimum Manticore Search version is 2.5.1 with HTTP protocol enabled.
1212
| **manticoresearch-javascript* | **Manticore Search** | **Node** | **Compatibility** |
1313
| ------------------------------ | ----------------------------------- | ------------------- | ------------------------|
1414
| `manticoresearch-dev` | `dev` (latest development version) | Node 18 or newer | ✅ Fully Compatible |
15-
| 8.0.0 or newer | 9.2.14 or newer | Node 18 or newer | ✅ Fully Compatible |
16-
| 6.0.0 to 8.0.0 | 9.2.14 or newer | Node 18 or newer | ⚠️ Partially Compatible |
17-
| 6.0.0 to 8.0.0 | 7.0.0 to 9.2.14 | Node 18 or newer | ✅ Fully Compatible |
18-
| 6.0.0 to 8.0.0 | 6.2.1 to 7.0.0 | Node 18 or newer | ⚠️ Partially Compatible |
15+
| 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 |
1917
| 3.3.1 to 6.0.0 | 7.0.0 or newer | Node 10 or newer | ⚠️ Partially Compatible |
2018
| 3.3.1 to 6.0.0 | 6.2.1 to 7.0.0 | Node 10 or newer | ✅ Fully Compatible |
2119
| 3.0.0 to 3.3.1 | 6.2.0 or newer | Node 10 or newer | ⚠️ Partially Compatible |
@@ -93,6 +91,8 @@ Class | Method | HTTP request | Description
9391
- [Manticoresearch.AggComposite](docs/AggComposite.md)
9492
- [Manticoresearch.AggCompositeSource](docs/AggCompositeSource.md)
9593
- [Manticoresearch.AggCompositeTerm](docs/AggCompositeTerm.md)
94+
- [Manticoresearch.AggDateHistogram](docs/AggDateHistogram.md)
95+
- [Manticoresearch.AggHistogram](docs/AggHistogram.md)
9696
- [Manticoresearch.AggTerms](docs/AggTerms.md)
9797
- [Manticoresearch.Aggregation](docs/Aggregation.md)
9898
- [Manticoresearch.AutocompleteRequest](docs/AutocompleteRequest.md)
@@ -106,6 +106,7 @@ Class | Method | HTTP request | Description
106106
- [Manticoresearch.GeoDistanceLocationAnchor](docs/GeoDistanceLocationAnchor.md)
107107
- [Manticoresearch.Highlight](docs/Highlight.md)
108108
- [Manticoresearch.HighlightFieldOption](docs/HighlightFieldOption.md)
109+
- [Manticoresearch.HighlightFields](docs/HighlightFields.md)
109110
- [Manticoresearch.HitsHits](docs/HitsHits.md)
110111
- [Manticoresearch.InsertDocumentRequest](docs/InsertDocumentRequest.md)
111112
- [Manticoresearch.Join](docs/Join.md)

docs/AggDateHistogram.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Manticoresearch.AggDateHistogram
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**field** | **String** | Field to group by |
8+
**interval** | **Number** | Interval of the histogram values |
9+
**offset** | **Number** | Offset of the histogram values. Default value is 0. | [optional]
10+
**keyed** | **Boolean** | Flag that defines if a search response will be a dictionary with the bucket keys. Default value is false. | [optional]
11+
12+

docs/AggHistogram.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Manticoresearch.AggHistogram
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**field** | **String** | Field to group by |
8+
**interval** | **Number** | Interval of the histogram values |
9+
**offset** | **Number** | Offset of the histogram values. Default value is 0. | [optional]
10+
**keyed** | **Boolean** | Flag that defines if a search response will be a dictionary with the bucket keys. Default value is false. | [optional]
11+
12+

docs/Aggregation.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ Name | Type | Description | Notes
77
**terms** | [**AggTerms**](AggTerms.md) | | [optional]
88
**sort** | **[Object]** | | [optional]
99
**composite** | [**AggComposite**](AggComposite.md) | | [optional]
10+
**histogram** | [**AggHistogram**](AggHistogram.md) | | [optional]
1011

1112

docs/GeoDistance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**locationAnchor** | [**GeoDistanceLocationAnchor**](GeoDistanceLocationAnchor.md) | | [optional]
8-
**locationSource** | **Object** | Field name in the document that contains location data | [optional]
9-
**distanceType** | **Object** | Algorithm used to calculate the distance | [optional]
10-
**distance** | **Object** | The distance from the anchor point to filter results by | [optional]
8+
**locationSource** | **String** | Field name in the document that contains location data | [optional]
9+
**distanceType** | **String** | Algorithm used to calculate the distance | [optional]
10+
**distance** | **String** | The distance from the anchor point to filter results by | [optional]
1111

1212

1313

docs/GeoDistanceLocationAnchor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**lat** | **Object** | Latitude of the anchor point | [optional]
8-
**lon** | **Object** | Longitude of the anchor point | [optional]
7+
**lat** | **Number** | Latitude of the anchor point | [optional]
8+
**lon** | **Number** | Longitude of the anchor point | [optional]
99

1010

0 commit comments

Comments
 (0)