From a6b96a67095780a5f26ff6d998fef4d40ff2c116 Mon Sep 17 00:00:00 2001 From: kjs Date: Fri, 20 Mar 2026 16:16:50 +0900 Subject: [PATCH] 1 --- backend-node/src/types/batchExecutionLogTypes.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend-node/src/types/batchExecutionLogTypes.ts b/backend-node/src/types/batchExecutionLogTypes.ts index aa49fd4e..7c22b3a0 100644 --- a/backend-node/src/types/batchExecutionLogTypes.ts +++ b/backend-node/src/types/batchExecutionLogTypes.ts @@ -5,7 +5,7 @@ export interface BatchExecutionLog { id?: number; batch_config_id: number; company_code?: string; - execution_status: 'RUNNING' | 'SUCCESS' | 'FAILED' | 'CANCELLED'; + execution_status: 'RUNNING' | 'SUCCESS' | 'FAILED' | 'CANCELLED' | 'PARTIAL'; start_time: Date; end_time?: Date | null; duration_ms?: number | null; @@ -21,7 +21,7 @@ export interface BatchExecutionLog { export interface CreateBatchExecutionLogRequest { batch_config_id: number; company_code?: string; - execution_status: 'RUNNING' | 'SUCCESS' | 'FAILED' | 'CANCELLED'; + execution_status: 'RUNNING' | 'SUCCESS' | 'FAILED' | 'CANCELLED' | 'PARTIAL'; start_time?: Date; end_time?: Date | null; duration_ms?: number | null; @@ -35,7 +35,7 @@ export interface CreateBatchExecutionLogRequest { } export interface UpdateBatchExecutionLogRequest { - execution_status?: 'RUNNING' | 'SUCCESS' | 'FAILED' | 'CANCELLED'; + execution_status?: 'RUNNING' | 'SUCCESS' | 'FAILED' | 'CANCELLED' | 'PARTIAL'; end_time?: Date | null; duration_ms?: number | null; total_records?: number | null;