From 6be43453ca3aea10a9f33a8ebda25b7b9efd50cd Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Fri, 16 May 2025 11:56:05 +0300 Subject: [PATCH] allow winnings search by failed & returned status --- src/dto/payment.dto.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dto/payment.dto.ts b/src/dto/payment.dto.ts index 22ba515..f358349 100644 --- a/src/dto/payment.dto.ts +++ b/src/dto/payment.dto.ts @@ -8,6 +8,8 @@ export enum PaymentStatus { OWED = 'OWED', PROCESSING = 'PROCESSING', CANCELLED = 'CANCELLED', + FAILED = 'FAILED', + RETURNED = 'RETURNED', } export class PaymentDetailDto {