Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
type alias Protocol.Network.CookieBlockedReason
import { type Protocol } from "https://deno.land/x/pptr@1.2.0/vendor/devtools-protocol/protocol.d.ts";
const { CookieBlockedReason } = Protocol.Network;

Types of reasons why a cookie may not be sent with a request.

definition:
| "SecureOnly"
| "NotOnPath"
| "DomainMismatch"
| "SameSiteStrict"
| "SameSiteLax"
| "SameSiteUnspecifiedTreatedAsLax"
| "SameSiteNoneInsecure"
| "UserPreferences"
| "UnknownError"
| "SchemefulSameSiteStrict"
| "SchemefulSameSiteLax"
| "SchemefulSameSiteUnspecifiedTreatedAsLax"