Phase 1-3: Domain Layer Foundation - Add value objects: IdentityId, PermissionId, RelayId, WalletId, Nickname, NostrKeyPair - Add rich domain entities: Identity, Permission, Relay with behavior - Add domain events: IdentityCreated, IdentityRenamed, IdentitySelected, etc. - Add repository interfaces for Identity, Permission, Relay - Add infrastructure layer with repository implementations - Add EncryptionService abstraction Phase 4: Ubiquitous Language Cleanup - Rename BrowserSyncData → EncryptedVault (encrypted vault storage) - Rename BrowserSessionData → VaultSession (decrypted session state) - Rename SignerMetaData → ExtensionSettings (extension configuration) - Rename Identity_ENCRYPTED → StoredIdentity (storage DTO) - Rename Identity_DECRYPTED → IdentityData (session DTO) - Similar renames for Permission, Relay, NwcConnection, CashuMint - Add backwards compatibility aliases with @deprecated markers Test Coverage - Add comprehensive tests for all value objects - Add tests for domain entities and their behavior - Add tests for domain events - Fix PermissionChecker to prioritize kind-specific rules over blanket rules - Fix pre-existing component test issues (IconButton, Pubkey) All 113 tests pass. Both Chrome and Firefox builds succeed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import { v4 as uuidv4 } from 'uuid';
|
|
import { EntityId } from './entity-id';
|
|
|
|
/**
|
|
* Strongly-typed identifier for NWC wallet connection entities.
|
|
*/
|
|
export class NwcConnectionId extends EntityId<'NwcConnectionId'> {
|
|
private readonly _brand = 'NwcConnectionId' as const;
|
|
|
|
private constructor(value: string) {
|
|
super(value);
|
|
}
|
|
|
|
static generate(): NwcConnectionId {
|
|
return new NwcConnectionId(uuidv4());
|
|
}
|
|
|
|
static from(value: string): NwcConnectionId {
|
|
return new NwcConnectionId(value);
|
|
}
|
|
|
|
override equals(other: NwcConnectionId): boolean {
|
|
return other instanceof NwcConnectionId && this._value === other._value;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Strongly-typed identifier for Cashu mint entities.
|
|
*/
|
|
export class CashuMintId extends EntityId<'CashuMintId'> {
|
|
private readonly _brand = 'CashuMintId' as const;
|
|
|
|
private constructor(value: string) {
|
|
super(value);
|
|
}
|
|
|
|
static generate(): CashuMintId {
|
|
return new CashuMintId(uuidv4());
|
|
}
|
|
|
|
static from(value: string): CashuMintId {
|
|
return new CashuMintId(value);
|
|
}
|
|
|
|
override equals(other: CashuMintId): boolean {
|
|
return other instanceof CashuMintId && this._value === other._value;
|
|
}
|
|
}
|