Agregar campo username a User entity y DTO

- Columna username (unique, nullable) en auth.users
- Campo username en CreateUserDto y UpdateUserDto

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-03-17 11:47:37 -04:00
parent 6e0ad420ab
commit 8b6483aa7d
971 changed files with 16339 additions and 752 deletions

View File

@@ -0,0 +1,12 @@
import { Module, Global } from "@nestjs/common";
import { ConfigModule } from "@nestjs/config";
import { KimiService } from "./kimi.service";
import kimiConfig from "../../config/integrations/kimi.config";
@Global()
@Module({
imports: [ConfigModule.forFeature(kimiConfig)],
providers: [KimiService],
exports: [KimiService],
})
export class KimiModule {}