106 lines
3.5 KiB
TypeScript
106 lines
3.5 KiB
TypeScript
/* eslint-disable */
|
|
/**
|
|
* Generated `api` utility.
|
|
*
|
|
* THIS CODE IS AUTOMATICALLY GENERATED.
|
|
*
|
|
* To regenerate, run `npx convex dev`.
|
|
* @module
|
|
*/
|
|
|
|
import type * as accounts from "../accounts.js";
|
|
import type * as auth from "../auth.js";
|
|
import type * as bank_comdirectProvider from "../bank/comdirectProvider.js";
|
|
import type * as bank_config from "../bank/config.js";
|
|
import type * as bank_fintsConfig from "../bank/fintsConfig.js";
|
|
import type * as bank_fintsMap from "../bank/fintsMap.js";
|
|
import type * as bank_fintsSession from "../bank/fintsSession.js";
|
|
import type * as bank_internal from "../bank/internal.js";
|
|
import type * as bank_orchestrator from "../bank/orchestrator.js";
|
|
import type * as bank_sync from "../bank/sync.js";
|
|
import type * as bank_types from "../bank/types.js";
|
|
import type * as categories from "../categories.js";
|
|
import type * as comdirect_auth from "../comdirect/auth.js";
|
|
import type * as comdirect_client from "../comdirect/client.js";
|
|
import type * as comdirect_internal from "../comdirect/internal.js";
|
|
import type * as comdirect_sync from "../comdirect/sync.js";
|
|
import type * as dashboard from "../dashboard.js";
|
|
import type * as http from "../http.js";
|
|
import type * as imports from "../imports.js";
|
|
import type * as lib_amortization from "../lib/amortization.js";
|
|
import type * as lib_categorize from "../lib/categorize.js";
|
|
import type * as lib_comdirectMap from "../lib/comdirectMap.js";
|
|
import type * as lib_helpers from "../lib/helpers.js";
|
|
import type * as lib_month from "../lib/month.js";
|
|
import type * as lib_seedCategories from "../lib/seedCategories.js";
|
|
import type * as loans from "../loans.js";
|
|
import type * as settings from "../settings.js";
|
|
import type * as transactions from "../transactions.js";
|
|
import type * as users from "../users.js";
|
|
|
|
import type {
|
|
ApiFromModules,
|
|
FilterApi,
|
|
FunctionReference,
|
|
} from "convex/server";
|
|
|
|
declare const fullApi: ApiFromModules<{
|
|
accounts: typeof accounts;
|
|
auth: typeof auth;
|
|
"bank/comdirectProvider": typeof bank_comdirectProvider;
|
|
"bank/config": typeof bank_config;
|
|
"bank/fintsConfig": typeof bank_fintsConfig;
|
|
"bank/fintsMap": typeof bank_fintsMap;
|
|
"bank/fintsSession": typeof bank_fintsSession;
|
|
"bank/internal": typeof bank_internal;
|
|
"bank/orchestrator": typeof bank_orchestrator;
|
|
"bank/sync": typeof bank_sync;
|
|
"bank/types": typeof bank_types;
|
|
categories: typeof categories;
|
|
"comdirect/auth": typeof comdirect_auth;
|
|
"comdirect/client": typeof comdirect_client;
|
|
"comdirect/internal": typeof comdirect_internal;
|
|
"comdirect/sync": typeof comdirect_sync;
|
|
dashboard: typeof dashboard;
|
|
http: typeof http;
|
|
imports: typeof imports;
|
|
"lib/amortization": typeof lib_amortization;
|
|
"lib/categorize": typeof lib_categorize;
|
|
"lib/comdirectMap": typeof lib_comdirectMap;
|
|
"lib/helpers": typeof lib_helpers;
|
|
"lib/month": typeof lib_month;
|
|
"lib/seedCategories": typeof lib_seedCategories;
|
|
loans: typeof loans;
|
|
settings: typeof settings;
|
|
transactions: typeof transactions;
|
|
users: typeof users;
|
|
}>;
|
|
|
|
/**
|
|
* 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: {};
|