File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ interface ExtendedExtensionsClientInputsJSON {
20
20
second ?: Base64urlString ;
21
21
} ;
22
22
largeBlob ?: {
23
+ support ?: "required" | "preferred" ;
23
24
read ?: boolean ;
24
25
write ?: Base64urlString ;
25
26
} ;
@@ -33,6 +34,7 @@ interface ExtendedAuthenticationExtensionsClientOutputsJSON {
33
34
credProps : boolean ;
34
35
} ;
35
36
largeBlob ?: {
37
+ supported ?: boolean ;
36
38
blob ?: Base64urlString ;
37
39
written ?: boolean ;
38
40
} ;
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ const authenticationExtensionsClientInputsSchema: Schema = {
22
22
credProps : optional ( copyValue ) ,
23
23
} ) ,
24
24
largeBlob : optional ( {
25
+ support : optional ( copyValue ) ,
25
26
read : optional ( copyValue ) ,
26
27
write : optional ( convertValue ) ,
27
28
} ) ,
@@ -33,6 +34,7 @@ const authenticationExtensionsClientOutputsSchema: Schema = {
33
34
uvm : optional ( copyValue ) ,
34
35
credProps : optional ( copyValue ) ,
35
36
largeBlob : optional ( {
37
+ supported : optional ( copyValue ) ,
36
38
blob : optional ( convertValue ) ,
37
39
written : optional ( copyValue ) ,
38
40
} ) ,
You can’t perform that action at this time.
0 commit comments