@@ -181,6 +181,7 @@ def timeseries_groups(
181181 industry : SequenceNotStr [str ] | Omit = omit ,
182182 limit_per_group : int | Omit = omit ,
183183 name : SequenceNotStr [str ] | Omit = omit ,
184+ normalization : Literal ["PERCENTAGE" , "MIN0_MAX" , "PERCENTAGE_CHANGE" ] | Omit = omit ,
184185 response_status : SequenceNotStr [str ] | Omit = omit ,
185186 response_status_category : List [
186187 Literal ["INFORMATIONAL" , "SUCCESS" , "REDIRECTION" , "CLIENT_ERROR" , "SERVER_ERROR" ]
@@ -227,6 +228,9 @@ def timeseries_groups(
227228
228229 name: Array of names used to label the series in the response.
229230
231+ normalization: Normalization method applied to the results. Refer to
232+ [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
233+
230234 response_status: Filters results by HTTP response status code (e.g. 200, 403, 404). Only
231235 [IANA-registered codes](https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml)
232236 are accepted.
@@ -264,6 +268,7 @@ def timeseries_groups(
264268 "industry" : industry ,
265269 "limit_per_group" : limit_per_group ,
266270 "name" : name ,
271+ "normalization" : normalization ,
267272 "response_status" : response_status ,
268273 "response_status_category" : response_status_category ,
269274 "vertical" : vertical ,
@@ -430,6 +435,7 @@ async def timeseries_groups(
430435 industry : SequenceNotStr [str ] | Omit = omit ,
431436 limit_per_group : int | Omit = omit ,
432437 name : SequenceNotStr [str ] | Omit = omit ,
438+ normalization : Literal ["PERCENTAGE" , "MIN0_MAX" , "PERCENTAGE_CHANGE" ] | Omit = omit ,
433439 response_status : SequenceNotStr [str ] | Omit = omit ,
434440 response_status_category : List [
435441 Literal ["INFORMATIONAL" , "SUCCESS" , "REDIRECTION" , "CLIENT_ERROR" , "SERVER_ERROR" ]
@@ -476,6 +482,9 @@ async def timeseries_groups(
476482
477483 name: Array of names used to label the series in the response.
478484
485+ normalization: Normalization method applied to the results. Refer to
486+ [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/).
487+
479488 response_status: Filters results by HTTP response status code (e.g. 200, 403, 404). Only
480489 [IANA-registered codes](https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml)
481490 are accepted.
@@ -513,6 +522,7 @@ async def timeseries_groups(
513522 "industry" : industry ,
514523 "limit_per_group" : limit_per_group ,
515524 "name" : name ,
525+ "normalization" : normalization ,
516526 "response_status" : response_status ,
517527 "response_status_category" : response_status_category ,
518528 "vertical" : vertical ,
0 commit comments