devtools-protocol 0.0.1527314 → 0.0.1528500

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.
@@ -15864,6 +15864,7 @@
15864
15864
  "preload",
15865
15865
  "SignedExchange",
15866
15866
  "preflight",
15867
+ "FedCM",
15867
15868
  "other"
15868
15869
  ]
15869
15870
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1527314",
3
+ "version": "0.0.1528500",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -587,6 +587,7 @@ domain Network
587
587
  preload
588
588
  SignedExchange
589
589
  preflight
590
+ FedCM
590
591
  other
591
592
  # Initiator JavaScript stack trace, set for Script only.
592
593
  # Requires the Debugger domain to be enabled.
@@ -12686,6 +12686,7 @@ export namespace Protocol {
12686
12686
  Preload = 'preload',
12687
12687
  SignedExchange = 'SignedExchange',
12688
12688
  Preflight = 'preflight',
12689
+ FedCM = 'FedCM',
12689
12690
  Other = 'other',
12690
12691
  }
12691
12692
 
@@ -12696,7 +12697,7 @@ export namespace Protocol {
12696
12697
  /**
12697
12698
  * Type of this initiator.
12698
12699
  */
12699
- type: ('parser' | 'script' | 'preload' | 'SignedExchange' | 'preflight' | 'other');
12700
+ type: ('parser' | 'script' | 'preload' | 'SignedExchange' | 'preflight' | 'FedCM' | 'other');
12700
12701
  /**
12701
12702
  * Initiator JavaScript stack trace, set for Script only.
12702
12703
  * Requires the Debugger domain to be enabled.