diff --git a/src/resources/page-shield/scripts.ts b/src/resources/page-shield/scripts.ts index 916d8e8586..dea00aae1c 100644 --- a/src/resources/page-shield/scripts.ts +++ b/src/resources/page-shield/scripts.ts @@ -35,6 +35,8 @@ export interface PageShieldScript { added_at?: unknown; + dataflow_score?: unknown; + domain_reported_malicious?: unknown; fetched_at?: unknown; @@ -51,6 +53,8 @@ export interface PageShieldScript { last_seen_at?: unknown; + obfuscation_score?: unknown; + page_urls?: unknown; url?: unknown; @@ -65,6 +69,8 @@ export interface ScriptGetResponse { added_at?: unknown; + dataflow_score?: unknown; + domain_reported_malicious?: unknown; fetched_at?: unknown; @@ -81,6 +87,8 @@ export interface ScriptGetResponse { last_seen_at?: unknown; + obfuscation_score?: unknown; + page_urls?: unknown; url?: unknown; @@ -95,6 +103,11 @@ export namespace ScriptGetResponse { * The version of the analyzed script. */ export interface Version { + /** + * The dataflow score of the JavaScript content. + */ + dataflow_score?: number | null; + /** * The timestamp of when the script was last fetched. */ @@ -109,6 +122,11 @@ export namespace ScriptGetResponse { * The integrity score of the JavaScript content. */ js_integrity_score?: number | null; + + /** + * The obfuscation score of the JavaScript content. + */ + obfuscation_score?: number | null; } }