@@ -125,6 +125,7 @@ def search_news(
125125 continents : Optional [List [str ]] = None ,
126126 sentiment : Optional [Literal ["negative" , "neutral" , "positive" ]] = None ,
127127 premium : Optional [bool ] = False ,
128+ authors : Optional [List [str ]] = None ,
128129 * ,
129130 http_headers : Optional [Dict ] = None ,
130131 ) -> SearchResponse :
@@ -226,6 +227,7 @@ def search_news(
226227 "continents" : continents ,
227228 "sentiment" : sentiment ,
228229 "premium" : premium ,
230+ "authors" : authors ,
229231 },
230232 headers = http_headers ,
231233 accept = [(SearchResponse .__content_type__ , 1.0 )],
@@ -565,6 +567,7 @@ async def search_news(
565567 continents : Optional [List [str ]] = None ,
566568 sentiment : Optional [Literal ["negative" , "neutral" , "positive" ]] = None ,
567569 premium : Optional [bool ] = False ,
570+ authors : Optional [List [str ]] = None ,
568571 * ,
569572 http_headers : Optional [Dict ] = None ,
570573 ) -> SearchResponse :
@@ -611,6 +614,7 @@ async def search_news(
611614 "continents" : continents ,
612615 "sentiment" : sentiment ,
613616 "premium" : premium ,
617+ "authors" : authors ,
614618 },
615619 headers = http_headers ,
616620 accept = [(SearchResponse .__content_type__ , 1.0 )],
0 commit comments