/** Controls how the attributes field is interpreted in cleaning operations */ export type AttributeMode = 'ALLOW' | 'DENY'; /** The different types of captchas that can be solved */ export type CaptchaType = 'cloudflare' | 'hcaptcha' | 'recaptcha' | 'recaptchaV3' | 'geetest' | 'normal' | 'numberCaptcha' | 'friendlyCaptcha' | 'capy' | 'textCaptcha' | 'amazonWaf' | 'datadome' | 'akamai' | 'lemin' | 'mtcaptcha' | 'slider' | 'audio' | 'funcaptcha' | 'click' | 'yandex' | 'math' | 'perimeterx'; /** * The kind of console message, mirroring the CDP Runtime.consoleAPICalled type * (and puppeteer's ConsoleMessageType). Uncaught exceptions are reported as `error`. */ export type ConsoleMessageType = 'log' | 'debug' | 'info' | 'error' | 'warning' | 'dir' | 'dirxml' | 'table' | 'trace' | 'clear' | 'startGroup' | 'startGroupCollapsed' | 'endGroup' | 'assert' | 'profile' | 'profileEnd' | 'count' | 'timeEnd' | 'verbose'; export type CookiePriority = 'Low' | 'Medium' | 'High'; /** The values a cookie's SameSite attribute can hold */ export type CookieSameSite = 'Strict' | 'Lax' | 'None'; export type CookieSourceScheme = 'Unset' | 'NonSecure' | 'Secure'; /** The binary-type of the stream */ export type LiveURLStreamType = 'jpeg' | 'png'; /** The CSS media type to emulate for the page */ export type MediaType = 'screen' | 'print'; /** The various HTTP-based methods to wait for */ export type Method = 'CONNECT' | 'DELETE' | 'GET' | 'HEAD' | 'OPTIONS' | 'PATCH' | 'POST' | 'PUT' | 'TRACE'; /** Logical operators for APIs that have conditions */ export type OperatorType = 'and' | 'or'; /** The values a pdf's Size attribute can hold */ export type PDFPageFormat = 'a0' | 'a1' | 'a2' | 'a3' | 'a4' | 'a5' | 'a6' | 'legal' | 'letter' | 'ledger' | 'tabloid'; /** The Browserless proxy network to route matching requests through. */ export type ProxyNetwork = 'residential' | 'datacenter'; /** The type of resource for a given network or HTTP request */ export type ResourceType = 'cspviolationreport' | 'document' | 'eventsource' | 'fetch' | 'font' | 'image' | 'manifest' | 'media' | 'other' | 'ping' | 'prefetch' | 'preflight' | 'script' | 'signedexchange' | 'stylesheet' | 'texttrack' | 'websocket' | 'xhr'; /** The different types of screenshot formats */ export type ScreenshotType = 'jpeg' | 'png' | 'webp'; /** Browser-driven polling modes for waitForFunction */ export type WaitForFunctionPolling = 'raf' | 'mutation'; /** Options for when to consider the page has loaded and proceed with further execution */ export type WaitUntilGoto = 'commit' | 'load' | 'domContentLoaded' | 'firstMeaningfulPaint' | 'firstContentfulPaint' | 'interactiveTime' | 'networkIdle'; /** The different stages of the browser's loading process */ export type WaitUntilHistory = 'commit' | 'domContentLoaded' | 'load' | 'networkIdle'; /** The two-letter ISO code for the specified country */ export type CountryCode = 'AD' | 'AE' | 'AF' | 'AG' | 'AL' | 'AM' | 'AO' | 'AR' | 'AT' | 'AU' | 'AW' | 'AX' | 'AZ' | 'BA' | 'BB' | 'BD' | 'BE' | 'BF' | 'BG' | 'BH' | 'BI' | 'BJ' | 'BM' | 'BN' | 'BO' | 'BQ' | 'BR' | 'BS' | 'BT' | 'BW' | 'BY' | 'BZ' | 'CA' | 'CD' | 'CG' | 'CH' | 'CI' | 'CL' | 'CM' | 'CN' | 'CO' | 'CR' | 'CU' | 'CV' | 'CW' | 'CY' | 'CZ' | 'DE' | 'DJ' | 'DK' | 'DM' | 'DO' | 'DZ' | 'EC' | 'EE' | 'EG' | 'ES' | 'ET' | 'FI' | 'FJ' | 'FO' | 'FR' | 'GA' | 'GB' | 'GD' | 'GE' | 'GF' | 'GG' | 'GH' | 'GI' | 'GM' | 'GN' | 'GP' | 'GR' | 'GT' | 'GU' | 'GY' | 'HK' | 'HN' | 'HR' | 'HT' | 'HU' | 'ID' | 'IE' | 'IL' | 'IM' | 'IN' | 'IQ' | 'IR' | 'IS' | 'IT' | 'JE' | 'JM' | 'JO' | 'JP' | 'KE' | 'KG' | 'KH' | 'KN' | 'KR' | 'KW' | 'KY' | 'KZ' | 'LA' | 'LB' | 'LC' | 'LI' | 'LK' | 'LR' | 'LS' | 'LT' | 'LU' | 'LV' | 'LY' | 'MA' | 'MC' | 'MD' | 'ME' | 'MG' | 'MK' | 'ML' | 'MM' | 'MN' | 'MO' | 'MQ' | 'MR' | 'MS' | 'MT' | 'MU' | 'MV' | 'MW' | 'MX' | 'MY' | 'MZ' | 'NA' | 'NC' | 'NG' | 'NI' | 'NL' | 'NO' | 'NP' | 'NZ' | 'OM' | 'PA' | 'PE' | 'PF' | 'PG' | 'PH' | 'PK' | 'PL' | 'PR' | 'PS' | 'PT' | 'PY' | 'QA' | 'RE' | 'RO' | 'RS' | 'RU' | 'RW' | 'SC' | 'SE' | 'SG' | 'SI' | 'SK' | 'SL' | 'SM' | 'SN' | 'SO' | 'SR' | 'SS' | 'ST' | 'SV' | 'SX' | 'SY' | 'SZ' | 'TC' | 'TG' | 'TH' | 'TJ' | 'TN' | 'TR' | 'TT' | 'TW' | 'TZ' | 'UA' | 'UG' | 'US' | 'UY' | 'UZ' | 'VC' | 'VE' | 'VG' | 'VI' | 'VN' | 'WS' | 'YT' | 'ZA' | 'ZM' | 'ZW'; //# sourceMappingURL=enums.d.ts.map