Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto-generated code for 8.11 #2132

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/reference.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -8950,7 +8950,7 @@ client.synonyms.putSynonymRule({ set_id, rule_id, synonyms })
* *Request (object):*
** *`set_id` (string)*: The id of the synonym set to be updated with the synonym rule
** *`rule_id` (string)*: The id of the synonym rule to be updated or created
** *`synonyms` (string[])*
** *`synonyms` (string)*

[discrete]
=== tasks
Expand Down
2 changes: 1 addition & 1 deletion src/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17178,7 +17178,7 @@ export interface SynonymsPutSynonymResponse {
export interface SynonymsPutSynonymRuleRequest extends RequestBase {
set_id: Id
rule_id: Id
synonyms: SynonymsSynonymString[]
synonyms: SynonymsSynonymString
}

export type SynonymsPutSynonymRuleResponse = SynonymsSynonymsUpdateResult
Expand Down
2 changes: 1 addition & 1 deletion src/api/typesWithBodyKey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17586,7 +17586,7 @@ export interface SynonymsPutSynonymRuleRequest extends RequestBase {
rule_id: Id
/** @deprecated The use of the 'body' key has been deprecated, move the nested keys to the top level object. */
body?: {
synonyms: SynonymsSynonymString[]
synonyms: SynonymsSynonymString
}
}

Expand Down
Loading