All checks were successful
Test Asgard Runner / test (push) Successful in 3s
- Migration 021: raidablebases_configs table with JSONB config_data - Entity, module, controller (7 endpoints), service with NATS deploy/import - Frontend: 4-tab editor (General, Difficulty, NPC, Loot & Rewards) - Pinia store, types, router route, sidebar nav with Swords icon - Top 30 most common settings with actual RaidableBases.json key paths - Difficulty sub-tabs for Easy/Medium/Hard/Expert/Nightmare with spawn day toggles Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
603 B
TypeScript
26 lines
603 B
TypeScript
import { IsString, IsOptional, IsObject, IsBoolean, MaxLength } from 'class-validator';
|
|
import { ApiPropertyOptional } from '@nestjs/swagger';
|
|
|
|
export class UpdateRaidableBasesConfigDto {
|
|
@ApiPropertyOptional({ example: 'Updated Config' })
|
|
@IsString()
|
|
@MaxLength(100)
|
|
@IsOptional()
|
|
config_name?: string;
|
|
|
|
@ApiPropertyOptional({ example: 'Updated description' })
|
|
@IsString()
|
|
@IsOptional()
|
|
description?: string;
|
|
|
|
@ApiPropertyOptional()
|
|
@IsObject()
|
|
@IsOptional()
|
|
config_data?: Record<string, any>;
|
|
|
|
@ApiPropertyOptional()
|
|
@IsBoolean()
|
|
@IsOptional()
|
|
is_active?: boolean;
|
|
}
|