setting 제거 및 불필요한 필드 제거
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user