- Интеграция рекурентов от Юкассы

- Багфикс личного кабинета
This commit is contained in:
firewookie
2026-03-06 09:47:58 +05:00
parent e278fec506
commit 00a013f02b
13 changed files with 274 additions and 6 deletions

View File

@@ -575,6 +575,16 @@ export interface ManualCheckResponse {
new_status: string | null;
}
// Saved payment method (card) for recurrent payments
export interface SavedCard {
id: number;
method_type: string;
card_last4: string | null;
card_type: string | null;
title: string | null;
created_at: string;
}
// Ticket notifications types
export interface TicketNotification {
id: number;