Skip to content

Commit 15cda49

Browse files
algolia-botmillotp
andcommitted
fix(specs): add sourceType to listTasks [skip-bc] (generated)
algolia/api-clients-automation#4193 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent a3eed8c commit 15cda49

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/scala/algoliasearch/api/IngestionClient.scala

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1032,6 +1032,8 @@ class IngestionClient(
10321032
* Whether to filter the list of tasks by the `enabled` status.
10331033
* @param sourceID
10341034
* Source IDs for filtering the list of tasks.
1035+
* @param sourceType
1036+
* Filters the tasks with the specified source type.
10351037
* @param destinationID
10361038
* Destination IDs for filtering the list of tasks.
10371039
* @param triggerType
@@ -1047,6 +1049,7 @@ class IngestionClient(
10471049
action: Option[Seq[ActionType]] = None,
10481050
enabled: Option[Boolean] = None,
10491051
sourceID: Option[Seq[String]] = None,
1052+
sourceType: Option[Seq[SourceType]] = None,
10501053
destinationID: Option[Seq[String]] = None,
10511054
triggerType: Option[Seq[TriggerType]] = None,
10521055
sort: Option[TaskSortKeys] = None,
@@ -1063,6 +1066,7 @@ class IngestionClient(
10631066
.withQueryParameter("action", action)
10641067
.withQueryParameter("enabled", enabled)
10651068
.withQueryParameter("sourceID", sourceID)
1069+
.withQueryParameter("sourceType", sourceType)
10661070
.withQueryParameter("destinationID", destinationID)
10671071
.withQueryParameter("triggerType", triggerType)
10681072
.withQueryParameter("sort", sort)

0 commit comments

Comments
 (0)