@@ -1847,6 +1847,7 @@ def list_sources(
18471847 # @param action [Array<ActionType>] Actions for filtering the list of tasks.
18481848 # @param enabled [Boolean] Whether to filter the list of tasks by the `enabled` status.
18491849 # @param source_id [Array<String>] Source IDs for filtering the list of tasks.
1850+ # @param source_type [Array<SourceType>] Filters the tasks with the specified source type.
18501851 # @param destination_id [Array<String>] Destination IDs for filtering the list of tasks.
18511852 # @param trigger_type [Array<TriggerType>] Type of task trigger for filtering the list of tasks.
18521853 # @param sort [TaskSortKeys] Property by which to sort the list of tasks. (default to 'createdAt')
@@ -1859,6 +1860,7 @@ def list_tasks_with_http_info(
18591860 action = nil ,
18601861 enabled = nil ,
18611862 source_id = nil ,
1863+ source_type = nil ,
18621864 destination_id = nil ,
18631865 trigger_type = nil ,
18641866 sort = nil ,
@@ -1872,6 +1874,7 @@ def list_tasks_with_http_info(
18721874 query_params [ :action ] = @api_client . build_collection_param ( action , :csv ) unless action . nil?
18731875 query_params [ :enabled ] = enabled unless enabled . nil?
18741876 query_params [ :sourceID ] = @api_client . build_collection_param ( source_id , :csv ) unless source_id . nil?
1877+ query_params [ :sourceType ] = @api_client . build_collection_param ( source_type , :csv ) unless source_type . nil?
18751878 unless destination_id . nil?
18761879 query_params [ :destinationID ] = @api_client . build_collection_param ( destination_id , :csv )
18771880 end
@@ -1907,6 +1910,7 @@ def list_tasks_with_http_info(
19071910 # @param action [Array<ActionType>] Actions for filtering the list of tasks.
19081911 # @param enabled [Boolean] Whether to filter the list of tasks by the `enabled` status.
19091912 # @param source_id [Array<String>] Source IDs for filtering the list of tasks.
1913+ # @param source_type [Array<SourceType>] Filters the tasks with the specified source type.
19101914 # @param destination_id [Array<String>] Destination IDs for filtering the list of tasks.
19111915 # @param trigger_type [Array<TriggerType>] Type of task trigger for filtering the list of tasks.
19121916 # @param sort [TaskSortKeys] Property by which to sort the list of tasks. (default to 'createdAt')
@@ -1919,6 +1923,7 @@ def list_tasks(
19191923 action = nil ,
19201924 enabled = nil ,
19211925 source_id = nil ,
1926+ source_type = nil ,
19221927 destination_id = nil ,
19231928 trigger_type = nil ,
19241929 sort = nil ,
@@ -1931,6 +1936,7 @@ def list_tasks(
19311936 action ,
19321937 enabled ,
19331938 source_id ,
1939+ source_type ,
19341940 destination_id ,
19351941 trigger_type ,
19361942 sort ,
0 commit comments