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 ebb0647 commit f604a7b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/algolia/api/ingestion_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1847,6 +1847,7 @@ def list_sources(
# @param action [Array<ActionType>] Actions for filtering the list of tasks.
# @param enabled [Boolean] Whether to filter the list of tasks by the `enabled` status.
# @param source_id [Array<String>] Source IDs for filtering the list of tasks.
# @param source_type [Array<SourceType>] Filters the tasks with the specified source type.
# @param destination_id [Array<String>] Destination IDs for filtering the list of tasks.
# @param trigger_type [Array<TriggerType>] Type of task trigger for filtering the list of tasks.
# @param sort [TaskSortKeys] Property by which to sort the list of tasks. (default to 'createdAt')
Expand All @@ -1859,6 +1860,7 @@ def list_tasks_with_http_info(
action = nil,
enabled = nil,
source_id = nil,
source_type = nil,
destination_id = nil,
trigger_type = nil,
sort = nil,
Expand All @@ -1872,6 +1874,7 @@ def list_tasks_with_http_info(
query_params[:action] = @api_client.build_collection_param(action, :csv) unless action.nil?
query_params[:enabled] = enabled unless enabled.nil?
query_params[:sourceID] = @api_client.build_collection_param(source_id, :csv) unless source_id.nil?
query_params[:sourceType] = @api_client.build_collection_param(source_type, :csv) unless source_type.nil?
unless destination_id.nil?
query_params[:destinationID] = @api_client.build_collection_param(destination_id, :csv)
end
Expand Down Expand Up @@ -1907,6 +1910,7 @@ def list_tasks_with_http_info(
# @param action [Array<ActionType>] Actions for filtering the list of tasks.
# @param enabled [Boolean] Whether to filter the list of tasks by the `enabled` status.
# @param source_id [Array<String>] Source IDs for filtering the list of tasks.
# @param source_type [Array<SourceType>] Filters the tasks with the specified source type.
# @param destination_id [Array<String>] Destination IDs for filtering the list of tasks.
# @param trigger_type [Array<TriggerType>] Type of task trigger for filtering the list of tasks.
# @param sort [TaskSortKeys] Property by which to sort the list of tasks. (default to 'createdAt')
Expand All @@ -1919,6 +1923,7 @@ def list_tasks(
action = nil,
enabled = nil,
source_id = nil,
source_type = nil,
destination_id = nil,
trigger_type = nil,
sort = nil,
Expand All @@ -1931,6 +1936,7 @@ def list_tasks(
action,
enabled,
source_id,
source_type,
destination_id,
trigger_type,
sort,
Expand Down

0 comments on commit f604a7b

Please sign in to comment.