action meilisearch_update_settings { label: "Update settings" description: "Update settings" provider: meilisearch method: PATCH path: "/indexes/books/settings" encoding: json input: { type: "object" properties: { displayedAttributes: { type: "array" items: { type: "string" } } filterableAttributes: { type: "array" items: { type: "string" } } searchableAttributes: { type: "array" items: { type: "string" } } sortableAttributes: { type: "array" items: { type: "string" } } stopWords: { type: "array" items: { type: "string" } } } } output: { type: "object" additionalProperties: true } }