devtools-protocol 0.0.1203060 → 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
  {
@@ -23968,7 +23969,6 @@
23968
23969
  "LowEndDevice",
23969
23970
  "InvalidSchemeRedirect",
23970
23971
  "InvalidSchemeNavigation",
23971
- "InProgressNavigation",
23972
23972
  "NavigationRequestBlockedByCsp",
23973
23973
  "MainFrameNavigation",
23974
23974
  "MojoBinderPolicy",
@@ -24233,7 +24233,7 @@
24233
24233
  "enum": [
24234
24234
  "AccountChooser",
24235
24235
  "AutoReauthn",
24236
- "ConfirmIdpSignin"
24236
+ "ConfirmIdpLogin"
24237
24237
  ]
24238
24238
  },
24239
24239
  {
@@ -24266,7 +24266,7 @@
24266
24266
  "type": "string"
24267
24267
  },
24268
24268
  {
24269
- "name": "idpSigninUrl",
24269
+ "name": "idpLoginUrl",
24270
24270
  "type": "string"
24271
24271
  },
24272
24272
  {
@@ -24348,8 +24348,8 @@
24348
24348
  ]
24349
24349
  },
24350
24350
  {
24351
- "name": "confirmIdpSignin",
24352
- "description": "Only valid if the dialog type is ConfirmIdpSignin. Acts as if the user had\nclicked the continue button.",
24351
+ "name": "confirmIdpLogin",
24352
+ "description": "Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had\nclicked the continue button.",
24353
24353
  "parameters": [
24354
24354
  {
24355
24355
  "name": "dialogId",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1203060",
3
+ "version": "0.0.1204456",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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
@@ -11322,7 +11323,6 @@ experimental domain Preload
11322
11323
  LowEndDevice
11323
11324
  InvalidSchemeRedirect
11324
11325
  InvalidSchemeNavigation
11325
- InProgressNavigation
11326
11326
  NavigationRequestBlockedByCsp
11327
11327
  MainFrameNavigation
11328
11328
  MojoBinderPolicy
@@ -11488,7 +11488,7 @@ experimental domain FedCm
11488
11488
  enum
11489
11489
  AccountChooser
11490
11490
  AutoReauthn
11491
- ConfirmIdpSignin
11491
+ ConfirmIdpLogin
11492
11492
 
11493
11493
  # Corresponds to IdentityRequestAccount
11494
11494
  type Account extends object
@@ -11499,7 +11499,7 @@ experimental domain FedCm
11499
11499
  string givenName
11500
11500
  string pictureUrl
11501
11501
  string idpConfigUrl
11502
- string idpSigninUrl
11502
+ string idpLoginUrl
11503
11503
  LoginState loginState
11504
11504
  # These two are only set if the loginState is signUp
11505
11505
  optional string termsOfServiceUrl
@@ -11529,9 +11529,9 @@ experimental domain FedCm
11529
11529
  string dialogId
11530
11530
  integer accountIndex
11531
11531
 
11532
- # Only valid if the dialog type is ConfirmIdpSignin. Acts as if the user had
11532
+ # Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had
11533
11533
  # clicked the continue button.
11534
- command confirmIdpSignin
11534
+ command confirmIdpLogin
11535
11535
  parameters
11536
11536
  string dialogId
11537
11537
 
@@ -4790,11 +4790,11 @@ export namespace ProtocolMapping {
4790
4790
  returnType: void;
4791
4791
  };
4792
4792
  /**
4793
- * Only valid if the dialog type is ConfirmIdpSignin. Acts as if the user had
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.confirmIdpSignin': {
4797
- paramsType: [Protocol.FedCm.ConfirmIdpSigninRequest];
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 ConfirmIdpSignin. Acts as if the user had
4088
+ * Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had
4089
4089
  * clicked the continue button.
4090
4090
  */
4091
- confirmIdpSignin(params: Protocol.FedCm.ConfirmIdpSigninRequest): Promise<void>;
4091
+ confirmIdpLogin(params: Protocol.FedCm.ConfirmIdpLoginRequest): Promise<void>;
4092
4092
 
4093
4093
  dismissDialog(params: Protocol.FedCm.DismissDialogRequest): Promise<void>;
4094
4094
 
@@ -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.
@@ -17521,7 +17521,7 @@ export namespace Protocol {
17521
17521
  /**
17522
17522
  * List of FinalStatus reasons for Prerender2.
17523
17523
  */
17524
- export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'MemoryLimitExceeded' | 'DataSaverEnabled' | 'TriggerUrlHasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirectInInitialNavigation' | 'CrossSiteNavigationInInitialNavigation' | 'SameSiteCrossOriginRedirectNotOptInInInitialNavigation' | 'SameSiteCrossOriginNavigationNotOptInInInitialNavigation' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled' | 'ActivatedDuringMainFrameNavigation' | 'PreloadingUnsupportedByWebContents' | 'CrossSiteRedirectInMainFrameNavigation' | 'CrossSiteNavigationInMainFrameNavigation' | 'SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation' | 'SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation' | 'MemoryPressureOnTrigger' | 'MemoryPressureAfterTriggered' | 'PrerenderingDisabledByDevTools' | 'ResourceLoadBlockedByClient' | 'SpeculationRuleRemoved' | 'ActivatedWithAuxiliaryBrowsingContexts' | 'MaxNumOfRunningEagerPrerendersExceeded' | 'MaxNumOfRunningNonEagerPrerendersExceeded' | 'MaxNumOfRunningEmbedderPrerendersExceeded' | 'PrerenderingUrlHasEffectiveUrl' | 'RedirectedPrerenderingUrlHasEffectiveUrl' | 'ActivationUrlHasEffectiveUrl');
17524
+ export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'MemoryLimitExceeded' | 'DataSaverEnabled' | 'TriggerUrlHasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirectInInitialNavigation' | 'CrossSiteNavigationInInitialNavigation' | 'SameSiteCrossOriginRedirectNotOptInInInitialNavigation' | 'SameSiteCrossOriginNavigationNotOptInInInitialNavigation' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled' | 'ActivatedDuringMainFrameNavigation' | 'PreloadingUnsupportedByWebContents' | 'CrossSiteRedirectInMainFrameNavigation' | 'CrossSiteNavigationInMainFrameNavigation' | 'SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation' | 'SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation' | 'MemoryPressureOnTrigger' | 'MemoryPressureAfterTriggered' | 'PrerenderingDisabledByDevTools' | 'ResourceLoadBlockedByClient' | 'SpeculationRuleRemoved' | 'ActivatedWithAuxiliaryBrowsingContexts' | 'MaxNumOfRunningEagerPrerendersExceeded' | 'MaxNumOfRunningNonEagerPrerendersExceeded' | 'MaxNumOfRunningEmbedderPrerendersExceeded' | 'PrerenderingUrlHasEffectiveUrl' | 'RedirectedPrerenderingUrlHasEffectiveUrl' | 'ActivationUrlHasEffectiveUrl');
17525
17525
 
17526
17526
  /**
17527
17527
  * Preloading status values, see also PreloadingTriggeringOutcome. This
@@ -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' | 'ConfirmIdpSignin');
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
- idpSigninUrl: string;
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 ConfirmIdpSigninRequest {
17647
+ export interface ConfirmIdpLoginRequest {
17648
17648
  dialogId: string;
17649
17649
  }
17650
17650