Compare commits

...

2 Commits

Author SHA1 Message Date
28cf6b55ed 1.1.1
All checks were successful
Publish / Publish npm package action (push) Successful in 21s
2026-02-27 05:57:51 +03:00
97b5c29899 feat: add change phone/email interfaces 2026-02-27 05:57:45 +03:00
5 changed files with 12 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@teacinema/contracts",
"version": "1.1.0",
"version": "1.1.1",
"description": "Protocol Buffers contracts for microservices",
"scripts": {
"build": "tsc -p tsconfig.build.json",

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'