From e4f2dbcfc20ccf7768daf824ed266e06fb72c85e Mon Sep 17 00:00:00 2001 From: Egor Date: Fri, 16 Jan 2026 04:10:44 +0300 Subject: [PATCH] Update index.ts --- src/types/index.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/types/index.ts b/src/types/index.ts index 25599ba..caa4a56 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -348,6 +348,12 @@ export interface Transaction { completed_at: string | null } +export interface PaymentMethodOption { + id: string + name: string + description?: string | null +} + export interface PaymentMethod { id: string name: string @@ -355,6 +361,7 @@ export interface PaymentMethod { min_amount_kopeks: number max_amount_kopeks: number is_available: boolean + options?: PaymentMethodOption[] | null } // Referral types