added ticket status types

This commit is contained in:
Mamalizz
2025-02-28 23:12:51 +03:30
parent a073bb3fff
commit a6c5d5b65b
+2 -1
View File
@@ -189,6 +189,7 @@ declare global {
type TicketMessage = {
id: number;
is_user: boolean;
content: string;
created_at: string;
attachments: ServerFile[];
@@ -199,7 +200,7 @@ declare global {
messages: TicketMessage[];
subject: string;
ticket_category: string;
status: string;
status: "در انتظار پاسخ" | "پاسخ داده شده" | "بسته شده";
created_at: string;
updated_at: string;
order: Order;