Skip to content

Commit 2728f93

Browse files
algolia-botFluf22dependabot[bot]renovate[bot]
committed
chore(deps): dependencies 2026-05-18 (generated)
algolia/api-clients-automation#6429 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Thomas Raffray <Fluf22@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent a44ad2f commit 2728f93

5 files changed

Lines changed: 25 additions & 13 deletions

File tree

algoliasearch/Models/Abtesting/ABTest.cs

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,32 +65,37 @@ List<Variant> variants
6565
public int AbTestID { get; set; }
6666

6767
/// <summary>
68-
/// Gets or Sets ClickSignificance
68+
/// A/B test significance calculated from click events. Values of 0.95 or higher can be considered significant, that is, the difference between A and B variants is _not_ due to random variations. Lower values have a.
6969
/// </summary>
70+
/// <value>A/B test significance calculated from click events. Values of 0.95 or higher can be considered significant, that is, the difference between A and B variants is _not_ due to random variations. Lower values have a. </value>
7071
[JsonPropertyName("clickSignificance")]
7172
public double? ClickSignificance { get; set; }
7273

7374
/// <summary>
74-
/// Gets or Sets ConversionSignificance
75+
/// A/B test significance calculated from conversion events. Values of 0.95 or higher can be considered significant, that is, the difference between A and B variants is _not_ due to random variations.
7576
/// </summary>
77+
/// <value>A/B test significance calculated from conversion events. Values of 0.95 or higher can be considered significant, that is, the difference between A and B variants is _not_ due to random variations. </value>
7678
[JsonPropertyName("conversionSignificance")]
7779
public double? ConversionSignificance { get; set; }
7880

7981
/// <summary>
80-
/// Gets or Sets AddToCartSignificance
82+
/// A/B test significance calculated from add-to-cart events. Values of 0.95 or higher can be considered significant, that is, the difference between A and B variants is _not_ due to random variations.
8183
/// </summary>
84+
/// <value>A/B test significance calculated from add-to-cart events. Values of 0.95 or higher can be considered significant, that is, the difference between A and B variants is _not_ due to random variations. </value>
8285
[JsonPropertyName("addToCartSignificance")]
8386
public double? AddToCartSignificance { get; set; }
8487

8588
/// <summary>
86-
/// Gets or Sets PurchaseSignificance
89+
/// A/B test significance calculated from purchase events. Values of 0.95 or higher can be considered significant, that is, the difference between A and B variants is _not_ due to random variations.
8790
/// </summary>
91+
/// <value>A/B test significance calculated from purchase events. Values of 0.95 or higher can be considered significant, that is, the difference between A and B variants is _not_ due to random variations. </value>
8892
[JsonPropertyName("purchaseSignificance")]
8993
public double? PurchaseSignificance { get; set; }
9094

9195
/// <summary>
92-
/// Gets or Sets RevenueSignificance
96+
/// A/B test significance calculated from revenue data. Values of 0.95 or higher can be considered significant, that is, the difference between A and B variants is _not_ due to random variations.
9397
/// </summary>
98+
/// <value>A/B test significance calculated from revenue data. Values of 0.95 or higher can be considered significant, that is, the difference between A and B variants is _not_ due to random variations. </value>
9499
[JsonPropertyName("revenueSignificance")]
95100
public Dictionary<string, double> RevenueSignificance { get; set; }
96101

algoliasearch/Models/QuerySuggestions/Configuration.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ public Configuration(List<SourceIndex> sourceIndices)
4545
public Languages Languages { get; set; }
4646

4747
/// <summary>
48-
/// Gets or Sets Exclude
48+
/// Words or regular expressions to exclude from the suggestions.
4949
/// </summary>
50+
/// <value>Words or regular expressions to exclude from the suggestions.</value>
5051
[JsonPropertyName("exclude")]
5152
public List<string> Exclude { get; set; }
5253

algoliasearch/Models/QuerySuggestions/ConfigurationResponse.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public ConfigurationResponse() { }
2929
/// <param name="indexName">Name of the Query Suggestions index (case-sensitive). (required).</param>
3030
/// <param name="sourceIndices">Algolia indices from which to get the popular searches for query suggestions. (required).</param>
3131
/// <param name="languages">languages (required).</param>
32-
/// <param name="exclude">exclude (required).</param>
32+
/// <param name="exclude">Words or regular expressions to exclude from the suggestions. (required).</param>
3333
/// <param name="enablePersonalization">Whether to turn on personalized query suggestions. (required) (default to false).</param>
3434
/// <param name="allowSpecialCharacters">Whether to include suggestions with special characters. (required) (default to false).</param>
3535
public ConfigurationResponse(
@@ -79,8 +79,9 @@ bool allowSpecialCharacters
7979
public Languages Languages { get; set; }
8080

8181
/// <summary>
82-
/// Gets or Sets Exclude
82+
/// Words or regular expressions to exclude from the suggestions.
8383
/// </summary>
84+
/// <value>Words or regular expressions to exclude from the suggestions.</value>
8485
[JsonPropertyName("exclude")]
8586
public List<string> Exclude { get; set; }
8687

algoliasearch/Models/QuerySuggestions/ConfigurationWithIndex.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@ public ConfigurationWithIndex(List<SourceIndex> sourceIndices, string indexName)
4747
public Languages Languages { get; set; }
4848

4949
/// <summary>
50-
/// Gets or Sets Exclude
50+
/// Words or regular expressions to exclude from the suggestions.
5151
/// </summary>
52+
/// <value>Words or regular expressions to exclude from the suggestions.</value>
5253
[JsonPropertyName("exclude")]
5354
public List<string> Exclude { get; set; }
5455

algoliasearch/Models/QuerySuggestions/SourceIndex.cs

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,16 @@ public SourceIndex(string indexName)
4646
public bool? Replicas { get; set; }
4747

4848
/// <summary>
49-
/// Gets or Sets AnalyticsTags
49+
/// Analytics tags for filtering the popular searches. For more information, see [Segment your analytics data](https://www.algolia.com/doc/guides/search-analytics/guides/segments).
5050
/// </summary>
51+
/// <value>Analytics tags for filtering the popular searches. For more information, see [Segment your analytics data](https://www.algolia.com/doc/guides/search-analytics/guides/segments). </value>
5152
[JsonPropertyName("analyticsTags")]
5253
public List<string> AnalyticsTags { get; set; }
5354

5455
/// <summary>
55-
/// Gets or Sets Facets
56+
/// Facets to use as top categories with your suggestions. If provided, Query Suggestions adds the top facet values to each suggestion.
5657
/// </summary>
58+
/// <value>Facets to use as top categories with your suggestions. If provided, Query Suggestions adds the top facet values to each suggestion. </value>
5759
[JsonPropertyName("facets")]
5860
public List<Facet> Facets { get; set; }
5961

@@ -72,14 +74,16 @@ public SourceIndex(string indexName)
7274
public int? MinLetters { get; set; }
7375

7476
/// <summary>
75-
/// Gets or Sets Generate
77+
/// Facets used for generating query suggestions from facet values. For example, if you set `generate: [\"color\", \"brand\"]`, combinations from the facet values are added as query suggestions, such as \"blue adidas\", \"red adidas\", \"blue nike\", \"red nike\", etc. You can include nested lists.
7678
/// </summary>
79+
/// <value>Facets used for generating query suggestions from facet values. For example, if you set `generate: [\"color\", \"brand\"]`, combinations from the facet values are added as query suggestions, such as \"blue adidas\", \"red adidas\", \"blue nike\", \"red nike\", etc. You can include nested lists. </value>
7780
[JsonPropertyName("generate")]
7881
public List<List<string>> Generate { get; set; }
7982

8083
/// <summary>
81-
/// Gets or Sets External
84+
/// Algolia indices with popular searches to use as query suggestions. Records of these indices must have these attributes: - `query`: search query which will be added as a suggestion - `count`: measure of popularity of that search query For example, you can export popular searches from an external analytics provider, such as Google Analytics or Adobe Analytics, and feed this data into an Algolia index. You can use this index to generate query suggestions until your Algolia Analytics has collected enough data.
8285
/// </summary>
86+
/// <value>Algolia indices with popular searches to use as query suggestions. Records of these indices must have these attributes: - `query`: search query which will be added as a suggestion - `count`: measure of popularity of that search query For example, you can export popular searches from an external analytics provider, such as Google Analytics or Adobe Analytics, and feed this data into an Algolia index. You can use this index to generate query suggestions until your Algolia Analytics has collected enough data. </value>
8387
[JsonPropertyName("external")]
8488
public List<string> External { get; set; }
8589

0 commit comments

Comments
 (0)