@@ -411,6 +411,7 @@ def query_type(
411411 date_range : List [str ] | NotGiven = NOT_GIVEN ,
412412 date_start : List [Union [str , datetime ]] | NotGiven = NOT_GIVEN ,
413413 format : Literal ["JSON" , "CSV" ] | NotGiven = NOT_GIVEN ,
414+ limit_per_group : int | NotGiven = NOT_GIVEN ,
414415 location : List [str ] | NotGiven = NOT_GIVEN ,
415416 name : List [str ] | NotGiven = NOT_GIVEN ,
416417 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -446,6 +447,9 @@ def query_type(
446447
447448 format: Format results are returned in.
448449
450+ limit_per_group: Limit the number of objects (eg browsers, verticals, etc) to the top items over
451+ the time range.
452+
449453 location: Array of comma separated list of locations (alpha-2 country codes). Start with
450454 `-` to exclude from results. For example, `-US,PT` excludes results from the US,
451455 but includes results from PT.
@@ -476,6 +480,7 @@ def query_type(
476480 "date_range" : date_range ,
477481 "date_start" : date_start ,
478482 "format" : format ,
483+ "limit_per_group" : limit_per_group ,
479484 "location" : location ,
480485 "name" : name ,
481486 },
@@ -496,6 +501,7 @@ def response_codes(
496501 date_range : List [str ] | NotGiven = NOT_GIVEN ,
497502 date_start : List [Union [str , datetime ]] | NotGiven = NOT_GIVEN ,
498503 format : Literal ["JSON" , "CSV" ] | NotGiven = NOT_GIVEN ,
504+ limit_per_group : int | NotGiven = NOT_GIVEN ,
499505 location : List [str ] | NotGiven = NOT_GIVEN ,
500506 name : List [str ] | NotGiven = NOT_GIVEN ,
501507 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -532,6 +538,9 @@ def response_codes(
532538
533539 format: Format results are returned in.
534540
541+ limit_per_group: Limit the number of objects (eg browsers, verticals, etc) to the top items over
542+ the time range.
543+
535544 location: Array of comma separated list of locations (alpha-2 country codes). Start with
536545 `-` to exclude from results. For example, `-US,PT` excludes results from the US,
537546 but includes results from PT.
@@ -562,6 +571,7 @@ def response_codes(
562571 "date_range" : date_range ,
563572 "date_start" : date_start ,
564573 "format" : format ,
574+ "limit_per_group" : limit_per_group ,
565575 "location" : location ,
566576 "name" : name ,
567577 },
@@ -945,6 +955,7 @@ async def query_type(
945955 date_range : List [str ] | NotGiven = NOT_GIVEN ,
946956 date_start : List [Union [str , datetime ]] | NotGiven = NOT_GIVEN ,
947957 format : Literal ["JSON" , "CSV" ] | NotGiven = NOT_GIVEN ,
958+ limit_per_group : int | NotGiven = NOT_GIVEN ,
948959 location : List [str ] | NotGiven = NOT_GIVEN ,
949960 name : List [str ] | NotGiven = NOT_GIVEN ,
950961 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -980,6 +991,9 @@ async def query_type(
980991
981992 format: Format results are returned in.
982993
994+ limit_per_group: Limit the number of objects (eg browsers, verticals, etc) to the top items over
995+ the time range.
996+
983997 location: Array of comma separated list of locations (alpha-2 country codes). Start with
984998 `-` to exclude from results. For example, `-US,PT` excludes results from the US,
985999 but includes results from PT.
@@ -1010,6 +1024,7 @@ async def query_type(
10101024 "date_range" : date_range ,
10111025 "date_start" : date_start ,
10121026 "format" : format ,
1027+ "limit_per_group" : limit_per_group ,
10131028 "location" : location ,
10141029 "name" : name ,
10151030 },
@@ -1030,6 +1045,7 @@ async def response_codes(
10301045 date_range : List [str ] | NotGiven = NOT_GIVEN ,
10311046 date_start : List [Union [str , datetime ]] | NotGiven = NOT_GIVEN ,
10321047 format : Literal ["JSON" , "CSV" ] | NotGiven = NOT_GIVEN ,
1048+ limit_per_group : int | NotGiven = NOT_GIVEN ,
10331049 location : List [str ] | NotGiven = NOT_GIVEN ,
10341050 name : List [str ] | NotGiven = NOT_GIVEN ,
10351051 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -1066,6 +1082,9 @@ async def response_codes(
10661082
10671083 format: Format results are returned in.
10681084
1085+ limit_per_group: Limit the number of objects (eg browsers, verticals, etc) to the top items over
1086+ the time range.
1087+
10691088 location: Array of comma separated list of locations (alpha-2 country codes). Start with
10701089 `-` to exclude from results. For example, `-US,PT` excludes results from the US,
10711090 but includes results from PT.
@@ -1096,6 +1115,7 @@ async def response_codes(
10961115 "date_range" : date_range ,
10971116 "date_start" : date_start ,
10981117 "format" : format ,
1118+ "limit_per_group" : limit_per_group ,
10991119 "location" : location ,
11001120 "name" : name ,
11011121 },
0 commit comments