jskim-node #423

Merged
kjs merged 27 commits from jskim-node into main 2026-03-20 16:10:33 +09:00
2 changed files with 4 additions and 5 deletions
Showing only changes of commit 7f33b3fd8b - Show all commits

View File

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

View File

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