infoalloggi-monorepo/apps/infoalloggi/src/schemas/public/ImagesRefs.ts
Marco Pedone 208deeac28 Refactor image handling in announcement components
- Updated CardAnnuncio and related components to use a new images structure instead of url_immagini.
- Removed references to url_immagini and replaced them with images array containing img and thumb properties.
- Adjusted API responses to include images in the new format.
- Modified middleware and storage service to accommodate new image handling.
- Cleaned up unused code and schemas related to old image references.
- Updated Docker configuration for storage service.
2025-10-27 17:58:42 +01:00

23 lines
664 B
TypeScript

// @generated
// This file is automatically generated by Kanel. Do not modify manually.
import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely';
/** Represents the table public.images_refs */
export default interface ImagesRefsTable {
codice: ColumnType<string, string, string>;
ordine: ColumnType<number, number, number>;
img: ColumnType<string, string, string>;
thumb: ColumnType<string, string, string>;
og_url: ColumnType<string, string, string>;
}
export type ImagesRefs = Selectable<ImagesRefsTable>;
export type NewImagesRefs = Insertable<ImagesRefsTable>;
export type ImagesRefsUpdate = Updateable<ImagesRefsTable>;