69 lines
1.8 KiB
TypeScript
69 lines
1.8 KiB
TypeScript
/* eslint-disable */
|
|
/**
|
|
* Generated `api` utility.
|
|
*
|
|
* THIS CODE IS AUTOMATICALLY GENERATED.
|
|
*
|
|
* To regenerate, run `npx convex dev`.
|
|
* @module
|
|
*/
|
|
|
|
import type * as bootstrap from "../bootstrap.js";
|
|
import type * as categories from "../categories.js";
|
|
import type * as commentTemplates from "../commentTemplates.js";
|
|
import type * as fields from "../fields.js";
|
|
import type * as files from "../files.js";
|
|
import type * as invites from "../invites.js";
|
|
import type * as migrations from "../migrations.js";
|
|
import type * as queues from "../queues.js";
|
|
import type * as rbac from "../rbac.js";
|
|
import type * as reports from "../reports.js";
|
|
import type * as seed from "../seed.js";
|
|
import type * as slas from "../slas.js";
|
|
import type * as teams from "../teams.js";
|
|
import type * as tickets from "../tickets.js";
|
|
import type * as users from "../users.js";
|
|
|
|
import type {
|
|
ApiFromModules,
|
|
FilterApi,
|
|
FunctionReference,
|
|
} from "convex/server";
|
|
|
|
/**
|
|
* A utility for referencing Convex functions in your app's API.
|
|
*
|
|
* Usage:
|
|
* ```js
|
|
* const myFunctionReference = api.myModule.myFunction;
|
|
* ```
|
|
*/
|
|
declare const fullApi: ApiFromModules<{
|
|
bootstrap: typeof bootstrap;
|
|
categories: typeof categories;
|
|
commentTemplates: typeof commentTemplates;
|
|
fields: typeof fields;
|
|
files: typeof files;
|
|
invites: typeof invites;
|
|
migrations: typeof migrations;
|
|
queues: typeof queues;
|
|
rbac: typeof rbac;
|
|
reports: typeof reports;
|
|
seed: typeof seed;
|
|
slas: typeof slas;
|
|
teams: typeof teams;
|
|
tickets: typeof tickets;
|
|
users: typeof users;
|
|
}>;
|
|
declare const fullApiWithMounts: typeof fullApi;
|
|
|
|
export declare const api: FilterApi<
|
|
typeof fullApiWithMounts,
|
|
FunctionReference<any, "public">
|
|
>;
|
|
export declare const internal: FilterApi<
|
|
typeof fullApiWithMounts,
|
|
FunctionReference<any, "internal">
|
|
>;
|
|
|
|
export declare const components: {};
|