import type { ServizioServizioId } from './Servizio'; import type { AnnunciId } from './Annunci'; import type { default as StatusConfermaEnum } from './StatusConfermaEnum'; import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Identifier type for public.servizio_annunci */ export type ServizioAnnunciServizioAnnunciId = number & { __brand: 'public.servizio_annunci' }; /** Represents the table public.servizio_annunci */ export default interface ServizioAnnunciTable { servizio_annunci_id: ColumnType; servizio_id: ColumnType; annunci_id: ColumnType; created_at: ColumnType; open_contatti_at: ColumnType; doc_contratto_ref: ColumnType; gestionale_id: ColumnType; contratto_decorrenza: ColumnType; contratto_scadenza: ColumnType; contratto_tipo: ColumnType; doc_registrazione_ref: ColumnType; doc_contratto_added: ColumnType; doc_registrazione_added: ColumnType; note: ColumnType; status_conferma: ColumnType; } export type ServizioAnnunci = Selectable; export type NewServizioAnnunci = Insertable; export type ServizioAnnunciUpdate = Updateable;