devtools-protocol 0.0.1254350 → 0.0.1255431
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12784,7 +12784,7 @@
|
|
12784
12784
|
"EnterprisePolicy",
|
12785
12785
|
"StorageAccess",
|
12786
12786
|
"TopLevelStorageAccess",
|
12787
|
-
"
|
12787
|
+
"CorsOptIn"
|
12788
12788
|
]
|
12789
12789
|
},
|
12790
12790
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -6010,8 +6010,8 @@ domain Network
|
|
6010
6010
|
StorageAccess
|
6011
6011
|
# The cookie should have been blocked by 3PCD but is exempted by Top-level Storage Access API.
|
6012
6012
|
TopLevelStorageAccess
|
6013
|
-
# The cookie should have been blocked by 3PCD but is exempted by
|
6014
|
-
|
6013
|
+
# The cookie should have been blocked by 3PCD but is exempted by CORS opt-in.
|
6014
|
+
CorsOptIn
|
6015
6015
|
|
6016
6016
|
# A cookie which was not stored from a response with the corresponding reason.
|
6017
6017
|
experimental type BlockedSetCookieWithReason extends object
|
package/types/protocol.d.ts
CHANGED
@@ -10595,7 +10595,7 @@ export namespace Protocol {
|
|
10595
10595
|
/**
|
10596
10596
|
* Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
|
10597
10597
|
*/
|
10598
|
-
export type CookieExemptionReason = ('None' | 'UserSetting' | 'TPCDMetadata' | 'TPCDDeprecationTrial' | 'TPCDHeuristics' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | '
|
10598
|
+
export type CookieExemptionReason = ('None' | 'UserSetting' | 'TPCDMetadata' | 'TPCDDeprecationTrial' | 'TPCDHeuristics' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | 'CorsOptIn');
|
10599
10599
|
|
10600
10600
|
/**
|
10601
10601
|
* A cookie which was not stored from a response with the corresponding reason.
|