mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
79 lines
1.4 KiB
TypeScript
79 lines
1.4 KiB
TypeScript
import {
|
|
IsString,
|
|
IsNotEmpty,
|
|
IsOptional,
|
|
MaxLength,
|
|
IsBoolean,
|
|
IsEnum,
|
|
IsArray,
|
|
ValidateNested,
|
|
ArrayMinSize,
|
|
} from "class-validator";
|
|
import { Type } from "class-transformer";
|
|
import { CompanyType } from "../entities/company.entity";
|
|
import { ProfileType } from "../entities/company-profile.entity";
|
|
import { IsTin } from "../../../common/validators/is-tin.validator";
|
|
|
|
export class CompanyProfileInputDto {
|
|
@IsEnum(ProfileType)
|
|
type!: ProfileType;
|
|
|
|
@IsOptional()
|
|
@IsString()
|
|
@MaxLength(100)
|
|
businessLicense?: string;
|
|
}
|
|
|
|
export class CreateCompanyWithProfileDto {
|
|
@IsEnum(CompanyType)
|
|
companyType!: CompanyType;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
@MaxLength(200)
|
|
companyName!: string;
|
|
|
|
@IsOptional()
|
|
@IsString()
|
|
@MaxLength(32)
|
|
companyLocation?: string;
|
|
|
|
@IsOptional()
|
|
@IsString()
|
|
companyAddress?: string;
|
|
|
|
@IsOptional()
|
|
@IsString()
|
|
@IsTin({ message: "TIN must be exactly 10 digits" })
|
|
tin?: string;
|
|
|
|
@IsOptional()
|
|
@IsString()
|
|
@MaxLength(50)
|
|
vatNumber?: string;
|
|
|
|
@IsOptional()
|
|
@IsString()
|
|
@MaxLength(16)
|
|
fanNumber?: string;
|
|
|
|
@IsOptional()
|
|
@IsString()
|
|
@MaxLength(100)
|
|
jobTitle?: string;
|
|
|
|
@IsOptional()
|
|
@IsBoolean()
|
|
isPrimaryContact?: boolean;
|
|
|
|
@IsOptional()
|
|
attributes?: Record<string, any>;
|
|
|
|
@IsOptional()
|
|
@IsArray()
|
|
@ArrayMinSize(1)
|
|
@ValidateNested({ each: true })
|
|
@Type(() => CompanyProfileInputDto)
|
|
companyProfiles?: CompanyProfileInputDto[];
|
|
}
|