Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
303 B
TypeScript
14 lines
303 B
TypeScript
export declare class SetTenantFlagDto {
|
|
flag_id: string;
|
|
is_enabled?: boolean;
|
|
value?: any;
|
|
metadata?: Record<string, any>;
|
|
}
|
|
export declare class SetUserFlagDto {
|
|
flag_id: string;
|
|
user_id: string;
|
|
is_enabled?: boolean;
|
|
value?: any;
|
|
metadata?: Record<string, any>;
|
|
}
|