import type { Request, Response } from 'express' import { addRecord } from '../../helpers/lotOccupancyDB/addRecord.js' import { getLotTypes } from '../../helpers/functions.cache.js' export async function handler( request: Request, response: Response ): Promise { const lotTypeId = await addRecord( 'LotTypes', request.body.lotType, request.body.orderNumber ?? -1, request.session ) const lotTypes = await getLotTypes() response.json({ success: true, lotTypeId, lotTypes }) } export default handler