feat(datamart): intial foundation of the datamart setup

this will allow for faster datamart addtions and updates
This commit is contained in:
2025-12-23 19:30:34 -06:00
parent 1b200147b7
commit ea72fd10cd
8 changed files with 122 additions and 2 deletions

View File

@@ -3,8 +3,8 @@ import { createLogger } from "../logger/logger.controller.js";
interface Data {
success: boolean;
module: "system" | "ocp" | "routes";
subModule: "db" | "labeling" | "printer" | "prodSql";
module: "system" | "ocp" | "routes" | "datamart";
subModule: "db" | "labeling" | "printer" | "prodSql" | "query";
level: "info" | "error" | "debug" | "fatal";
message: string;
data?: unknown[];