devtools-protocol 0.0.1488040 → 0.0.1488636

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.
@@ -14845,7 +14845,7 @@
14845
14845
  "type": "string",
14846
14846
  "enum": [
14847
14847
  "Loopback",
14848
- "Private",
14848
+ "Local",
14849
14849
  "Public",
14850
14850
  "Unknown"
14851
14851
  ]
@@ -27810,7 +27810,8 @@
27810
27810
  "type": "string",
27811
27811
  "enum": [
27812
27812
  "SourceIsNotJsonObject",
27813
- "InvalidRulesSkipped"
27813
+ "InvalidRulesSkipped",
27814
+ "InvalidRulesetLevelTag"
27814
27815
  ]
27815
27816
  },
27816
27817
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1488040",
3
+ "version": "0.0.1488636",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -7711,7 +7711,7 @@ domain Network
7711
7711
  experimental type IPAddressSpace extends string
7712
7712
  enum
7713
7713
  Loopback
7714
- Private
7714
+ Local
7715
7715
  Public
7716
7716
  Unknown
7717
7717
 
@@ -13103,6 +13103,7 @@ experimental domain Preload
13103
13103
  enum
13104
13104
  SourceIsNotJsonObject
13105
13105
  InvalidRulesSkipped
13106
+ InvalidRulesetLevelTag
13106
13107
 
13107
13108
  # The type of preloading attempted. It corresponds to
13108
13109
  # mojom::SpeculationAction (although PrefetchWithSubresources is omitted as it
@@ -11830,7 +11830,7 @@ export namespace Protocol {
11830
11830
 
11831
11831
  export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PreflightBlock' | 'PreflightWarn' | 'PermissionBlock' | 'PermissionWarn');
11832
11832
 
11833
- export type IPAddressSpace = ('Loopback' | 'Private' | 'Public' | 'Unknown');
11833
+ export type IPAddressSpace = ('Loopback' | 'Local' | 'Public' | 'Unknown');
11834
11834
 
11835
11835
  export interface ConnectTiming {
11836
11836
  /**
@@ -19564,7 +19564,7 @@ export namespace Protocol {
19564
19564
  errorMessage?: string;
19565
19565
  }
19566
19566
 
19567
- export type RuleSetErrorType = ('SourceIsNotJsonObject' | 'InvalidRulesSkipped');
19567
+ export type RuleSetErrorType = ('SourceIsNotJsonObject' | 'InvalidRulesSkipped' | 'InvalidRulesetLevelTag');
19568
19568
 
19569
19569
  /**
19570
19570
  * The type of preloading attempted. It corresponds to