Skip to content

Commit 723cea2

Browse files
committed
Updated SearchApi related templates and regenerated the clients
1 parent e67b172 commit 723cea2

File tree

117 files changed

+6590
-212
lines changed

Some content is hidden

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

117 files changed

+6590
-212
lines changed

.gitignore

100644100755
File mode changed.

.gitlab-ci.yml

100644100755
File mode changed.

.openapi-generator-ignore

100644100755
File mode changed.

.openapi-generator/FILES

100644100755
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,47 @@
33
.openapi-generator-ignore
44
.travis.yml
55
README.md
6+
docs/Aggregation.md
7+
docs/AttrFilter.md
8+
docs/BoolFilter.md
69
docs/BulkResponse.md
710
docs/DeleteDocumentRequest.md
811
docs/DeleteResponse.md
12+
docs/EqualsFilter.md
913
docs/ErrorResponse.md
14+
docs/Facet.md
15+
docs/FilterBoolean.md
16+
docs/FilterNumber.md
17+
docs/FilterString.md
18+
docs/FulltextFilter.md
19+
docs/GeoDistanceFilter.md
20+
docs/GeoDistanceFilterLocationAnchor.md
21+
docs/Highlight.md
22+
docs/HighlightField.md
23+
docs/InFilter.md
1024
docs/IndexApi.md
1125
docs/InsertDocumentRequest.md
26+
docs/MatchFilter.md
27+
docs/MatchOp.md
28+
docs/MatchOpFilter.md
29+
docs/MatchPhraseFilter.md
30+
docs/NotFilterBoolean.md
31+
docs/NotFilterNumber.md
32+
docs/NotFilterString.md
33+
docs/Option.md
1234
docs/PercolateRequest.md
1335
docs/PercolateRequestQuery.md
36+
docs/QueryFilter.md
37+
docs/RangeFilter.md
1438
docs/SearchApi.md
1539
docs/SearchRequest.md
1640
docs/SearchResponse.md
1741
docs/SearchResponseHits.md
42+
docs/SortMVA.md
43+
docs/SortMultiple.md
44+
docs/SortOrder.md
45+
docs/SourceByRules.md
46+
docs/SourceMultiple.md
1847
docs/SqlResponse.md
1948
docs/SuccessResponse.md
2049
docs/UpdateDocumentRequest.md
@@ -31,16 +60,45 @@ manticoresearch/apis/__init__.py
3160
manticoresearch/configuration.py
3261
manticoresearch/exceptions.py
3362
manticoresearch/model/__init__.py
63+
manticoresearch/model/aggregation.py
64+
manticoresearch/model/attr_filter.py
65+
manticoresearch/model/bool_filter.py
3466
manticoresearch/model/bulk_response.py
3567
manticoresearch/model/delete_document_request.py
3668
manticoresearch/model/delete_response.py
69+
manticoresearch/model/equals_filter.py
3770
manticoresearch/model/error_response.py
71+
manticoresearch/model/facet.py
72+
manticoresearch/model/filter_boolean.py
73+
manticoresearch/model/filter_number.py
74+
manticoresearch/model/filter_string.py
75+
manticoresearch/model/fulltext_filter.py
76+
manticoresearch/model/geo_distance_filter.py
77+
manticoresearch/model/geo_distance_filter_location_anchor.py
78+
manticoresearch/model/highlight.py
79+
manticoresearch/model/highlight_field.py
80+
manticoresearch/model/in_filter.py
3881
manticoresearch/model/insert_document_request.py
82+
manticoresearch/model/match_filter.py
83+
manticoresearch/model/match_op.py
84+
manticoresearch/model/match_op_filter.py
85+
manticoresearch/model/match_phrase_filter.py
86+
manticoresearch/model/not_filter_boolean.py
87+
manticoresearch/model/not_filter_number.py
88+
manticoresearch/model/not_filter_string.py
89+
manticoresearch/model/option.py
3990
manticoresearch/model/percolate_request.py
4091
manticoresearch/model/percolate_request_query.py
92+
manticoresearch/model/query_filter.py
93+
manticoresearch/model/range_filter.py
4194
manticoresearch/model/search_request.py
4295
manticoresearch/model/search_response.py
4396
manticoresearch/model/search_response_hits.py
97+
manticoresearch/model/sort_multiple.py
98+
manticoresearch/model/sort_mva.py
99+
manticoresearch/model/sort_order.py
100+
manticoresearch/model/source_by_rules.py
101+
manticoresearch/model/source_multiple.py
44102
manticoresearch/model/sql_response.py
45103
manticoresearch/model/success_response.py
46104
manticoresearch/model/update_document_request.py
@@ -53,18 +111,47 @@ setup.cfg
53111
setup.py
54112
test-requirements.txt
55113
test/__init__.py
114+
test/test_aggregation.py
115+
test/test_attr_filter.py
116+
test/test_bool_filter.py
56117
test/test_bulk_response.py
57118
test/test_delete_document_request.py
58119
test/test_delete_response.py
120+
test/test_equals_filter.py
59121
test/test_error_response.py
122+
test/test_facet.py
123+
test/test_filter_boolean.py
124+
test/test_filter_number.py
125+
test/test_filter_string.py
126+
test/test_fulltext_filter.py
127+
test/test_geo_distance_filter.py
128+
test/test_geo_distance_filter_location_anchor.py
129+
test/test_highlight.py
130+
test/test_highlight_field.py
131+
test/test_in_filter.py
60132
test/test_index_api.py
61133
test/test_insert_document_request.py
134+
test/test_match_filter.py
135+
test/test_match_op.py
136+
test/test_match_op_filter.py
137+
test/test_match_phrase_filter.py
138+
test/test_not_filter_boolean.py
139+
test/test_not_filter_number.py
140+
test/test_not_filter_string.py
141+
test/test_option.py
62142
test/test_percolate_request.py
63143
test/test_percolate_request_query.py
144+
test/test_query_filter.py
145+
test/test_range_filter.py
64146
test/test_search_api.py
65147
test/test_search_request.py
66148
test/test_search_response.py
67149
test/test_search_response_hits.py
150+
test/test_sort_multiple.py
151+
test/test_sort_mva.py
152+
test/test_sort_order.py
153+
test/test_source_by_rules.py
154+
test/test_source_multiple.py
68155
test/test_sql_response.py
69156
test/test_success_response.py
70157
test/test_update_document_request.py

.openapi-generator/VERSION

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

.travis.yml

100644100755
File mode changed.

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-2023, 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Low-level client for Manticore Search.
33

44

5-
❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-python/tree/2.3.0
5+
❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-python/tree/3.3.0
66

77
## Requirements.
88

docs/Aggregation.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Aggregation
2+
3+
Query aggregation object
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**name** | **str** | |
8+
**field** | **str** | |
9+
**size** | **int** | | [optional] [default to 20]
10+
11+
[[Using in search requests]](SearchApi.md#Aggregation)
12+
13+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
14+
15+

docs/AttrFilter.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# AttrFilter
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
7+
8+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
9+
10+

0 commit comments

Comments
 (0)