feat(payment): update payment status values to use 'success' and 'failed' instead of 'received' and add new status
This commit is contained in:
@@ -97,7 +97,7 @@ export interface Appointment {
|
||||
created_at: string;
|
||||
}
|
||||
|
||||
export type PaymentStatus = 'pending' | 'received' | 'canceled' | 'refund';
|
||||
export type PaymentStatus = 'pending' | 'success' | 'failed' | 'canceled' | 'refunded';
|
||||
export type PaymentGateway = 'mellat' | 'sep';
|
||||
|
||||
export interface Payment {
|
||||
|
||||
Reference in New Issue
Block a user