refactor[db]: store time as unix ms

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2025-10-03 21:23:51 +00:00
parent 1d8a117b93
commit 0e686a1f85
11 changed files with 132 additions and 15 deletions

View File

@@ -13,6 +13,7 @@ import type {
FilterApi,
FunctionReference,
} from "convex/server";
import type * as admin from "../admin.js";
import type * as files from "../files.js";
import type * as filesystem from "../filesystem.js";
import type * as functions from "../functions.js";
@@ -32,6 +33,7 @@ import type * as users from "../users.js";
* ```
*/
declare const fullApi: ApiFromModules<{
admin: typeof admin;
files: typeof files;
filesystem: typeof filesystem;
functions: typeof functions;