Context
Meilisearch 1.41.0 introduces support Dynamic Search Rules.
In v1.41.0, dynamic search rules allow pinning documents at the top of search results when certain criteria are matched, e.g. time-based or keywords appearing in the query.
Objective
We want to update this SDK to allow the following actions:
- Listing rules:
POST /dynamic-search-rules
- Retrieving a rule:
GET /dynamic-search-rules/{uid}
- Creating or updating a rule:
PATCH /dynamic-search-rules/{uid}
- Deleting a rule:
DELETE /dynamic-search-rules/{uid}
For more information, consult the API reference.
Tasks
Context
Meilisearch 1.41.0 introduces support Dynamic Search Rules.
In v1.41.0, dynamic search rules allow pinning documents at the top of search results when certain criteria are matched, e.g. time-based or keywords appearing in the query.
Objective
We want to update this SDK to allow the following actions:
POST /dynamic-search-rulesGET /dynamic-search-rules/{uid}PATCH /dynamic-search-rules/{uid}DELETE /dynamic-search-rules/{uid}For more information, consult the API reference.
Tasks
list_dynamic_search_rules_1,get_dynamic_search_rule_1,patch_dynamic_search_rule_1, anddelete_dynamic_search_rule_1. It should match the examples in the documentation.