devtools-protocol 0.0.1203626 → 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
|
},
|
@@ -19833,7 +19841,8 @@
|
|
19833
19841
|
"bid",
|
19834
19842
|
"win",
|
19835
19843
|
"additionalBid",
|
19836
|
-
"additionalBidWin"
|
19844
|
+
"additionalBidWin",
|
19845
|
+
"clear"
|
19837
19846
|
]
|
19838
19847
|
},
|
19839
19848
|
{
|
@@ -24232,7 +24241,7 @@
|
|
24232
24241
|
"enum": [
|
24233
24242
|
"AccountChooser",
|
24234
24243
|
"AutoReauthn",
|
24235
|
-
"
|
24244
|
+
"ConfirmIdpLogin"
|
24236
24245
|
]
|
24237
24246
|
},
|
24238
24247
|
{
|
@@ -24265,7 +24274,7 @@
|
|
24265
24274
|
"type": "string"
|
24266
24275
|
},
|
24267
24276
|
{
|
24268
|
-
"name": "
|
24277
|
+
"name": "idpLoginUrl",
|
24269
24278
|
"type": "string"
|
24270
24279
|
},
|
24271
24280
|
{
|
@@ -24347,8 +24356,8 @@
|
|
24347
24356
|
]
|
24348
24357
|
},
|
24349
24358
|
{
|
24350
|
-
"name": "
|
24351
|
-
"description": "Only valid if the dialog type is
|
24359
|
+
"name": "confirmIdpLogin",
|
24360
|
+
"description": "Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had\nclicked the continue button.",
|
24352
24361
|
"parameters": [
|
24353
24362
|
{
|
24354
24363
|
"name": "dialogId",
|
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
|
@@ -9359,6 +9363,7 @@ experimental domain Storage
|
|
9359
9363
|
win
|
9360
9364
|
additionalBid
|
9361
9365
|
additionalBidWin
|
9366
|
+
clear
|
9362
9367
|
|
9363
9368
|
# Ad advertising element inside an interest group.
|
9364
9369
|
type InterestGroupAd extends object
|
@@ -11487,7 +11492,7 @@ experimental domain FedCm
|
|
11487
11492
|
enum
|
11488
11493
|
AccountChooser
|
11489
11494
|
AutoReauthn
|
11490
|
-
|
11495
|
+
ConfirmIdpLogin
|
11491
11496
|
|
11492
11497
|
# Corresponds to IdentityRequestAccount
|
11493
11498
|
type Account extends object
|
@@ -11498,7 +11503,7 @@ experimental domain FedCm
|
|
11498
11503
|
string givenName
|
11499
11504
|
string pictureUrl
|
11500
11505
|
string idpConfigUrl
|
11501
|
-
string
|
11506
|
+
string idpLoginUrl
|
11502
11507
|
LoginState loginState
|
11503
11508
|
# These two are only set if the loginState is signUp
|
11504
11509
|
optional string termsOfServiceUrl
|
@@ -11528,9 +11533,9 @@ experimental domain FedCm
|
|
11528
11533
|
string dialogId
|
11529
11534
|
integer accountIndex
|
11530
11535
|
|
11531
|
-
# Only valid if the dialog type is
|
11536
|
+
# Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had
|
11532
11537
|
# clicked the continue button.
|
11533
|
-
command
|
11538
|
+
command confirmIdpLogin
|
11534
11539
|
parameters
|
11535
11540
|
string dialogId
|
11536
11541
|
|
@@ -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
|
*/
|
@@ -4790,11 +4797,11 @@ export namespace ProtocolMapping {
|
|
4790
4797
|
returnType: void;
|
4791
4798
|
};
|
4792
4799
|
/**
|
4793
|
-
* Only valid if the dialog type is
|
4800
|
+
* Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had
|
4794
4801
|
* clicked the continue button.
|
4795
4802
|
*/
|
4796
|
-
'FedCm.
|
4797
|
-
paramsType: [Protocol.FedCm.
|
4803
|
+
'FedCm.confirmIdpLogin': {
|
4804
|
+
paramsType: [Protocol.FedCm.ConfirmIdpLoginRequest];
|
4798
4805
|
returnType: void;
|
4799
4806
|
};
|
4800
4807
|
'FedCm.dismissDialog': {
|
@@ -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 {
|
@@ -4085,10 +4090,10 @@ export namespace ProtocolProxyApi {
|
|
4085
4090
|
selectAccount(params: Protocol.FedCm.SelectAccountRequest): Promise<void>;
|
4086
4091
|
|
4087
4092
|
/**
|
4088
|
-
* Only valid if the dialog type is
|
4093
|
+
* Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had
|
4089
4094
|
* clicked the continue button.
|
4090
4095
|
*/
|
4091
|
-
|
4096
|
+
confirmIdpLogin(params: Protocol.FedCm.ConfirmIdpLoginRequest): Promise<void>;
|
4092
4097
|
|
4093
4098
|
dismissDialog(params: Protocol.FedCm.DismissDialogRequest): Promise<void>;
|
4094
4099
|
|
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
|
|
@@ -15017,7 +15016,7 @@ export namespace Protocol {
|
|
15017
15016
|
/**
|
15018
15017
|
* Enum of interest group access types.
|
15019
15018
|
*/
|
15020
|
-
export type InterestGroupAccessType = ('join' | 'leave' | 'update' | 'loaded' | 'bid' | 'win' | 'additionalBid' | 'additionalBidWin');
|
15019
|
+
export type InterestGroupAccessType = ('join' | 'leave' | 'update' | 'loaded' | 'bid' | 'win' | 'additionalBid' | 'additionalBidWin' | 'clear');
|
15021
15020
|
|
15022
15021
|
/**
|
15023
15022
|
* Ad advertising element inside an interest group.
|
@@ -17609,7 +17608,7 @@ export namespace Protocol {
|
|
17609
17608
|
/**
|
17610
17609
|
* Whether the dialog shown is an account chooser or an auto re-authentication dialog.
|
17611
17610
|
*/
|
17612
|
-
export type DialogType = ('AccountChooser' | 'AutoReauthn' | '
|
17611
|
+
export type DialogType = ('AccountChooser' | 'AutoReauthn' | 'ConfirmIdpLogin');
|
17613
17612
|
|
17614
17613
|
/**
|
17615
17614
|
* Corresponds to IdentityRequestAccount
|
@@ -17621,7 +17620,7 @@ export namespace Protocol {
|
|
17621
17620
|
givenName: string;
|
17622
17621
|
pictureUrl: string;
|
17623
17622
|
idpConfigUrl: string;
|
17624
|
-
|
17623
|
+
idpLoginUrl: string;
|
17625
17624
|
loginState: LoginState;
|
17626
17625
|
/**
|
17627
17626
|
* These two are only set if the loginState is signUp
|
@@ -17644,7 +17643,7 @@ export namespace Protocol {
|
|
17644
17643
|
accountIndex: integer;
|
17645
17644
|
}
|
17646
17645
|
|
17647
|
-
export interface
|
17646
|
+
export interface ConfirmIdpLoginRequest {
|
17648
17647
|
dialogId: string;
|
17649
17648
|
}
|
17650
17649
|
|