Skip to content

Commit 3fd381d

Browse files
Merge branch 'main' into use-meilisearch-url-placeholder
2 parents cdb6420 + bf0f627 commit 3fd381d

19 files changed

+846
-51
lines changed

.code-samples.meilisearch.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1201,6 +1201,28 @@ update_proximity_precision_settings_1: |-
12011201
reset_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'
12041226
index_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: |-
13481370
reset_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
13531381
get_embedders_1: |-

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019-2024 Meili SAS
3+
Copyright (c) 2019-2025 Meili SAS
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)