File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -808,3 +808,20 @@ update_localized_attribute_settings_1: |-
808808 ];)
809809reset_localized_attribute_settings_1 : |-
810810 client.index('INDEX_NAME').resetLocalizedAttributes()
811+ # Meilisearch v1.12.0
812+ get_facet_search_settings_1 : |-
813+ client.index('INDEX_NAME').getFacetSearch();
814+ update_facet_search_settings_1 : |-
815+ client.index('INDEX_NAME').updateFacetSearch(false);
816+ reset_facet_search_settings_1 : |-
817+ client.index('INDEX_NAME').resetFacetSearch();
818+ get_prefix_search_settings_1 : |-
819+ client.index('INDEX_NAME').getPrefixSearch();
820+ update_prefix_search_settings_1 : |-
821+ client.index('INDEX_NAME').updatePrefixSearch('disabled');
822+ reset_prefix_search_settings_1 : |-
823+ client.index('INDEX_NAME').resetPrefixSearch();
824+ get_all_batches_1 : |-
825+ client.getBatches();
826+ get_batch_1 : |-
827+ client.getBatch(BATCH_UID);
You can’t perform that action at this time.
0 commit comments