devtools-protocol 0.0.1069585 → 0.0.1070637

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.
@@ -4372,6 +4372,11 @@
4372
4372
  "description": "Security origin of the cache.",
4373
4373
  "type": "string"
4374
4374
  },
4375
+ {
4376
+ "name": "storageKey",
4377
+ "description": "Storage key of the cache.",
4378
+ "type": "string"
4379
+ },
4375
4380
  {
4376
4381
  "name": "cacheName",
4377
4382
  "description": "The name of the cache.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1069585",
3
+ "version": "0.0.1070637",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -2065,6 +2065,8 @@ experimental domain CacheStorage
2065
2065
  CacheId cacheId
2066
2066
  # Security origin of the cache.
2067
2067
  string securityOrigin
2068
+ # Storage key of the cache.
2069
+ string storageKey
2068
2070
  # The name of the cache.
2069
2071
  string cacheName
2070
2072
 
@@ -5173,6 +5173,10 @@ export namespace Protocol {
5173
5173
  * Security origin of the cache.
5174
5174
  */
5175
5175
  securityOrigin: string;
5176
+ /**
5177
+ * Storage key of the cache.
5178
+ */
5179
+ storageKey: string;
5176
5180
  /**
5177
5181
  * The name of the cache.
5178
5182
  */