feat(lstv2 move): moved lstv2 into this app to keep them combined and easier to maintain

This commit is contained in:
2025-09-19 22:22:05 -05:00
parent caf2315191
commit e4477402ad
847 changed files with 165801 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
// an external way to creating logs
import { createRoute, OpenAPIHono, z } from "@hono/zod-openapi";
import { responses } from "../../../globalUtils/routeDefs/responses.js";
import { apiHit } from "../../../globalUtils/apiHits.js";
import fifoIndexCheck from "../controller/notifications/fifoIndex.js";
const app = new OpenAPIHono({ strict: false });
app.openapi(
createRoute({
tags: ["notify"],
summary: "Manually trigger TI intergrations.",
method: "get",
path: "/fifoindex",
//middleware: authMiddleware,
responses: responses(),
}),
async (c) => {
/**
* get the blocking notification stuff
*/
apiHit(c, { endpoint: "/fifoindex" });
/**
* getting the shipped pallets
*/
const checkedData = await fifoIndexCheck();
return c.json({
success: true,
message: "Fifo index results",
data: checkedData.data.palletsOut,
fifoCheck: {
totalShipped: checkedData.data.totalShipped,
inFifo: checkedData.data.inFifo,
outOfFifoData: checkedData.data.outOfFifoData,
},
});
}
);
export default app;