Skip to content

Commit 6393280

Browse files
committed
Updated docs and changelog example
1 parent 862f0c6 commit 6393280

38 files changed

+15
-83
lines changed

CHANGELOG_EXAMPLE.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,27 @@ This release includes:
66

77
- updated sql request and error response formats to match changes in Manticore
88

9-
- BREAKING CHANGES: updated the structure of client classes to strictly match the request/response formats specified by Manticore's HTTP API
9+
- BREAKING CHANGES: updated the structure of client classes to strictly match the request/response formats specified by Manticore's JSON API
1010
(Related Github issue: https://github.com/manticoresoftware/openapi/issues/16)
1111

1212
- added classes:
13-
- [[AggCompositeSource]](./docs/AggCompositeSource.md)
13+
- [AggCompositeSource](./docs/AggCompositeSource.md)
1414
More on aggregation: https://manual.manticoresearch.com/dev/Searching/Grouping#GROUP-BY-multiple-fields-at-once
15-
- [[AggCompositeTerm]](./docs/AggCompositeTerm.md)
15+
- [AggCompositeTerm](./docs/AggCompositeTerm.md)
1616
More on aggregation: https://manual.manticoresearch.com/dev/Searching/Grouping#GROUP-BY-multiple-fields-at-once
17-
- [[HighlightFieldOption]](./docs/HighlightFieldOption.md)
17+
- [HighlightFieldOption](./docs/HighlightFieldOption.md)
1818
More on highlighting: https://manual.manticoresearch.com/dev/Searching/Highlighting#Highlighting-via-HTTP
19-
- [[Join]](./docs/Join.md)
19+
- [Join](./docs/Join.md)
2020
More on joining tables: https://manual.manticoresearch.com/dev/Searching/Joining#Joining-tables
21-
- [[JoinOn]](./docs/JoinOn.md)
21+
- [JoinOn](./docs/JoinOn.md)
2222
More on joining tables: https://manual.manticoresearch.com/dev/Searching/Joining#Joining-tables
23-
- [[JoinCond]](./docs/JoinCond.md)
23+
- [JoinCond](./docs/JoinCond.md)
2424
More on joining tables: https://manual.manticoresearch.com/dev/Searching/Joining#Joining-tables
25-
- [[KnnQuery]](./docs/KnnQuery.md)
25+
- [KnnQuery](./docs/KnnQuery.md)
2626
More on KNN search: https://manual.manticoresearch.com/dev/Searching/KNN#KNN-vector-search
27-
- [[ResponseErrorDetails]](./docs/ResponseErrorDetails.md)
28-
- [[ResponseError]](./docs/ResponseError.md)
29-
- [[SearchQuery]](./docs/SearchQuery.md)
27+
- [ResponseErrorDetails](./docs/ResponseErrorDetails.md)
28+
- [ResponseError](./docs/ResponseError.md)
29+
- [SearchQuery](./docs/SearchQuery.md)
3030
More on searching: https://manual.manticoresearch.com/dev/Searching/Intro#General-syntax
3131

3232
- removed classes:
@@ -57,13 +57,13 @@ This release includes:
5757
- SourceMultiple
5858

5959
- renamed classes:
60-
- AggregationTerms -> [[AggTerms]](./docs/AggTerms.md)
60+
- AggregationTerms -> [AggTerms](./docs/AggTerms.md)
6161
More on aggregation: https://manual.manticoresearch.com/dev/Searching/Grouping#GROUP-BY-multiple-fields-at-once
62-
- GeoDistanceFilterLocationAnchor -> [[GeoDistanceLocationAnchor]](./docs/GeoDistanceLocationAnchor.md)
62+
- GeoDistanceFilterLocationAnchor -> [GeoDistanceLocationAnchor](./docs/GeoDistanceLocationAnchor.md)
6363
More on geo filtering: https://manual.manticoresearch.com/dev/Searching/Filters#location_anchor
64-
- GeoDistanceFilter -> [[GeoDistance]](./docs/GeoDistance.md)
64+
- GeoDistanceFilter -> [GeoDistance](./docs/GeoDistance.md)
6565
More on geo filtering: https://manual.manticoresearch.com/dev/Searching/Filters#Geo-distance-filters
66-
- SourceByRules -> [[SourceRules]](./docs/SourceRules.md)
66+
- SourceByRules -> [SourceRules](./docs/SourceRules.md)
6767
More on the 'source' property:
6868
https://manual.manticoresearch.com/dev/Searching/Search_results#Source-selection
6969

docs/AggComposite.md

100644100755
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ Name | Type | Description | Notes
1414
```python
1515
from manticoresearch.models.agg_composite import AggComposite
1616

17-
# TODO update the JSON string below
18-
json = "{}"
1917
# create an instance of AggComposite from a JSON string
2018
agg_composite_instance = AggComposite.from_json(json)
2119
# print the JSON string representation of the object

docs/AggCompositeSource.md

100644100755
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ Name | Type | Description | Notes
1313
```python
1414
from manticoresearch.models.agg_composite_source import AggCompositeSource
1515

16-
# TODO update the JSON string below
17-
json = "{}"
1816
# create an instance of AggCompositeSource from a JSON string
1917
agg_composite_source_instance = AggCompositeSource.from_json(json)
2018
# print the JSON string representation of the object

docs/AggCompositeTerm.md

100644100755
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ Name | Type | Description | Notes
1313
```python
1414
from manticoresearch.models.agg_composite_term import AggCompositeTerm
1515

16-
# TODO update the JSON string below
17-
json = "{}"
1816
# create an instance of AggCompositeTerm from a JSON string
1917
agg_composite_term_instance = AggCompositeTerm.from_json(json)
2018
# print the JSON string representation of the object

docs/AggTerms.md

100644100755
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ Name | Type | Description | Notes
1414
```python
1515
from manticoresearch.models.agg_terms import AggTerms
1616

17-
# TODO update the JSON string below
18-
json = "{}"
1917
# create an instance of AggTerms from a JSON string
2018
agg_terms_instance = AggTerms.from_json(json)
2119
# print the JSON string representation of the object

docs/Aggregation.md

100644100755
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ Name | Type | Description | Notes
1414
```python
1515
from manticoresearch.models.aggregation import Aggregation
1616

17-
# TODO update the JSON string below
18-
json = "{}"
1917
# create an instance of Aggregation from a JSON string
2018
aggregation_instance = Aggregation.from_json(json)
2119
# print the JSON string representation of the object

docs/BoolFilter.md

100644100755
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ Name | Type | Description | Notes
1414
```python
1515
from manticoresearch.models.bool_filter import BoolFilter
1616

17-
# TODO update the JSON string below
18-
json = "{}"
1917
# create an instance of BoolFilter from a JSON string
2018
bool_filter_instance = BoolFilter.from_json(json)
2119
# print the JSON string representation of the object

docs/BulkResponse.md

100644100755
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ Name | Type | Description | Notes
1515
```python
1616
from manticoresearch.models.bulk_response import BulkResponse
1717

18-
# TODO update the JSON string below
19-
json = "{}"
2018
# create an instance of BulkResponse from a JSON string
2119
bulk_response_instance = BulkResponse.from_json(json)
2220
# print the JSON string representation of the object

docs/DeleteDocumentRequest.md

100644100755
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ Name | Type | Description | Notes
1616
```python
1717
from manticoresearch.models.delete_document_request import DeleteDocumentRequest
1818

19-
# TODO update the JSON string below
20-
json = "{}"
2119
# create an instance of DeleteDocumentRequest from a JSON string
2220
delete_document_request_instance = DeleteDocumentRequest.from_json(json)
2321
# print the JSON string representation of the object

docs/DeleteResponse.md

100644100755
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ Name | Type | Description | Notes
1717
```python
1818
from manticoresearch.models.delete_response import DeleteResponse
1919

20-
# TODO update the JSON string below
21-
json = "{}"
2220
# create an instance of DeleteResponse from a JSON string
2321
delete_response_instance = DeleteResponse.from_json(json)
2422
# print the JSON string representation of the object

0 commit comments

Comments
 (0)