@@ -45,6 +45,7 @@ import algoliasearch.ingestion.RunSortKeys._
4545import algoliasearch .ingestion .RunSourcePayload
4646import algoliasearch .ingestion .RunSourceResponse
4747import algoliasearch .ingestion .RunStatus ._
48+ import algoliasearch .ingestion .RunType ._
4849import algoliasearch .ingestion .SortKeys ._
4950import algoliasearch .ingestion .Source
5051import algoliasearch .ingestion .SourceCreate
@@ -951,6 +952,8 @@ class IngestionClient(
951952 * Page number of the paginated API response.
952953 * @param status
953954 * Run status for filtering the list of task runs.
955+ * @param `type`
956+ * Run type for filtering the list of task runs.
954957 * @param taskID
955958 * Task ID for filtering the list of task runs.
956959 * @param sort
@@ -966,6 +969,7 @@ class IngestionClient(
966969 itemsPerPage : Option [Int ] = None ,
967970 page : Option [Int ] = None ,
968971 status : Option [Seq [RunStatus ]] = None ,
972+ `type` : Option [Seq [RunType ]] = None ,
969973 taskID : Option [String ] = None ,
970974 sort : Option [RunSortKeys ] = None ,
971975 order : Option [OrderKeys ] = None ,
@@ -981,6 +985,7 @@ class IngestionClient(
981985 .withQueryParameter(" itemsPerPage" , itemsPerPage)
982986 .withQueryParameter(" page" , page)
983987 .withQueryParameter(" status" , status)
988+ .withQueryParameter(" type" , `type`)
984989 .withQueryParameter(" taskID" , taskID)
985990 .withQueryParameter(" sort" , sort)
986991 .withQueryParameter(" order" , order)
0 commit comments