fix: clean folder

This commit is contained in:
ferdiansyah783
2025-08-07 03:53:40 +07:00
parent 5f24ec7899
commit a72a64215a
208 changed files with 174 additions and 29968 deletions
+29
View File
@@ -0,0 +1,29 @@
export interface Customer {
id: string;
organization_id: string;
name: string;
email?: string;
phone?: string;
address?: string;
is_default: boolean;
is_active: boolean;
metadata: Record<string, any>;
created_at: string;
updated_at: string;
}
export interface Customers {
data: Customer[];
total_count: number;
page: number;
limit: number;
total_pages: number;
}
export interface CustomerRequest {
name: string;
email?: string;
phone?: string;
address?: string;
is_active?: boolean;
}