@@ -1847,6 +1847,7 @@ def list_sources(
1847
1847
# @param action [Array<ActionType>] Actions for filtering the list of tasks.
1848
1848
# @param enabled [Boolean] Whether to filter the list of tasks by the `enabled` status.
1849
1849
# @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.
1850
1851
# @param destination_id [Array<String>] Destination IDs for filtering the list of tasks.
1851
1852
# @param trigger_type [Array<TriggerType>] Type of task trigger for filtering the list of tasks.
1852
1853
# @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(
1859
1860
action = nil ,
1860
1861
enabled = nil ,
1861
1862
source_id = nil ,
1863
+ source_type = nil ,
1862
1864
destination_id = nil ,
1863
1865
trigger_type = nil ,
1864
1866
sort = nil ,
@@ -1872,6 +1874,7 @@ def list_tasks_with_http_info(
1872
1874
query_params [ :action ] = @api_client . build_collection_param ( action , :csv ) unless action . nil?
1873
1875
query_params [ :enabled ] = enabled unless enabled . nil?
1874
1876
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?
1875
1878
unless destination_id . nil?
1876
1879
query_params [ :destinationID ] = @api_client . build_collection_param ( destination_id , :csv )
1877
1880
end
@@ -1907,6 +1910,7 @@ def list_tasks_with_http_info(
1907
1910
# @param action [Array<ActionType>] Actions for filtering the list of tasks.
1908
1911
# @param enabled [Boolean] Whether to filter the list of tasks by the `enabled` status.
1909
1912
# @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.
1910
1914
# @param destination_id [Array<String>] Destination IDs for filtering the list of tasks.
1911
1915
# @param trigger_type [Array<TriggerType>] Type of task trigger for filtering the list of tasks.
1912
1916
# @param sort [TaskSortKeys] Property by which to sort the list of tasks. (default to 'createdAt')
@@ -1919,6 +1923,7 @@ def list_tasks(
1919
1923
action = nil ,
1920
1924
enabled = nil ,
1921
1925
source_id = nil ,
1926
+ source_type = nil ,
1922
1927
destination_id = nil ,
1923
1928
trigger_type = nil ,
1924
1929
sort = nil ,
@@ -1931,6 +1936,7 @@ def list_tasks(
1931
1936
action ,
1932
1937
enabled ,
1933
1938
source_id ,
1939
+ source_type ,
1934
1940
destination_id ,
1935
1941
trigger_type ,
1936
1942
sort ,
0 commit comments