Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing fields in dictionaries for JSON representation #1920

Merged
merged 3 commits into from
Aug 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -2815,6 +2816,7 @@ value and terminate the operation.
sequence<PublicKeyCredentialDescriptorJSON> excludeCredentials = [];
AuthenticatorSelectionCriteria authenticatorSelection;
DOMString attestation = "none";
sequence<DOMString> attestationFormats = [];
AuthenticationExtensionsClientInputsJSON extensions;
};

Expand Down Expand Up @@ -2870,6 +2872,8 @@ value and terminate the operation.
DOMString rpId;
sequence<PublicKeyCredentialDescriptorJSON> allowCredentials = [];
DOMString userVerification = "preferred";
DOMString attestation = "none";
sequence<DOMString> attestationFormats = [];
Kieun marked this conversation as resolved.
Show resolved Hide resolved
AuthenticationExtensionsClientInputsJSON extensions;
};
</xmp>
Expand Down
Loading