feat: notification event

This commit is contained in:
Sergey Krylov 2026-02-23 11:00:17 +03:00
parent 9a0e51154d
commit 023e136e23
4 changed files with 8 additions and 0 deletions

1
src/events/auth/index.ts Normal file
View File

@ -0,0 +1 @@
export * from './otp-requested.interface'

View File

@ -0,0 +1,5 @@
export interface OtpRequestedEvent {
identifier: string
code: string
type: 'email' | 'phone'
}

1
src/events/index.ts Normal file
View File

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

View File

@ -1 +1,2 @@
export * from './proto'
export * from './events'