update ui

This commit is contained in:
2026-03-04 14:18:24 +08:00
parent 2ce0075dcd
commit 94b24682e2
2 changed files with 46 additions and 23 deletions

View File

@@ -70,6 +70,12 @@ export function getGraphDefaultConfig(
return fetchJson(`/v1/graphs/${graphId}/default-config`);
}
export function getPipelineDefaultConfig(
pipelineId: string
): Promise<GraphConfigReadResponse> {
return fetchJson(`/v1/graph-configs/default/${pipelineId}`);
}
export function upsertGraphConfig(
payload: GraphConfigUpsertRequest
): Promise<GraphConfigUpsertResponse> {