Skip to content

Commit 5e3571e

Browse files
committed
Regenerated the client
1 parent 121a76d commit 5e3571e

Some content is hidden

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

81 files changed

+433
-237
lines changed

.openapi-generator/FILES

Lines changed: 6 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
@@ -60,6 +63,8 @@ src/models/_match.rs
6063
src/models/agg_composite.rs
6164
src/models/agg_composite_source.rs
6265
src/models/agg_composite_term.rs
66+
src/models/agg_date_histogram.rs
67+
src/models/agg_histogram.rs
6368
src/models/agg_terms.rs
6469
src/models/aggregation.rs
6570
src/models/autocomplete_request.rs
@@ -73,6 +78,7 @@ src/models/geo_distance.rs
7378
src/models/geo_distance_location_anchor.rs
7479
src/models/highlight.rs
7580
src/models/highlight_field_option.rs
81+
src/models/highlight_fields.rs
7682
src/models/hits_hits.rs
7783
src/models/insert_document_request.rs
7884
src/models/join.rs

.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

Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
[package]
22
name = "manticoresearch"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
authors = ["[email protected]"]
55
description = "Сlient for Manticore Search. "
66
license = "MIT"
77
edition = "2021"
88

99
[dependencies]
10-
tokio = {version = "1", features = ["full"]}
11-
fancy-regex = "^0.14"
1210
serde = { version = "^1.0", features = ["derive"] }
1311
serde_with = { version = "^3.8", default-features = false, features = ["base64", "std", "macros"] }
1412
serde_json = "^1.0"

docs/AggComposite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**size** | Option<**i32**> | Maximum number of composite buckets in the result | [optional]
8-
**sources** | Option<[**Vec<::std::collections::HashMap<String, crate::models::AggCompositeSource>>**](Map.md)> | | [optional]
8+
**sources** | Option<[**Vec<std::collections::HashMap<String, models::AggCompositeSource>>**](std::collections::HashMap.md)> | | [optional]
99

1010
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1111

docs/AggCompositeSource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**terms** | [**crate::models::AggCompositeTerm**](AggCompositeTerm.md) | |
7+
**terms** | [**models::AggCompositeTerm**](aggCompositeTerm.md) | |
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1010

docs/AggDateHistogram.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# AggDateHistogram
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**field** | **String** | Field to group by |
8+
**interval** | **i32** | Interval of the histogram values |
9+
**offset** | Option<**i32**> | Offset of the histogram values. Default value is 0. | [optional]
10+
**keyed** | Option<**bool**> | Flag that defines if a search response will be a dictionary with the bucket keys. Default value is false. | [optional]
11+
12+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
13+
14+

docs/AggHistogram.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# AggHistogram
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**field** | **String** | Field to group by |
8+
**interval** | **i32** | Interval of the histogram values |
9+
**offset** | Option<**i32**> | Offset of the histogram values. Default value is 0. | [optional]
10+
**keyed** | Option<**bool**> | Flag that defines if a search response will be a dictionary with the bucket keys. Default value is false. | [optional]
11+
12+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
13+
14+

docs/Aggregation.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**terms** | Option<[**crate::models::AggTerms**](AggTerms.md)> | | [optional]
8-
**sort** | Option<[**Vec<serde_json::Value>**](Serde_json::Value.md)> | | [optional]
9-
**composite** | Option<[**crate::models::AggComposite**](AggComposite.md)> | | [optional]
7+
**terms** | Option<[**models::AggTerms**](aggTerms.md)> | | [optional]
8+
**sort** | Option<[**Vec<serde_json::Value>**](serde_json::Value.md)> | | [optional]
9+
**composite** | Option<[**models::AggComposite**](aggComposite.md)> | | [optional]
10+
**histogram** | Option<[**models::AggHistogram**](aggHistogram.md)> | | [optional]
1011

1112
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1213

docs/AutocompleteRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**table** | **String** | The table to perform the search on |
88
**query** | **String** | The beginning of the string to autocomplete |
9-
**options** | Option<serde_json::Value> | Autocomplete options - layouts: A comma-separated string of keyboard layout codes to validate and check for spell correction. Available options - us, ru, ua, se, pt, no, it, gr, uk, fr, es, dk, de, ch, br, bg, be. By default, all are enabled. - fuzziness: (0,1 or 2) Maximum Levenshtein distance for finding typos. Set to 0 to disable fuzzy matching. Default is 2 - prepend: true/false If true, adds an asterisk before the last word for prefix expansion (e.g., *word ) - append: true/false If true, adds an asterisk after the last word for prefix expansion (e.g., word* ) - expansion_len: Number of characters to expand in the last word. Default is 10. | [optional]
9+
**options** | Option<[**serde_json::Value**](.md)> | Autocomplete options - layouts: A comma-separated string of keyboard layout codes to validate and check for spell correction. Available options - us, ru, ua, se, pt, no, it, gr, uk, fr, es, dk, de, ch, br, bg, be. By default, all are enabled. - fuzziness: (0,1 or 2) Maximum Levenshtein distance for finding typos. Set to 0 to disable fuzzy matching. Default is 2 - prepend: true/false If true, adds an asterisk before the last word for prefix expansion (e.g., *word ) - append: true/false If true, adds an asterisk after the last word for prefix expansion (e.g., word* ) - expansion_len: Number of characters to expand in the last word. Default is 10. | [optional]
1010

1111
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1212

docs/BoolFilter.md

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

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**must** | Option<[**Vec<crate::models::QueryFilter>**](QueryFilter.md)> | Query clauses that must match for the document to be included | [optional]
8-
**must_not** | Option<[**Vec<crate::models::QueryFilter>**](QueryFilter.md)> | Query clauses that must not match for the document to be included | [optional]
9-
**should** | Option<[**Vec<crate::models::QueryFilter>**](QueryFilter.md)> | Query clauses that should be matched, but are not required | [optional]
7+
**must** | Option<[**Vec<models::QueryFilter>**](queryFilter.md)> | Query clauses that must match for the document to be included | [optional]
8+
**must_not** | Option<[**Vec<models::QueryFilter>**](queryFilter.md)> | Query clauses that must not match for the document to be included | [optional]
9+
**should** | Option<[**Vec<models::QueryFilter>**](queryFilter.md)> | Query clauses that should be matched, but are not required | [optional]
1010

1111
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1212

0 commit comments

Comments
 (0)