/* tslint:disable */ /* eslint-disable */ /** * This file was automatically generated by Payload. * DO NOT MODIFY IT BY HAND. Instead, modify your source Payload config, * and re-run `payload generate:types` to regenerate this file. */ export interface Config { collections: { users: User pages: Page media: Media 'payload-preferences': PayloadPreference 'payload-migrations': PayloadMigration } globals: {} } export interface User { id: string updatedAt: string createdAt: string email: string resetPasswordToken?: string resetPasswordExpiration?: string salt?: string hash?: string loginAttempts?: number lockUntil?: string password: string } export interface Page { id: string title: string excerpt?: string slug: string meta?: { title?: string description?: string image?: string | Media ogTitle?: string } updatedAt: string createdAt: string _status?: 'draft' | 'published' } export interface Media { id: string media?: string | Media richText?: { [k: string]: unknown }[] updatedAt: string createdAt: string url?: string filename?: string mimeType?: string filesize?: number width?: number height?: number } export interface PayloadPreference { id: string user: { relationTo: 'users' value: string | User } key?: string value?: | { [k: string]: unknown } | unknown[] | string | number | boolean | null updatedAt: string createdAt: string } export interface PayloadMigration { id: string name?: string batch?: number updatedAt: string createdAt: string }