[agent-pipeline] pipe-20260318044621-56k5 round-7

This commit is contained in:
DDD1542 2026-03-18 14:24:48 +09:00
parent 0f15644651
commit 7f33b3fd8b
2 changed files with 4 additions and 5 deletions

View File

@ -181,12 +181,12 @@ export default function BatchCreatePage() {
const newMapping: BatchMapping = {
from_connection_type: fromConnection.type,
from_connection_id: fromConnection.id || null,
from_connection_id: fromConnection.id ?? undefined,
from_table_name: fromTable,
from_column_name: selectedFromColumn.column_name,
from_column_type: selectedFromColumn.data_type || '',
to_connection_type: toConnection.type,
to_connection_id: toConnection.id || null,
to_connection_id: toConnection.id ?? undefined,
to_table_name: toTable,
to_column_name: toColumn.column_name,
to_column_type: toColumn.data_type || '',

View File

@ -48,6 +48,8 @@ export interface BatchConfigFilter {
is_active?: string;
company_code?: string;
search?: string;
page?: number;
limit?: number;
}
export interface BatchJob {
@ -461,6 +463,3 @@ export class BatchAPI {
}
}
}
// BatchJob export 추가 (이미 위에서 interface로 정의됨)
export { BatchJob };