import { JsonObject, GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link ServiceLog} for the original type. */ export type CreateServiceLog = { id: string; tenantId?: string; type: string; payload?: JsonObject; createdAt?: number; }; export type ServiceLog = { id: string; tenantId: string; type: string; payload: JsonObject; createdAt: number; }; export type ServiceLogKeys = 'id' | 'tenantId' | 'type' | 'payload' | 'createdAt'; export declare const ServiceLogs: GeneratedSchema;