From a9231a7b911f708e9fd9883fe3452f6cc4151478 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 2 May 2024 09:59:43 +0000 Subject: [PATCH] feat(api): OpenAPI spec update via Stainless API (#433) --- .stats.yml | 2 +- src/resources/url-scanner/url-scanner.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.stats.yml b/.stats.yml index 0520d4dfb7d..3a8d5c3a553 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 1267 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-cc3299608e8bb30103d79d6bdc29758d43899b0393afe2153bea75e201ac0795.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-e766041655f0afd0c3d17f358598272442d420c51c0d73c87f17f5a0d9dc3990.yml diff --git a/src/resources/url-scanner/url-scanner.ts b/src/resources/url-scanner/url-scanner.ts index 61118a4d318..5e33eea6964 100644 --- a/src/resources/url-scanner/url-scanner.ts +++ b/src/resources/url-scanner/url-scanner.ts @@ -134,7 +134,7 @@ export interface URLScannerScanParams { page_asn?: string; /** - * Filter scans by main page hostname . + * Filter scans by main page hostname (domain of effective URL). */ page_hostname?: string; @@ -144,12 +144,12 @@ export interface URLScannerScanParams { page_ip?: string; /** - * Filter scans by exact match URL path (also supports suffix search). + * Filter scans by exact match of effective URL path (also supports suffix search). */ page_path?: string; /** - * Filter scans by exact match to scanned URL (_after redirects_) + * Filter scans by submitted or scanned URL */ page_url?: string; @@ -164,7 +164,7 @@ export interface URLScannerScanParams { scanId?: string; /** - * Filter scans by exact match URL of _any_ request made by the webpage + * Filter scans by URL of _any_ request made by the webpage */ url?: string; }