This commit is contained in:
Den Piligrim
2026-05-21 22:58:29 +03:00
parent 962544820f
commit 26f3bb2934
48 changed files with 2877 additions and 1170 deletions
+13
View File
@@ -1,6 +1,7 @@
import {
IsBoolean,
IsEnum,
IsIP,
IsOptional,
IsString,
MinLength,
@@ -17,6 +18,18 @@ export class CreateNodeDto {
@IsString()
url: string;
@IsIP()
@IsOptional()
ip?: string;
@IsString()
@IsOptional()
domain?: string;
@IsString()
@IsOptional()
flag?: string;
@IsEnum(NodeAuthType)
authType: NodeAuthType;