feat: add extensible operators and golden flows

This commit is contained in:
2026-07-29 15:50:15 +02:00
parent 09c98087c5
commit 946202ef01
27 changed files with 3584 additions and 218 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ export type PipelineStatus = "draft" | "active" | "archived";
export type DefinitionScopeType = "system" | "tenant" | "group" | "user";
export type DefinitionKind = "flow" | "template";
export type EditorMode = "graph" | "sql";
export type NodeCategory = "load" | "combine" | "filter" | "transform" | "output";
export type NodeCategory = "load" | "combine" | "filter" | "transform" | "quality" | "output";
export type GraphPosition = { x: number; y: number };
export type PipelineGraphNode = {