Skip to content

Commit edbcdf8

Browse files
algolia-botmillotp
andcommitted
chore: remove dead links (generated)
algolia/api-clients-automation#5472 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Pierre Millot <pierre.millot@algolia.com>
1 parent 1546c75 commit edbcdf8

22 files changed

+45
-33
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
<a href="https://discourse.algolia.com" target="_blank">Community Forum</a> •
3434
<a href="http://stackoverflow.com/questions/tagged/algolia" target="_blank">Stack Overflow</a> •
3535
<a href="https://github.com/algolia/algoliasearch-client-swift/issues" target="_blank">Report a bug</a> •
36-
<a href="https://www.algolia.com/doc/api-client/troubleshooting/faq/swift/" target="_blank">FAQ</a> •
3736
<a href="https://alg.li/support" target="_blank">Support</a>
3837
</p>
3938

@@ -157,7 +156,7 @@ You can use the old library with Swift by one of the following ways:
157156

158157
## ❓ Troubleshooting
159158

160-
Encountering an issue? Before reaching out to support, we recommend heading to our [FAQ](https://www.algolia.com/doc/api-client/troubleshooting/faq/swift/) where you will find answers for the most common issues and gotchas with the client. You can also open [a GitHub issue](https://github.com/algolia/api-clients-automation/issues/new?assignees=&labels=&projects=&template=Bug_report.md)
159+
Encountering an issue? Before reaching out to support, we recommend heading to our [FAQ](https://support.algolia.com/hc/sections/15061037630609-API-Client-FAQs) where you will find answers for the most common issues and gotchas with the client. You can also open [a GitHub issue](https://github.com/algolia/api-clients-automation/issues/new?assignees=&labels=&projects=&template=Bug_report.md)
161160

162161
## Contributing
163162

Sources/Composition/Models/BaseInjectionQueryParameters.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public struct BaseInjectionQueryParameters: Codable, JSONEncodable {
5454
public var attributesToSnippet: [String]?
5555
/// Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query
5656
/// and is required for tracking [click and conversion
57-
/// events](https://www.algolia.com/guides/sending-events/getting-started).
57+
/// events](https://www.algolia.com/doc/guides/sending-events/getting-started).
5858
public var clickAnalytics: Bool?
5959
/// 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).
6060
/// Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.

Sources/Composition/Models/CompositionExhaustive.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import Foundation
88

99
/// Whether certain properties of the search response are calculated exhaustive (exact) or approximated.
1010
public struct CompositionExhaustive: Codable, JSONEncodable {
11-
/// Whether the facet count is exhaustive (`true`) or approximate (`false`). See the [related discussion](https://support.algolia.com/hc/en-us/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate-).
11+
/// Whether the facet count is exhaustive (`true`) or approximate (`false`). See the [related
12+
/// discussion](https://support.algolia.com/hc/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate).
1213
public var facetsCount: Bool?
1314
/// The value is `false` if not all facet values are retrieved.
1415
public var facetValues: Bool?

Sources/Composition/Models/CompositionFacetHits.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public struct CompositionFacetHits: Codable, JSONEncodable {
1111
public var value: String
1212
/// Highlighted attribute value, including HTML tags.
1313
public var highlighted: String
14-
/// Number of records with this facet value. [The count may be approximated](https://support.algolia.com/hc/en-us/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate-).
14+
/// Number of records with this facet value. [The count may be approximated](https://support.algolia.com/hc/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate).
1515
public var count: Int
1616

1717
public init(value: String, highlighted: String, count: Int) {

Sources/Composition/Models/CompositionParams.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public struct CompositionParams: Codable, JSONEncodable {
7676
public var userToken: String?
7777
/// Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query
7878
/// and is required for tracking [click and conversion
79-
/// events](https://www.algolia.com/guides/sending-events/getting-started).
79+
/// events](https://www.algolia.com/doc/guides/sending-events/getting-started).
8080
public var clickAnalytics: Bool?
8181
/// Whether this search will be included in Analytics.
8282
public var analytics: Bool?

Sources/Composition/Models/MainInjectionQueryParameters.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public struct MainInjectionQueryParameters: Codable, JSONEncodable {
5454
public var attributesToSnippet: [String]?
5555
/// Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query
5656
/// and is required for tracking [click and conversion
57-
/// events](https://www.algolia.com/guides/sending-events/getting-started).
57+
/// events](https://www.algolia.com/doc/guides/sending-events/getting-started).
5858
public var clickAnalytics: Bool?
5959
/// 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).
6060
/// Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian.

Sources/Composition/Models/SearchForFacetValuesResults.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ public struct SearchForFacetValuesResults: Codable, JSONEncodable {
1111
/// Matching facet values.
1212
public var facetHits: [CompositionFacetHits]
1313
/// Whether the facet count is exhaustive (true) or approximate (false). For more information, see [Why are my facet
14-
/// and hit counts not accurate](https://support.algolia.com/hc/en-us/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate-).
14+
/// and hit counts not
15+
/// accurate](https://support.algolia.com/hc/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate).
1516
public var exhaustiveFacetsCount: Bool
1617
/// Time the server took to process the request, in milliseconds.
1718
public var processingTimeMS: Int?

Sources/Recommend/Models/BaseRecommendSearchParams.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public struct BaseRecommendSearchParams: Codable, JSONEncodable {
8181
public var synonyms: Bool?
8282
/// Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query
8383
/// and is required for tracking [click and conversion
84-
/// events](https://www.algolia.com/guides/sending-events/getting-started).
84+
/// events](https://www.algolia.com/doc/guides/sending-events/getting-started).
8585
public var clickAnalytics: Bool?
8686
/// Whether this search will be included in Analytics.
8787
public var analytics: Bool?

Sources/Recommend/Models/FallbackParams.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public struct FallbackParams: Codable, JSONEncodable {
8181
public var synonyms: Bool?
8282
/// Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query
8383
/// and is required for tracking [click and conversion
84-
/// events](https://www.algolia.com/guides/sending-events/getting-started).
84+
/// events](https://www.algolia.com/doc/guides/sending-events/getting-started).
8585
public var clickAnalytics: Bool?
8686
/// Whether this search will be included in Analytics.
8787
public var analytics: Bool?

Sources/Recommend/Models/RecommendExhaustive.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import Foundation
88

99
/// Whether certain properties of the search response are calculated exhaustive (exact) or approximated.
1010
public struct RecommendExhaustive: Codable, JSONEncodable {
11-
/// Whether the facet count is exhaustive (`true`) or approximate (`false`). See the [related discussion](https://support.algolia.com/hc/en-us/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate-).
11+
/// Whether the facet count is exhaustive (`true`) or approximate (`false`). See the [related
12+
/// discussion](https://support.algolia.com/hc/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate).
1213
public var facetsCount: Bool?
1314
/// The value is `false` if not all facet values are retrieved.
1415
public var facetValues: Bool?

0 commit comments

Comments
 (0)