import type { UsersId } from './Users'; import type { PrezziarioIdprezziario } from './Prezziario'; import type { ServizioServizioId } from './Servizio'; import type { default as OrderTypeEnum } from './OrderTypeEnum'; import type { default as PaymentStatusEnum } from './PaymentStatusEnum'; import type { RinnoviId } from './Rinnovi'; import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Identifier type for public.ordini */ export type OrdiniOrdineId = string & { __brand: 'public.ordini' }; /** Represents the table public.ordini */ export default interface OrdiniTable { ordine_id: ColumnType; userid: ColumnType; created_at: ColumnType; packid: ColumnType; servizio_id: ColumnType; type: ColumnType; isActive: ColumnType; amount_cent: ColumnType; paymentmethod: ColumnType; paid_at: ColumnType; intent_id: ColumnType; paymentstatus: ColumnType; sconto: ColumnType; rinnovo_id: ColumnType; } export type Ordini = Selectable; export type NewOrdini = Insertable; export type OrdiniUpdate = Updateable;