2025-10-21 18:42:03 +02:00
|
|
|
import type { default as ServizioInteressiTable } from './ServizioInteressi';
|
|
|
|
|
import type { default as FlagsTable } from './Flags';
|
|
|
|
|
import type { default as AnnunciTable } from './Annunci';
|
|
|
|
|
import type { default as UsersTable } from './Users';
|
|
|
|
|
import type { default as ChatsEtichetteTable } from './ChatsEtichette';
|
|
|
|
|
import type { default as TestiEStringheTable } from './TestiEStringhe';
|
2026-03-10 16:56:26 +01:00
|
|
|
import type { default as UserEtichetteTable } from './UserEtichette';
|
2026-04-29 15:12:52 +02:00
|
|
|
import type { default as AppuntiTable } from './Appunti';
|
2025-10-21 18:42:03 +02:00
|
|
|
import type { default as UsersStorageTable } from './UsersStorage';
|
|
|
|
|
import type { default as ServizioAnnunciTable } from './ServizioAnnunci';
|
2025-12-14 18:57:56 +01:00
|
|
|
import type { default as UserInvitesTable } from './UserInvites';
|
2025-10-21 18:42:03 +02:00
|
|
|
import type { default as EmailsTable } from './Emails';
|
2025-11-13 11:38:41 +01:00
|
|
|
import type { default as ComuniTable } from './Comuni';
|
2026-03-17 18:46:43 +01:00
|
|
|
import type { default as RinnoviTable } from './Rinnovi';
|
2025-10-21 18:42:03 +02:00
|
|
|
import type { default as EventQueueTable } from './EventQueue';
|
|
|
|
|
import type { default as OrdiniTable } from './Ordini';
|
|
|
|
|
import type { default as PrezziarioTable } from './Prezziario';
|
|
|
|
|
import type { default as RatelimiterTable } from './Ratelimiter';
|
|
|
|
|
import type { default as ChatsTable } from './Chats';
|
|
|
|
|
import type { default as EtichetteTable } from './Etichette';
|
|
|
|
|
import type { default as MessagesTable } from './Messages';
|
|
|
|
|
import type { default as UsersAnagraficaTable } from './UsersAnagrafica';
|
2026-04-22 12:20:32 +02:00
|
|
|
import type { default as ProvincieTable } from './Provincie';
|
2025-11-18 15:20:14 +01:00
|
|
|
import type { default as VideosRefsTable } from './VideosRefs';
|
2025-10-21 18:42:03 +02:00
|
|
|
import type { default as BanlistTable } from './Banlist';
|
2025-11-13 11:38:41 +01:00
|
|
|
import type { default as NazioniTable } from './Nazioni';
|
2026-04-29 15:12:52 +02:00
|
|
|
import type { default as AppuntiGroupsTable } from './AppuntiGroups';
|
2025-10-27 17:58:42 +01:00
|
|
|
import type { default as ImagesRefsTable } from './ImagesRefs';
|
2025-10-21 18:42:03 +02:00
|
|
|
import type { default as BannersTable } from './Banners';
|
|
|
|
|
import type { default as ServizioTable } from './Servizio';
|
2026-04-27 16:53:54 +02:00
|
|
|
import type { default as MessagesAttachmentsTable } from './MessagesAttachments';
|
2025-08-04 17:45:44 +02:00
|
|
|
|
|
|
|
|
export default interface PublicSchema {
|
2025-10-21 18:42:03 +02:00
|
|
|
servizio_interessi: ServizioInteressiTable;
|
2025-08-05 16:21:27 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
flags: FlagsTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
annunci: AnnunciTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
users: UsersTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
chats_etichette: ChatsEtichetteTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
testi_e_stringhe: TestiEStringheTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2026-03-10 16:56:26 +01:00
|
|
|
user_etichette: UserEtichetteTable;
|
|
|
|
|
|
2026-04-29 15:12:52 +02:00
|
|
|
appunti: AppuntiTable;
|
|
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
users_storage: UsersStorageTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
servizio_annunci: ServizioAnnunciTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-12-14 18:57:56 +01:00
|
|
|
user_invites: UserInvitesTable;
|
|
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
emails: EmailsTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-11-13 11:38:41 +01:00
|
|
|
comuni: ComuniTable;
|
|
|
|
|
|
2026-03-17 18:46:43 +01:00
|
|
|
rinnovi: RinnoviTable;
|
|
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
event_queue: EventQueueTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
ordini: OrdiniTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
prezziario: PrezziarioTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
ratelimiter: RatelimiterTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
chats: ChatsTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
etichette: EtichetteTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
messages: MessagesTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
users_anagrafica: UsersAnagraficaTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2026-04-22 12:20:32 +02:00
|
|
|
provincie: ProvincieTable;
|
|
|
|
|
|
2025-11-18 15:20:14 +01:00
|
|
|
videos_refs: VideosRefsTable;
|
|
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
banlist: BanlistTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-11-13 11:38:41 +01:00
|
|
|
nazioni: NazioniTable;
|
|
|
|
|
|
2026-04-29 15:12:52 +02:00
|
|
|
appunti_groups: AppuntiGroupsTable;
|
|
|
|
|
|
2025-10-27 17:58:42 +01:00
|
|
|
images_refs: ImagesRefsTable;
|
|
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
banners: BannersTable;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
servizio: ServizioTable;
|
2026-04-27 16:53:54 +02:00
|
|
|
|
|
|
|
|
messages_attachments: MessagesAttachmentsTable;
|
|
|
|
|
}
|