feat(directory) : add frontend DTOs for contacts, addresses, reports

This commit is contained in:
Matthieu
2026-06-22 13:34:41 +02:00
parent d95f14dadc
commit bc9c036d1f
4 changed files with 86 additions and 0 deletions
@@ -0,0 +1,23 @@
export type Contact = {
id: number
'@id'?: string
firstName: string | null
lastName: string | null
jobTitle: string | null
email: string | null
phonePrimary: string | null
phoneSecondary: string | null
client?: string | null
prospect?: string | null
}
export type ContactWrite = {
firstName: string | null
lastName: string | null
jobTitle: string | null
email: string | null
phonePrimary: string | null
phoneSecondary: string | null
client?: string | null
prospect?: string | null
}