add autogenerated ID to route and processors

This commit is contained in:
Joel Wetzell
2026-08-19 10:00:40 -05:00
parent eee372b337
commit e0f686b08b
4 changed files with 10 additions and 4 deletions
+2
View File
@@ -22,11 +22,13 @@ export type ModuleConfig = {
};
export type RouteConfig = {
id: string;
input?: string;
processors?: ProcessorConfig[];
};
export type ProcessorConfig = {
id: string;
type: string;
params?: Record<string, any>;
};