feat: add change phone/email interfaces

This commit is contained in:
Sergey Krylov 2026-02-27 05:57:45 +03:00
parent ffe6f37b6c
commit 97b5c29899
4 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,4 @@
export interface EmailChangedEvent {
email: string
code: string
}

View File

@ -0,0 +1,2 @@
export * from './email-changed.interface'
export * from './phone-changed.interface'

View File

@ -0,0 +1,4 @@
export interface PhoneChangedEvent {
phone: string
code: string
}

View File

@ -1 +1,2 @@
export * from './auth'
export * from './account'