feat: add webhook endpoint to support syncing clerk user data into users table

This commit is contained in:
Stevan Freeborn
2023-09-09 22:29:28 -05:00
parent 4b6fec0841
commit 7d755ec5c5
9 changed files with 226 additions and 109 deletions
+6 -1
View File
@@ -14,6 +14,8 @@ import type {
FilterApi,
FunctionReference,
} from "convex/server";
import type * as http from "../http";
import type * as users from "../users";
/**
* A utility for referencing Convex functions in your app's API.
@@ -23,7 +25,10 @@ import type {
* const myFunctionReference = api.myModule.myFunction;
* ```
*/
declare const fullApi: ApiFromModules<{}>;
declare const fullApi: ApiFromModules<{
http: typeof http;
users: typeof users;
}>;
export declare const api: FilterApi<
typeof fullApi,
FunctionReference<any, "public">