Skip to content

Commit 1a91bdb

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 7985624 commit 1a91bdb

13 files changed

+57
-15
lines changed

Sources/Recommend/Models/FallbackParams.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,11 @@ public struct FallbackParams: Codable, JSONEncodable {
182182
/// or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to
183183
/// unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
184184
public var queryLanguages: [RecommendSupportedLanguage]?
185-
/// Whether to split compound words into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
185+
/// Whether to split compound words in the query into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
186186
/// Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
187+
/// Decompounding doesn't work for words with [non-spacing mark Unicode
188+
/// characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
189+
/// decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
187190
public var decompoundQuery: Bool?
188191
/// Whether to enable rules.
189192
public var enableRules: Bool?

Sources/Recommend/Models/RecommendIndexSettingsAsSearchParams.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,11 @@ public struct RecommendIndexSettingsAsSearchParams: Codable, JSONEncodable {
8686
/// or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to
8787
/// unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
8888
public var queryLanguages: [RecommendSupportedLanguage]?
89-
/// Whether to split compound words into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
89+
/// Whether to split compound words in the query into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
9090
/// Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
91+
/// Decompounding doesn't work for words with [non-spacing mark Unicode
92+
/// characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
93+
/// decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
9194
public var decompoundQuery: Bool?
9295
/// Whether to enable rules.
9396
public var enableRules: Bool?

Sources/Recommend/Models/RecommendSearchParams.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,11 @@ public struct RecommendSearchParams: Codable, JSONEncodable {
182182
/// or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to
183183
/// unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
184184
public var queryLanguages: [RecommendSupportedLanguage]?
185-
/// Whether to split compound words into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
185+
/// Whether to split compound words in the query into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
186186
/// Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
187+
/// Decompounding doesn't work for words with [non-spacing mark Unicode
188+
/// characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
189+
/// decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
187190
public var decompoundQuery: Bool?
188191
/// Whether to enable rules.
189192
public var enableRules: Bool?

Sources/Recommend/Models/RecommendSearchParamsObject.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,11 @@ public struct RecommendSearchParamsObject: Codable, JSONEncodable {
183183
/// or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to
184184
/// unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
185185
public var queryLanguages: [RecommendSupportedLanguage]?
186-
/// Whether to split compound words into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
186+
/// Whether to split compound words in the query into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
187187
/// Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
188+
/// Decompounding doesn't work for words with [non-spacing mark Unicode
189+
/// characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
190+
/// decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
188191
public var decompoundQuery: Bool?
189192
/// Whether to enable rules.
190193
public var enableRules: Bool?

Sources/Search/Models/BaseIndexSettings.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ public struct BaseIndexSettings: Codable, JSONEncodable {
5252
/// individual words, and are particularly prevalent in Germanic languages—for example, \"firefighter\". With
5353
/// decompounding, the individual components are indexed separately. You can specify different lists for different
5454
/// languages. Decompounding is supported for these languages: Dutch (`nl`), German (`de`), Finnish (`fi`), Danish
55-
/// (`da`), Swedish (`sv`), and Norwegian (`no`).
55+
/// (`da`), Swedish (`sv`), and Norwegian (`no`). Decompounding doesn't work for words with [non-spacing mark
56+
/// Unicode characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't
57+
/// be decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
5658
public var decompoundedAttributes: AnyCodable?
5759
/// Languages for language-specific processing steps, such as word detection and dictionary settings. **You should
5860
/// always specify an indexing language.** If you don't specify an indexing language, the search engine uses all

Sources/Search/Models/BrowseParamsObject.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,11 @@ public struct BrowseParamsObject: Codable, JSONEncodable {
182182
/// or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to
183183
/// unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
184184
public var queryLanguages: [SearchSupportedLanguage]?
185-
/// Whether to split compound words into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
185+
/// Whether to split compound words in the query into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
186186
/// Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
187+
/// Decompounding doesn't work for words with [non-spacing mark Unicode
188+
/// characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
189+
/// decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
187190
public var decompoundQuery: Bool?
188191
/// Whether to enable rules.
189192
public var enableRules: Bool?

Sources/Search/Models/IndexSettings.swift

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ public struct IndexSettings: Codable, JSONEncodable {
5353
/// individual words, and are particularly prevalent in Germanic languages—for example, \"firefighter\". With
5454
/// decompounding, the individual components are indexed separately. You can specify different lists for different
5555
/// languages. Decompounding is supported for these languages: Dutch (`nl`), German (`de`), Finnish (`fi`), Danish
56-
/// (`da`), Swedish (`sv`), and Norwegian (`no`).
56+
/// (`da`), Swedish (`sv`), and Norwegian (`no`). Decompounding doesn't work for words with [non-spacing mark
57+
/// Unicode characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't
58+
/// be decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
5759
public var decompoundedAttributes: AnyCodable?
5860
/// Languages for language-specific processing steps, such as word detection and dictionary settings. **You should
5961
/// always specify an indexing language.** If you don't specify an indexing language, the search engine uses all
@@ -176,8 +178,11 @@ public struct IndexSettings: Codable, JSONEncodable {
176178
/// or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to
177179
/// unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
178180
public var queryLanguages: [SearchSupportedLanguage]?
179-
/// Whether to split compound words into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
181+
/// Whether to split compound words in the query into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
180182
/// Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
183+
/// Decompounding doesn't work for words with [non-spacing mark Unicode
184+
/// characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
185+
/// decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
181186
public var decompoundQuery: Bool?
182187
/// Whether to enable rules.
183188
public var enableRules: Bool?

Sources/Search/Models/SearchConsequenceParams.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,11 @@ public struct SearchConsequenceParams: Codable, JSONEncodable {
180180
/// or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to
181181
/// unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
182182
public var queryLanguages: [SearchSupportedLanguage]?
183-
/// Whether to split compound words into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
183+
/// Whether to split compound words in the query into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
184184
/// Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
185+
/// Decompounding doesn't work for words with [non-spacing mark Unicode
186+
/// characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
187+
/// decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
185188
public var decompoundQuery: Bool?
186189
/// Whether to enable rules.
187190
public var enableRules: Bool?

Sources/Search/Models/SearchForFacets.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,11 @@ public struct SearchForFacets: Codable, JSONEncodable {
184184
/// or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to
185185
/// unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
186186
public var queryLanguages: [SearchSupportedLanguage]?
187-
/// Whether to split compound words into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
187+
/// Whether to split compound words in the query into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
188188
/// Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
189+
/// Decompounding doesn't work for words with [non-spacing mark Unicode
190+
/// characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
191+
/// decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
189192
public var decompoundQuery: Bool?
190193
/// Whether to enable rules.
191194
public var enableRules: Bool?

Sources/Search/Models/SearchForHits.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,11 @@ public struct SearchForHits: Codable, JSONEncodable {
184184
/// or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to
185185
/// unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
186186
public var queryLanguages: [SearchSupportedLanguage]?
187-
/// Whether to split compound words into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
187+
/// Whether to split compound words in the query into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
188188
/// Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
189+
/// Decompounding doesn't work for words with [non-spacing mark Unicode
190+
/// characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
191+
/// decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
189192
public var decompoundQuery: Bool?
190193
/// Whether to enable rules.
191194
public var enableRules: Bool?

Sources/Search/Models/SearchIndexSettingsAsSearchParams.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,11 @@ public struct SearchIndexSettingsAsSearchParams: Codable, JSONEncodable {
8686
/// or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to
8787
/// unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
8888
public var queryLanguages: [SearchSupportedLanguage]?
89-
/// Whether to split compound words into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
89+
/// Whether to split compound words in the query into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
9090
/// Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
91+
/// Decompounding doesn't work for words with [non-spacing mark Unicode
92+
/// characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
93+
/// decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
9194
public var decompoundQuery: Bool?
9295
/// Whether to enable rules.
9396
public var enableRules: Bool?

Sources/Search/Models/SearchSearchParamsObject.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,11 @@ public struct SearchSearchParamsObject: Codable, JSONEncodable {
183183
/// or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to
184184
/// unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
185185
public var queryLanguages: [SearchSupportedLanguage]?
186-
/// Whether to split compound words into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
186+
/// Whether to split compound words in the query into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words).
187187
/// Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.
188+
/// Decompounding doesn't work for words with [non-spacing mark Unicode
189+
/// characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be
190+
/// decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
188191
public var decompoundQuery: Bool?
189192
/// Whether to enable rules.
190193
public var enableRules: Bool?

0 commit comments

Comments
 (0)