Skip to content

Commit 90b0967

Browse files
authored
Fix synonyms/put_synonym_rule body (elastic#2407)
synonyms is not a list, but a string in Solr format.
1 parent f0a0632 commit 90b0967

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
lines changed

output/openapi/elasticsearch-serverless-openapi.json

+1-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

+4-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/synonyms/put_synonym_rule/SynonymRulePutRequest.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ export interface Request extends RequestBase {
4242
* The synonym rule information to update
4343
*/
4444
body: {
45-
synonyms: SynonymString[]
45+
synonyms: SynonymString
4646
}
4747
}

0 commit comments

Comments
 (0)