Following this central issue
Changes
localizedAttributes and the sub-methods associated to itlocalesUsage: https://meilisearch.notion.site/v1-10-Language-settings-usage-26c5d98b553349d9abacbe7aff698e4e
locales to the search methods (GET and POST)updateSettings route can accept the new localizedAttributes settinggetLocalizedAttributes, updateLocalizedAttributes and resetLocalizedAttributes corresponding to the sub settings GET/PUT/DELETE routessearch_parameter_reference_locales_1: |-
client.index('INDEX_NAME').search('進撃の巨人', { locales: ['jpn'] })
get_localized_attribute_settings_1: |-
client.index('INDEX_NAME').getLocalizedAttributes()
update_localized_attribute_settings_1: |-
client.index('INDEX_NAME').updateLocalizedAttributes([
{ attributePatterns: ['jpn'], locales: ['*_ja'] },
])
reset_localized_attribute_settings_1: |-
client.index('INDEX_NAME').resetLocalizedAttributes()