File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ update_displayed_attributes_1: |-
288
288
]);
289
289
reset_displayed_attributes_1 : |-
290
290
$client->index('movies')->resetDisplayedAttributes();
291
- get_typo_tolerance_1 :
291
+ get_typo_tolerance_1 : |-
292
292
$client->index('books')->getTypoTolerance();
293
293
update_typo_tolerance_1 : |-
294
294
$client->index('books')->updateTypoTolerance([
@@ -775,3 +775,19 @@ update_localized_attribute_settings_1: |-
775
775
]);
776
776
reset_localized_attribute_settings_1 : |-
777
777
$client->index('INDEX_NAME')->resetLocalizedAttributes();
778
+ get_facet_search_settings_1 : |-
779
+ $client->index('INDEX_NAME')->getFacetSearch();
780
+ update_facet_search_settings_1 : |-
781
+ $client->index('INDEX_NAME')->updateFacetSearch(false);
782
+ reset_facet_search_settings_1 : |-
783
+ $client->index('INDEX_NAME')->resetFacetSearch();
784
+ get_prefix_search_settings_1 : |-
785
+ $client->index('INDEX_NAME')->getPrefixSearch();
786
+ update_prefix_search_settings_1 : |-
787
+ $client->index('INDEX_NAME')->updatePrefixSearch('disabled');
788
+ reset_prefix_search_settings_1 : |-
789
+ $client->index('INDEX_NAME')->resetPrefixSearch();
790
+ get_all_batches_1 : |-
791
+ $client->getBatches();
792
+ get_batch_1 : |-
793
+ $client->getBatch(BATCH_UID);
You can’t perform that action at this time.
0 commit comments