import { JsonObject, GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link VerificationRecord} for the original type. */ export type CreateVerificationRecord = { tenantId?: string; id: string; userId?: string | null; createdAt?: number; expiresAt: number; /** Use JsonObject here to avoid complex typing, the type will be validated in verification classes. */ data?: JsonObject; }; export type VerificationRecord = { tenantId: string; id: string; userId: string | null; createdAt: number; expiresAt: number; /** Use JsonObject here to avoid complex typing, the type will be validated in verification classes. */ data: JsonObject; }; export type VerificationRecordKeys = 'tenantId' | 'id' | 'userId' | 'createdAt' | 'expiresAt' | 'data'; export declare const VerificationRecords: GeneratedSchema;