Files
16gagent/output/warehouse-mgmt/apps/api/src/routes/stock_alerts.ts
T
2026-06-06 10:40:48 +08:00

52 lines
1.9 KiB
TypeScript

// Auto-generated StockAlerts routes
import type { FastifyInstance } from "fastify";
import { authenticate } from "../middleware/auth.js";
import { StockAlertsService } from "../services/stock_alert.js";
import type { CreateStockAlertsInput, UpdateStockAlertsInput } from "../types/index.js";
const service = new StockAlertsService();
export async function stock_alertsRoutes(app: FastifyInstance): Promise<void> {
// All routes require authentication
app.addHook("onRequest", authenticate);
// GET /api/stock_alerts — list
app.get("/", async (request, reply) => {
const items = service.list();
return { data: items };
});
// GET /api/stock_alerts/:id — get by id
app.get<{ Params: { id: string } }>("/:id", async (request, reply) => {
const item = service.getById(request.params.id);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "StockAlerts not found", statusCode: 404 });
}
return { data: item };
});
// POST /api/stock_alerts — create
app.post<{ Body: CreateStockAlertsInput }>("/", async (request, reply) => {
const item = service.create(request.body);
return reply.status(201).send({ data: item });
});
// PUT /api/stock_alerts/:id — update
app.put<{ Params: { id: string }; Body: UpdateStockAlertsInput }>("/:id", async (request, reply) => {
const item = service.update(request.params.id, request.body);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "StockAlerts not found", statusCode: 404 });
}
return { data: item };
});
// DELETE /api/stock_alerts/:id — delete
app.delete<{ Params: { id: string } }>("/:id", async (request, reply) => {
const deleted = service.delete(request.params.id);
if (!deleted) {
return reply.status(404).send({ error: "Not Found", message: "StockAlerts not found", statusCode: 404 });
}
return reply.status(204).send();
});
}