add chat-card

1. add chat card
2. fix settings (output object)
3. add input phone and email to user
4. fix empty string to null
This commit is contained in:
2025-07-29 13:26:46 +03:00
parent 462ed2b671
commit feb351424e
14 changed files with 215 additions and 118 deletions

View File

@@ -11,7 +11,8 @@ interface Chat {
logo: string | null
owner_id?: number
invite_link: string
[key: string]: unknown
chat_users: number []
[key: string]: number | string | boolean | null | number[]
}
export type {