80 lines
2.2 KiB
TypeScript
80 lines
2.2 KiB
TypeScript
/* eslint-disable */
|
|
/**
|
|
* Generated `api` utility.
|
|
*
|
|
* THIS CODE IS AUTOMATICALLY GENERATED.
|
|
*
|
|
* To regenerate, run `npx convex dev`.
|
|
* @module
|
|
*/
|
|
|
|
import type * as agentWorkspace from "../agentWorkspace.js";
|
|
import type * as artifactModel from "../artifactModel.js";
|
|
import type * as auth from "../auth.js";
|
|
import type * as authz from "../authz.js";
|
|
import type * as daemonCommands from "../daemonCommands.js";
|
|
import type * as daemonRuntime from "../daemonRuntime.js";
|
|
import type * as daemons from "../daemons.js";
|
|
import type * as fluePersistence from "../fluePersistence.js";
|
|
import type * as healthCheck from "../healthCheck.js";
|
|
import type * as http from "../http.js";
|
|
import type * as privateData from "../privateData.js";
|
|
import type * as projectArtifacts from "../projectArtifacts.js";
|
|
import type * as projectIssues from "../projectIssues.js";
|
|
import type * as projects from "../projects.js";
|
|
import type * as todos from "../todos.js";
|
|
|
|
import type {
|
|
ApiFromModules,
|
|
FilterApi,
|
|
FunctionReference,
|
|
} from "convex/server";
|
|
|
|
declare const fullApi: ApiFromModules<{
|
|
agentWorkspace: typeof agentWorkspace;
|
|
artifactModel: typeof artifactModel;
|
|
auth: typeof auth;
|
|
authz: typeof authz;
|
|
daemonCommands: typeof daemonCommands;
|
|
daemonRuntime: typeof daemonRuntime;
|
|
daemons: typeof daemons;
|
|
fluePersistence: typeof fluePersistence;
|
|
healthCheck: typeof healthCheck;
|
|
http: typeof http;
|
|
privateData: typeof privateData;
|
|
projectArtifacts: typeof projectArtifacts;
|
|
projectIssues: typeof projectIssues;
|
|
projects: typeof projects;
|
|
todos: typeof todos;
|
|
}>;
|
|
|
|
/**
|
|
* 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: {
|
|
betterAuth: import("@convex-dev/better-auth/_generated/component.js").ComponentApi<"betterAuth">;
|
|
};
|