From 854c55b7e0ce20ce7f224e7192234b9d5e969e83 Mon Sep 17 00:00:00 2001 From: Drew Rautenberg Date: Fri, 17 Jul 2026 12:12:54 -0500 Subject: [PATCH] added new customer type --- barkmanui/src/features/customers/types.ts | 7 +++++++ barkmanui/src/features/inventory/types.ts | 10 ---------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/barkmanui/src/features/customers/types.ts b/barkmanui/src/features/customers/types.ts index 7029951..7a1023d 100644 --- a/barkmanui/src/features/customers/types.ts +++ b/barkmanui/src/features/customers/types.ts @@ -7,4 +7,11 @@ export interface Customer { address: string, billingTerms: string, notes: string, +} +export interface NewCustomer { + name: string, + company: string, + email: number, + phone: number, + address: string, } \ No newline at end of file diff --git a/barkmanui/src/features/inventory/types.ts b/barkmanui/src/features/inventory/types.ts index cd87d28..7439c51 100644 --- a/barkmanui/src/features/inventory/types.ts +++ b/barkmanui/src/features/inventory/types.ts @@ -19,13 +19,3 @@ export interface NewItem { rentalPrice: number, replacementCost: number, } -export interface Customer { - id: number, - name: string, - company: string, - email: string, - phone: string, - address: string, - billingTerms: string, - notes: string, -} \ No newline at end of file