Skip to content

Commit c99becf

Browse files
algolia-botkai687millotp
committed
chore: generated code for commit 41121e77. [skip ci]
algolia/api-clients-automation@41121e7 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Kai Welke <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent fd2bb0a commit c99becf

File tree

51 files changed

+405
-375
lines changed

Some content is hidden

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

51 files changed

+405
-375
lines changed

Sources/Abtesting/Models/ABTestResponse.swift

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

99
public struct ABTestResponse: Codable, JSONEncodable {
10-
/// A/B test index.
10+
/// Index name of the A/B test variant (case-sensitive).
1111
public var index: String
1212
/// Unique A/B test identifier.
1313
public var abTestID: Int

Sources/Abtesting/Models/AbTestsVariant.swift

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

99
public struct AbTestsVariant: Codable, JSONEncodable {
10-
/// A/B test index.
10+
/// Index name of the A/B test variant (case-sensitive).
1111
public var index: String
1212
/// Percentage of search requests each variant receives.
1313
public var trafficPercentage: Int

Sources/Abtesting/Models/AbTestsVariantSearchParams.swift

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

99
public struct AbTestsVariantSearchParams: Codable, JSONEncodable {
10-
/// A/B test index.
10+
/// Index name of the A/B test variant (case-sensitive).
1111
public var index: String
1212
/// Percentage of search requests each variant receives.
1313
public var trafficPercentage: Int

Sources/Abtesting/Models/Variant.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public struct Variant: Codable, JSONEncodable {
3333
/// configuration must include a `mininmumDetectableEffect` setting for this number to be included in the response.
3434
public var estimatedSampleSize: Int?
3535
public var filterEffects: FilterEffects?
36-
/// A/B test index.
36+
/// Index name of the A/B test variant (case-sensitive).
3737
public var index: String
3838
/// Number of [searches without
3939
/// results](https://www.algolia.com/doc/guides/search-analytics/concepts/metrics/#searches-without-results) for

Sources/Ingestion/Models/DestinationIndexName.swift

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

99
public struct DestinationIndexName: Codable, JSONEncodable {
10-
/// Algolia index name.
10+
/// Algolia index name (case-sensitive).
1111
public var indexName: String
1212
public var recordType: RecordType?
1313
/// Attributes from your source to exclude from Algolia records. Not all your data attributes will be useful for

Sources/Insights/Models/AddedToCartObjectIDs.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public struct AddedToCartObjectIDs: Codable, JSONEncodable {
1515
public var eventName: String
1616
public var eventType: ConversionEvent
1717
public var eventSubtype: AddToCartEvent
18-
/// Index name to which the event's items belong.
18+
/// Index name (case-sensitive) to which the event's items belong.
1919
public var index: String
2020
/// Object IDs of the records that are part of the event.
2121
public var objectIDs: [String]

Sources/Insights/Models/AddedToCartObjectIDsAfterSearch.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public struct AddedToCartObjectIDsAfterSearch: Codable, JSONEncodable {
1414
public var eventName: String
1515
public var eventType: ConversionEvent
1616
public var eventSubtype: AddToCartEvent
17-
/// Index name to which the event's items belong.
17+
/// Index name (case-sensitive) to which the event's items belong.
1818
public var index: String
1919
/// Unique identifier for a search query. The query ID is required for events related to search or browse requests.
2020
/// If you add `clickAnalytics: true` as a search request parameter, the query ID is included in the API response.

Sources/Insights/Models/ClickedFilters.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public struct ClickedFilters: Codable, JSONEncodable {
1212
/// framework.
1313
public var eventName: String
1414
public var eventType: ClickEvent
15-
/// Index name to which the event's items belong.
15+
/// Index name (case-sensitive) to which the event's items belong.
1616
public var index: String
1717
/// Applied facet filters. Facet filters are `facet:value` pairs. Facet values must be URL-encoded, such as,
1818
/// `discount:10%25`.

Sources/Insights/Models/ClickedObjectIDs.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public struct ClickedObjectIDs: Codable, JSONEncodable {
1414
/// framework.
1515
public var eventName: String
1616
public var eventType: ClickEvent
17-
/// Index name to which the event's items belong.
17+
/// Index name (case-sensitive) to which the event's items belong.
1818
public var index: String
1919
/// Object IDs of the records that are part of the event.
2020
public var objectIDs: [String]

Sources/Insights/Models/ClickedObjectIDsAfterSearch.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public struct ClickedObjectIDsAfterSearch: Codable, JSONEncodable {
1313
/// framework.
1414
public var eventName: String
1515
public var eventType: ClickEvent
16-
/// Index name to which the event's items belong.
16+
/// Index name (case-sensitive) to which the event's items belong.
1717
public var index: String
1818
/// Object IDs of the records that are part of the event.
1919
public var objectIDs: [String]

0 commit comments

Comments
 (0)