Skip to content

Commit 0c33e99

Browse files
algolia-botrenovate[bot]millotp
committed
chore(deps): dependencies 2025-09-29 (generated)
algolia/api-clients-automation#5393 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Algolia Bot <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pierre Millot <[email protected]>
1 parent 88d474c commit 0c33e99

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

.github/workflows/do-not-edit-this-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Close PR
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Close PR
2020
env:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ jobs:
1212
if: "startsWith(github.event.head_commit.message, 'chore: release')"
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: Configure JDK
18-
uses: actions/setup-java@v4
18+
uses: actions/setup-java@v5
1919
with:
2020
distribution: temurin
2121
java-version: 11
2222

2323
- name: Setup Gradle
24-
uses: gradle/actions/setup-gradle@v4.4.3
24+
uses: gradle/actions/setup-gradle@v5.0.0
2525

2626
- name: Upload Artifacts
2727
run: ./gradlew publishAndReleaseToMavenCentral --no-configuration-cache

client/src/commonMain/kotlin/com/algolia/client/api/AnalyticsClient.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -685,8 +685,8 @@ public class AnalyticsClient(
685685
* @param revenueAnalytics Whether to include metrics related to revenue events in the response. (default to false)
686686
* @param startDate Start date of the period to analyze, in `YYYY-MM-DD` format.
687687
* @param endDate End date of the period to analyze, in `YYYY-MM-DD` format.
688-
* @param orderBy Attribute by which to order the response items. If the `clickAnalytics` parameter is false, only `searchCount` is available. (default to searchCount)
689-
* @param direction Sorting direction of the results: ascending or descending. (default to asc)
688+
* @param orderBy Attribute by which to order the response items. If the `clickAnalytics` parameter is false, only `searchCount` is available. (default to OrderBy.searchCount)
689+
* @param direction Sorting direction of the results: ascending or descending. (default to Direction.asc)
690690
* @param limit Number of items to return. (default to 10)
691691
* @param offset Position of the first item to return. (default to 0)
692692
* @param tags Tags by which to segment the analytics. You can combine multiple tags with `OR` and `AND`. Tags must be URL-encoded. For more information, see [Segment your analytics data](https://www.algolia.com/doc/guides/search-analytics/guides/segments).

client/src/commonMain/kotlin/com/algolia/client/api/IngestionClient.kt

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -633,8 +633,8 @@ public class IngestionClient(
633633
* @param page Page number of the paginated API response.
634634
* @param type Type of authentication resource to retrieve.
635635
* @param platform Ecommerce platform for which to retrieve authentications.
636-
* @param sort Property by which to sort the list of authentications. (default to createdAt)
637-
* @param order Sort order of the response, ascending or descending. (default to desc)
636+
* @param sort Property by which to sort the list of authentications. (default to AuthenticationSortKeys.createdAt)
637+
* @param order Sort order of the response, ascending or descending. (default to OrderKeys.desc)
638638
* @param requestOptions additional request configuration.
639639
*/
640640
public suspend fun listAuthentications(itemsPerPage: Int? = null, page: Int? = null, type: List<AuthenticationType>? = null, platform: List<PlatformWithNone>? = null, sort: AuthenticationSortKeys? = null, order: OrderKeys? = null, requestOptions: RequestOptions? = null): ListAuthenticationsResponse {
@@ -668,8 +668,8 @@ public class IngestionClient(
668668
* @param type Destination type.
669669
* @param authenticationID Authentication ID used by destinations.
670670
* @param transformationID Get the list of destinations used by a transformation.
671-
* @param sort Property by which to sort the destinations. (default to createdAt)
672-
* @param order Sort order of the response, ascending or descending. (default to desc)
671+
* @param sort Property by which to sort the destinations. (default to DestinationSortKeys.createdAt)
672+
* @param order Sort order of the response, ascending or descending. (default to OrderKeys.desc)
673673
* @param requestOptions additional request configuration.
674674
*/
675675
public suspend fun listDestinations(itemsPerPage: Int? = null, page: Int? = null, type: List<DestinationType>? = null, authenticationID: List<String>? = null, transformationID: String? = null, sort: DestinationSortKeys? = null, order: OrderKeys? = null, requestOptions: RequestOptions? = null): ListDestinationsResponse {
@@ -705,7 +705,7 @@ public class IngestionClient(
705705
* @param status Event status for filtering the list of task runs.
706706
* @param type Event type for filtering the list of task runs.
707707
* @param sort Property by which to sort the list of task run events.
708-
* @param order Sort order of the response, ascending or descending. (default to desc)
708+
* @param order Sort order of the response, ascending or descending. (default to OrderKeys.desc)
709709
* @param startDate Date and time in RFC 3339 format for the earliest events to retrieve. By default, the current time minus three hours is used.
710710
* @param endDate Date and time in RFC 3339 format for the latest events to retrieve. By default, the current time is used.
711711
* @param requestOptions additional request configuration.
@@ -744,8 +744,8 @@ public class IngestionClient(
744744
* @param status Run status for filtering the list of task runs.
745745
* @param type Run type for filtering the list of task runs.
746746
* @param taskID Task ID for filtering the list of task runs.
747-
* @param sort Property by which to sort the list of task runs. (default to createdAt)
748-
* @param order Sort order of the response, ascending or descending. (default to desc)
747+
* @param sort Property by which to sort the list of task runs. (default to RunSortKeys.createdAt)
748+
* @param order Sort order of the response, ascending or descending. (default to OrderKeys.desc)
749749
* @param startDate Date in RFC 3339 format for the earliest run to retrieve. By default, the current day minus seven days is used.
750750
* @param endDate Date in RFC 3339 format for the latest run to retrieve. By default, the current day is used.
751751
* @param requestOptions additional request configuration.
@@ -783,8 +783,8 @@ public class IngestionClient(
783783
* @param page Page number of the paginated API response.
784784
* @param type Source type. Some sources require authentication.
785785
* @param authenticationID Authentication IDs of the sources to retrieve. 'none' returns sources that doesn't have an authentication.
786-
* @param sort Property by which to sort the list of sources. (default to createdAt)
787-
* @param order Sort order of the response, ascending or descending. (default to desc)
786+
* @param sort Property by which to sort the list of sources. (default to SourceSortKeys.createdAt)
787+
* @param order Sort order of the response, ascending or descending. (default to OrderKeys.desc)
788788
* @param requestOptions additional request configuration.
789789
*/
790790
public suspend fun listSources(itemsPerPage: Int? = null, page: Int? = null, type: List<SourceType>? = null, authenticationID: List<String>? = null, sort: SourceSortKeys? = null, order: OrderKeys? = null, requestOptions: RequestOptions? = null): ListSourcesResponse {
@@ -822,8 +822,8 @@ public class IngestionClient(
822822
* @param destinationID Destination IDs for filtering the list of tasks.
823823
* @param triggerType Type of task trigger for filtering the list of tasks.
824824
* @param withEmailNotifications If specified, the response only includes tasks with notifications.email.enabled set to this value.
825-
* @param sort Property by which to sort the list of tasks. (default to createdAt)
826-
* @param order Sort order of the response, ascending or descending. (default to desc)
825+
* @param sort Property by which to sort the list of tasks. (default to TaskSortKeys.createdAt)
826+
* @param order Sort order of the response, ascending or descending. (default to OrderKeys.desc)
827827
* @param requestOptions additional request configuration.
828828
*/
829829
public suspend fun listTasks(itemsPerPage: Int? = null, page: Int? = null, action: List<ActionType>? = null, enabled: Boolean? = null, sourceID: List<String>? = null, sourceType: List<SourceType>? = null, destinationID: List<String>? = null, triggerType: List<TriggerType>? = null, withEmailNotifications: Boolean? = null, sort: TaskSortKeys? = null, order: OrderKeys? = null, requestOptions: RequestOptions? = null): ListTasksResponse {
@@ -865,8 +865,8 @@ public class IngestionClient(
865865
* @param sourceID Source IDs for filtering the list of tasks.
866866
* @param destinationID Destination IDs for filtering the list of tasks.
867867
* @param triggerType Type of task trigger for filtering the list of tasks.
868-
* @param sort Property by which to sort the list of tasks. (default to createdAt)
869-
* @param order Sort order of the response, ascending or descending. (default to desc)
868+
* @param sort Property by which to sort the list of tasks. (default to TaskSortKeys.createdAt)
869+
* @param order Sort order of the response, ascending or descending. (default to OrderKeys.desc)
870870
* @param requestOptions additional request configuration.
871871
*/
872872
public suspend fun listTasksV1(itemsPerPage: Int? = null, page: Int? = null, action: List<ActionType>? = null, enabled: Boolean? = null, sourceID: List<String>? = null, destinationID: List<String>? = null, triggerType: List<TriggerType>? = null, sort: TaskSortKeys? = null, order: OrderKeys? = null, requestOptions: RequestOptions? = null): ListTasksResponseV1 {
@@ -900,8 +900,8 @@ public class IngestionClient(
900900
* - editSettings
901901
* @param itemsPerPage Number of items per page. (default to 10)
902902
* @param page Page number of the paginated API response.
903-
* @param sort Property by which to sort the list of transformations. (default to createdAt)
904-
* @param order Sort order of the response, ascending or descending. (default to desc)
903+
* @param sort Property by which to sort the list of transformations. (default to TransformationSortKeys.createdAt)
904+
* @param order Sort order of the response, ascending or descending. (default to OrderKeys.desc)
905905
* @param type Whether to filter the list of transformations by the type of transformation.
906906
* @param requestOptions additional request configuration.
907907
*/

client/src/commonMain/kotlin/com/algolia/client/api/SearchClient.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ public class SearchClient(
604604
* @param offset First log entry to retrieve. The most recent entries are listed first. (default to 0)
605605
* @param length Maximum number of entries to retrieve. (default to 10)
606606
* @param indexName Index for which to retrieve log entries. By default, log entries are retrieved for all indices.
607-
* @param type Type of log entries to retrieve. By default, all log entries are retrieved. (default to all)
607+
* @param type Type of log entries to retrieve. By default, all log entries are retrieved. (default to LogType.all)
608608
* @param requestOptions additional request configuration.
609609
*/
610610
public suspend fun getLogs(offset: Int? = null, length: Int? = null, indexName: String? = null, type: LogType? = null, requestOptions: RequestOptions? = null): GetLogsResponse {

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ kotlin-multiplaform = { id = "org.jetbrains.kotlin.multiplatform", version.ref =
3131
kotlinx-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
3232
kotlinx-binary-validator = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version = "0.18.1" }
3333
maven-publish = { id = "com.vanniktech.maven.publish", version = "0.34.0" }
34-
spotless = { id = "com.diffplug.gradle.spotless", version = "7.2.1" }
34+
spotless = { id = "com.diffplug.gradle.spotless", version = "8.0.0" }

0 commit comments

Comments
 (0)