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
@@ -14,11 +14,15 @@ export class EnqueueMigrationDto {
@IsString()
@IsOptional()
title?: string;
subject?: string;
@IsString()
@IsOptional()
original_title?: string;
original_subject?: string;
@IsString()
@IsOptional()
body?: string;
@IsString()
@IsOptional()
@@ -54,7 +58,10 @@ export class EnqueueMigrationDto {
@IsArray()
@IsOptional()
extracted_tags?: any[];
extracted_tags?: Record<string, string>[];
@IsOptional()
details?: Record<string, unknown>;
@IsNumber()
@IsOptional()