devtools-protocol 0.0.1375038 → 0.0.1376096

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.
@@ -24927,7 +24927,8 @@
24927
24927
  "enum": [
24928
24928
  "suspended",
24929
24929
  "running",
24930
- "closed"
24930
+ "closed",
24931
+ "interrupted"
24931
24932
  ]
24932
24933
  },
24933
24934
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1375038",
3
+ "version": "0.0.1376096",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -11720,6 +11720,7 @@ experimental domain WebAudio
11720
11720
  suspended
11721
11721
  running
11722
11722
  closed
11723
+ interrupted
11723
11724
 
11724
11725
  # Enum of AudioNode types
11725
11726
  type NodeType extends string
@@ -17883,7 +17883,7 @@ export namespace Protocol {
17883
17883
  /**
17884
17884
  * Enum of AudioContextState from the spec
17885
17885
  */
17886
- export type ContextState = ('suspended' | 'running' | 'closed');
17886
+ export type ContextState = ('suspended' | 'running' | 'closed' | 'interrupted');
17887
17887
 
17888
17888
  /**
17889
17889
  * Enum of AudioNode types