devtools-protocol 0.0.1648091 → 0.0.1648812
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.
|
@@ -16797,10 +16797,6 @@
|
|
|
16797
16797
|
"enum": [
|
|
16798
16798
|
"None",
|
|
16799
16799
|
"UserSetting",
|
|
16800
|
-
"TPCDMetadata",
|
|
16801
|
-
"TPCDDeprecationTrial",
|
|
16802
|
-
"TopLevelTPCDDeprecationTrial",
|
|
16803
|
-
"TPCDHeuristics",
|
|
16804
16800
|
"EnterprisePolicy",
|
|
16805
16801
|
"StorageAccess",
|
|
16806
16802
|
"TopLevelStorageAccess",
|
package/package.json
CHANGED
package/pdl/domains/Network.pdl
CHANGED
|
@@ -738,14 +738,6 @@ domain Network
|
|
|
738
738
|
None
|
|
739
739
|
# The cookie should have been blocked by 3PCD but is exempted by explicit user setting.
|
|
740
740
|
UserSetting
|
|
741
|
-
# The cookie should have been blocked by 3PCD but is exempted by metadata mitigation.
|
|
742
|
-
TPCDMetadata
|
|
743
|
-
# The cookie should have been blocked by 3PCD but is exempted by Deprecation Trial mitigation.
|
|
744
|
-
TPCDDeprecationTrial
|
|
745
|
-
# The cookie should have been blocked by 3PCD but is exempted by Top-level Deprecation Trial mitigation.
|
|
746
|
-
TopLevelTPCDDeprecationTrial
|
|
747
|
-
# The cookie should have been blocked by 3PCD but is exempted by heuristics mitigation.
|
|
748
|
-
TPCDHeuristics
|
|
749
741
|
# The cookie should have been blocked by 3PCD but is exempted by Enterprise Policy.
|
|
750
742
|
EnterprisePolicy
|
|
751
743
|
# The cookie should have been blocked by 3PCD but is exempted by Storage Access API.
|
package/types/protocol.d.ts
CHANGED
|
@@ -13268,7 +13268,7 @@ export namespace Protocol {
|
|
|
13268
13268
|
* Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
|
|
13269
13269
|
* @experimental
|
|
13270
13270
|
*/
|
|
13271
|
-
export type CookieExemptionReason = ('None' | 'UserSetting' | '
|
|
13271
|
+
export type CookieExemptionReason = ('None' | 'UserSetting' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | 'Scheme' | 'SameSiteNoneCookiesInSandbox');
|
|
13272
13272
|
|
|
13273
13273
|
/**
|
|
13274
13274
|
* A cookie which was not stored from a response with the corresponding reason.
|