action meilisearch_update_typo_tolerance { label: "Update typo-tolerance" description: "Update typo-tolerance" provider: meilisearch method: PATCH path: "/indexes/books/settings/typo-tolerance" encoding: json input: { type: "object" properties: { disableOnAttributes: { type: "array" items: { type: "string" } } disableOnWords: { type: "array" items: { type: "string" } } minWordSizeForTypos: { type: "object" properties: { oneTypo: { type: "number" } twoTypos: { type: "number" } } } } } output: { type: "object" additionalProperties: true } }