Skip to content

Commit

Permalink
feat: OpenAPI spec update via Stainless API (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Mar 13, 2024
1 parent cdf413d commit 8cff852
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/resources/page-shield/scripts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ export interface PageShieldScript {

added_at?: unknown;

dataflow_score?: unknown;

domain_reported_malicious?: unknown;

fetched_at?: unknown;
Expand All @@ -51,6 +53,8 @@ export interface PageShieldScript {

last_seen_at?: unknown;

obfuscation_score?: unknown;

page_urls?: unknown;

url?: unknown;
Expand All @@ -65,6 +69,8 @@ export interface ScriptGetResponse {

added_at?: unknown;

dataflow_score?: unknown;

domain_reported_malicious?: unknown;

fetched_at?: unknown;
Expand All @@ -81,6 +87,8 @@ export interface ScriptGetResponse {

last_seen_at?: unknown;

obfuscation_score?: unknown;

page_urls?: unknown;

url?: unknown;
Expand All @@ -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.
*/
Expand All @@ -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;
}
}

Expand Down

0 comments on commit 8cff852

Please sign in to comment.