Profiles page is donegit add -A!

This commit is contained in:
2025-09-04 14:23:24 -05:00
parent 500da1f8be
commit 56ea3e0904
13 changed files with 539 additions and 172 deletions

View File

@@ -17,7 +17,7 @@ import type * as CustomPassword from "../CustomPassword.js";
import type * as auth from "../auth.js";
import type * as files from "../files.js";
import type * as http from "../http.js";
import type * as myFunctions from "../myFunctions.js";
import type * as statuses from "../statuses.js";
/**
* A utility for referencing Convex functions in your app's API.
@@ -32,7 +32,7 @@ declare const fullApi: ApiFromModules<{
auth: typeof auth;
files: typeof files;
http: typeof http;
myFunctions: typeof myFunctions;
statuses: typeof statuses;
}>;
export declare const api: FilterApi<
typeof fullApi,