From 2827871e07d07de210da8f4119781f9812f26656 Mon Sep 17 00:00:00 2001 From: dbahiense Date: Sat, 9 Nov 2024 11:30:45 -0300 Subject: [PATCH] api --- convex/_generated/api.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/convex/_generated/api.d.ts b/convex/_generated/api.d.ts index fafcd30..6b51a19 100644 --- a/convex/_generated/api.d.ts +++ b/convex/_generated/api.d.ts @@ -14,7 +14,10 @@ import type { FilterApi, FunctionReference, } from "convex/server"; +import type * as files from "../files.js"; import type * as http from "../http.js"; +import type * as openai from "../openai.js"; +import type * as podcasts from "../podcasts.js"; import type * as tasks from "../tasks.js"; import type * as users from "../users.js"; @@ -27,7 +30,10 @@ import type * as users from "../users.js"; * ``` */ declare const fullApi: ApiFromModules<{ + files: typeof files; http: typeof http; + openai: typeof openai; + podcasts: typeof podcasts; tasks: typeof tasks; users: typeof users; }>;