Initial commit - Route Commerce platform

This commit is contained in:
2026-06-01 19:40:55 +00:00
commit 53a9671461
617 changed files with 106132 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
export type Brand = {
id: string;
name: string;
slug: string;
};
export type Product = {
id: string;
brand_id: string;
name: string;
description: string;
price: number;
type: string;
active: boolean;
brands: { name: string } | null;
};
export type Stop = {
id: string;
brand_id: string;
slug: string;
city: string;
state: string;
date: string;
time: string;
location: string;
active: boolean;
brands: { name: string } | null;
};
export type CartItem = {
id: string;
name: string;
price: string;
quantity: number;
fulfillment?: "pickup" | "ship";
brand_id: string;
brand_slug: string;
is_taxable?: boolean;
pickup_type?: "scheduled_stop" | "shed";
description?: string;
};