feat: client activation flow — prepaid & postpaid step-by-step wizard (FIBEROPS-227)

This commit is contained in:
root
2026-03-31 09:43:03 +00:00
parent 3039bb595d
commit 557a2791d3
2 changed files with 394 additions and 16 deletions

View File

@@ -46,6 +46,8 @@ export interface Client {
phone: string;
address?: string;
isActive: boolean;
lat?: number | null;
lng?: number | null;
createdAt: string;
updatedAt: string;
area?: { id: string; name: string };
@@ -63,6 +65,7 @@ export interface Subscription {
endDate?: string;
monthlyRate?: number;
mrc?: number;
monthlyPrice?: number | string;
createdAt: string;
}