import { OneTimeTokenContext, OneTimeTokenStatus, GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link OneTimeToken} for the original type. */ export type CreateOneTimeToken = { tenantId?: string; id: string; email: string; token: string; context?: OneTimeTokenContext; status?: OneTimeTokenStatus; createdAt?: number; expiresAt: number; }; export type OneTimeToken = { tenantId: string; id: string; email: string; token: string; context: OneTimeTokenContext; status: OneTimeTokenStatus; createdAt: number; expiresAt: number; }; export type OneTimeTokenKeys = 'tenantId' | 'id' | 'email' | 'token' | 'context' | 'status' | 'createdAt' | 'expiresAt'; export declare const OneTimeTokens: GeneratedSchema;