devtools-protocol 0.0.1203626 → 0.0.1204456
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.
@@ -19833,7 +19833,8 @@
|
|
19833
19833
|
"bid",
|
19834
19834
|
"win",
|
19835
19835
|
"additionalBid",
|
19836
|
-
"additionalBidWin"
|
19836
|
+
"additionalBidWin",
|
19837
|
+
"clear"
|
19837
19838
|
]
|
19838
19839
|
},
|
19839
19840
|
{
|
@@ -24232,7 +24233,7 @@
|
|
24232
24233
|
"enum": [
|
24233
24234
|
"AccountChooser",
|
24234
24235
|
"AutoReauthn",
|
24235
|
-
"
|
24236
|
+
"ConfirmIdpLogin"
|
24236
24237
|
]
|
24237
24238
|
},
|
24238
24239
|
{
|
@@ -24265,7 +24266,7 @@
|
|
24265
24266
|
"type": "string"
|
24266
24267
|
},
|
24267
24268
|
{
|
24268
|
-
"name": "
|
24269
|
+
"name": "idpLoginUrl",
|
24269
24270
|
"type": "string"
|
24270
24271
|
},
|
24271
24272
|
{
|
@@ -24347,8 +24348,8 @@
|
|
24347
24348
|
]
|
24348
24349
|
},
|
24349
24350
|
{
|
24350
|
-
"name": "
|
24351
|
-
"description": "Only valid if the dialog type is
|
24351
|
+
"name": "confirmIdpLogin",
|
24352
|
+
"description": "Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had\nclicked the continue button.",
|
24352
24353
|
"parameters": [
|
24353
24354
|
{
|
24354
24355
|
"name": "dialogId",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -9359,6 +9359,7 @@ experimental domain Storage
|
|
9359
9359
|
win
|
9360
9360
|
additionalBid
|
9361
9361
|
additionalBidWin
|
9362
|
+
clear
|
9362
9363
|
|
9363
9364
|
# Ad advertising element inside an interest group.
|
9364
9365
|
type InterestGroupAd extends object
|
@@ -11487,7 +11488,7 @@ experimental domain FedCm
|
|
11487
11488
|
enum
|
11488
11489
|
AccountChooser
|
11489
11490
|
AutoReauthn
|
11490
|
-
|
11491
|
+
ConfirmIdpLogin
|
11491
11492
|
|
11492
11493
|
# Corresponds to IdentityRequestAccount
|
11493
11494
|
type Account extends object
|
@@ -11498,7 +11499,7 @@ experimental domain FedCm
|
|
11498
11499
|
string givenName
|
11499
11500
|
string pictureUrl
|
11500
11501
|
string idpConfigUrl
|
11501
|
-
string
|
11502
|
+
string idpLoginUrl
|
11502
11503
|
LoginState loginState
|
11503
11504
|
# These two are only set if the loginState is signUp
|
11504
11505
|
optional string termsOfServiceUrl
|
@@ -11528,9 +11529,9 @@ experimental domain FedCm
|
|
11528
11529
|
string dialogId
|
11529
11530
|
integer accountIndex
|
11530
11531
|
|
11531
|
-
# Only valid if the dialog type is
|
11532
|
+
# Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had
|
11532
11533
|
# clicked the continue button.
|
11533
|
-
command
|
11534
|
+
command confirmIdpLogin
|
11534
11535
|
parameters
|
11535
11536
|
string dialogId
|
11536
11537
|
|
@@ -4790,11 +4790,11 @@ export namespace ProtocolMapping {
|
|
4790
4790
|
returnType: void;
|
4791
4791
|
};
|
4792
4792
|
/**
|
4793
|
-
* Only valid if the dialog type is
|
4793
|
+
* Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had
|
4794
4794
|
* clicked the continue button.
|
4795
4795
|
*/
|
4796
|
-
'FedCm.
|
4797
|
-
paramsType: [Protocol.FedCm.
|
4796
|
+
'FedCm.confirmIdpLogin': {
|
4797
|
+
paramsType: [Protocol.FedCm.ConfirmIdpLoginRequest];
|
4798
4798
|
returnType: void;
|
4799
4799
|
};
|
4800
4800
|
'FedCm.dismissDialog': {
|
@@ -4085,10 +4085,10 @@ export namespace ProtocolProxyApi {
|
|
4085
4085
|
selectAccount(params: Protocol.FedCm.SelectAccountRequest): Promise<void>;
|
4086
4086
|
|
4087
4087
|
/**
|
4088
|
-
* Only valid if the dialog type is
|
4088
|
+
* Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had
|
4089
4089
|
* clicked the continue button.
|
4090
4090
|
*/
|
4091
|
-
|
4091
|
+
confirmIdpLogin(params: Protocol.FedCm.ConfirmIdpLoginRequest): Promise<void>;
|
4092
4092
|
|
4093
4093
|
dismissDialog(params: Protocol.FedCm.DismissDialogRequest): Promise<void>;
|
4094
4094
|
|
package/types/protocol.d.ts
CHANGED
@@ -15017,7 +15017,7 @@ export namespace Protocol {
|
|
15017
15017
|
/**
|
15018
15018
|
* Enum of interest group access types.
|
15019
15019
|
*/
|
15020
|
-
export type InterestGroupAccessType = ('join' | 'leave' | 'update' | 'loaded' | 'bid' | 'win' | 'additionalBid' | 'additionalBidWin');
|
15020
|
+
export type InterestGroupAccessType = ('join' | 'leave' | 'update' | 'loaded' | 'bid' | 'win' | 'additionalBid' | 'additionalBidWin' | 'clear');
|
15021
15021
|
|
15022
15022
|
/**
|
15023
15023
|
* Ad advertising element inside an interest group.
|
@@ -17609,7 +17609,7 @@ export namespace Protocol {
|
|
17609
17609
|
/**
|
17610
17610
|
* Whether the dialog shown is an account chooser or an auto re-authentication dialog.
|
17611
17611
|
*/
|
17612
|
-
export type DialogType = ('AccountChooser' | 'AutoReauthn' | '
|
17612
|
+
export type DialogType = ('AccountChooser' | 'AutoReauthn' | 'ConfirmIdpLogin');
|
17613
17613
|
|
17614
17614
|
/**
|
17615
17615
|
* Corresponds to IdentityRequestAccount
|
@@ -17621,7 +17621,7 @@ export namespace Protocol {
|
|
17621
17621
|
givenName: string;
|
17622
17622
|
pictureUrl: string;
|
17623
17623
|
idpConfigUrl: string;
|
17624
|
-
|
17624
|
+
idpLoginUrl: string;
|
17625
17625
|
loginState: LoginState;
|
17626
17626
|
/**
|
17627
17627
|
* These two are only set if the loginState is signUp
|
@@ -17644,7 +17644,7 @@ export namespace Protocol {
|
|
17644
17644
|
accountIndex: integer;
|
17645
17645
|
}
|
17646
17646
|
|
17647
|
-
export interface
|
17647
|
+
export interface ConfirmIdpLoginRequest {
|
17648
17648
|
dialogId: string;
|
17649
17649
|
}
|
17650
17650
|
|