devtools-protocol 0.0.1301748 → 0.0.1302401
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.
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -849,6 +849,8 @@ experimental domain Audits
|
|
849
849
|
type CookieDeprecationMetadataIssueDetails extends object
|
850
850
|
properties
|
851
851
|
array of string allowedSites
|
852
|
+
number optOutPercentage
|
853
|
+
boolean isOptOutTopLevel
|
852
854
|
|
853
855
|
type ClientHintIssueReason extends string
|
854
856
|
enum
|
package/types/protocol.d.ts
CHANGED
@@ -3577,6 +3577,8 @@ export namespace Protocol {
|
|
3577
3577
|
*/
|
3578
3578
|
export interface CookieDeprecationMetadataIssueDetails {
|
3579
3579
|
allowedSites: string[];
|
3580
|
+
optOutPercentage: number;
|
3581
|
+
isOptOutTopLevel: boolean;
|
3580
3582
|
}
|
3581
3583
|
|
3582
3584
|
export type ClientHintIssueReason = ('MetaTagAllowListInvalidOrigin' | 'MetaTagModifiedHTML');
|