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.
@@ -1696,6 +1696,14 @@
1696
1696
  "items": {
1697
1697
  "type": "string"
1698
1698
  }
1699
+ },
1700
+ {
1701
+ "name": "optOutPercentage",
1702
+ "type": "number"
1703
+ },
1704
+ {
1705
+ "name": "isOptOutTopLevel",
1706
+ "type": "boolean"
1699
1707
  }
1700
1708
  ]
1701
1709
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1301748",
3
+ "version": "0.0.1302401",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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
@@ -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');