devtools-protocol 0.0.1204456 → 0.0.1206220

Sign up to get free protection for your applications and to get access to all the features.
@@ -1638,7 +1638,8 @@
1638
1638
  "Canceled",
1639
1639
  "RpPageNotVisible",
1640
1640
  "SilentMediationFailure",
1641
- "ThirdPartyCookiesBlocked"
1641
+ "ThirdPartyCookiesBlocked",
1642
+ "NotSignedInWithIdp"
1642
1643
  ]
1643
1644
  },
1644
1645
  {
@@ -6980,7 +6981,6 @@
6980
6981
  "description": "DOM debugging allows setting breakpoints on particular DOM operations and events. JavaScript\nexecution will stop on these operations as if there was a regular breakpoint set.",
6981
6982
  "dependencies": [
6982
6983
  "DOM",
6983
- "Debugger",
6984
6984
  "Runtime"
6985
6985
  ],
6986
6986
  "types": [
@@ -7137,6 +7137,8 @@
7137
7137
  "name": "removeInstrumentationBreakpoint",
7138
7138
  "description": "Removes breakpoint on particular native event.",
7139
7139
  "experimental": true,
7140
+ "deprecated": true,
7141
+ "redirect": "EventBreakpoints",
7140
7142
  "parameters": [
7141
7143
  {
7142
7144
  "name": "eventName",
@@ -7209,6 +7211,8 @@
7209
7211
  "name": "setInstrumentationBreakpoint",
7210
7212
  "description": "Sets breakpoint on particular native event.",
7211
7213
  "experimental": true,
7214
+ "deprecated": true,
7215
+ "redirect": "EventBreakpoints",
7212
7216
  "parameters": [
7213
7217
  {
7214
7218
  "name": "eventName",
@@ -7232,7 +7236,7 @@
7232
7236
  },
7233
7237
  {
7234
7238
  "domain": "EventBreakpoints",
7235
- "description": "EventBreakpoints permits setting breakpoints on particular operations and\nevents in targets that run JavaScript but do not have a DOM.\nJavaScript execution will stop on these operations as if there was a regular\nbreakpoint set.",
7239
+ "description": "EventBreakpoints permits setting JavaScript breakpoints on operations and events\noccurring in native code invoked from JavaScript. Once breakpoint is hit, it is\nreported through Debugger domain, similarly to regular breakpoints being hit.",
7236
7240
  "experimental": true,
7237
7241
  "commands": [
7238
7242
  {
@@ -7256,6 +7260,10 @@
7256
7260
  "type": "string"
7257
7261
  }
7258
7262
  ]
7263
+ },
7264
+ {
7265
+ "name": "disable",
7266
+ "description": "Removes all breakpoints"
7259
7267
  }
7260
7268
  ]
7261
7269
  },
@@ -20210,24 +20218,15 @@
20210
20218
  {
20211
20219
  "name": "expiry",
20212
20220
  "description": "duration in seconds",
20213
- "optional": true,
20214
- "type": "integer"
20215
- },
20216
- {
20217
- "name": "eventReportWindow",
20218
- "description": "eventReportWindow and eventReportWindows are mutually exclusive\nduration in seconds",
20219
- "optional": true,
20220
20221
  "type": "integer"
20221
20222
  },
20222
20223
  {
20223
20224
  "name": "eventReportWindows",
20224
- "optional": true,
20225
20225
  "$ref": "AttributionReportingEventReportWindows"
20226
20226
  },
20227
20227
  {
20228
20228
  "name": "aggregatableReportWindow",
20229
20229
  "description": "duration in seconds",
20230
- "optional": true,
20231
20230
  "type": "integer"
20232
20231
  },
20233
20232
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1204456",
3
+ "version": "0.0.1206220",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -824,6 +824,7 @@ experimental domain Audits
824
824
  RpPageNotVisible
825
825
  SilentMediationFailure
826
826
  ThirdPartyCookiesBlocked
827
+ NotSignedInWithIdp
827
828
 
828
829
  type FederatedAuthUserInfoRequestIssueDetails extends object
829
830
  properties
@@ -3268,7 +3269,6 @@ domain DOM
3268
3269
  # execution will stop on these operations as if there was a regular breakpoint set.
3269
3270
  domain DOMDebugger
3270
3271
  depends on DOM
3271
- depends on Debugger
3272
3272
  depends on Runtime
3273
3273
 
3274
3274
  # DOM breakpoint type.
@@ -3340,7 +3340,8 @@ domain DOMDebugger
3340
3340
  experimental optional string targetName
3341
3341
 
3342
3342
  # Removes breakpoint on particular native event.
3343
- experimental command removeInstrumentationBreakpoint
3343
+ experimental deprecated command removeInstrumentationBreakpoint
3344
+ redirect EventBreakpoints
3344
3345
  parameters
3345
3346
  # Instrumentation name to stop on.
3346
3347
  string eventName
@@ -3375,7 +3376,8 @@ domain DOMDebugger
3375
3376
  experimental optional string targetName
3376
3377
 
3377
3378
  # Sets breakpoint on particular native event.
3378
- experimental command setInstrumentationBreakpoint
3379
+ experimental deprecated command setInstrumentationBreakpoint
3380
+ redirect EventBreakpoints
3379
3381
  parameters
3380
3382
  # Instrumentation name to stop on.
3381
3383
  string eventName
@@ -3386,10 +3388,9 @@ domain DOMDebugger
3386
3388
  # Resource URL substring. All XHRs having this substring in the URL will get stopped upon.
3387
3389
  string url
3388
3390
 
3389
- # EventBreakpoints permits setting breakpoints on particular operations and
3390
- # events in targets that run JavaScript but do not have a DOM.
3391
- # JavaScript execution will stop on these operations as if there was a regular
3392
- # breakpoint set.
3391
+ # EventBreakpoints permits setting JavaScript breakpoints on operations and events
3392
+ # occurring in native code invoked from JavaScript. Once breakpoint is hit, it is
3393
+ # reported through Debugger domain, similarly to regular breakpoints being hit.
3393
3394
  experimental domain EventBreakpoints
3394
3395
  # Sets breakpoint on particular native event.
3395
3396
  command setInstrumentationBreakpoint
@@ -3403,6 +3404,9 @@ experimental domain EventBreakpoints
3403
3404
  # Instrumentation name to stop on.
3404
3405
  string eventName
3405
3406
 
3407
+ # Removes all breakpoints
3408
+ command disable
3409
+
3406
3410
  # This domain facilitates obtaining document snapshots with DOM, layout, and style information.
3407
3411
  experimental domain DOMSnapshot
3408
3412
  depends on CSS
@@ -9820,13 +9824,10 @@ experimental domain Storage
9820
9824
  properties
9821
9825
  Network.TimeSinceEpoch time
9822
9826
  # duration in seconds
9823
- optional integer expiry
9824
- # eventReportWindow and eventReportWindows are mutually exclusive
9825
- # duration in seconds
9826
- optional integer eventReportWindow
9827
- optional AttributionReportingEventReportWindows eventReportWindows
9827
+ integer expiry
9828
+ AttributionReportingEventReportWindows eventReportWindows
9828
9829
  # duration in seconds
9829
- optional integer aggregatableReportWindow
9830
+ integer aggregatableReportWindow
9830
9831
  AttributionReportingSourceType type
9831
9832
  string sourceOrigin
9832
9833
  string reportingOrigin
@@ -2419,6 +2419,13 @@ export namespace ProtocolMapping {
2419
2419
  paramsType: [Protocol.EventBreakpoints.RemoveInstrumentationBreakpointRequest];
2420
2420
  returnType: void;
2421
2421
  };
2422
+ /**
2423
+ * Removes all breakpoints
2424
+ */
2425
+ 'EventBreakpoints.disable': {
2426
+ paramsType: [];
2427
+ returnType: void;
2428
+ };
2422
2429
  /**
2423
2430
  * Disables DOM snapshot agent for the given page.
2424
2431
  */
@@ -1650,6 +1650,11 @@ export namespace ProtocolProxyApi {
1650
1650
  */
1651
1651
  removeInstrumentationBreakpoint(params: Protocol.EventBreakpoints.RemoveInstrumentationBreakpointRequest): Promise<void>;
1652
1652
 
1653
+ /**
1654
+ * Removes all breakpoints
1655
+ */
1656
+ disable(): Promise<void>;
1657
+
1653
1658
  }
1654
1659
 
1655
1660
  export interface DOMSnapshotApi {
@@ -3508,7 +3508,7 @@ export namespace Protocol {
3508
3508
  * third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
3509
3509
  * all cases except for success.
3510
3510
  */
3511
- export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'WellKnownInvalidContentType' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ConfigInvalidContentType' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataInvalidContentType' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'AccountsInvalidContentType' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible' | 'SilentMediationFailure' | 'ThirdPartyCookiesBlocked');
3511
+ export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'WellKnownInvalidContentType' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ConfigInvalidContentType' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataInvalidContentType' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'AccountsInvalidContentType' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible' | 'SilentMediationFailure' | 'ThirdPartyCookiesBlocked' | 'NotSignedInWithIdp');
3512
3512
 
3513
3513
  export interface FederatedAuthUserInfoRequestIssueDetails {
3514
3514
  federatedAuthUserInfoRequestIssueReason: FederatedAuthUserInfoRequestIssueReason;
@@ -7097,10 +7097,9 @@ export namespace Protocol {
7097
7097
  }
7098
7098
 
7099
7099
  /**
7100
- * EventBreakpoints permits setting breakpoints on particular operations and
7101
- * events in targets that run JavaScript but do not have a DOM.
7102
- * JavaScript execution will stop on these operations as if there was a regular
7103
- * breakpoint set.
7100
+ * EventBreakpoints permits setting JavaScript breakpoints on operations and events
7101
+ * occurring in native code invoked from JavaScript. Once breakpoint is hit, it is
7102
+ * reported through Debugger domain, similarly to regular breakpoints being hit.
7104
7103
  */
7105
7104
  export namespace EventBreakpoints {
7106
7105
 
@@ -15199,17 +15198,12 @@ export namespace Protocol {
15199
15198
  /**
15200
15199
  * duration in seconds
15201
15200
  */
15202
- expiry?: integer;
15201
+ expiry: integer;
15202
+ eventReportWindows: AttributionReportingEventReportWindows;
15203
15203
  /**
15204
- * eventReportWindow and eventReportWindows are mutually exclusive
15205
15204
  * duration in seconds
15206
15205
  */
15207
- eventReportWindow?: integer;
15208
- eventReportWindows?: AttributionReportingEventReportWindows;
15209
- /**
15210
- * duration in seconds
15211
- */
15212
- aggregatableReportWindow?: integer;
15206
+ aggregatableReportWindow: integer;
15213
15207
  type: AttributionReportingSourceType;
15214
15208
  sourceOrigin: string;
15215
15209
  reportingOrigin: string;