From bdd516d3b178608a4430747f0f068983bdc4212b Mon Sep 17 00:00:00 2001 From: Egor Date: Thu, 29 Jan 2026 01:04:04 +0300 Subject: [PATCH] Add SubscriptionStatusResponse interface Added SubscriptionStatusResponse interface for subscription status. --- src/types/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/types/index.ts b/src/types/index.ts index cd0dc2a..0259362 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -86,6 +86,12 @@ export interface Subscription { tariff_name?: string; } +// Response wrapper for subscription status endpoint +export interface SubscriptionStatusResponse { + has_subscription: boolean; + subscription: Subscription | null; +} + // Device types export interface Device { hwid: string;