From 7a0d1e5e3712129018600a5a53344377c5fbea15 Mon Sep 17 00:00:00 2001 From: joaodunas Date: Wed, 7 Jan 2026 21:31:55 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20UPDATE:=20Enhanced=20wrangler.js?= =?UTF-8?q?onc=20with=20routing=20configuration=20for=20leakhub.ai=20and?= =?UTF-8?q?=20added=20crons=20module=20import=20in=20api.d.ts=20for=20impr?= =?UTF-8?q?oved=20functionality.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- convex/_generated/api.d.ts | 2 ++ wrangler.jsonc | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/convex/_generated/api.d.ts b/convex/_generated/api.d.ts index c9340cc..9da6515 100644 --- a/convex/_generated/api.d.ts +++ b/convex/_generated/api.d.ts @@ -9,6 +9,7 @@ */ import type * as auth from "../auth.js"; +import type * as crons from "../crons.js"; import type * as github from "../github.js"; import type * as http from "../http.js"; import type * as leaderboard from "../leaderboard.js"; @@ -24,6 +25,7 @@ import type { declare const fullApi: ApiFromModules<{ auth: typeof auth; + crons: typeof crons; github: typeof github; http: typeof http; leaderboard: typeof leaderboard; diff --git a/wrangler.jsonc b/wrangler.jsonc index 8cb97fe..6b78b25 100644 --- a/wrangler.jsonc +++ b/wrangler.jsonc @@ -10,4 +10,10 @@ }, // Required compatibility date for Workers runtime features "compatibility_date": "2025-06-05", + "routes": [ + { + "pattern": "**", + "zone_name": "leakhub.ai", + }, + ], }