devtools-protocol 0.0.1211954 → 0.0.1212569
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.
- package/json/browser_protocol.json +37 -0
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +12 -0
- package/types/protocol.d.ts +20 -0
@@ -17236,6 +17236,35 @@
|
|
17236
17236
|
"Circumstantial"
|
17237
17237
|
]
|
17238
17238
|
},
|
17239
|
+
{
|
17240
|
+
"id": "BackForwardCacheBlockingDetails",
|
17241
|
+
"experimental": true,
|
17242
|
+
"type": "object",
|
17243
|
+
"properties": [
|
17244
|
+
{
|
17245
|
+
"name": "url",
|
17246
|
+
"description": "Url of the file where blockage happened. Optional because of tests.",
|
17247
|
+
"optional": true,
|
17248
|
+
"type": "string"
|
17249
|
+
},
|
17250
|
+
{
|
17251
|
+
"name": "function",
|
17252
|
+
"description": "Function name where blockage happened. Optional because of anonymous functions and tests.",
|
17253
|
+
"optional": true,
|
17254
|
+
"type": "string"
|
17255
|
+
},
|
17256
|
+
{
|
17257
|
+
"name": "lineNumber",
|
17258
|
+
"description": "Line number in the script (0-based).",
|
17259
|
+
"type": "integer"
|
17260
|
+
},
|
17261
|
+
{
|
17262
|
+
"name": "columnNumber",
|
17263
|
+
"description": "Column number in the script (0-based).",
|
17264
|
+
"type": "integer"
|
17265
|
+
}
|
17266
|
+
]
|
17267
|
+
},
|
17239
17268
|
{
|
17240
17269
|
"id": "BackForwardCacheNotRestoredExplanation",
|
17241
17270
|
"experimental": true,
|
@@ -17256,6 +17285,14 @@
|
|
17256
17285
|
"description": "Context associated with the reason. The meaning of this context is\ndependent on the reason:\n- EmbedderExtensionSentMessageToCachedFrame: the extension ID.",
|
17257
17286
|
"optional": true,
|
17258
17287
|
"type": "string"
|
17288
|
+
},
|
17289
|
+
{
|
17290
|
+
"name": "details",
|
17291
|
+
"optional": true,
|
17292
|
+
"type": "array",
|
17293
|
+
"items": {
|
17294
|
+
"$ref": "BackForwardCacheBlockingDetails"
|
17295
|
+
}
|
17259
17296
|
}
|
17260
17297
|
]
|
17261
17298
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -8886,6 +8886,17 @@ domain Page
|
|
8886
8886
|
PageSupportNeeded
|
8887
8887
|
Circumstantial
|
8888
8888
|
|
8889
|
+
experimental type BackForwardCacheBlockingDetails extends object
|
8890
|
+
properties
|
8891
|
+
# Url of the file where blockage happened. Optional because of tests.
|
8892
|
+
optional string url
|
8893
|
+
# Function name where blockage happened. Optional because of anonymous functions and tests.
|
8894
|
+
optional string function
|
8895
|
+
# Line number in the script (0-based).
|
8896
|
+
integer lineNumber
|
8897
|
+
# Column number in the script (0-based).
|
8898
|
+
integer columnNumber
|
8899
|
+
|
8889
8900
|
experimental type BackForwardCacheNotRestoredExplanation extends object
|
8890
8901
|
properties
|
8891
8902
|
# Type of the reason
|
@@ -8897,6 +8908,7 @@ domain Page
|
|
8897
8908
|
# - EmbedderExtensionSentMessageToCachedFrame: the extension ID.
|
8898
8909
|
#
|
8899
8910
|
optional string context
|
8911
|
+
optional array of BackForwardCacheBlockingDetails details
|
8900
8912
|
|
8901
8913
|
experimental type BackForwardCacheNotRestoredExplanationTree extends object
|
8902
8914
|
properties
|
package/types/protocol.d.ts
CHANGED
@@ -13371,6 +13371,25 @@ export namespace Protocol {
|
|
13371
13371
|
*/
|
13372
13372
|
export type BackForwardCacheNotRestoredReasonType = ('SupportPending' | 'PageSupportNeeded' | 'Circumstantial');
|
13373
13373
|
|
13374
|
+
export interface BackForwardCacheBlockingDetails {
|
13375
|
+
/**
|
13376
|
+
* Url of the file where blockage happened. Optional because of tests.
|
13377
|
+
*/
|
13378
|
+
url?: string;
|
13379
|
+
/**
|
13380
|
+
* Function name where blockage happened. Optional because of anonymous functions and tests.
|
13381
|
+
*/
|
13382
|
+
function?: string;
|
13383
|
+
/**
|
13384
|
+
* Line number in the script (0-based).
|
13385
|
+
*/
|
13386
|
+
lineNumber: integer;
|
13387
|
+
/**
|
13388
|
+
* Column number in the script (0-based).
|
13389
|
+
*/
|
13390
|
+
columnNumber: integer;
|
13391
|
+
}
|
13392
|
+
|
13374
13393
|
export interface BackForwardCacheNotRestoredExplanation {
|
13375
13394
|
/**
|
13376
13395
|
* Type of the reason
|
@@ -13386,6 +13405,7 @@ export namespace Protocol {
|
|
13386
13405
|
* - EmbedderExtensionSentMessageToCachedFrame: the extension ID.
|
13387
13406
|
*/
|
13388
13407
|
context?: string;
|
13408
|
+
details?: BackForwardCacheBlockingDetails[];
|
13389
13409
|
}
|
13390
13410
|
|
13391
13411
|
export interface BackForwardCacheNotRestoredExplanationTree {
|