Add funcionarios table to schema with various optional fields and indexes

This commit is contained in:
2025-10-21 11:15:11 -03:00
parent d00e0cd676
commit 9f251b1bc4
6 changed files with 390 additions and 4 deletions

View File

@@ -0,0 +1,43 @@
/* eslint-disable */
/**
* Generated `api` utility.
*
* THIS CODE IS AUTOMATICALLY GENERATED.
*
* To regenerate, run `npx convex dev`.
* @module
*/
import type * as healthCheck from "../healthCheck.js";
import type * as todos from "../todos.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<{
healthCheck: typeof healthCheck;
todos: typeof todos;
}>;
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: {};