devtools-protocol 0.0.1312386 → 0.0.1316850

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.
@@ -248,7 +248,8 @@
248
248
  "errormessage",
249
249
  "flowto",
250
250
  "labelledby",
251
- "owns"
251
+ "owns",
252
+ "url"
252
253
  ]
253
254
  },
254
255
  {
@@ -15410,6 +15411,11 @@
15410
15411
  }
15411
15412
  ]
15412
15413
  },
15414
+ {
15415
+ "name": "policyUpdated",
15416
+ "description": "Fired once security policy has been updated.",
15417
+ "experimental": true
15418
+ },
15413
15419
  {
15414
15420
  "name": "subresourceWebBundleMetadataReceived",
15415
15421
  "description": "Fired once when parsing the .wbn file has succeeded.\nThe event contains the information about the web bundle contents.",
@@ -21571,7 +21577,8 @@
21571
21577
  "destinationBothLimitsReached",
21572
21578
  "reportingOriginsPerSiteLimitReached",
21573
21579
  "exceedsMaxChannelCapacity",
21574
- "exceedsMaxTriggerStateCardinality"
21580
+ "exceedsMaxTriggerStateCardinality",
21581
+ "destinationPerDayReportingLimitReached"
21575
21582
  ]
21576
21583
  },
21577
21584
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1312386",
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",
@@ -156,6 +156,7 @@ experimental domain Accessibility
156
156
  flowto
157
157
  labelledby
158
158
  owns
159
+ url
159
160
 
160
161
  # A node in the accessibility tree.
161
162
  type AXNode extends object
@@ -7118,6 +7119,9 @@ domain Network
7118
7119
  # The number of obtained Trust Tokens on a successful "Issuance" operation.
7119
7120
  optional integer issuedTokenCount
7120
7121
 
7122
+ # Fired once security policy has been updated.
7123
+ experimental event policyUpdated
7124
+
7121
7125
  # Fired once when parsing the .wbn file has succeeded.
7122
7126
  # The event contains the information about the web bundle contents.
7123
7127
  experimental event subresourceWebBundleMetadataReceived
@@ -10508,6 +10512,7 @@ experimental domain Storage
10508
10512
  reportingOriginsPerSiteLimitReached
10509
10513
  exceedsMaxChannelCapacity
10510
10514
  exceedsMaxTriggerStateCardinality
10515
+ destinationPerDayReportingLimitReached
10511
10516
 
10512
10517
  experimental event attributionReportingSourceRegistered
10513
10518
  parameters
@@ -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.
@@ -2775,7 +2775,7 @@ export namespace Protocol {
2775
2775
  * - from 'checked' to 'selected': states which apply to widgets
2776
2776
  * - from 'activedescendant' to 'owns' - relationships between elements other than parent/child/sibling.
2777
2777
  */
2778
- export type AXPropertyName = ('busy' | 'disabled' | 'editable' | 'focusable' | 'focused' | 'hidden' | 'hiddenRoot' | 'invalid' | 'keyshortcuts' | 'settable' | 'roledescription' | 'live' | 'atomic' | 'relevant' | 'root' | 'autocomplete' | 'hasPopup' | 'level' | 'multiselectable' | 'orientation' | 'multiline' | 'readonly' | 'required' | 'valuemin' | 'valuemax' | 'valuetext' | 'checked' | 'expanded' | 'modal' | 'pressed' | 'selected' | 'activedescendant' | 'controls' | 'describedby' | 'details' | 'errormessage' | 'flowto' | 'labelledby' | 'owns');
2778
+ export type AXPropertyName = ('busy' | 'disabled' | 'editable' | 'focusable' | 'focused' | 'hidden' | 'hiddenRoot' | 'invalid' | 'keyshortcuts' | 'settable' | 'roledescription' | 'live' | 'atomic' | 'relevant' | 'root' | 'autocomplete' | 'hasPopup' | 'level' | 'multiselectable' | 'orientation' | 'multiline' | 'readonly' | 'required' | 'valuemin' | 'valuemax' | 'valuetext' | 'checked' | 'expanded' | 'modal' | 'pressed' | 'selected' | 'activedescendant' | 'controls' | 'describedby' | 'details' | 'errormessage' | 'flowto' | 'labelledby' | 'owns' | 'url');
2779
2779
 
2780
2780
  /**
2781
2781
  * A node in the accessibility tree.
@@ -15883,7 +15883,7 @@ export namespace Protocol {
15883
15883
  triggerDataMatching: AttributionReportingTriggerDataMatching;
15884
15884
  }
15885
15885
 
15886
- export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxTriggerStateCardinality');
15886
+ export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxTriggerStateCardinality' | 'destinationPerDayReportingLimitReached');
15887
15887
 
15888
15888
  export type AttributionReportingSourceRegistrationTimeConfig = ('include' | 'exclude');
15889
15889