devtools-protocol 0.0.939725 → 0.0.940363

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.
@@ -17853,7 +17853,8 @@
17853
17853
  },
17854
17854
  {
17855
17855
  "name": "securityStateChanged",
17856
- "description": "The security state of the page changed.",
17856
+ "description": "The security state of the page changed. No longer being sent.",
17857
+ "deprecated": true,
17857
17858
  "parameters": [
17858
17859
  {
17859
17860
  "name": "securityState",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.939725",
3
+ "version": "0.0.940363",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -8374,8 +8374,8 @@ domain Security
8374
8374
  # Security state information about the page.
8375
8375
  VisibleSecurityState visibleSecurityState
8376
8376
 
8377
- # The security state of the page changed.
8378
- event securityStateChanged
8377
+ # The security state of the page changed. No longer being sent.
8378
+ deprecated event securityStateChanged
8379
8379
  parameters
8380
8380
  # Security state.
8381
8381
  SecurityState securityState
@@ -517,7 +517,7 @@ export namespace ProtocolMapping {
517
517
  */
518
518
  'Security.visibleSecurityStateChanged': [Protocol.Security.VisibleSecurityStateChangedEvent];
519
519
  /**
520
- * The security state of the page changed.
520
+ * The security state of the page changed. No longer being sent.
521
521
  */
522
522
  'Security.securityStateChanged': [Protocol.Security.SecurityStateChangedEvent];
523
523
  'ServiceWorker.workerErrorReported': [Protocol.ServiceWorker.WorkerErrorReportedEvent];
@@ -3095,7 +3095,7 @@ export namespace ProtocolProxyApi {
3095
3095
  on(event: 'visibleSecurityStateChanged', listener: (params: Protocol.Security.VisibleSecurityStateChangedEvent) => void): void;
3096
3096
 
3097
3097
  /**
3098
- * The security state of the page changed.
3098
+ * The security state of the page changed. No longer being sent.
3099
3099
  */
3100
3100
  on(event: 'securityStateChanged', listener: (params: Protocol.Security.SecurityStateChangedEvent) => void): void;
3101
3101
 
@@ -13806,7 +13806,7 @@ export namespace Protocol {
13806
13806
  }
13807
13807
 
13808
13808
  /**
13809
- * The security state of the page changed.
13809
+ * The security state of the page changed. No longer being sent.
13810
13810
  */
13811
13811
  export interface SecurityStateChangedEvent {
13812
13812
  /**