|
|
|
@ -1,12 +1,12 @@
|
|
|
|
|
// @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';
|
|
|
|
|
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 = number & { __brand: 'public.tools' };
|
|
|
|
|
export type ToolsId = number & { __brand: "public.tools" };
|
|
|
|
|
|
|
|
|
|
/** Represents the table public.tools */
|
|
|
|
|
export default interface ToolsTable {
|
|
|
|
@ -14,7 +14,11 @@ export default interface ToolsTable {
|
|
|
|
|
|
|
|
|
|
user_id: ColumnType<UsersId | null, UsersId | null, UsersId | null>;
|
|
|
|
|
|
|
|
|
|
source_message_id: ColumnType<MessagesId | null, MessagesId | null, MessagesId | null>;
|
|
|
|
|
source_message_id: ColumnType<
|
|
|
|
|
MessagesId | null,
|
|
|
|
|
MessagesId | null,
|
|
|
|
|
MessagesId | null
|
|
|
|
|
>;
|
|
|
|
|
|
|
|
|
|
name: ColumnType<string | null, string | null, string | null>;
|
|
|
|
|
|
|
|
|
@ -22,7 +26,11 @@ export default interface ToolsTable {
|
|
|
|
|
|
|
|
|
|
parameter_schema: ColumnType<unknown | null, unknown | null, unknown | null>;
|
|
|
|
|
|
|
|
|
|
implementation_language: ColumnType<string | null, string | null, string | null>;
|
|
|
|
|
implementation_language: ColumnType<
|
|
|
|
|
string | null,
|
|
|
|
|
string | null,
|
|
|
|
|
string | null
|
|
|
|
|
>;
|
|
|
|
|
|
|
|
|
|
implementation_code: ColumnType<string | null, string | null, string | null>;
|
|
|
|
|
|
|
|
|
|