- Updated enum definitions in PaymentStatusEnum and TipologiaPosizioneEnum to use single quotes and consistent formatting. - Refactored Payments, Prezziario, Ratelimiter, Servizio, and other schema files to ensure consistent indentation and formatting. - Added `updated_at` field to various queries in interests and servizio controllers. - Removed unused imageCache utility file.
19 lines
683 B
TypeScript
19 lines
683 B
TypeScript
// @generated
|
|
// This file is automatically generated by Kanel. Do not modify manually.
|
|
|
|
import type { AnnunciId } from './Annunci';
|
|
import type { UsersId } from './Users';
|
|
import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely';
|
|
|
|
/** Represents the table public.servizio_interessi */
|
|
export default interface ServizioInteressiTable {
|
|
annuncioId: ColumnType<AnnunciId, AnnunciId, AnnunciId>;
|
|
|
|
userId: ColumnType<UsersId, UsersId, UsersId>;
|
|
}
|
|
|
|
export type ServizioInteressi = Selectable<ServizioInteressiTable>;
|
|
|
|
export type NewServizioInteressi = Insertable<ServizioInteressiTable>;
|
|
|
|
export type ServizioInteressiUpdate = Updateable<ServizioInteressiTable>;
|