260317:0837 Refactor to n8n
Build and Deploy / deploy (push) Successful in 7m11s

This commit is contained in:
admin
2026-03-17 08:37:01 +07:00
parent 4f7d9bb80c
commit 2f0d67d8b2
18 changed files with 475 additions and 241 deletions
@@ -0,0 +1,25 @@
import { IsString, IsOptional, IsEnum } from 'class-validator';
import { MigrationErrorType } from '../entities/migration-error.entity';
export class CreateMigrationErrorDto {
@IsString()
@IsOptional()
batch_id?: string;
@IsString()
@IsOptional()
document_number?: string;
@IsString()
@IsOptional()
@IsEnum(MigrationErrorType)
error_type?: MigrationErrorType;
@IsString()
@IsOptional()
error_message?: string;
@IsString()
@IsOptional()
raw_ai_response?: string;
}