devtools-protocol 0.0.974265 → 0.0.974996
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.
@@ -15915,6 +15915,12 @@
|
|
15915
15915
|
"name": "reason",
|
15916
15916
|
"description": "Not restored reason",
|
15917
15917
|
"$ref": "BackForwardCacheNotRestoredReason"
|
15918
|
+
},
|
15919
|
+
{
|
15920
|
+
"name": "context",
|
15921
|
+
"description": "Context associated with the reason. The meaning of this context is\ndependent on the reason:\n- EmbedderExtensionSentMessageToCachedFrame: the extension ID.",
|
15922
|
+
"optional": true,
|
15923
|
+
"type": "string"
|
15918
15924
|
}
|
15919
15925
|
]
|
15920
15926
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -8207,6 +8207,11 @@ domain Page
|
|
8207
8207
|
BackForwardCacheNotRestoredReasonType type
|
8208
8208
|
# Not restored reason
|
8209
8209
|
BackForwardCacheNotRestoredReason reason
|
8210
|
+
# Context associated with the reason. The meaning of this context is
|
8211
|
+
# dependent on the reason:
|
8212
|
+
# - EmbedderExtensionSentMessageToCachedFrame: the extension ID.
|
8213
|
+
#
|
8214
|
+
optional string context
|
8210
8215
|
|
8211
8216
|
experimental type BackForwardCacheNotRestoredExplanationTree extends object
|
8212
8217
|
properties
|
package/types/protocol.d.ts
CHANGED
@@ -12503,6 +12503,12 @@ export namespace Protocol {
|
|
12503
12503
|
* Not restored reason
|
12504
12504
|
*/
|
12505
12505
|
reason: BackForwardCacheNotRestoredReason;
|
12506
|
+
/**
|
12507
|
+
* Context associated with the reason. The meaning of this context is
|
12508
|
+
* dependent on the reason:
|
12509
|
+
* - EmbedderExtensionSentMessageToCachedFrame: the extension ID.
|
12510
|
+
*/
|
12511
|
+
context?: string;
|
12506
12512
|
}
|
12507
12513
|
|
12508
12514
|
export interface BackForwardCacheNotRestoredExplanationTree {
|