|
8 | 8 | __version__ = "4.26.0" |
9 | 9 |
|
10 | 10 |
|
| 11 | +from .action import Action |
| 12 | +from .advanced_syntax_features import AdvancedSyntaxFeatures |
| 13 | +from .alternatives_as_exact import AlternativesAsExact |
| 14 | +from .anchoring import Anchoring |
11 | 15 | from .around_precision import AroundPrecision |
12 | 16 | from .around_radius import AroundRadius |
13 | 17 | from .around_radius_all import AroundRadiusAll |
14 | 18 | from .banner import Banner |
15 | 19 | from .banner_image import BannerImage |
16 | 20 | from .banner_image_url import BannerImageUrl |
17 | 21 | from .banner_link import BannerLink |
| 22 | +from .base_injection_query_parameters import BaseInjectionQueryParameters |
| 23 | +from .batch_composition_action import BatchCompositionAction |
| 24 | +from .batch_params import BatchParams |
| 25 | +from .boolean_string import BooleanString |
| 26 | +from .composition import Composition |
| 27 | +from .composition_behavior import CompositionBehavior |
18 | 28 | from .composition_id_ranking_info import CompositionIdRankingInfo |
| 29 | +from .composition_rule import CompositionRule |
| 30 | +from .composition_rule_consequence import CompositionRuleConsequence |
| 31 | +from .composition_rules_batch_params import CompositionRulesBatchParams |
19 | 32 | from .composition_run_applied_rules import CompositionRunAppliedRules |
20 | 33 | from .composition_run_search_response import CompositionRunSearchResponse |
| 34 | +from .composition_source import CompositionSource |
| 35 | +from .composition_source_search import CompositionSourceSearch |
21 | 36 | from .compositions_search_response import CompositionsSearchResponse |
| 37 | +from .condition import Condition |
| 38 | +from .delete_composition_action import DeleteCompositionAction |
| 39 | +from .delete_composition_rule_action import DeleteCompositionRuleAction |
| 40 | +from .distinct import Distinct |
22 | 41 | from .error_base import ErrorBase |
| 42 | +from .exact_on_single_word_query import ExactOnSingleWordQuery |
23 | 43 | from .exhaustive import Exhaustive |
| 44 | +from .external import External |
24 | 45 | from .external_injected_item import ExternalInjectedItem |
25 | 46 | from .external_injection import ExternalInjection |
| 47 | +from .external_ordering import ExternalOrdering |
| 48 | +from .external_source import ExternalSource |
26 | 49 | from .facet_filters import FacetFilters |
27 | 50 | from .facet_hits import FacetHits |
28 | 51 | from .facet_ordering import FacetOrdering |
29 | 52 | from .facet_stats import FacetStats |
30 | 53 | from .facets import Facets |
| 54 | +from .get_task_response import GetTaskResponse |
31 | 55 | from .highlight_result import HighlightResult |
32 | 56 | from .highlight_result_option import HighlightResultOption |
33 | 57 | from .hit import Hit |
34 | 58 | from .hit_metadata import HitMetadata |
35 | 59 | from .hit_ranking_info import HitRankingInfo |
| 60 | +from .ignore_plurals import IgnorePlurals |
| 61 | +from .injected_item import InjectedItem |
| 62 | +from .injected_item_hits_metadata import InjectedItemHitsMetadata |
| 63 | +from .injected_item_metadata import InjectedItemMetadata |
| 64 | +from .injected_item_source import InjectedItemSource |
| 65 | +from .injection import Injection |
36 | 66 | from .inside_bounding_box import InsideBoundingBox |
| 67 | +from .list_compositions_response import ListCompositionsResponse |
| 68 | +from .main import Main |
| 69 | +from .main_injection_query_parameters import MainInjectionQueryParameters |
37 | 70 | from .match_level import MatchLevel |
38 | 71 | from .matched_geo_location import MatchedGeoLocation |
| 72 | +from .multiple_batch_request import MultipleBatchRequest |
| 73 | +from .multiple_batch_response import MultipleBatchResponse |
39 | 74 | from .numeric_filters import NumericFilters |
40 | 75 | from .optional_filters import OptionalFilters |
| 76 | +from .optional_words import OptionalWords |
41 | 77 | from .params import Params |
42 | 78 | from .personalization import Personalization |
| 79 | +from .query_type import QueryType |
43 | 80 | from .range import Range |
44 | 81 | from .redirect import Redirect |
45 | 82 | from .redirect_rule_index_data import RedirectRuleIndexData |
46 | 83 | from .redirect_rule_index_metadata import RedirectRuleIndexMetadata |
47 | 84 | from .redirect_url import RedirectURL |
| 85 | +from .remove_stop_words import RemoveStopWords |
| 86 | +from .remove_words_if_no_results import RemoveWordsIfNoResults |
48 | 87 | from .rendering_content import RenderingContent |
49 | 88 | from .request_body import RequestBody |
50 | 89 | from .results_composition_info_response import ResultsCompositionInfoResponse |
51 | 90 | from .results_injected_item_applied_rules_info_response import ( |
52 | 91 | ResultsInjectedItemAppliedRulesInfoResponse, |
53 | 92 | ) |
54 | 93 | from .results_injected_item_info_response import ResultsInjectedItemInfoResponse |
| 94 | +from .rules_batch_composition_action import RulesBatchCompositionAction |
| 95 | +from .rules_multiple_batch_request import RulesMultipleBatchRequest |
| 96 | +from .rules_multiple_batch_response import RulesMultipleBatchResponse |
| 97 | +from .search import Search |
| 98 | +from .search_composition_rules_params import SearchCompositionRulesParams |
| 99 | +from .search_composition_rules_response import SearchCompositionRulesResponse |
55 | 100 | from .search_for_facet_values_params import SearchForFacetValuesParams |
56 | 101 | from .search_for_facet_values_request import SearchForFacetValuesRequest |
57 | 102 | from .search_for_facet_values_response import SearchForFacetValuesResponse |
58 | 103 | from .search_for_facet_values_results import SearchForFacetValuesResults |
59 | 104 | from .search_response import SearchResponse |
60 | 105 | from .search_results_item import SearchResultsItem |
| 106 | +from .search_source import SearchSource |
61 | 107 | from .snippet_result import SnippetResult |
62 | 108 | from .snippet_result_option import SnippetResultOption |
63 | 109 | from .sort_remaining_by import SortRemainingBy |
64 | 110 | from .supported_language import SupportedLanguage |
| 111 | +from .task_id_response import TaskIDResponse |
| 112 | +from .task_status import TaskStatus |
| 113 | +from .time_range import TimeRange |
| 114 | +from .typo_tolerance import TypoTolerance |
| 115 | +from .typo_tolerance_enum import TypoToleranceEnum |
65 | 116 | from .value import Value |
66 | 117 | from .widgets import Widgets |
67 | 118 |
|
68 | 119 | __all__ = ( |
| 120 | + "Action", |
| 121 | + "AdvancedSyntaxFeatures", |
| 122 | + "AlternativesAsExact", |
| 123 | + "Anchoring", |
69 | 124 | "AroundPrecision", |
70 | 125 | "AroundRadius", |
71 | 126 | "AroundRadiusAll", |
72 | 127 | "Banner", |
73 | 128 | "BannerImage", |
74 | 129 | "BannerImageUrl", |
75 | 130 | "BannerLink", |
| 131 | + "BaseInjectionQueryParameters", |
| 132 | + "BatchCompositionAction", |
| 133 | + "BatchParams", |
| 134 | + "BooleanString", |
| 135 | + "Composition", |
| 136 | + "CompositionBehavior", |
76 | 137 | "CompositionIdRankingInfo", |
| 138 | + "CompositionRule", |
| 139 | + "CompositionRuleConsequence", |
| 140 | + "CompositionRulesBatchParams", |
77 | 141 | "CompositionRunAppliedRules", |
78 | 142 | "CompositionRunSearchResponse", |
| 143 | + "CompositionSource", |
| 144 | + "CompositionSourceSearch", |
79 | 145 | "CompositionsSearchResponse", |
| 146 | + "Condition", |
| 147 | + "DeleteCompositionAction", |
| 148 | + "DeleteCompositionRuleAction", |
| 149 | + "Distinct", |
80 | 150 | "ErrorBase", |
| 151 | + "ExactOnSingleWordQuery", |
81 | 152 | "Exhaustive", |
| 153 | + "External", |
82 | 154 | "ExternalInjectedItem", |
83 | 155 | "ExternalInjection", |
| 156 | + "ExternalOrdering", |
| 157 | + "ExternalSource", |
84 | 158 | "FacetFilters", |
85 | 159 | "FacetHits", |
86 | 160 | "FacetOrdering", |
87 | 161 | "FacetStats", |
88 | 162 | "Facets", |
| 163 | + "GetTaskResponse", |
89 | 164 | "HighlightResult", |
90 | 165 | "HighlightResultOption", |
91 | 166 | "Hit", |
92 | 167 | "HitMetadata", |
93 | 168 | "HitRankingInfo", |
| 169 | + "IgnorePlurals", |
| 170 | + "InjectedItem", |
| 171 | + "InjectedItemHitsMetadata", |
| 172 | + "InjectedItemMetadata", |
| 173 | + "InjectedItemSource", |
| 174 | + "Injection", |
94 | 175 | "InsideBoundingBox", |
| 176 | + "ListCompositionsResponse", |
| 177 | + "Main", |
| 178 | + "MainInjectionQueryParameters", |
95 | 179 | "MatchLevel", |
96 | 180 | "MatchedGeoLocation", |
| 181 | + "MultipleBatchRequest", |
| 182 | + "MultipleBatchResponse", |
97 | 183 | "NumericFilters", |
98 | 184 | "OptionalFilters", |
| 185 | + "OptionalWords", |
99 | 186 | "Params", |
100 | 187 | "Personalization", |
| 188 | + "QueryType", |
101 | 189 | "Range", |
102 | 190 | "Redirect", |
103 | 191 | "RedirectRuleIndexData", |
104 | 192 | "RedirectRuleIndexMetadata", |
105 | 193 | "RedirectURL", |
| 194 | + "RemoveStopWords", |
| 195 | + "RemoveWordsIfNoResults", |
106 | 196 | "RenderingContent", |
107 | 197 | "RequestBody", |
108 | 198 | "ResultsCompositionInfoResponse", |
109 | 199 | "ResultsInjectedItemAppliedRulesInfoResponse", |
110 | 200 | "ResultsInjectedItemInfoResponse", |
| 201 | + "RulesBatchCompositionAction", |
| 202 | + "RulesMultipleBatchRequest", |
| 203 | + "RulesMultipleBatchResponse", |
| 204 | + "Search", |
| 205 | + "SearchCompositionRulesParams", |
| 206 | + "SearchCompositionRulesResponse", |
111 | 207 | "SearchForFacetValuesParams", |
112 | 208 | "SearchForFacetValuesRequest", |
113 | 209 | "SearchForFacetValuesResponse", |
114 | 210 | "SearchForFacetValuesResults", |
115 | 211 | "SearchResponse", |
116 | 212 | "SearchResultsItem", |
| 213 | + "SearchSource", |
117 | 214 | "SnippetResult", |
118 | 215 | "SnippetResultOption", |
119 | 216 | "SortRemainingBy", |
120 | 217 | "SupportedLanguage", |
| 218 | + "TaskIDResponse", |
| 219 | + "TaskStatus", |
| 220 | + "TimeRange", |
| 221 | + "TypoTolerance", |
| 222 | + "TypoToleranceEnum", |
121 | 223 | "Value", |
122 | 224 | "Widgets", |
123 | 225 | ) |
0 commit comments