// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { UsersId } from './Users'; import type { MessagesId } from './Messages'; import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Identifier type for public.tools */ export type ToolsId = string; /** Represents the table public.tools */ export default interface ToolsTable { id: ColumnType; userId: ColumnType; sourceMessageId: ColumnType; name: ColumnType; description: ColumnType; parameterSchema: ColumnType; implementationLanguage: ColumnType; implementationCode: ColumnType; createdAt: ColumnType; } export type Tools = Selectable; export type NewTools = Insertable; export type ToolsUpdate = Updateable;