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
390 B
TypeScript
14 lines
390 B
TypeScript
import { FlagType, FlagScope } from '../entities/feature-flag.entity';
|
|
export declare class UpdateFlagDto {
|
|
name?: string;
|
|
description?: string;
|
|
flag_type?: FlagType;
|
|
scope?: FlagScope;
|
|
default_value?: any;
|
|
is_enabled?: boolean;
|
|
targeting_rules?: Record<string, any>;
|
|
rollout_percentage?: number;
|
|
category?: string;
|
|
metadata?: Record<string, any>;
|
|
}
|