Skip to content

Commit

Permalink
fix(specs): add ignoreConjugations to AlternativesAsExact [skip-b…
Browse files Browse the repository at this point in the history
…c] (generated)

algolia/api-clients-automation#4230

Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com>
Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
  • Loading branch information
algolia-bot and shortcuts committed Dec 11, 2024
1 parent 2bf3adb commit 67cf8f3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ public enum class AlternativesAsExact(public val value: kotlin.String) {
SingleWordSynonym("singleWordSynonym"),

@SerialName(value = "multiWordsSynonym")
MultiWordsSynonym("multiWordsSynonym");
MultiWordsSynonym("multiWordsSynonym"),

@SerialName(value = "ignoreConjugations")
IgnoreConjugations("ignoreConjugations");

override fun toString(): kotlin.String = value
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ public enum class AlternativesAsExact(public val value: kotlin.String) {
SingleWordSynonym("singleWordSynonym"),

@SerialName(value = "multiWordsSynonym")
MultiWordsSynonym("multiWordsSynonym");
MultiWordsSynonym("multiWordsSynonym"),

@SerialName(value = "ignoreConjugations")
IgnoreConjugations("ignoreConjugations");

override fun toString(): kotlin.String = value
}

0 comments on commit 67cf8f3

Please sign in to comment.