@@ -1201,6 +1201,28 @@ update_proximity_precision_settings_1: |-
12011201reset_proximity_precision_settings_1 : |-
12021202 curl \
12031203 -X DELETE 'MEILISEARCH_URL/indexes/books/settings/proximity-precision'
1204+ get_facet_search_settings_1 : |-
1205+ curl \
1206+ -X GET 'MEILISEARCH_URL/indexes/INDEX_UID/settings/facet-search'
1207+ update_facet_search_settings_1 : |-
1208+ curl \
1209+ -X PUT 'MEILISEARCH_URL/indexes/INDEX_UID/settings/facet-search' \
1210+ -H 'Content-Type: application/json' \
1211+ --data-binary 'false'
1212+ reset_facet_search_settings_1 : |-
1213+ curl \
1214+ -X DELETE 'MEILISEARCH_URL/indexes/INDEX_UID/settings/facet-search'
1215+ get_prefix_search_settings_1 : |-
1216+ curl \
1217+ -X GET 'MEILISEARCH_URL/indexes/INDEX_UID/settings/prefix-search'
1218+ update_prefix_search_settings_1 : |-
1219+ curl \
1220+ -X PUT 'MEILISEARCH_URL/indexes/INDEX_UID/settings/prefix-search' \
1221+ -H 'Content-Type: application/json' \
1222+ --data-binary '"disabled"'
1223+ reset_prefix_search_settings_1 : |-
1224+ curl \
1225+ -X DELETE 'MEILISEARCH_URL/indexes/INDEX_UID/settings/prefix-search'
12041226index_settings_tutorial_api_get_setting_1 : |-
12051227 curl \
12061228 -X GET 'MEILISEARCH_URL/indexes/INDEX_NAME/settings/searchable-attributes'
@@ -1348,6 +1370,12 @@ update_localized_attribute_settings_1: |-
13481370reset_localized_attribute_settings_1 : |-
13491371 curl \
13501372 -X DELETE 'MEILISEARCH_URL/indexes/INDEX_NAME/settings/localized-attributes'
1373+ get_all_batches_1 : |-
1374+ curl \
1375+ -X GET 'http://localhost:7700/batches'
1376+ get_batch_1 : |-
1377+ curl \
1378+ -X GET 'http://localhost:7700/batches/BATCH_UID'
13511379
13521380# ## Code samples for experimental features
13531381get_embedders_1 : |-
0 commit comments