template-saas/apps/backend/dist/modules/superadmin/dto/index.d.ts
rckrdmrd 50a821a415
Some checks failed
CI / Backend CI (push) Has been cancelled
CI / Frontend CI (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / CI Summary (push) Has been cancelled
[SIMCO-V38] feat: Actualizar a SIMCO v3.8.0
- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8
- Actualizaciones de configuracion

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-10 08:53:08 -06:00

29 lines
629 B
TypeScript

export declare class CreateTenantDto {
name: string;
slug: string;
domain?: string;
logo_url?: string;
plan_id?: string;
status?: string;
}
export declare class UpdateTenantDto {
name?: string;
domain?: string;
logo_url?: string;
plan_id?: string;
settings?: Record<string, any>;
metadata?: Record<string, any>;
}
export declare class UpdateTenantStatusDto {
status: string;
reason?: string;
}
export declare class ListTenantsQueryDto {
page?: number;
limit?: number;
search?: string;
status?: string;
sortBy?: string;
sortOrder?: 'ASC' | 'DESC';
}