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 <accounts+algolia-api-client-bot@algolia.com>
Co-authored-by: Pierre Millot <millotpierre3@gmail.com>
  • Loading branch information
algolia-bot and millotp committed Dec 3, 2024
1 parent 485009f commit fc0bbf7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Sources/Ingestion/IngestionClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2134,6 +2134,7 @@ open class IngestionClient {
/// - parameter action: (query) Actions for filtering the list of tasks. (optional)
/// - parameter enabled: (query) Whether to filter the list of tasks by the `enabled` status. (optional)
/// - parameter sourceID: (query) Source IDs for filtering the list of tasks. (optional)
/// - parameter sourceType: (query) Filters the tasks with the specified source type. (optional)
/// - parameter destinationID: (query) Destination IDs for filtering the list of tasks. (optional)
/// - parameter triggerType: (query) Type of task trigger for filtering the list of tasks. (optional)
/// - parameter sort: (query) Property by which to sort the list of tasks. (optional)
Expand All @@ -2146,6 +2147,7 @@ open class IngestionClient {
action: [ActionType]? = nil,
enabled: Bool? = nil,
sourceID: [String]? = nil,
sourceType: [SourceType]? = nil,
destinationID: [String]? = nil,
triggerType: [TriggerType]? = nil,
sort: TaskSortKeys? = nil,
Expand All @@ -2158,6 +2160,7 @@ open class IngestionClient {
action: action,
enabled: enabled,
sourceID: sourceID,
sourceType: sourceType,
destinationID: destinationID,
triggerType: triggerType,
sort: sort,
Expand Down Expand Up @@ -2188,6 +2191,8 @@ open class IngestionClient {
//
// - parameter sourceID: (query) Source IDs for filtering the list of tasks. (optional)
//
// - parameter sourceType: (query) Filters the tasks with the specified source type. (optional)
//
// - parameter destinationID: (query) Destination IDs for filtering the list of tasks. (optional)
//
// - parameter triggerType: (query) Type of task trigger for filtering the list of tasks. (optional)
Expand All @@ -2203,6 +2208,7 @@ open class IngestionClient {
action: [ActionType]? = nil,
enabled: Bool? = nil,
sourceID: [String]? = nil,
sourceType: [SourceType]? = nil,
destinationID: [String]? = nil,
triggerType: [TriggerType]? = nil,
sort: TaskSortKeys? = nil,
Expand All @@ -2217,6 +2223,7 @@ open class IngestionClient {
"action": action?.encodeToJSON(),
"enabled": enabled?.encodeToJSON(),
"sourceID": sourceID?.encodeToJSON(),
"sourceType": sourceType?.encodeToJSON(),
"destinationID": destinationID?.encodeToJSON(),
"triggerType": triggerType?.encodeToJSON(),
"sort": sort?.encodeToJSON(),
Expand Down

0 comments on commit fc0bbf7

Please sign in to comment.