i need a shit

This commit is contained in:
NotII
2025-07-17 11:06:58 +01:00
parent 18e87721e2
commit 57e130a247
5 changed files with 242 additions and 60 deletions

View File

@@ -77,6 +77,11 @@ export interface Order {
totalPrice: number
createdAt: string
telegramUsername?: string
underpaid?: boolean
underpaymentAmount?: number
lastBalanceReceived?: number
underpaymentNotified?: boolean
cryptoTotal?: number
}
export type OrderStatus = "paid" | "unpaid" | "confirming" | "shipped" | "completed" | "disputed" | "cancelled"