devtools-protocol 0.0.1231134 → 0.0.1231733

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.
@@ -23617,6 +23617,18 @@
23617
23617
  "description": "Sets whether User Verification succeeds or fails for an authenticator.\nDefaults to false.",
23618
23618
  "optional": true,
23619
23619
  "type": "boolean"
23620
+ },
23621
+ {
23622
+ "name": "defaultBackupEligibility",
23623
+ "description": "Credentials created by this authenticator will have the backup\neligibility (BE) flag set to this value. Defaults to false.\nhttps://w3c.github.io/webauthn/#sctn-credential-backup",
23624
+ "optional": true,
23625
+ "type": "boolean"
23626
+ },
23627
+ {
23628
+ "name": "defaultBackupState",
23629
+ "description": "Credentials created by this authenticator will have the backup state\n(BS) flag set to this value. Defaults to false.\nhttps://w3c.github.io/webauthn/#sctn-credential-backup",
23630
+ "optional": true,
23631
+ "type": "boolean"
23620
23632
  }
23621
23633
  ]
23622
23634
  },
@@ -24700,6 +24712,16 @@
24700
24712
  "type": "string"
24701
24713
  }
24702
24714
  ]
24715
+ },
24716
+ {
24717
+ "name": "dialogClosed",
24718
+ "description": "Triggered when a dialog is closed, either by user action, JS abort,\nor a command below.",
24719
+ "parameters": [
24720
+ {
24721
+ "name": "dialogId",
24722
+ "type": "string"
24723
+ }
24724
+ ]
24703
24725
  }
24704
24726
  ],
24705
24727
  "commands": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1231134",
3
+ "version": "0.0.1231733",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -11103,6 +11103,14 @@ experimental domain WebAuthn
11103
11103
  # Sets whether User Verification succeeds or fails for an authenticator.
11104
11104
  # Defaults to false.
11105
11105
  optional boolean isUserVerified
11106
+ # Credentials created by this authenticator will have the backup
11107
+ # eligibility (BE) flag set to this value. Defaults to false.
11108
+ # https://w3c.github.io/webauthn/#sctn-credential-backup
11109
+ optional boolean defaultBackupEligibility
11110
+ # Credentials created by this authenticator will have the backup state
11111
+ # (BS) flag set to this value. Defaults to false.
11112
+ # https://w3c.github.io/webauthn/#sctn-credential-backup
11113
+ optional boolean defaultBackupState
11106
11114
 
11107
11115
  type Credential extends object
11108
11116
  properties
@@ -11671,6 +11679,12 @@ experimental domain FedCm
11671
11679
  string title
11672
11680
  optional string subtitle
11673
11681
 
11682
+ # Triggered when a dialog is closed, either by user action, JS abort,
11683
+ # or a command below.
11684
+ event dialogClosed
11685
+ parameters
11686
+ string dialogId
11687
+
11674
11688
  command enable
11675
11689
  parameters
11676
11690
  # Allows callers to disable the promise rejection delay that would
@@ -743,6 +743,11 @@ export namespace ProtocolMapping {
743
743
  */
744
744
  'Preload.preloadingAttemptSourcesUpdated': [Protocol.Preload.PreloadingAttemptSourcesUpdatedEvent];
745
745
  'FedCm.dialogShown': [Protocol.FedCm.DialogShownEvent];
746
+ /**
747
+ * Triggered when a dialog is closed, either by user action, JS abort,
748
+ * or a command below.
749
+ */
750
+ 'FedCm.dialogClosed': [Protocol.FedCm.DialogClosedEvent];
746
751
  }
747
752
 
748
753
  export interface Commands {
@@ -4116,6 +4116,12 @@ export namespace ProtocolProxyApi {
4116
4116
 
4117
4117
  on(event: 'dialogShown', listener: (params: Protocol.FedCm.DialogShownEvent) => void): void;
4118
4118
 
4119
+ /**
4120
+ * Triggered when a dialog is closed, either by user action, JS abort,
4121
+ * or a command below.
4122
+ */
4123
+ on(event: 'dialogClosed', listener: (params: Protocol.FedCm.DialogClosedEvent) => void): void;
4124
+
4119
4125
  }
4120
4126
  }
4121
4127
 
@@ -17270,6 +17270,18 @@ export namespace Protocol {
17270
17270
  * Defaults to false.
17271
17271
  */
17272
17272
  isUserVerified?: boolean;
17273
+ /**
17274
+ * Credentials created by this authenticator will have the backup
17275
+ * eligibility (BE) flag set to this value. Defaults to false.
17276
+ * https://w3c.github.io/webauthn/#sctn-credential-backup
17277
+ */
17278
+ defaultBackupEligibility?: boolean;
17279
+ /**
17280
+ * Credentials created by this authenticator will have the backup state
17281
+ * (BS) flag set to this value. Defaults to false.
17282
+ * https://w3c.github.io/webauthn/#sctn-credential-backup
17283
+ */
17284
+ defaultBackupState?: boolean;
17273
17285
  }
17274
17286
 
17275
17287
  export interface Credential {
@@ -17834,6 +17846,14 @@ export namespace Protocol {
17834
17846
  title: string;
17835
17847
  subtitle?: string;
17836
17848
  }
17849
+
17850
+ /**
17851
+ * Triggered when a dialog is closed, either by user action, JS abort,
17852
+ * or a command below.
17853
+ */
17854
+ export interface DialogClosedEvent {
17855
+ dialogId: string;
17856
+ }
17837
17857
  }
17838
17858
  }
17839
17859