From 8cff85254893d914122bbbb174b2cf0dec6610a5 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 17:06:38 +0000 Subject: [PATCH] feat: OpenAPI spec update via Stainless API (#149) --- src/resources/page-shield/scripts.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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; } }