@tennantje/identity-types 1.0.17 → 1.0.18
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.
- package/dist/WebAuthn.d.ts +10 -0
- package/package.json +1 -1
package/dist/WebAuthn.d.ts
CHANGED
|
@@ -27,6 +27,9 @@ export interface PasskeySummary {
|
|
|
27
27
|
backedUp: boolean;
|
|
28
28
|
transports: string[];
|
|
29
29
|
createdAt: string;
|
|
30
|
+
displayName: string;
|
|
31
|
+
detectedDevice: string;
|
|
32
|
+
userAgent: string;
|
|
30
33
|
}
|
|
31
34
|
export type ListPasskeysResponse = {
|
|
32
35
|
passkeys: PasskeySummary[];
|
|
@@ -37,3 +40,10 @@ export type DeletePasskeyRequest = {
|
|
|
37
40
|
export type DeletePasskeyResponse = {
|
|
38
41
|
success: boolean;
|
|
39
42
|
};
|
|
43
|
+
export type UpdatePasskeyNameRequest = {
|
|
44
|
+
credentialId: string;
|
|
45
|
+
displayName: string;
|
|
46
|
+
};
|
|
47
|
+
export type UpdatePasskeyNameResponse = {
|
|
48
|
+
success: boolean;
|
|
49
|
+
};
|