feat(fakeedi): fake edi macro update implemented

This commit is contained in:
2025-04-29 17:07:15 -05:00
parent b3b6002d9a
commit 3e79017afc
6 changed files with 307 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ import currentInv from "./route/getInventory.js";
import getCustomerInv from "./route/getCustomerInv.js";
import getOpenOrders from "./route/getOpenOrders.js";
import getDeliveryByDate from "./route/getDeliveryDateByRange.js";
import fakeEDI from "./route/fakeEDI.js";
const app = new OpenAPIHono();
@@ -15,6 +16,7 @@ const routes = [
getCustomerInv,
getOpenOrders,
getDeliveryByDate,
fakeEDI,
] as const;
const appRoutes = routes.forEach((route) => {