@@ -239,6 +239,7 @@ def timeseries(
239
239
| NotGiven = NOT_GIVEN ,
240
240
date_start : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
241
241
format : Literal ["JSON" , "CSV" ] | NotGiven = NOT_GIVEN ,
242
+ include_delay : bool | NotGiven = NOT_GIVEN ,
242
243
location : str | NotGiven = NOT_GIVEN ,
243
244
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
244
245
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -263,6 +264,8 @@ def timeseries(
263
264
264
265
format: Format results are returned in.
265
266
267
+ include_delay: Include data delay meta information
268
+
266
269
location: Location Alpha2 code.
267
270
268
271
extra_headers: Send extra headers
@@ -287,6 +290,7 @@ def timeseries(
287
290
"date_range" : date_range ,
288
291
"date_start" : date_start ,
289
292
"format" : format ,
293
+ "include_delay" : include_delay ,
290
294
"location" : location ,
291
295
},
292
296
route_timeseries_params .RouteTimeseriesParams ,
@@ -497,6 +501,7 @@ async def timeseries(
497
501
| NotGiven = NOT_GIVEN ,
498
502
date_start : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
499
503
format : Literal ["JSON" , "CSV" ] | NotGiven = NOT_GIVEN ,
504
+ include_delay : bool | NotGiven = NOT_GIVEN ,
500
505
location : str | NotGiven = NOT_GIVEN ,
501
506
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
502
507
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -521,6 +526,8 @@ async def timeseries(
521
526
522
527
format: Format results are returned in.
523
528
529
+ include_delay: Include data delay meta information
530
+
524
531
location: Location Alpha2 code.
525
532
526
533
extra_headers: Send extra headers
@@ -545,6 +552,7 @@ async def timeseries(
545
552
"date_range" : date_range ,
546
553
"date_start" : date_start ,
547
554
"format" : format ,
555
+ "include_delay" : include_delay ,
548
556
"location" : location ,
549
557
},
550
558
route_timeseries_params .RouteTimeseriesParams ,
0 commit comments