devtools-protocol 0.0.1182435 → 0.0.1188167

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.
@@ -2084,6 +2084,14 @@
2084
2084
  }
2085
2085
  }
2086
2086
  ]
2087
+ },
2088
+ {
2089
+ "name": "disable",
2090
+ "description": "Disables autofill domain notifications."
2091
+ },
2092
+ {
2093
+ "name": "enable",
2094
+ "description": "Enables autofill domain notifications."
2087
2095
  }
2088
2096
  ]
2089
2097
  },
@@ -24174,6 +24182,16 @@
24174
24182
  }
24175
24183
  ]
24176
24184
  },
24185
+ {
24186
+ "name": "confirmIdpSignin",
24187
+ "description": "Only valid if the dialog type is ConfirmIdpSignin. Acts as if the user had\nclicked the continue button.",
24188
+ "parameters": [
24189
+ {
24190
+ "name": "dialogId",
24191
+ "type": "string"
24192
+ }
24193
+ ]
24194
+ },
24177
24195
  {
24178
24196
  "name": "dismissDialog",
24179
24197
  "parameters": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1182435",
3
+ "version": "0.0.1188167",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1027,6 +1027,11 @@ experimental domain Autofill
1027
1027
  parameters
1028
1028
  array of Address addresses
1029
1029
 
1030
+ # Disables autofill domain notifications.
1031
+ command disable
1032
+
1033
+ # Enables autofill domain notifications.
1034
+ command enable
1030
1035
 
1031
1036
  # Defines events for background web platform features.
1032
1037
  experimental domain BackgroundService
@@ -11439,6 +11444,12 @@ experimental domain FedCm
11439
11444
  string dialogId
11440
11445
  integer accountIndex
11441
11446
 
11447
+ # Only valid if the dialog type is ConfirmIdpSignin. Acts as if the user had
11448
+ # clicked the continue button.
11449
+ command confirmIdpSignin
11450
+ parameters
11451
+ string dialogId
11452
+
11442
11453
  command dismissDialog
11443
11454
  parameters
11444
11455
  string dialogId
@@ -1492,6 +1492,20 @@ export namespace ProtocolMapping {
1492
1492
  paramsType: [Protocol.Autofill.SetAddressesRequest];
1493
1493
  returnType: void;
1494
1494
  };
1495
+ /**
1496
+ * Disables autofill domain notifications.
1497
+ */
1498
+ 'Autofill.disable': {
1499
+ paramsType: [];
1500
+ returnType: void;
1501
+ };
1502
+ /**
1503
+ * Enables autofill domain notifications.
1504
+ */
1505
+ 'Autofill.enable': {
1506
+ paramsType: [];
1507
+ returnType: void;
1508
+ };
1495
1509
  /**
1496
1510
  * Enables event updates for the service.
1497
1511
  */
@@ -4768,6 +4782,14 @@ export namespace ProtocolMapping {
4768
4782
  paramsType: [Protocol.FedCm.SelectAccountRequest];
4769
4783
  returnType: void;
4770
4784
  };
4785
+ /**
4786
+ * Only valid if the dialog type is ConfirmIdpSignin. Acts as if the user had
4787
+ * clicked the continue button.
4788
+ */
4789
+ 'FedCm.confirmIdpSignin': {
4790
+ paramsType: [Protocol.FedCm.ConfirmIdpSigninRequest];
4791
+ returnType: void;
4792
+ };
4771
4793
  'FedCm.dismissDialog': {
4772
4794
  paramsType: [Protocol.FedCm.DismissDialogRequest];
4773
4795
  returnType: void;
@@ -810,6 +810,16 @@ export namespace ProtocolProxyApi {
810
810
  */
811
811
  setAddresses(params: Protocol.Autofill.SetAddressesRequest): Promise<void>;
812
812
 
813
+ /**
814
+ * Disables autofill domain notifications.
815
+ */
816
+ disable(): Promise<void>;
817
+
818
+ /**
819
+ * Enables autofill domain notifications.
820
+ */
821
+ enable(): Promise<void>;
822
+
813
823
  }
814
824
 
815
825
  export interface BackgroundServiceApi {
@@ -4069,6 +4079,12 @@ export namespace ProtocolProxyApi {
4069
4079
 
4070
4080
  selectAccount(params: Protocol.FedCm.SelectAccountRequest): Promise<void>;
4071
4081
 
4082
+ /**
4083
+ * Only valid if the dialog type is ConfirmIdpSignin. Acts as if the user had
4084
+ * clicked the continue button.
4085
+ */
4086
+ confirmIdpSignin(params: Protocol.FedCm.ConfirmIdpSigninRequest): Promise<void>;
4087
+
4072
4088
  dismissDialog(params: Protocol.FedCm.DismissDialogRequest): Promise<void>;
4073
4089
 
4074
4090
  /**
@@ -17563,6 +17563,10 @@ export namespace Protocol {
17563
17563
  accountIndex: integer;
17564
17564
  }
17565
17565
 
17566
+ export interface ConfirmIdpSigninRequest {
17567
+ dialogId: string;
17568
+ }
17569
+
17566
17570
  export interface DismissDialogRequest {
17567
17571
  dialogId: string;
17568
17572
  triggerCooldown?: boolean;