devtools-protocol 0.0.938446 → 0.0.938504
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.
|
@@ -17785,7 +17785,8 @@
|
|
|
17785
17785
|
},
|
|
17786
17786
|
{
|
|
17787
17787
|
"name": "explanations",
|
|
17788
|
-
"description": "
|
|
17788
|
+
"description": "Previously a list of explanations for the security state. Now always\nempty.",
|
|
17789
|
+
"deprecated": true,
|
|
17789
17790
|
"type": "array",
|
|
17790
17791
|
"items": {
|
|
17791
17792
|
"$ref": "SecurityStateExplanation"
|
|
@@ -17799,7 +17800,8 @@
|
|
|
17799
17800
|
},
|
|
17800
17801
|
{
|
|
17801
17802
|
"name": "summary",
|
|
17802
|
-
"description": "Overrides user-visible description of the state.",
|
|
17803
|
+
"description": "Overrides user-visible description of the state. Always omitted.",
|
|
17804
|
+
"deprecated": true,
|
|
17803
17805
|
"optional": true,
|
|
17804
17806
|
"type": "string"
|
|
17805
17807
|
}
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -8343,13 +8343,13 @@ domain Security
|
|
|
8343
8343
|
SecurityState securityState
|
|
8344
8344
|
# True if the page was loaded over cryptographic transport such as HTTPS.
|
|
8345
8345
|
deprecated boolean schemeIsCryptographic
|
|
8346
|
-
#
|
|
8347
|
-
#
|
|
8348
|
-
array of SecurityStateExplanation explanations
|
|
8346
|
+
# Previously a list of explanations for the security state. Now always
|
|
8347
|
+
# empty.
|
|
8348
|
+
deprecated array of SecurityStateExplanation explanations
|
|
8349
8349
|
# Information about insecure content on the page.
|
|
8350
8350
|
deprecated InsecureContentStatus insecureContentStatus
|
|
8351
|
-
# Overrides user-visible description of the state.
|
|
8352
|
-
optional string summary
|
|
8351
|
+
# Overrides user-visible description of the state. Always omitted.
|
|
8352
|
+
deprecated optional string summary
|
|
8353
8353
|
|
|
8354
8354
|
experimental domain ServiceWorker
|
|
8355
8355
|
depends on Target
|
package/types/protocol.d.ts
CHANGED
|
@@ -13766,8 +13766,8 @@ export namespace Protocol {
|
|
|
13766
13766
|
*/
|
|
13767
13767
|
schemeIsCryptographic: boolean;
|
|
13768
13768
|
/**
|
|
13769
|
-
*
|
|
13770
|
-
*
|
|
13769
|
+
* Previously a list of explanations for the security state. Now always
|
|
13770
|
+
* empty.
|
|
13771
13771
|
*/
|
|
13772
13772
|
explanations: SecurityStateExplanation[];
|
|
13773
13773
|
/**
|
|
@@ -13775,7 +13775,7 @@ export namespace Protocol {
|
|
|
13775
13775
|
*/
|
|
13776
13776
|
insecureContentStatus: InsecureContentStatus;
|
|
13777
13777
|
/**
|
|
13778
|
-
* Overrides user-visible description of the state.
|
|
13778
|
+
* Overrides user-visible description of the state. Always omitted.
|
|
13779
13779
|
*/
|
|
13780
13780
|
summary?: string;
|
|
13781
13781
|
}
|