devtools-protocol 0.0.1065144 → 0.0.1066334

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.
@@ -22182,6 +22182,34 @@
22182
22182
  }
22183
22183
  ]
22184
22184
  },
22185
+ {
22186
+ "name": "setResponseOverrideBits",
22187
+ "description": "Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.",
22188
+ "parameters": [
22189
+ {
22190
+ "name": "authenticatorId",
22191
+ "$ref": "AuthenticatorId"
22192
+ },
22193
+ {
22194
+ "name": "isBogusSignature",
22195
+ "description": "If isBogusSignature is set, overrides the signature in the authenticator response to be zero.\nDefaults to false.",
22196
+ "optional": true,
22197
+ "type": "boolean"
22198
+ },
22199
+ {
22200
+ "name": "isBadUV",
22201
+ "description": "If isBadUV is set, overrides the UV bit in the flags in the authenticator response to\nbe zero. Defaults to false.",
22202
+ "optional": true,
22203
+ "type": "boolean"
22204
+ },
22205
+ {
22206
+ "name": "isBadUP",
22207
+ "description": "If isBadUP is set, overrides the UP bit in the flags in the authenticator response to\nbe zero. Defaults to false.",
22208
+ "optional": true,
22209
+ "type": "boolean"
22210
+ }
22211
+ ]
22212
+ },
22185
22213
  {
22186
22214
  "name": "removeVirtualAuthenticator",
22187
22215
  "description": "Removes the given authenticator.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1065144",
3
+ "version": "0.0.1066334",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -10493,6 +10493,20 @@ experimental domain WebAuthn
10493
10493
  returns
10494
10494
  AuthenticatorId authenticatorId
10495
10495
 
10496
+ # Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.
10497
+ command setResponseOverrideBits
10498
+ parameters
10499
+ AuthenticatorId authenticatorId
10500
+ # If isBogusSignature is set, overrides the signature in the authenticator response to be zero.
10501
+ # Defaults to false.
10502
+ optional boolean isBogusSignature
10503
+ # If isBadUV is set, overrides the UV bit in the flags in the authenticator response to
10504
+ # be zero. Defaults to false.
10505
+ optional boolean isBadUV
10506
+ # If isBadUP is set, overrides the UP bit in the flags in the authenticator response to
10507
+ # be zero. Defaults to false.
10508
+ optional boolean isBadUP
10509
+
10496
10510
  # Removes the given authenticator.
10497
10511
  command removeVirtualAuthenticator
10498
10512
  parameters
@@ -4446,6 +4446,13 @@ export namespace ProtocolMapping {
4446
4446
  paramsType: [Protocol.WebAuthn.AddVirtualAuthenticatorRequest];
4447
4447
  returnType: Protocol.WebAuthn.AddVirtualAuthenticatorResponse;
4448
4448
  };
4449
+ /**
4450
+ * Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.
4451
+ */
4452
+ 'WebAuthn.setResponseOverrideBits': {
4453
+ paramsType: [Protocol.WebAuthn.SetResponseOverrideBitsRequest];
4454
+ returnType: void;
4455
+ };
4449
4456
  /**
4450
4457
  * Removes the given authenticator.
4451
4458
  */
@@ -3763,6 +3763,11 @@ export namespace ProtocolProxyApi {
3763
3763
  */
3764
3764
  addVirtualAuthenticator(params: Protocol.WebAuthn.AddVirtualAuthenticatorRequest): Promise<Protocol.WebAuthn.AddVirtualAuthenticatorResponse>;
3765
3765
 
3766
+ /**
3767
+ * Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.
3768
+ */
3769
+ setResponseOverrideBits(params: Protocol.WebAuthn.SetResponseOverrideBitsRequest): Promise<void>;
3770
+
3766
3771
  /**
3767
3772
  * Removes the given authenticator.
3768
3773
  */
@@ -16498,6 +16498,25 @@ export namespace Protocol {
16498
16498
  authenticatorId: AuthenticatorId;
16499
16499
  }
16500
16500
 
16501
+ export interface SetResponseOverrideBitsRequest {
16502
+ authenticatorId: AuthenticatorId;
16503
+ /**
16504
+ * If isBogusSignature is set, overrides the signature in the authenticator response to be zero.
16505
+ * Defaults to false.
16506
+ */
16507
+ isBogusSignature?: boolean;
16508
+ /**
16509
+ * If isBadUV is set, overrides the UV bit in the flags in the authenticator response to
16510
+ * be zero. Defaults to false.
16511
+ */
16512
+ isBadUV?: boolean;
16513
+ /**
16514
+ * If isBadUP is set, overrides the UP bit in the flags in the authenticator response to
16515
+ * be zero. Defaults to false.
16516
+ */
16517
+ isBadUP?: boolean;
16518
+ }
16519
+
16501
16520
  export interface RemoveVirtualAuthenticatorRequest {
16502
16521
  authenticatorId: AuthenticatorId;
16503
16522
  }