action meilisearch_update_synonyms { label: "Update synonyms" description: "Update synonyms" provider: meilisearch method: PUT path: "/indexes/books/settings/synonyms" encoding: json input: { type: "object" properties: { "harry potter": { type: "array" items: { type: "string" } } hp: { type: "array" items: { type: "string" } } } } output: { type: "object" additionalProperties: true } }