infoalloggi-monorepo/apps/infoalloggi/src/schemas/public/ServizioAnnunci.ts

95 lines
2.4 KiB
TypeScript
Raw Normal View History

2025-08-04 17:45:44 +02:00
// @generated
// This file is automatically generated by Kanel. Do not modify manually.
2025-08-29 16:18:32 +02:00
import type { ColumnType, Insertable, Selectable, Updateable } from "kysely";
import type { AnnunciId } from "./Annunci";
import type { ServizioServizioId } from "./Servizio";
import type { StorageindexId } from "./Storageindex";
2025-08-04 17:45:44 +02:00
/** Represents the table public.servizio_annunci */
export default interface ServizioAnnunciTable {
2025-08-29 16:18:32 +02:00
servizio_id: ColumnType<
ServizioServizioId,
ServizioServizioId,
ServizioServizioId
>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
annunci_id: ColumnType<AnnunciId, AnnunciId, AnnunciId>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
created_at: ColumnType<Date, Date | string | undefined, Date | string>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
open_contatti_at: ColumnType<
Date | null,
Date | string | null,
Date | string | null
>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
doc_conferma_ref: ColumnType<
StorageindexId | null,
StorageindexId | null,
StorageindexId | null
>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
user_confirmed_at: ColumnType<
Date | null,
Date | string | null,
Date | string | null
>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
accettato_conferma_at: ColumnType<
Date | null,
Date | string | null,
Date | string | null
>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
caparra_causale: ColumnType<string | null, string | null, string | null>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
caparra_iban: ColumnType<string | null, string | null, string | null>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
caparra_importo: ColumnType<string | null, string | null, string | null>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
caparra_intestazione: ColumnType<string | null, string | null, string | null>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
hasConfermaAdmin: ColumnType<boolean, boolean | undefined, boolean>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
doc_contratto_ref: ColumnType<
StorageindexId | null,
StorageindexId | null,
StorageindexId | null
>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
gestionale_id: ColumnType<number | null, number | null, number | null>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
contratto_decorrenza: ColumnType<
Date | null,
Date | string | null,
Date | string | null
>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
contratto_scadenza: ColumnType<
Date | null,
Date | string | null,
Date | string | null
>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
contratto_tipo: ColumnType<string | null, string | null, string | null>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
doc_registrazione_ref: ColumnType<
StorageindexId | null,
StorageindexId | null,
StorageindexId | null
>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
doc_conferma_added: ColumnType<boolean, boolean | undefined, boolean>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
doc_contratto_added: ColumnType<boolean, boolean | undefined, boolean>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
doc_registrazione_added: ColumnType<boolean, boolean | undefined, boolean>;
2025-08-04 17:45:44 +02:00
}
export type ServizioAnnunci = Selectable<ServizioAnnunciTable>;
export type NewServizioAnnunci = Insertable<ServizioAnnunciTable>;
export type ServizioAnnunciUpdate = Updateable<ServizioAnnunciTable>;