From 0f99bad4940e0d054351f7a87f8a8b5d3ff04b68 Mon Sep 17 00:00:00 2001 From: Kieun Date: Sat, 8 Jul 2023 11:21:54 +0900 Subject: [PATCH] Add missing fields in dictionaries for JSON representation --- index.bs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.bs b/index.bs index c0d33b9dd..f39215be3 100644 --- a/index.bs +++ b/index.bs @@ -1652,6 +1652,7 @@ that are returned to the caller when a new credential is created, or a new asser required Base64URLString authenticatorData; required Base64URLString signature; Base64URLString userHandle; + Base64URLString attestationObject; }; dictionary AuthenticationExtensionsClientOutputsJSON { @@ -2815,6 +2816,7 @@ value and terminate the operation. sequence excludeCredentials = []; AuthenticatorSelectionCriteria authenticatorSelection; DOMString attestation = "none"; + sequence attestationFormats = []; AuthenticationExtensionsClientInputsJSON extensions; }; @@ -2870,6 +2872,8 @@ value and terminate the operation. DOMString rpId; sequence allowCredentials = []; DOMString userVerification = "preferred"; + DOMString attestation = "none"; + sequence attestationFormats = []; AuthenticationExtensionsClientInputsJSON extensions; };