4 changed files with 86 additions and 4 deletions
@ -0,0 +1,14 @@ |
|||
/** |
|||
* ActiveIdentity type describes the active identity selection. |
|||
* This replaces the activeDid field in the settings table for better |
|||
* database architecture and data integrity. |
|||
* |
|||
* @author Matthew Raymer |
|||
* @since 2025-08-29 |
|||
*/ |
|||
|
|||
export interface ActiveIdentity { |
|||
id: number; |
|||
activeDid: string; |
|||
lastUpdated: string; |
|||
} |
Loading…
Reference in new issue