/* eslint-disable */ /** * Generated `api` utility. * * THIS CODE IS AUTOMATICALLY GENERATED. * * To regenerate, run `npx convex dev`. * @module */ import type * as config from "../config.js"; import type * as flyCleanup from "../flyCleanup.js"; import type * as identity from "../identity.js"; import type * as lib from "../lib.js"; import type * as messageTemplates from "../messageTemplates.js"; import type * as providers_fly from "../providers/fly.js"; import type * as pushing from "../pushing.js"; import type * as queue from "../queue.js"; import type * as scheduler from "../scheduler.js"; import type * as workerLifecycle from "../workerLifecycle.js"; import type { ApiFromModules, FilterApi, FunctionReference, } from "convex/server"; import { anyApi, componentsGeneric } from "convex/server"; const fullApi: ApiFromModules<{ config: typeof config; flyCleanup: typeof flyCleanup; identity: typeof identity; lib: typeof lib; messageTemplates: typeof messageTemplates; "providers/fly": typeof providers_fly; pushing: typeof pushing; queue: typeof queue; scheduler: typeof scheduler; workerLifecycle: typeof workerLifecycle; }> = anyApi as any; /** * A utility for referencing Convex functions in your app's public API. * * Usage: * ```js * const myFunctionReference = api.myModule.myFunction; * ``` */ export const api: FilterApi< typeof fullApi, FunctionReference > = anyApi as any; /** * A utility for referencing Convex functions in your app's internal API. * * Usage: * ```js * const myFunctionReference = internal.myModule.myFunction; * ``` */ export const internal: FilterApi< typeof fullApi, FunctionReference > = anyApi as any; export const components = componentsGeneric() as unknown as {};