feat(datamart): new query to check if the city state will be valid to process in tms

This commit is contained in:
2025-05-15 21:14:51 -05:00
parent f4a91614c1
commit 78c5da8e81
5 changed files with 95 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ import getCustomerInv from "./route/getCustomerInv.js";
import getOpenOrders from "./route/getOpenOrders.js";
import getDeliveryByDate from "./route/getDeliveryDateByRange.js";
import fakeEDI from "./route/fakeEDI.js";
import addressCorrections from "./route/getCityStateData.js";
const app = new OpenAPIHono();
@@ -17,6 +18,7 @@ const routes = [
getOpenOrders,
getDeliveryByDate,
fakeEDI,
addressCorrections,
] as const;
const appRoutes = routes.forEach((route) => {