Skip to content

Commit a1f5e05

Browse files
algolia-botmillotp
andcommitted
chore(cts): remove flaky test (generated)
algolia/api-clients-automation#3448 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent 4c2b9ee commit a1f5e05

13 files changed

+69
-27
lines changed

src/main/scala/algoliasearch/recommend/FallbackParams.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,12 @@ import algoliasearch.recommend.SupportedLanguage._
222222
* unexpected search results. For more information, see [Language-specific
223223
* configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
224224
* @param decompoundQuery
225-
* Whether to split compound words into their building blocks. For more information, see [Word
225+
* Whether to split compound words in the query into their building blocks. For more information, see [Word
226226
* segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
227-
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
227+
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding
228+
* doesn't work for words with [non-spacing mark Unicode
229+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
230+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
228231
* @param enableRules
229232
* Whether to enable rules.
230233
* @param enablePersonalization

src/main/scala/algoliasearch/recommend/IndexSettingsAsSearchParams.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,12 @@ import algoliasearch.recommend.SupportedLanguage._
126126
* unexpected search results. For more information, see [Language-specific
127127
* configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
128128
* @param decompoundQuery
129-
* Whether to split compound words into their building blocks. For more information, see [Word
129+
* Whether to split compound words in the query into their building blocks. For more information, see [Word
130130
* segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
131-
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
131+
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding
132+
* doesn't work for words with [non-spacing mark Unicode
133+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
134+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
132135
* @param enableRules
133136
* Whether to enable rules.
134137
* @param enablePersonalization

src/main/scala/algoliasearch/recommend/SearchParams.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,12 @@ import algoliasearch.recommend.SupportedLanguage._
222222
* unexpected search results. For more information, see [Language-specific
223223
* configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
224224
* @param decompoundQuery
225-
* Whether to split compound words into their building blocks. For more information, see [Word
225+
* Whether to split compound words in the query into their building blocks. For more information, see [Word
226226
* segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
227-
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
227+
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding
228+
* doesn't work for words with [non-spacing mark Unicode
229+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
230+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
228231
* @param enableRules
229232
* Whether to enable rules.
230233
* @param enablePersonalization

src/main/scala/algoliasearch/recommend/SearchParamsObject.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,12 @@ import algoliasearch.recommend.SupportedLanguage._
222222
* unexpected search results. For more information, see [Language-specific
223223
* configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
224224
* @param decompoundQuery
225-
* Whether to split compound words into their building blocks. For more information, see [Word
225+
* Whether to split compound words in the query into their building blocks. For more information, see [Word
226226
* segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
227-
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
227+
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding
228+
* doesn't work for words with [non-spacing mark Unicode
229+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
230+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
228231
* @param enableRules
229232
* Whether to enable rules.
230233
* @param enablePersonalization

src/main/scala/algoliasearch/search/BaseIndexSettings.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ import algoliasearch.search.SupportedLanguage._
8484
* words, and are particularly prevalent in Germanic languages—for example, \"firefighter\". With decompounding, the
8585
* individual components are indexed separately. You can specify different lists for different languages.
8686
* Decompounding is supported for these languages: Dutch (`nl`), German (`de`), Finnish (`fi`), Danish (`da`),
87-
* Swedish (`sv`), and Norwegian (`no`).
87+
* Swedish (`sv`), and Norwegian (`no`). Decompounding doesn't work for words with [non-spacing mark Unicode
88+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
89+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
8890
* @param indexLanguages
8991
* Languages for language-specific processing steps, such as word detection and dictionary settings. **You should
9092
* always specify an indexing language.** If you don't specify an indexing language, the search engine uses all

src/main/scala/algoliasearch/search/BrowseParamsObject.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,12 @@ import algoliasearch.search.SupportedLanguage._
226226
* unexpected search results. For more information, see [Language-specific
227227
* configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
228228
* @param decompoundQuery
229-
* Whether to split compound words into their building blocks. For more information, see [Word
229+
* Whether to split compound words in the query into their building blocks. For more information, see [Word
230230
* segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
231-
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
231+
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding
232+
* doesn't work for words with [non-spacing mark Unicode
233+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
234+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
232235
* @param enableRules
233236
* Whether to enable rules.
234237
* @param enablePersonalization

src/main/scala/algoliasearch/search/ConsequenceParams.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,12 @@ import algoliasearch.search.SupportedLanguage._
224224
* unexpected search results. For more information, see [Language-specific
225225
* configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
226226
* @param decompoundQuery
227-
* Whether to split compound words into their building blocks. For more information, see [Word
227+
* Whether to split compound words in the query into their building blocks. For more information, see [Word
228228
* segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
229-
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
229+
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding
230+
* doesn't work for words with [non-spacing mark Unicode
231+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
232+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
230233
* @param enableRules
231234
* Whether to enable rules.
232235
* @param enablePersonalization

src/main/scala/algoliasearch/search/IndexSettings.scala

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ import algoliasearch.search.SupportedLanguage._
9090
* words, and are particularly prevalent in Germanic languages—for example, \"firefighter\". With decompounding, the
9191
* individual components are indexed separately. You can specify different lists for different languages.
9292
* Decompounding is supported for these languages: Dutch (`nl`), German (`de`), Finnish (`fi`), Danish (`da`),
93-
* Swedish (`sv`), and Norwegian (`no`).
93+
* Swedish (`sv`), and Norwegian (`no`). Decompounding doesn't work for words with [non-spacing mark Unicode
94+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
95+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
9496
* @param indexLanguages
9597
* Languages for language-specific processing steps, such as word detection and dictionary settings. **You should
9698
* always specify an indexing language.** If you don't specify an indexing language, the search engine uses all
@@ -227,9 +229,12 @@ import algoliasearch.search.SupportedLanguage._
227229
* unexpected search results. For more information, see [Language-specific
228230
* configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
229231
* @param decompoundQuery
230-
* Whether to split compound words into their building blocks. For more information, see [Word
232+
* Whether to split compound words in the query into their building blocks. For more information, see [Word
231233
* segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
232-
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
234+
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding
235+
* doesn't work for words with [non-spacing mark Unicode
236+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
237+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
233238
* @param enableRules
234239
* Whether to enable rules.
235240
* @param enablePersonalization

src/main/scala/algoliasearch/search/IndexSettingsAsSearchParams.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,12 @@ import algoliasearch.search.SupportedLanguage._
130130
* unexpected search results. For more information, see [Language-specific
131131
* configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
132132
* @param decompoundQuery
133-
* Whether to split compound words into their building blocks. For more information, see [Word
133+
* Whether to split compound words in the query into their building blocks. For more information, see [Word
134134
* segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
135-
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
135+
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding
136+
* doesn't work for words with [non-spacing mark Unicode
137+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
138+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
136139
* @param enableRules
137140
* Whether to enable rules.
138141
* @param enablePersonalization

src/main/scala/algoliasearch/search/SearchForFacets.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,12 @@ import algoliasearch.search.SupportedLanguage._
229229
* unexpected search results. For more information, see [Language-specific
230230
* configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
231231
* @param decompoundQuery
232-
* Whether to split compound words into their building blocks. For more information, see [Word
232+
* Whether to split compound words in the query into their building blocks. For more information, see [Word
233233
* segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
234-
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
234+
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding
235+
* doesn't work for words with [non-spacing mark Unicode
236+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
237+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
235238
* @param enableRules
236239
* Whether to enable rules.
237240
* @param enablePersonalization

src/main/scala/algoliasearch/search/SearchForHits.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,12 @@ import algoliasearch.search.SupportedLanguage._
229229
* unexpected search results. For more information, see [Language-specific
230230
* configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
231231
* @param decompoundQuery
232-
* Whether to split compound words into their building blocks. For more information, see [Word
232+
* Whether to split compound words in the query into their building blocks. For more information, see [Word
233233
* segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
234-
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
234+
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding
235+
* doesn't work for words with [non-spacing mark Unicode
236+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
237+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
235238
* @param enableRules
236239
* Whether to enable rules.
237240
* @param enablePersonalization

src/main/scala/algoliasearch/search/SearchParamsObject.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,12 @@ import algoliasearch.search.SupportedLanguage._
226226
* unexpected search results. For more information, see [Language-specific
227227
* configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
228228
* @param decompoundQuery
229-
* Whether to split compound words into their building blocks. For more information, see [Word
229+
* Whether to split compound words in the query into their building blocks. For more information, see [Word
230230
* segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
231-
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
231+
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding
232+
* doesn't work for words with [non-spacing mark Unicode
233+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
234+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
232235
* @param enableRules
233236
* Whether to enable rules.
234237
* @param enablePersonalization

src/main/scala/algoliasearch/search/SettingsResponse.scala

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ import algoliasearch.search.SupportedLanguage._
9090
* words, and are particularly prevalent in Germanic languages—for example, \"firefighter\". With decompounding, the
9191
* individual components are indexed separately. You can specify different lists for different languages.
9292
* Decompounding is supported for these languages: Dutch (`nl`), German (`de`), Finnish (`fi`), Danish (`da`),
93-
* Swedish (`sv`), and Norwegian (`no`).
93+
* Swedish (`sv`), and Norwegian (`no`). Decompounding doesn't work for words with [non-spacing mark Unicode
94+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
95+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
9496
* @param indexLanguages
9597
* Languages for language-specific processing steps, such as word detection and dictionary settings. **You should
9698
* always specify an indexing language.** If you don't specify an indexing language, the search engine uses all
@@ -227,9 +229,12 @@ import algoliasearch.search.SupportedLanguage._
227229
* unexpected search results. For more information, see [Language-specific
228230
* configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
229231
* @param decompoundQuery
230-
* Whether to split compound words into their building blocks. For more information, see [Word
232+
* Whether to split compound words in the query into their building blocks. For more information, see [Word
231233
* segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
232-
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
234+
* Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding
235+
* doesn't work for words with [non-spacing mark Unicode
236+
* characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
237+
* decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
233238
* @param enableRules
234239
* Whether to enable rules.
235240
* @param enablePersonalization

0 commit comments

Comments
 (0)