@@ -288,6 +288,27 @@ def timeseries(
288288 asn : SequenceNotStr [str ] | Omit = omit ,
289289 bot_class : List [Literal ["LIKELY_AUTOMATED" , "LIKELY_HUMAN" ]] | Omit = omit ,
290290 browser_family : List [Literal ["CHROME" , "EDGE" , "FIREFOX" , "SAFARI" ]] | Omit = omit ,
291+ content_type : List [
292+ Literal [
293+ "HTML" ,
294+ "IMAGES" ,
295+ "JSON" ,
296+ "JAVASCRIPT" ,
297+ "CSS" ,
298+ "PLAIN_TEXT" ,
299+ "FONTS" ,
300+ "XML" ,
301+ "YAML" ,
302+ "VIDEO" ,
303+ "AUDIO" ,
304+ "MARKDOWN" ,
305+ "DOCUMENTS" ,
306+ "BINARY" ,
307+ "SERIALIZATION" ,
308+ "OTHER" ,
309+ ]
310+ ]
311+ | Omit = omit ,
291312 continent : SequenceNotStr [str ] | Omit = omit ,
292313 date_end : SequenceNotStr [Union [str , datetime ]] | Omit = omit ,
293314 date_range : SequenceNotStr [str ] | Omit = omit ,
@@ -331,6 +352,8 @@ def timeseries(
331352
332353 browser_family: Filters results by browser family.
333354
355+ content_type: Filters results by content type category.
356+
334357 continent: Filters results by continent. Specify a comma-separated list of alpha-2 codes.
335358 Prefix with `-` to exclude continents from results. For example, `-EU,NA`
336359 excludes results from EU, but includes results from NA.
@@ -393,6 +416,7 @@ def timeseries(
393416 "asn" : asn ,
394417 "bot_class" : bot_class ,
395418 "browser_family" : browser_family ,
419+ "content_type" : content_type ,
396420 "continent" : continent ,
397421 "date_end" : date_end ,
398422 "date_range" : date_range ,
@@ -820,6 +844,27 @@ async def timeseries(
820844 asn : SequenceNotStr [str ] | Omit = omit ,
821845 bot_class : List [Literal ["LIKELY_AUTOMATED" , "LIKELY_HUMAN" ]] | Omit = omit ,
822846 browser_family : List [Literal ["CHROME" , "EDGE" , "FIREFOX" , "SAFARI" ]] | Omit = omit ,
847+ content_type : List [
848+ Literal [
849+ "HTML" ,
850+ "IMAGES" ,
851+ "JSON" ,
852+ "JAVASCRIPT" ,
853+ "CSS" ,
854+ "PLAIN_TEXT" ,
855+ "FONTS" ,
856+ "XML" ,
857+ "YAML" ,
858+ "VIDEO" ,
859+ "AUDIO" ,
860+ "MARKDOWN" ,
861+ "DOCUMENTS" ,
862+ "BINARY" ,
863+ "SERIALIZATION" ,
864+ "OTHER" ,
865+ ]
866+ ]
867+ | Omit = omit ,
823868 continent : SequenceNotStr [str ] | Omit = omit ,
824869 date_end : SequenceNotStr [Union [str , datetime ]] | Omit = omit ,
825870 date_range : SequenceNotStr [str ] | Omit = omit ,
@@ -863,6 +908,8 @@ async def timeseries(
863908
864909 browser_family: Filters results by browser family.
865910
911+ content_type: Filters results by content type category.
912+
866913 continent: Filters results by continent. Specify a comma-separated list of alpha-2 codes.
867914 Prefix with `-` to exclude continents from results. For example, `-EU,NA`
868915 excludes results from EU, but includes results from NA.
@@ -925,6 +972,7 @@ async def timeseries(
925972 "asn" : asn ,
926973 "bot_class" : bot_class ,
927974 "browser_family" : browser_family ,
975+ "content_type" : content_type ,
928976 "continent" : continent ,
929977 "date_end" : date_end ,
930978 "date_range" : date_range ,
0 commit comments