import { LogContextPayload, GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link Log} for the original type. */ export type CreateLog = { tenantId?: string; id: string; key: string; payload?: LogContextPayload; createdAt?: number; }; export type Log = { tenantId: string; id: string; key: string; payload: LogContextPayload; createdAt: number; }; export type LogKeys = 'tenantId' | 'id' | 'key' | 'payload' | 'createdAt'; export declare const Logs: GeneratedSchema;