diff --git a/server.ts b/server.ts index 2549de4..ea46d1e 100644 --- a/server.ts +++ b/server.ts @@ -236,6 +236,7 @@ app.get("/api/properties", async (c: Context) => { l.is_scraped, l.price, l.price_formatted, + l.price_not_shown, p.id AS property_id, p.user_id, p.floor_size, @@ -523,6 +524,7 @@ app.patch("/api/properties/:id/generate-ai-description", async (c: Context) => { l.is_scraped, l.price, l.price_formatted, + l.price_not_shown, p.id AS property_id, p.user_id, p.floor_size, @@ -643,6 +645,7 @@ app.get("/api/properties/:id", async (c: Context) => { l.is_scraped, l.price, l.price_formatted, + l.price_not_shown, p.id AS property_id, p.user_id, p.floor_size,