Files
mnote/wolai-frontend/convex/_generated/api.d.ts
T

122 lines
4.0 KiB
TypeScript
Raw Normal View History

2026-01-17 10:12:53 +08:00
/* eslint-disable */
/**
* Generated `api` utility.
*
* THIS CODE IS AUTOMATICALLY GENERATED.
*
* To regenerate, run `npx convex dev`.
* @module
*/
2026-01-24 12:32:51 +08:00
import type * as _utils_attachmentExtract from "../_utils/attachmentExtract.js";
2026-04-14 13:22:29 +08:00
import type * as _utils_auth from "../_utils/auth.js";
import type * as _utils_documentRecord from "../_utils/documentRecord.js";
2026-01-22 18:53:20 +08:00
import type * as _utils_documentTree from "../_utils/documentTree.js";
2026-01-18 05:13:53 +08:00
import type * as _utils_id from "../_utils/id.js";
import type * as _utils_ingestJobs from "../_utils/ingestJobs.js";
import type * as _utils_lightrag from "../_utils/lightrag.js";
import type * as _utils_text from "../_utils/text.js";
2026-01-17 10:12:53 +08:00
import type * as _utils_time from "../_utils/time.js";
2026-04-13 19:21:42 +08:00
import type * as agentActions from "../agentActions.js";
2026-04-14 13:22:29 +08:00
import type * as audit from "../audit.js";
2026-01-18 05:13:53 +08:00
import type * as auth from "../auth.js";
2026-04-13 19:21:42 +08:00
import type * as blocks from "../blocks.js";
2026-04-14 13:22:29 +08:00
import type * as bridgeLogs from "../bridgeLogs.js";
2026-02-01 08:47:40 +08:00
import type * as comments from "../comments.js";
2026-04-13 19:21:42 +08:00
import type * as crons from "../crons.js";
2026-01-22 18:53:20 +08:00
import type * as documentGroupShares from "../documentGroupShares.js";
import type * as documentShares from "../documentShares.js";
import type * as documentStars from "../documentStars.js";
2026-01-17 10:12:53 +08:00
import type * as documents from "../documents.js";
2026-01-24 12:32:51 +08:00
import type * as groupInvitations from "../groupInvitations.js";
2026-01-22 18:53:20 +08:00
import type * as groupMembers from "../groupMembers.js";
import type * as groups from "../groups.js";
2026-01-18 05:13:53 +08:00
import type * as http from "../http.js";
2026-01-17 10:12:53 +08:00
import type * as jobs from "../jobs.js";
2026-04-13 19:21:42 +08:00
import type * as maintenance from "../maintenance.js";
2026-01-17 10:12:53 +08:00
import type * as mediaAssets from "../mediaAssets.js";
import type * as mindmaps from "../mindmaps.js";
2026-04-13 19:21:42 +08:00
import type * as mnoteNextBridge from "../mnoteNextBridge.js";
import type * as pages from "../pages.js";
2026-01-17 10:12:53 +08:00
import type * as ping from "../ping.js";
import type * as recents from "../recents.js";
import type * as references from "../references.js";
import type * as sidebar from "../sidebar.js";
2026-01-18 05:13:53 +08:00
import type * as tables from "../tables.js";
import type * as users from "../users.js";
2026-01-17 10:12:53 +08:00
import type * as workspaces from "../workspaces.js";
import type {
ApiFromModules,
FilterApi,
FunctionReference,
} from "convex/server";
declare const fullApi: ApiFromModules<{
2026-01-24 12:32:51 +08:00
"_utils/attachmentExtract": typeof _utils_attachmentExtract;
2026-04-14 13:22:29 +08:00
"_utils/auth": typeof _utils_auth;
"_utils/documentRecord": typeof _utils_documentRecord;
2026-01-22 18:53:20 +08:00
"_utils/documentTree": typeof _utils_documentTree;
2026-01-18 05:13:53 +08:00
"_utils/id": typeof _utils_id;
"_utils/ingestJobs": typeof _utils_ingestJobs;
"_utils/lightrag": typeof _utils_lightrag;
"_utils/text": typeof _utils_text;
2026-01-17 10:12:53 +08:00
"_utils/time": typeof _utils_time;
2026-04-13 19:21:42 +08:00
agentActions: typeof agentActions;
2026-04-14 13:22:29 +08:00
audit: typeof audit;
2026-01-18 05:13:53 +08:00
auth: typeof auth;
2026-04-13 19:21:42 +08:00
blocks: typeof blocks;
2026-04-14 13:22:29 +08:00
bridgeLogs: typeof bridgeLogs;
2026-02-01 08:47:40 +08:00
comments: typeof comments;
2026-04-13 19:21:42 +08:00
crons: typeof crons;
2026-01-22 18:53:20 +08:00
documentGroupShares: typeof documentGroupShares;
documentShares: typeof documentShares;
documentStars: typeof documentStars;
2026-01-17 10:12:53 +08:00
documents: typeof documents;
2026-01-24 12:32:51 +08:00
groupInvitations: typeof groupInvitations;
2026-01-22 18:53:20 +08:00
groupMembers: typeof groupMembers;
groups: typeof groups;
2026-01-18 05:13:53 +08:00
http: typeof http;
2026-01-17 10:12:53 +08:00
jobs: typeof jobs;
2026-04-13 19:21:42 +08:00
maintenance: typeof maintenance;
2026-01-17 10:12:53 +08:00
mediaAssets: typeof mediaAssets;
mindmaps: typeof mindmaps;
2026-04-13 19:21:42 +08:00
mnoteNextBridge: typeof mnoteNextBridge;
pages: typeof pages;
2026-01-17 10:12:53 +08:00
ping: typeof ping;
recents: typeof recents;
references: typeof references;
sidebar: typeof sidebar;
2026-01-18 05:13:53 +08:00
tables: typeof tables;
users: typeof users;
2026-01-17 10:12:53 +08:00
workspaces: typeof workspaces;
}>;
/**
* A utility for referencing Convex functions in your app's public API.
*
* Usage:
* ```js
* const myFunctionReference = api.myModule.myFunction;
* ```
*/
export declare const api: FilterApi<
typeof fullApi,
FunctionReference<any, "public">
>;
/**
* A utility for referencing Convex functions in your app's internal API.
*
* Usage:
* ```js
* const myFunctionReference = internal.myModule.myFunction;
* ```
*/
export declare const internal: FilterApi<
typeof fullApi,
FunctionReference<any, "internal">
>;
export declare const components: {};