Skip to content

Commit be2804f

Browse files
committed
fix(clients): escape char in comments (generated)
algolia/api-clients-automation#3973 Co-authored-by: algolia-bot <[email protected]>
1 parent cca119e commit be2804f

File tree

71 files changed

+168
-177
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+168
-177
lines changed

Sources/Abtesting/Models/AbtestingStatus.swift

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ import Foundation
66
import Core
77
#endif
88

9-
/// A/B test status. - &#x60;active&#x60;. The A/B test is live and search traffic is split between the two variants. -
10-
/// &#x60;stopped&#x60;. You stopped the A/B test. The A/B test data is still available for analysis. -
11-
/// &#x60;expired&#x60;. The A/B test was automatically stopped after reaching its end date. - &#x60;failed&#x60;.
12-
/// Creating the A/B test failed.
9+
/// A/B test status. - `active`. The A/B test is live and search traffic is split between the two variants. -
10+
/// `stopped`. You stopped the A/B test. The A/B test data is still available for analysis. - `expired`. The A/B test
11+
/// was automatically stopped after reaching its end date. - `failed`. Creating the A/B test failed.
1312
public enum AbtestingStatus: String, Codable, CaseIterable {
1413
case active
1514
case stopped

Sources/Analytics/Models/Operator.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import Foundation
66
import Core
77
#endif
88

9-
/// Character that characterizes how the filter is applied. For example, for a facet filter &#x60;facet:value&#x60;,
10-
/// &#x60;:&#x60; is the operator. For a numeric filter &#x60;count&gt;50&#x60;, &#x60;&gt;&#x60; is the operator.
9+
/// Character that characterizes how the filter is applied. For example, for a facet filter `facet:value`, `:` is the
10+
/// operator. For a numeric filter `count>50`, `>` is the operator.
1111
public enum Operator: String, Codable, CaseIterable {
1212
case colon = ":"
1313
case lessThan = "<"

Sources/Analytics/Models/OrderBy.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import Foundation
66
import Core
77
#endif
88

9-
/// Attribute by which to order the response items. If the &#x60;clickAnalytics&#x60; parameter is false, only
10-
/// &#x60;searchCount&#x60; is available.
9+
/// Attribute by which to order the response items. If the `clickAnalytics` parameter is false, only `searchCount` is
10+
/// available.
1111
public enum OrderBy: String, Codable, CaseIterable {
1212
case searchCount
1313
case clickThroughRate

Sources/Ingestion/Models/AuthenticationType.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Foundation
66
import Core
77
#endif
88

9-
/// Type of authentication. This determines the type of credentials required in the &#x60;input&#x60; object.
9+
/// Type of authentication. This determines the type of credentials required in the `input` object.
1010
public enum AuthenticationType: String, Codable, CaseIterable {
1111
case googleServiceAccount
1212
case basic

Sources/Ingestion/Models/DestinationType.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import Foundation
66
import Core
77
#endif
88

9-
/// Destination type. - &#x60;search&#x60;. Data is stored in an Algolia index. - &#x60;insights&#x60;. Data is
10-
/// recorded as user events in the Insights API.
9+
/// Destination type. - `search`. Data is stored in an Algolia index. - `insights`. Data is recorded as user
10+
/// events in the Insights API.
1111
public enum DestinationType: String, Codable, CaseIterable {
1212
case search
1313
case insights

Sources/Ingestion/Models/OnDemandTriggerType.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Foundation
66
import Core
77
#endif
88

9-
/// Task is run manually, with the &#x60;/run&#x60; endpoint.
9+
/// Task is run manually, with the `/run` endpoint.
1010
public enum OnDemandTriggerType: String, Codable, CaseIterable {
1111
case onDemand
1212
}

Sources/Ingestion/Models/RunReasonCode.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ import Foundation
66
import Core
77
#endif
88

9-
/// A code for the task run&#39;s outcome. A readable description of the code is included in the &#x60;reason&#x60;
10-
/// response property.
9+
/// A code for the task run's outcome. A readable description of the code is included in the `reason` response property.
1110
public enum RunReasonCode: String, Codable, CaseIterable {
1211
case `internal`
1312
case critical

Sources/Ingestion/Models/ShopifyInput.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Foundation
66
import Core
77
#endif
88

9-
/// Represents the required elements of the task input when using a &#x60;shopify&#x60; source.
9+
/// Represents the required elements of the task input when using a `shopify` source.
1010
public struct ShopifyInput: Codable, JSONEncodable {
1111
public var metafields: [ShopifyMetafield]
1212
public var market: ShopifyMarket

Sources/Ingestion/Models/StreamingInput.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import Foundation
66
import Core
77
#endif
88

9-
/// Input for a &#x60;streaming&#x60; task whose source is of type &#x60;ga4BigqueryExport&#x60; and for which extracted
10-
/// data is continuously streamed.
9+
/// Input for a `streaming` task whose source is of type `ga4BigqueryExport` and for which extracted data is
10+
/// continuously streamed.
1111
public struct StreamingInput: Codable, JSONEncodable {
1212
public var mapping: MappingInput
1313

Sources/Ingestion/Models/TaskCreateV1.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Foundation
66
import Core
77
#endif
88

9-
/// API request body for creating a task using the V1 shape, please use methods and types that don&#39;t contain the V1
9+
/// API request body for creating a task using the V1 shape, please use methods and types that don't contain the V1
1010
/// suffix.
1111
@available(*, deprecated, message: "This schema is deprecated.")
1212
public struct TaskCreateV1: Codable, JSONEncodable {

0 commit comments

Comments
 (0)