fix: fechaPagoP pipe timestamp, admin redirects, despacho plans, CSF parsing
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user