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

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_status_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class GetStatusResponse(BaseModel):
3333
"""
3434

3535
updated_at: str
36-
""" Date and time when the object was updated, in RFC 3339 format. """
36+
""" Date and time when the object was updated, in RFC 3339 format. """
3737

3838
model_config = ConfigDict(
3939
strict=False,

clients/algoliasearch-client-ruby/lib/algolia/models/abtesting/list_ab_tests_response.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
module Algolia
99
module Abtesting
1010
class ListABTestsResponse
11-
# A/B tests.
11+
# The list of A/B tests, null if no A/B tests are configured for this application.
1212
attr_accessor :abtests
1313

1414
# Number of A/B tests.

clients/algoliasearch-client-scala/src/main/scala/algoliasearch/abtesting/ListABTestsResponse.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ package algoliasearch.abtesting
2727
/** ListABTestsResponse
2828
*
2929
* @param abtests
30-
* A/B tests.
30+
* The list of A/B tests, null if no A/B tests are configured for this application.
3131
* @param count
3232
* Number of A/B tests.
3333
* @param total

clients/algoliasearch-client-swift/Sources/Abtesting/Models/ListABTestsResponse.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 ListABTestsResponse: Codable, JSONEncodable {
10-
/// A/B tests.
10+
/// The list of A/B tests, null if no A/B tests are configured for this application.
1111
public var abtests: [ABTest]?
1212
/// Number of A/B tests.
1313
public var count: Int

docs/bundled/abtesting.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3480,11 +3480,12 @@ components:
34803480
ABTests:
34813481
oneOf:
34823482
- type: array
3483-
description: A/B tests.
3483+
description: >-
3484+
The list of A/B tests, null if no A/B tests are configured for this
3485+
application.
34843486
items:
34853487
$ref: '#/components/schemas/ABTest'
34863488
- type: 'null'
3487-
description: No A/B tests are configured for this application.
34883489
abTestsVariant:
34893490
type: object
34903491
additionalProperties: false

docs/bundled/analytics.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7468,14 +7468,12 @@ components:
74687468
items:
74697469
$ref: '#/components/schemas/getTopFiltersNoResultsValues'
74707470
updatedAtNullable:
7471-
default: null
74727471
oneOf:
74737472
- type: string
7473+
default: null
7474+
description: Date and time when the object was updated, in RFC 3339 format.
74747475
example: '2023-07-04T12:49:15Z'
7475-
description: |
7476-
Date and time when the object was updated, in RFC 3339 format.
74777476
- type: 'null'
7478-
description: If null, this object wasn't updated yet.
74797477
responses:
74807478
BadRequest:
74817479
description: Bad request or request arguments.

docs/bundled/crawler.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2710,6 +2710,7 @@ components:
27102710
required:
27112711
- url
27122712
waitTime:
2713+
type: object
27132714
description: Timeout for the HTTP request.
27142715
properties:
27152716
min:
@@ -3247,14 +3248,12 @@ components:
32473248
description: Date and time when the last crawl started, in RFC 3339 format.
32483249
example: '2024-04-07T09:16:04Z'
32493250
- type: 'null'
3250-
description: If null, this crawler hasn't indexed anything yet.
32513251
lastReindexEndedAt:
32523252
default: null
32533253
oneOf:
32543254
- type: string
32553255
description: Date and time when the last crawl finished, in RFC 3339 format.
32563256
- type: 'null'
3257-
description: If null, this crawler hasn't indexed anything yet.
32583257
required:
32593258
- name
32603259
- createdAt

0 commit comments

Comments
 (0)