sms entegrasyonu ve ana sayfa işlemleri

This commit is contained in:
2026-01-26 00:19:09 +03:00
parent 1e1baa84ff
commit 5c34df0f09
19 changed files with 1018 additions and 17 deletions

13
types/customer.ts Normal file
View File

@@ -0,0 +1,13 @@
export interface Customer {
id: number
full_name: string
email?: string | null
phone?: string | null
address?: string | null
notes?: string | null
created_at: string
updated_at: string
}
export type CustomerInsert = Omit<Customer, 'id' | 'created_at' | 'updated_at'>
export type CustomerUpdate = Partial<CustomerInsert>