devtools-protocol 0.0.1347151 → 0.0.1348440

Sign up to get free protection for your applications and to get access to all the features.
@@ -19974,6 +19974,18 @@
19974
19974
  }
19975
19975
  ]
19976
19976
  },
19977
+ {
19978
+ "name": "frameSubtreeWillBeDetached",
19979
+ "description": "Fired before frame subtree is detached. Emitted before any frame of the\nsubtree is actually detached.",
19980
+ "experimental": true,
19981
+ "parameters": [
19982
+ {
19983
+ "name": "frameId",
19984
+ "description": "Id of the frame that is the root of the subtree that will be detached.",
19985
+ "$ref": "FrameId"
19986
+ }
19987
+ ]
19988
+ },
19977
19989
  {
19978
19990
  "name": "frameNavigated",
19979
19991
  "description": "Fired once navigation of the frame has completed. Frame is now associated with the new loader.",
@@ -21987,7 +21999,9 @@
21987
21999
  "destinationBothLimitsReached",
21988
22000
  "reportingOriginsPerSiteLimitReached",
21989
22001
  "exceedsMaxChannelCapacity",
22002
+ "exceedsMaxScopesChannelCapacity",
21990
22003
  "exceedsMaxTriggerStateCardinality",
22004
+ "exceedsMaxEventStatesLimit",
21991
22005
  "destinationPerDayReportingLimitReached"
21992
22006
  ]
21993
22007
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1347151",
3
+ "version": "0.0.1348440",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -9220,6 +9220,13 @@ domain Page
9220
9220
  # A new frame target will be created (see Target.attachedToTarget).
9221
9221
  swap
9222
9222
 
9223
+ # Fired before frame subtree is detached. Emitted before any frame of the
9224
+ # subtree is actually detached.
9225
+ experimental event frameSubtreeWillBeDetached
9226
+ parameters
9227
+ # Id of the frame that is the root of the subtree that will be detached.
9228
+ FrameId frameId
9229
+
9223
9230
  # The type of a frameNavigated event.
9224
9231
  experimental type NavigationType extends string
9225
9232
  enum
@@ -10696,7 +10703,9 @@ experimental domain Storage
10696
10703
  destinationBothLimitsReached
10697
10704
  reportingOriginsPerSiteLimitReached
10698
10705
  exceedsMaxChannelCapacity
10706
+ exceedsMaxScopesChannelCapacity
10699
10707
  exceedsMaxTriggerStateCardinality
10708
+ exceedsMaxEventStatesLimit
10700
10709
  destinationPerDayReportingLimitReached
10701
10710
 
10702
10711
  experimental event attributionReportingSourceRegistered
@@ -435,6 +435,11 @@ export namespace ProtocolMapping {
435
435
  * Fired when frame has been detached from its parent.
436
436
  */
437
437
  'Page.frameDetached': [Protocol.Page.FrameDetachedEvent];
438
+ /**
439
+ * Fired before frame subtree is detached. Emitted before any frame of the
440
+ * subtree is actually detached.
441
+ */
442
+ 'Page.frameSubtreeWillBeDetached': [Protocol.Page.FrameSubtreeWillBeDetachedEvent];
438
443
  /**
439
444
  * Fired once navigation of the frame has completed. Frame is now associated with the new loader.
440
445
  */
@@ -3215,6 +3215,12 @@ export namespace ProtocolProxyApi {
3215
3215
  */
3216
3216
  on(event: 'frameDetached', listener: (params: Protocol.Page.FrameDetachedEvent) => void): void;
3217
3217
 
3218
+ /**
3219
+ * Fired before frame subtree is detached. Emitted before any frame of the
3220
+ * subtree is actually detached.
3221
+ */
3222
+ on(event: 'frameSubtreeWillBeDetached', listener: (params: Protocol.Page.FrameSubtreeWillBeDetachedEvent) => void): void;
3223
+
3218
3224
  /**
3219
3225
  * Fired once navigation of the frame has completed. Frame is now associated with the new loader.
3220
3226
  */
@@ -3435,6 +3435,14 @@ export namespace ProtocolTestsProxyApi {
3435
3435
  offFrameDetached(listener: (event: { params: Protocol.Page.FrameDetachedEvent }) => void): void;
3436
3436
  onceFrameDetached(eventMatcher?: (event: { params: Protocol.Page.FrameDetachedEvent }) => boolean): Promise<{ params: Protocol.Page.FrameDetachedEvent }>;
3437
3437
 
3438
+ /**
3439
+ * Fired before frame subtree is detached. Emitted before any frame of the
3440
+ * subtree is actually detached.
3441
+ */
3442
+ onFrameSubtreeWillBeDetached(listener: (event: { params: Protocol.Page.FrameSubtreeWillBeDetachedEvent }) => void): void;
3443
+ offFrameSubtreeWillBeDetached(listener: (event: { params: Protocol.Page.FrameSubtreeWillBeDetachedEvent }) => void): void;
3444
+ onceFrameSubtreeWillBeDetached(eventMatcher?: (event: { params: Protocol.Page.FrameSubtreeWillBeDetachedEvent }) => boolean): Promise<{ params: Protocol.Page.FrameSubtreeWillBeDetachedEvent }>;
3445
+
3438
3446
  /**
3439
3447
  * Fired once navigation of the frame has completed. Frame is now associated with the new loader.
3440
3448
  */
@@ -14917,6 +14917,17 @@ export namespace Protocol {
14917
14917
  reason: ('remove' | 'swap');
14918
14918
  }
14919
14919
 
14920
+ /**
14921
+ * Fired before frame subtree is detached. Emitted before any frame of the
14922
+ * subtree is actually detached.
14923
+ */
14924
+ export interface FrameSubtreeWillBeDetachedEvent {
14925
+ /**
14926
+ * Id of the frame that is the root of the subtree that will be detached.
14927
+ */
14928
+ frameId: FrameId;
14929
+ }
14930
+
14920
14931
  /**
14921
14932
  * Fired once navigation of the frame has completed. Frame is now associated with the new loader.
14922
14933
  */
@@ -16081,7 +16092,7 @@ export namespace Protocol {
16081
16092
  aggregatableDebugReportingConfig: AttributionReportingAggregatableDebugReportingConfig;
16082
16093
  }
16083
16094
 
16084
- export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxTriggerStateCardinality' | 'destinationPerDayReportingLimitReached');
16095
+ export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxScopesChannelCapacity' | 'exceedsMaxTriggerStateCardinality' | 'exceedsMaxEventStatesLimit' | 'destinationPerDayReportingLimitReached');
16085
16096
 
16086
16097
  export type AttributionReportingSourceRegistrationTimeConfig = ('include' | 'exclude');
16087
16098