Files
payloadcms/test/admin/payload-types.ts

195 lines
4.2 KiB
TypeScript

/* 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: {
posts: Post
users: User
'hidden-collection': HiddenCollection
'collection-no-api-view': CollectionNoApiView
'custom-views-one': CustomViewsOne
'custom-views-two': CustomViewsTwo
'group-one-collection-ones': GroupOneCollectionOne
'group-one-collection-twos': GroupOneCollectionTwo
'group-two-collection-ones': GroupTwoCollectionOne
'group-two-collection-twos': GroupTwoCollectionTwo
geo: Geo
'payload-preferences': PayloadPreference
'payload-migrations': PayloadMigration
}
globals: {
'hidden-global': HiddenGlobal
'global-no-api-view': GlobalNoApiView
global: Global
'custom-global-views-one': CustomGlobalViewsOne
'custom-global-views-two': CustomGlobalViewsTwo
'group-globals-one': GroupGlobalsOne
'group-globals-two': GroupGlobalsTwo
}
}
export interface Post {
id: string
title?: string | null
description?: string | null
number?: number | null
richText?:
| {
[k: string]: unknown
}[]
| null
group?: {
title?: string | null
}
relationship?: (string | null) | Post
sidebarField?: string | null
updatedAt: string
createdAt: string
_status?: ('draft' | 'published') | null
}
export interface User {
id: string
textField?: string | null
sidebarField?: string | null
updatedAt: string
createdAt: string
email: string
resetPasswordToken?: string | null
resetPasswordExpiration?: string | null
salt?: string | null
hash?: string | null
loginAttempts?: number | null
lockUntil?: string | null
password: string | null
}
export interface HiddenCollection {
id: string
title?: string | null
updatedAt: string
createdAt: string
}
export interface CollectionNoApiView {
id: string
updatedAt: string
createdAt: string
}
export interface CustomViewsOne {
id: string
title?: string | null
updatedAt: string
createdAt: string
}
export interface CustomViewsTwo {
id: string
title?: string | null
updatedAt: string
createdAt: string
}
export interface GroupOneCollectionOne {
id: string
title?: string | null
updatedAt: string
createdAt: string
}
export interface GroupOneCollectionTwo {
id: string
title?: string | null
updatedAt: string
createdAt: string
}
export interface GroupTwoCollectionOne {
id: string
title?: string | null
updatedAt: string
createdAt: string
}
export interface GroupTwoCollectionTwo {
id: string
title?: string | null
updatedAt: string
createdAt: string
}
export interface Geo {
id: string
/**
* @minItems 2
* @maxItems 2
*/
point?: [number, number] | null
updatedAt: string
createdAt: string
}
export interface PayloadPreference {
id: string
user: {
relationTo: 'users'
value: string | User
}
key?: string | null
value?:
| {
[k: string]: unknown
}
| unknown[]
| string
| number
| boolean
| null
updatedAt: string
createdAt: string
}
export interface PayloadMigration {
id: string
name?: string | null
batch?: number | null
updatedAt: string
createdAt: string
}
export interface HiddenGlobal {
id: string
title?: string | null
updatedAt?: string | null
createdAt?: string | null
}
export interface GlobalNoApiView {
id: string
updatedAt?: string | null
createdAt?: string | null
}
export interface Global {
id: string
title?: string | null
sidebarField?: string | null
_status?: ('draft' | 'published') | null
updatedAt?: string | null
createdAt?: string | null
}
export interface CustomGlobalViewsOne {
id: string
title?: string | null
updatedAt?: string | null
createdAt?: string | null
}
export interface CustomGlobalViewsTwo {
id: string
title?: string | null
updatedAt?: string | null
createdAt?: string | null
}
export interface GroupGlobalsOne {
id: string
title?: string | null
updatedAt?: string | null
createdAt?: string | null
}
export interface GroupGlobalsTwo {
id: string
title?: string | null
updatedAt?: string | null
createdAt?: string | null
}