* feat: expose the sameSite value for cookies * Apply suggestions from code review Co-Authored-By: Charles Kerr <ckerr@github.com> * Apply suggestions from code review Align with cookie samesite values for the extensions API https://developer.chrome.com/extensions/cookies#type-SameSiteStatus * chore: add tests for sameSite cookies get/set * chore: update docs parser * chore: update docs for MessageChannel and MessagePort to have correct process information * chore: remove LOG warning * chore: throw error if the string->samesite conversion fails Co-authored-by: Charles Kerr <ckerr@github.com>
1 KiB
1 KiB
Cookie Object
nameString - The name of the cookie.valueString - The value of the cookie.domainString (optional) - The domain of the cookie; this will be normalized with a preceding dot so that it's also valid for subdomains.hostOnlyBoolean (optional) - Whether the cookie is a host-only cookie; this will only betrueif no domain was passed.pathString (optional) - The path of the cookie.secureBoolean (optional) - Whether the cookie is marked as secure.httpOnlyBoolean (optional) - Whether the cookie is marked as HTTP only.sessionBoolean (optional) - Whether the cookie is a session cookie or a persistent cookie with an expiration date.expirationDateDouble (optional) - The expiration date of the cookie as the number of seconds since the UNIX epoch. Not provided for session cookies.sameSiteString - The Same Site policy applied to this cookie. Can beunspecified,no_restriction,laxorstrict.