Skip to content

Commit

Permalink
fix(specs): add sourceType to listTasks [skip-bc] (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#4193

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Pierre Millot <[email protected]>
  • Loading branch information
algolia-bot and millotp committed Dec 3, 2024
1 parent a3eed8c commit 15cda49
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/scala/algoliasearch/api/IngestionClient.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1032,6 +1032,8 @@ class IngestionClient(
* Whether to filter the list of tasks by the `enabled` status.
* @param sourceID
* Source IDs for filtering the list of tasks.
* @param sourceType
* Filters the tasks with the specified source type.
* @param destinationID
* Destination IDs for filtering the list of tasks.
* @param triggerType
Expand All @@ -1047,6 +1049,7 @@ class IngestionClient(
action: Option[Seq[ActionType]] = None,
enabled: Option[Boolean] = None,
sourceID: Option[Seq[String]] = None,
sourceType: Option[Seq[SourceType]] = None,
destinationID: Option[Seq[String]] = None,
triggerType: Option[Seq[TriggerType]] = None,
sort: Option[TaskSortKeys] = None,
Expand All @@ -1063,6 +1066,7 @@ class IngestionClient(
.withQueryParameter("action", action)
.withQueryParameter("enabled", enabled)
.withQueryParameter("sourceID", sourceID)
.withQueryParameter("sourceType", sourceType)
.withQueryParameter("destinationID", destinationID)
.withQueryParameter("triggerType", triggerType)
.withQueryParameter("sort", sort)
Expand Down

0 comments on commit 15cda49

Please sign in to comment.