@@ -69,6 +69,7 @@ class CaptureResponse(TypedDict, total=False):
6969 children : list [Any ] | None
7070 runtime : float | None
7171 potential_favicons : set [bytes ] | None
72+ trusted_timestamps : dict [str , str ] | None
7273
7374
7475class CaptureResponseJson (TypedDict , total = False ):
@@ -113,6 +114,7 @@ class CaptureSettings(TypedDict, total=False):
113114 referer : str | None
114115 with_screenshot : bool
115116 with_favicon : bool
117+ with_trusted_timestamps : bool
116118 allow_tracking : bool
117119 headless : bool
118120 init_script : str
@@ -190,6 +192,7 @@ def enqueue(self, *,
190192 referer : str | None = None ,
191193 with_screenshot : bool = True ,
192194 with_favicon : bool = False ,
195+ with_trusted_timestamps : bool = False ,
193196 allow_tracking : bool = False ,
194197 headless : bool = True ,
195198 init_script : str | None = None ,
@@ -224,6 +227,7 @@ def enqueue(self, *,
224227 referer : str | None = None ,
225228 with_screenshot : bool = True ,
226229 with_favicon : bool = False ,
230+ with_trusted_timestamps : bool = False ,
227231 allow_tracking : bool = False ,
228232 headless : bool = True ,
229233 init_script : str | None = None ,
@@ -240,7 +244,8 @@ def enqueue(self, *,
240244 to_enqueue = settings
241245 else :
242246 to_enqueue = {'depth' : depth , 'java_script_enabled' : java_script_enabled ,
243- 'with_favicon' : with_favicon , 'allow_tracking' : allow_tracking ,
247+ 'with_favicon' : with_favicon , 'with_trusted_timestamps' : with_trusted_timestamps ,
248+ 'allow_tracking' : allow_tracking ,
244249 'headless' : headless , 'with_screenshot' : with_screenshot ,
245250 'rendered_hostname_only' : rendered_hostname_only ,
246251 'force' : force , 'recapture_interval' : recapture_interval , 'priority' : priority }
0 commit comments