setting 제거 및 불필요한 필드 제거

This commit is contained in:
hyeonsu
2025-09-16 17:16:18 +09:00
parent 104faf487c
commit ce3fea82ee
2 changed files with 18 additions and 8 deletions

View File

@@ -260,7 +260,7 @@ export interface JsonRelationship {
fromColumns: string[];
toColumns: string[];
connectionType: "simple-key" | "data-save" | "external-call";
settings?: Record<string, unknown>;
// settings 제거 - relationships는 순수 연결 정보만 저장
}
export interface CreateDiagramRequest {
@@ -692,7 +692,6 @@ export class DataFlowAPI {
to_column_name: rel.toColumns.join(","),
connection_type: rel.connectionType || "simple-key", // 각 관계의 connectionType 사용
company_code: companyCode, // 실제 사용자 회사 코드 사용
settings: rel.settings || {},
created_at: jsonDiagram.created_at,
updated_at: jsonDiagram.updated_at,
created_by: jsonDiagram.created_by,