devtools-protocol 0.0.1074451 → 0.0.1075032

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.
@@ -4446,7 +4446,14 @@
4446
4446
  "parameters": [
4447
4447
  {
4448
4448
  "name": "securityOrigin",
4449
- "description": "Security origin.",
4449
+ "description": "At least and at most one of securityOrigin, storageKey must be specified.\nSecurity origin.",
4450
+ "optional": true,
4451
+ "type": "string"
4452
+ },
4453
+ {
4454
+ "name": "storageKey",
4455
+ "description": "Storage key.",
4456
+ "optional": true,
4450
4457
  "type": "string"
4451
4458
  }
4452
4459
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1074451",
3
+ "version": "0.0.1075032",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -2099,8 +2099,11 @@ experimental domain CacheStorage
2099
2099
  # Requests cache names.
2100
2100
  command requestCacheNames
2101
2101
  parameters
2102
+ # At least and at most one of securityOrigin, storageKey must be specified.
2102
2103
  # Security origin.
2103
- string securityOrigin
2104
+ optional string securityOrigin
2105
+ # Storage key.
2106
+ optional string storageKey
2104
2107
  returns
2105
2108
  # Caches for the security origin.
2106
2109
  array of Cache caches
@@ -1804,7 +1804,7 @@ export namespace ProtocolMapping {
1804
1804
  * Requests cache names.
1805
1805
  */
1806
1806
  'CacheStorage.requestCacheNames': {
1807
- paramsType: [Protocol.CacheStorage.RequestCacheNamesRequest];
1807
+ paramsType: [Protocol.CacheStorage.RequestCacheNamesRequest?];
1808
1808
  returnType: Protocol.CacheStorage.RequestCacheNamesResponse;
1809
1809
  };
1810
1810
  /**
@@ -5218,9 +5218,14 @@ export namespace Protocol {
5218
5218
 
5219
5219
  export interface RequestCacheNamesRequest {
5220
5220
  /**
5221
+ * At least and at most one of securityOrigin, storageKey must be specified.
5221
5222
  * Security origin.
5222
5223
  */
5223
- securityOrigin: string;
5224
+ securityOrigin?: string;
5225
+ /**
5226
+ * Storage key.
5227
+ */
5228
+ storageKey?: string;
5224
5229
  }
5225
5230
 
5226
5231
  export interface RequestCacheNamesResponse {