File tree 2 files changed +14
-0
lines changed
src/cloudflare/types/page_shield
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ class PageShieldScript(BaseModel):
12
12
13
13
added_at : Optional [object ] = None
14
14
15
+ dataflow_score : Optional [object ] = None
16
+
15
17
domain_reported_malicious : Optional [object ] = None
16
18
17
19
fetched_at : Optional [object ] = None
@@ -28,6 +30,8 @@ class PageShieldScript(BaseModel):
28
30
29
31
last_seen_at : Optional [object ] = None
30
32
33
+ obfuscation_score : Optional [object ] = None
34
+
31
35
page_urls : Optional [object ] = None
32
36
33
37
url : Optional [object ] = None
Original file line number Diff line number Diff line change 8
8
9
9
10
10
class Version (BaseModel ):
11
+ dataflow_score : Optional [int ] = None
12
+ """The dataflow score of the JavaScript content."""
13
+
11
14
fetched_at : Optional [str ] = None
12
15
"""The timestamp of when the script was last fetched."""
13
16
@@ -17,12 +20,17 @@ class Version(BaseModel):
17
20
js_integrity_score : Optional [int ] = None
18
21
"""The integrity score of the JavaScript content."""
19
22
23
+ obfuscation_score : Optional [int ] = None
24
+ """The obfuscation score of the JavaScript content."""
25
+
20
26
21
27
class ScriptGetResponse (BaseModel ):
22
28
id : Optional [object ] = None
23
29
24
30
added_at : Optional [object ] = None
25
31
32
+ dataflow_score : Optional [object ] = None
33
+
26
34
domain_reported_malicious : Optional [object ] = None
27
35
28
36
fetched_at : Optional [object ] = None
@@ -39,6 +47,8 @@ class ScriptGetResponse(BaseModel):
39
47
40
48
last_seen_at : Optional [object ] = None
41
49
50
+ obfuscation_score : Optional [object ] = None
51
+
42
52
page_urls : Optional [object ] = None
43
53
44
54
url : Optional [object ] = None
You can’t perform that action at this time.
0 commit comments