devtools-protocol 0.0.1315554 → 0.0.1316850

Sign up to get free protection for your applications and to get access to all the features.
@@ -15411,6 +15411,11 @@
15411
15411
  }
15412
15412
  ]
15413
15413
  },
15414
+ {
15415
+ "name": "policyUpdated",
15416
+ "description": "Fired once security policy has been updated.",
15417
+ "experimental": true
15418
+ },
15414
15419
  {
15415
15420
  "name": "subresourceWebBundleMetadataReceived",
15416
15421
  "description": "Fired once when parsing the .wbn file has succeeded.\nThe event contains the information about the web bundle contents.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1315554",
3
+ "version": "0.0.1316850",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -7119,6 +7119,9 @@ domain Network
7119
7119
  # The number of obtained Trust Tokens on a successful "Issuance" operation.
7120
7120
  optional integer issuedTokenCount
7121
7121
 
7122
+ # Fired once security policy has been updated.
7123
+ experimental event policyUpdated
7124
+
7122
7125
  # Fired once when parsing the .wbn file has succeeded.
7123
7126
  # The event contains the information about the web bundle contents.
7124
7127
  experimental event subresourceWebBundleMetadataReceived
@@ -372,6 +372,10 @@ export namespace ProtocolMapping {
372
372
  * or after the response was received.
373
373
  */
374
374
  'Network.trustTokenOperationDone': [Protocol.Network.TrustTokenOperationDoneEvent];
375
+ /**
376
+ * Fired once security policy has been updated.
377
+ */
378
+ 'Network.policyUpdated': [];
375
379
  /**
376
380
  * Fired once when parsing the .wbn file has succeeded.
377
381
  * The event contains the information about the web bundle contents.
@@ -2604,6 +2604,11 @@ export namespace ProtocolProxyApi {
2604
2604
  */
2605
2605
  on(event: 'trustTokenOperationDone', listener: (params: Protocol.Network.TrustTokenOperationDoneEvent) => void): void;
2606
2606
 
2607
+ /**
2608
+ * Fired once security policy has been updated.
2609
+ */
2610
+ on(event: 'policyUpdated', listener: () => void): void;
2611
+
2607
2612
  /**
2608
2613
  * Fired once when parsing the .wbn file has succeeded.
2609
2614
  * The event contains the information about the web bundle contents.
@@ -2790,6 +2790,13 @@ export namespace ProtocolTestsProxyApi {
2790
2790
  offTrustTokenOperationDone(listener: (event: { params: Protocol.Network.TrustTokenOperationDoneEvent }) => void): void;
2791
2791
  onceTrustTokenOperationDone(eventMatcher?: (event: { params: Protocol.Network.TrustTokenOperationDoneEvent }) => boolean): Promise<{ params: Protocol.Network.TrustTokenOperationDoneEvent }>;
2792
2792
 
2793
+ /**
2794
+ * Fired once security policy has been updated.
2795
+ */
2796
+ onPolicyUpdated(listener: (event: ) => void): void;
2797
+ offPolicyUpdated(listener: (event: ) => void): void;
2798
+ oncePolicyUpdated(eventMatcher?: (event: ) => boolean): Promise<>;
2799
+
2793
2800
  /**
2794
2801
  * Fired once when parsing the .wbn file has succeeded.
2795
2802
  * The event contains the information about the web bundle contents.