devtools-protocol 0.0.1204456 → 0.0.1205644
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.
@@ -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
|
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
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -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
|
3390
|
-
#
|
3391
|
-
#
|
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
|
@@ -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 {
|
package/types/protocol.d.ts
CHANGED
@@ -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
|
7101
|
-
*
|
7102
|
-
*
|
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
|
|