Skip to content

Commit

Permalink
Fields are optional, not nullable, now.
Browse files Browse the repository at this point in the history
  • Loading branch information
agl committed May 3, 2023
1 parent 46f7cc5 commit 52a20d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1593,7 +1593,7 @@ that are returned to the caller when a new credential is created, or a new asser
required Base64URLString id;
required Base64URLString rawId;
required AuthenticatorAttestationResponseJSON response;
required DOMString? authenticatorAttachment;
DOMString authenticatorAttachment;
required AuthenticationExtensionsClientOutputsJSON clientExtensionResults;
required DOMString type;
};
Expand All @@ -1608,7 +1608,7 @@ that are returned to the caller when a new credential is created, or a new asser
required Base64URLString id;
required Base64URLString rawId;
required AuthenticatorAssertionResponseJSON response;
required DOMString? authenticatorAttachment;
DOMString authenticatorAttachment;
required AuthenticationExtensionsClientOutputsJSON clientExtensionResults;
required DOMString type;
};
Expand All @@ -1617,7 +1617,7 @@ that are returned to the caller when a new credential is created, or a new asser
required Base64URLString clientDataJSON;
required Base64URLString authenticatorData;
required Base64URLString signature;
required Base64URLString? userHandle;
Base64URLString userHandle;
};

dictionary AuthenticationExtensionsClientOutputsJSON {
Expand Down

0 comments on commit 52a20d1

Please sign in to comment.