// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { FactsId } from './Facts'; import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Identifier type for public.fact_triggers */ export type FactTriggersId = string; /** Represents the table public.fact_triggers */ export default interface FactTriggersTable { id: ColumnType; sourceFactId: ColumnType; content: ColumnType; priorityMultiplier: ColumnType; priorityMultiplierReason: ColumnType; scopeConversationId: ColumnType; createdAt: ColumnType; } export type FactTriggers = Selectable; export type NewFactTriggers = Insertable; export type FactTriggersUpdate = Updateable;