@@ -58,7 +58,6 @@ def scan(
5858 asn : str | NotGiven = NOT_GIVEN ,
5959 date_end : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
6060 date_start : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
61- hash : str | NotGiven = NOT_GIVEN ,
6261 hostname : str | NotGiven = NOT_GIVEN ,
6362 ip : str | NotGiven = NOT_GIVEN ,
6463 is_malicious : bool | NotGiven = NOT_GIVEN ,
@@ -99,8 +98,6 @@ def scan(
9998
10099 date_start: Filter scans requested after date (inclusive).
101100
102- hash: Filter scans by hash of any html/js/css request made by the webpage.
103-
104101 hostname: Filter scans by hostname of _any_ request made by the webpage.
105102
106103 ip: Filter scans by IP address (IPv4 or IPv6) of _any_ request made by the webpage.
@@ -150,7 +147,6 @@ def scan(
150147 "asn" : asn ,
151148 "date_end" : date_end ,
152149 "date_start" : date_start ,
153- "hash" : hash ,
154150 "hostname" : hostname ,
155151 "ip" : ip ,
156152 "is_malicious" : is_malicious ,
@@ -194,7 +190,6 @@ async def scan(
194190 asn : str | NotGiven = NOT_GIVEN ,
195191 date_end : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
196192 date_start : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
197- hash : str | NotGiven = NOT_GIVEN ,
198193 hostname : str | NotGiven = NOT_GIVEN ,
199194 ip : str | NotGiven = NOT_GIVEN ,
200195 is_malicious : bool | NotGiven = NOT_GIVEN ,
@@ -235,8 +230,6 @@ async def scan(
235230
236231 date_start: Filter scans requested after date (inclusive).
237232
238- hash: Filter scans by hash of any html/js/css request made by the webpage.
239-
240233 hostname: Filter scans by hostname of _any_ request made by the webpage.
241234
242235 ip: Filter scans by IP address (IPv4 or IPv6) of _any_ request made by the webpage.
@@ -286,7 +279,6 @@ async def scan(
286279 "asn" : asn ,
287280 "date_end" : date_end ,
288281 "date_start" : date_start ,
289- "hash" : hash ,
290282 "hostname" : hostname ,
291283 "ip" : ip ,
292284 "is_malicious" : is_malicious ,
0 commit comments