From 778becee1f8cf715688c7513437ba1dbc488dfc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Y=C4=B1ld=C4=B1z?= Date: Thu, 16 Oct 2025 13:32:03 +0300 Subject: [PATCH 1/2] Add enabledDeleteCard field to InitCheckoutPaymentRequest --- src/request/InitCheckoutPaymentRequest.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/request/InitCheckoutPaymentRequest.ts b/src/request/InitCheckoutPaymentRequest.ts index 8d335a6..2601d26 100644 --- a/src/request/InitCheckoutPaymentRequest.ts +++ b/src/request/InitCheckoutPaymentRequest.ts @@ -26,6 +26,7 @@ type InitCheckoutPaymentRequest = { clientIp?: string; enabledInstallments?: number[]; alwaysStoreCardAfterPayment?: boolean; + enabledDeleteCard?: boolean; allowOnlyStoredCards?: boolean; allowOnlyCreditCard?: boolean; depositPayments?: boolean; From e5e4ff661a3643de90e0352c926e5754e38f3b92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Y=C4=B1ld=C4=B1z?= Date: Thu, 16 Oct 2025 14:17:23 +0300 Subject: [PATCH 2/2] Update allowDeleteStoredCard field to InitCheckoutPaymentRequest --- src/request/InitCheckoutPaymentRequest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/request/InitCheckoutPaymentRequest.ts b/src/request/InitCheckoutPaymentRequest.ts index 2601d26..b72e4a7 100644 --- a/src/request/InitCheckoutPaymentRequest.ts +++ b/src/request/InitCheckoutPaymentRequest.ts @@ -26,7 +26,7 @@ type InitCheckoutPaymentRequest = { clientIp?: string; enabledInstallments?: number[]; alwaysStoreCardAfterPayment?: boolean; - enabledDeleteCard?: boolean; + allowDeleteStoredCard?: boolean; allowOnlyStoredCards?: boolean; allowOnlyCreditCard?: boolean; depositPayments?: boolean;