fix: fechaPagoP pipe timestamp, admin redirects, despacho plans, CSF parsing

This commit is contained in:
Horux Dev
2026-04-28 22:24:30 +00:00
parent 3eb0f33f3b
commit 066ba7deda
10 changed files with 322 additions and 118 deletions

View File

@@ -16,9 +16,9 @@ export interface Tenant {
export interface CreateTenantData {
nombre: string;
rfc: string;
plan?: 'starter' | 'business' | 'business_ia' | 'enterprise' | 'custom';
cfdiLimit?: number;
usersLimit?: number;
plan?: string;
verticalProfile?: 'CONTABLE' | 'JURIDICO' | 'ARQUITECTURA';
frequency?: 'monthly' | 'annual';
adminEmail: string;
adminNombre: string;
amount?: number;
@@ -42,9 +42,8 @@ export async function createTenant(data: CreateTenantData): Promise<Tenant> {
export interface UpdateTenantData {
nombre?: string;
rfc?: string;
plan?: 'starter' | 'business' | 'business_ia' | 'enterprise' | 'custom';
cfdiLimit?: number;
usersLimit?: number;
plan?: string;
verticalProfile?: 'CONTABLE' | 'JURIDICO' | 'ARQUITECTURA';
active?: boolean;
}