feat: make more node group features work
📊 Benchmark the Runtime / release (pull_request) Successful in 4m32s
🚀 Lint & Test & Deploy / release (pull_request) Failing after 1m5s

This commit is contained in:
2026-05-03 16:34:52 +02:00
parent 6ef5dc28ed
commit 01f58377c2
13 changed files with 589 additions and 401 deletions
+4 -1
View File
@@ -81,7 +81,10 @@ export const GroupSchema = z.object({
nodes: z.array(NodeSchema),
edges: z.array(z.tuple([z.number(), z.number(), z.number(), z.string()])),
inputs: z.record(z.string(), NodeInputSchema).optional(),
outputs: z.array(z.string()).optional()
outputs: z.array(z.object({
type: z.string(),
label: z.string().optional()
})).optional()
});
export type GroupDefinition = z.infer<typeof GroupSchema>;