Skip to content

Commit 7a1587e

Browse files
authored
Merge branch 'main' into chore/renovateBaseBranch
2 parents 525a92f + e142be4 commit 7a1587e

File tree

70 files changed

+316
-151
lines changed

Some content is hidden

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

70 files changed

+316
-151
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ module.exports = {
5454
'automation-custom/no-big-int': 'error',
5555
'automation-custom/no-final-dot': 'error',
5656
'automation-custom/single-quote-ref': 'error',
57+
'automation-custom/has-type': 'error',
5758
},
5859
overrides: [
5960
{

clients/algoliasearch-client-csharp/algoliasearch/Models/Abtesting/ListABTestsResponse.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public ListABTestsResponse() { }
2424
/// <summary>
2525
/// Initializes a new instance of the ListABTestsResponse class.
2626
/// </summary>
27-
/// <param name="abtests">A/B tests. (required).</param>
27+
/// <param name="abtests">The list of A/B tests, null if no A/B tests are configured for this application. (required).</param>
2828
/// <param name="count">Number of A/B tests. (required).</param>
2929
/// <param name="total">Number of retrievable A/B tests. (required).</param>
3030
public ListABTestsResponse(List<ABTest> abtests, int count, int total)
@@ -35,9 +35,9 @@ public ListABTestsResponse(List<ABTest> abtests, int count, int total)
3535
}
3636

3737
/// <summary>
38-
/// A/B tests.
38+
/// The list of A/B tests, null if no A/B tests are configured for this application.
3939
/// </summary>
40-
/// <value>A/B tests.</value>
40+
/// <value>The list of A/B tests, null if no A/B tests are configured for this application.</value>
4141
[JsonPropertyName("abtests")]
4242
public List<ABTest> Abtests { get; set; }
4343

clients/algoliasearch-client-csharp/algoliasearch/Models/Analytics/GetStatusResponse.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ public GetStatusResponse() { }
2424
/// <summary>
2525
/// Initializes a new instance of the GetStatusResponse class.
2626
/// </summary>
27-
/// <param name="updatedAt">Date and time when the object was updated, in RFC 3339 format. (required).</param>
27+
/// <param name="updatedAt">Date and time when the object was updated, in RFC 3339 format. (required).</param>
2828
public GetStatusResponse(string updatedAt)
2929
{
3030
UpdatedAt = updatedAt ?? throw new ArgumentNullException(nameof(updatedAt));
3131
}
3232

3333
/// <summary>
34-
/// Date and time when the object was updated, in RFC 3339 format.
34+
/// Date and time when the object was updated, in RFC 3339 format.
3535
/// </summary>
36-
/// <value>Date and time when the object was updated, in RFC 3339 format. </value>
36+
/// <value>Date and time when the object was updated, in RFC 3339 format.</value>
3737
[JsonPropertyName("updatedAt")]
3838
public string UpdatedAt { get; set; }
3939

clients/algoliasearch-client-go/algolia/abtesting/model_list_ab_tests_response.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-java/algoliasearch/src/main/java/com/algolia/model/abtesting/ListABTestsResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public ListABTestsResponse addAbtests(ABTest abtestsItem) {
3030
return this;
3131
}
3232

33-
/** A/B tests. */
33+
/** The list of A/B tests, null if no A/B tests are configured for this application. */
3434
@javax.annotation.Nullable
3535
public List<ABTest> getAbtests() {
3636
return abtests;

clients/algoliasearch-client-javascript/packages/client-abtesting/model/listABTestsResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { ABTest } from './aBTest';
44

55
export type ListABTestsResponse = {
66
/**
7-
* A/B tests.
7+
* The list of A/B tests, null if no A/B tests are configured for this application.
88
*/
99
abtests: Array<ABTest> | null;
1010

clients/algoliasearch-client-kotlin/client/src/commonMain/kotlin/com/algolia/client/model/abtesting/ListABTestsResponse.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ import kotlinx.serialization.json.*
77
/**
88
* ListABTestsResponse
99
*
10-
* @param abtests A/B tests.
10+
* @param abtests The list of A/B tests, null if no A/B tests are configured for this application.
1111
* @param count Number of A/B tests.
1212
* @param total Number of retrievable A/B tests.
1313
*/
1414
@Serializable
1515
public data class ListABTestsResponse(
1616

17-
/** A/B tests. */
17+
/** The list of A/B tests, null if no A/B tests are configured for this application. */
1818
@SerialName(value = "abtests") val abtests: List<ABTest>,
1919

2020
/** Number of A/B tests. */

clients/algoliasearch-client-kotlin/client/src/commonMain/kotlin/com/algolia/client/model/analytics/GetStatusResponse.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ import kotlinx.serialization.json.*
1212
@Serializable
1313
public data class GetStatusResponse(
1414

15-
/** Date and time when the object was updated, in RFC 3339 format. */
15+
/** Date and time when the object was updated, in RFC 3339 format. */
1616
@SerialName(value = "updatedAt") val updatedAt: String,
1717
)

clients/algoliasearch-client-php/lib/Model/Abtesting/ListABTestsResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public function getAbtests()
192192
/**
193193
* Sets abtests.
194194
*
195-
* @param \Algolia\AlgoliaSearch\Model\Abtesting\ABTest[] $abtests A/B tests
195+
* @param \Algolia\AlgoliaSearch\Model\Abtesting\ABTest[] $abtests the list of A/B tests, null if no A/B tests are configured for this application
196196
*
197197
* @return self
198198
*/

clients/algoliasearch-client-python/algoliasearch/abtesting/models/list_ab_tests_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class ListABTestsResponse(BaseModel):
3737
"""
3838

3939
abtests: List[ABTest]
40-
""" A/B tests. """
40+
""" The list of A/B tests, null if no A/B tests are configured for this application. """
4141
count: int
4242
""" Number of A/B tests. """
4343
total: int

0 commit comments

Comments
 (0)