690322:2047 Fixing Deployment Blocking TypeScript Errors
CI Pipeline / build (push) Failing after 9m47s
Build and Deploy / deploy (push) Failing after 4m42s

This commit is contained in:
2026-03-22 20:47:22 +07:00
parent 11984bfa29
commit 5dad7ab7c1
16 changed files with 17 additions and 18 deletions
@@ -1,4 +1,4 @@
import { IsString, IsNotEmpty, IsOptional, _IsInt } from 'class-validator';
import { IsString, IsNotEmpty, IsOptional, IsInt } from 'class-validator';
import { ApiProperty } from '@nestjs/swagger';
export class CreateTagDto {
@@ -1,4 +1,4 @@
import { IsInt, IsString, IsNotEmpty, _IsOptional } from 'class-validator';
import { IsInt, IsString, IsNotEmpty, IsOptional } from 'class-validator';
export class SaveNumberFormatDto {
@IsInt()
@@ -4,7 +4,7 @@ import {
Controller,
Get,
Post,
_Put,
Put,
Body,
Patch,
Param,