/* 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. */ /** * Supported timezones in IANA format. * * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "supportedTimezones". */ export type SupportedTimezones = | 'Pacific/Midway' | 'Pacific/Niue' | 'Pacific/Honolulu' | 'Pacific/Rarotonga' | 'America/Anchorage' | 'Pacific/Gambier' | 'America/Los_Angeles' | 'America/Tijuana' | 'America/Denver' | 'America/Phoenix' | 'America/Chicago' | 'America/Guatemala' | 'America/New_York' | 'America/Bogota' | 'America/Caracas' | 'America/Santiago' | 'America/Buenos_Aires' | 'America/Sao_Paulo' | 'Atlantic/South_Georgia' | 'Atlantic/Azores' | 'Atlantic/Cape_Verde' | 'Europe/London' | 'Europe/Berlin' | 'Africa/Lagos' | 'Europe/Athens' | 'Africa/Cairo' | 'Europe/Moscow' | 'Asia/Riyadh' | 'Asia/Dubai' | 'Asia/Baku' | 'Asia/Karachi' | 'Asia/Tashkent' | 'Asia/Calcutta' | 'Asia/Dhaka' | 'Asia/Almaty' | 'Asia/Jakarta' | 'Asia/Bangkok' | 'Asia/Shanghai' | 'Asia/Singapore' | 'Asia/Tokyo' | 'Asia/Seoul' | 'Australia/Brisbane' | 'Australia/Sydney' | 'Pacific/Guam' | 'Pacific/Noumea' | 'Pacific/Auckland' | 'Pacific/Fiji'; export interface Config { auth: { users: UserAuthOperations; 'public-users': PublicUserAuthOperations; 'auth-collection': AuthCollectionAuthOperations; }; blocks: {}; collections: { users: User; 'public-users': PublicUser; posts: Post; unrestricted: Unrestricted; 'relation-restricted': RelationRestricted; 'fully-restricted': FullyRestricted; 'read-only-collection': ReadOnlyCollection; 'user-restricted-collection': UserRestrictedCollection; 'create-not-update-collection': CreateNotUpdateCollection; 'restricted-versions': RestrictedVersion; 'restricted-versions-admin-panel': RestrictedVersionsAdminPanel; 'sibling-data': SiblingDatum; 'rely-on-request-headers': RelyOnRequestHeader; 'doc-level-access': DocLevelAccess; 'hidden-fields': HiddenField; 'hidden-access': HiddenAccess; 'hidden-access-count': HiddenAccessCount; 'fields-and-top-access': FieldsAndTopAccess; disabled: Disabled; 'rich-text': RichText; regression1: Regression1; regression2: Regression2; hooks: Hook; 'auth-collection': AuthCollection; 'payload-locked-documents': PayloadLockedDocument; 'payload-preferences': PayloadPreference; 'payload-sessions': PayloadSession; 'payload-migrations': PayloadMigration; }; collectionsJoins: {}; collectionsSelect: { users: UsersSelect | UsersSelect; 'public-users': PublicUsersSelect | PublicUsersSelect; posts: PostsSelect | PostsSelect; unrestricted: UnrestrictedSelect | UnrestrictedSelect; 'relation-restricted': RelationRestrictedSelect | RelationRestrictedSelect; 'fully-restricted': FullyRestrictedSelect | FullyRestrictedSelect; 'read-only-collection': ReadOnlyCollectionSelect | ReadOnlyCollectionSelect; 'user-restricted-collection': UserRestrictedCollectionSelect | UserRestrictedCollectionSelect; 'create-not-update-collection': CreateNotUpdateCollectionSelect | CreateNotUpdateCollectionSelect; 'restricted-versions': RestrictedVersionsSelect | RestrictedVersionsSelect; 'restricted-versions-admin-panel': RestrictedVersionsAdminPanelSelect | RestrictedVersionsAdminPanelSelect; 'sibling-data': SiblingDataSelect | SiblingDataSelect; 'rely-on-request-headers': RelyOnRequestHeadersSelect | RelyOnRequestHeadersSelect; 'doc-level-access': DocLevelAccessSelect | DocLevelAccessSelect; 'hidden-fields': HiddenFieldsSelect | HiddenFieldsSelect; 'hidden-access': HiddenAccessSelect | HiddenAccessSelect; 'hidden-access-count': HiddenAccessCountSelect | HiddenAccessCountSelect; 'fields-and-top-access': FieldsAndTopAccessSelect | FieldsAndTopAccessSelect; disabled: DisabledSelect | DisabledSelect; 'rich-text': RichTextSelect | RichTextSelect; regression1: Regression1Select | Regression1Select; regression2: Regression2Select | Regression2Select; hooks: HooksSelect | HooksSelect; 'auth-collection': AuthCollectionSelect | AuthCollectionSelect; 'payload-locked-documents': PayloadLockedDocumentsSelect | PayloadLockedDocumentsSelect; 'payload-preferences': PayloadPreferencesSelect | PayloadPreferencesSelect; 'payload-sessions': PayloadSessionsSelect | PayloadSessionsSelect; 'payload-migrations': PayloadMigrationsSelect | PayloadMigrationsSelect; }; db: { defaultIDType: string; }; globals: { settings: Setting; test: Test; 'read-only-global': ReadOnlyGlobal; 'user-restricted-global': UserRestrictedGlobal; 'read-not-update-global': ReadNotUpdateGlobal; }; globalsSelect: { settings: SettingsSelect | SettingsSelect; test: TestSelect | TestSelect; 'read-only-global': ReadOnlyGlobalSelect | ReadOnlyGlobalSelect; 'user-restricted-global': UserRestrictedGlobalSelect | UserRestrictedGlobalSelect; 'read-not-update-global': ReadNotUpdateGlobalSelect | ReadNotUpdateGlobalSelect; }; locale: null; user: | (User & { collection: 'users'; }) | (PublicUser & { collection: 'public-users'; }) | (AuthCollection & { collection: 'auth-collection'; }); jobs: { tasks: unknown; workflows: unknown; }; } export interface UserAuthOperations { forgotPassword: { email: string; password: string; }; login: { email: string; password: string; }; registerFirstUser: { email: string; password: string; }; unlock: { email: string; password: string; }; } export interface PublicUserAuthOperations { forgotPassword: { email: string; password: string; }; login: { email: string; password: string; }; registerFirstUser: { email: string; password: string; }; unlock: { email: string; password: string; }; } export interface AuthCollectionAuthOperations { forgotPassword: { email: string; password: string; }; login: { email: string; password: string; }; registerFirstUser: { email: string; password: string; }; unlock: { email: string; password: string; }; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "users". */ export interface User { id: string; roles?: ('admin' | 'user')[] | 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; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "public-users". */ export interface PublicUser { id: string; 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; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "posts". */ export interface Post { id: string; restrictedField?: string | null; group?: { restrictedGroupText?: string | null; }; restrictedRowText?: string | null; restrictedCollapsibleText?: string | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "unrestricted". */ export interface Unrestricted { id: string; name?: string | null; userRestrictedDocs?: (string | UserRestrictedCollection)[] | null; createNotUpdateDocs?: (string | CreateNotUpdateCollection)[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "user-restricted-collection". */ export interface UserRestrictedCollection { id: string; name?: string | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "create-not-update-collection". */ export interface CreateNotUpdateCollection { id: string; name?: string | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "relation-restricted". */ export interface RelationRestricted { id: string; name?: string | null; post?: (string | null) | Post; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "fully-restricted". */ export interface FullyRestricted { id: string; name?: string | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "read-only-collection". */ export interface ReadOnlyCollection { id: string; name?: string | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "restricted-versions". */ export interface RestrictedVersion { id: string; name?: string | null; hidden?: boolean | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "restricted-versions-admin-panel". */ export interface RestrictedVersionsAdminPanel { id: string; name?: string | null; hidden?: boolean | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "sibling-data". */ export interface SiblingDatum { id: string; array?: | { allowPublicReadability?: boolean | null; text?: string | null; id?: string | null; }[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "rely-on-request-headers". */ export interface RelyOnRequestHeader { id: string; name?: string | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "doc-level-access". */ export interface DocLevelAccess { id: string; approvedForRemoval?: boolean | null; approvedTitle?: string | null; lockTitle?: boolean | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "hidden-fields". */ export interface HiddenField { id: string; title?: string | null; partiallyHiddenGroup?: { name?: string | null; value?: string | null; }; partiallyHiddenArray?: | { name?: string | null; value?: string | null; id?: string | null; }[] | null; hidden?: boolean | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "hidden-access". */ export interface HiddenAccess { id: string; title: string; hidden?: boolean | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "hidden-access-count". */ export interface HiddenAccessCount { id: string; title: string; hidden?: boolean | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "fields-and-top-access". */ export interface FieldsAndTopAccess { id: string; secret?: string | null; updatedAt: string; createdAt: string; _status?: ('draft' | 'published') | null; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "disabled". */ export interface Disabled { id: string; group?: { text?: string | null; }; namedTab?: { text?: string | null; }; unnamedTab?: string | null; array?: | { text?: string | null; id?: string | null; }[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "rich-text". */ export interface RichText { id: string; blocks?: | { richText?: { root: { type: string; children: { type: string; version: number; [k: string]: unknown; }[]; direction: ('ltr' | 'rtl') | null; format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; indent: number; version: number; }; [k: string]: unknown; } | null; id?: string | null; blockName?: string | null; blockType: 'richText'; }[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "regression1". */ export interface Regression1 { id: string; group1?: { richText1?: { root: { type: string; children: { type: string; version: number; [k: string]: unknown; }[]; direction: ('ltr' | 'rtl') | null; format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; indent: number; version: number; }; [k: string]: unknown; } | null; text?: string | null; }; tab1?: { richText2?: { root: { type: string; children: { type: string; version: number; [k: string]: unknown; }[]; direction: ('ltr' | 'rtl') | null; format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; indent: number; version: number; }; [k: string]: unknown; } | null; blocks2?: | { richText3?: { root: { type: string; children: { type: string; version: number; [k: string]: unknown; }[]; direction: ('ltr' | 'rtl') | null; format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; indent: number; version: number; }; [k: string]: unknown; } | null; id?: string | null; blockName?: string | null; blockType: 'myBlock'; }[] | null; }; richText4?: { root: { type: string; children: { type: string; version: number; [k: string]: unknown; }[]; direction: ('ltr' | 'rtl') | null; format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; indent: number; version: number; }; [k: string]: unknown; } | null; blocks3?: | { richText5?: { root: { type: string; children: { type: string; version: number; [k: string]: unknown; }[]; direction: ('ltr' | 'rtl') | null; format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; indent: number; version: number; }; [k: string]: unknown; } | null; id?: string | null; blockName?: string | null; blockType: 'myBlock2'; }[] | null; array?: | { art?: { root: { type: string; children: { type: string; version: number; [k: string]: unknown; }[]; direction: ('ltr' | 'rtl') | null; format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; indent: number; version: number; }; [k: string]: unknown; } | null; id?: string | null; }[] | null; arrayWithAccessFalse?: | { richText6?: { root: { type: string; children: { type: string; version: number; [k: string]: unknown; }[]; direction: ('ltr' | 'rtl') | null; format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; indent: number; version: number; }; [k: string]: unknown; } | null; id?: string | null; }[] | null; blocks?: | { richText7?: { root: { type: string; children: { type: string; version: number; [k: string]: unknown; }[]; direction: ('ltr' | 'rtl') | null; format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; indent: number; version: number; }; [k: string]: unknown; } | null; id?: string | null; blockName?: string | null; blockType: 'myBlock3'; }[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "regression2". */ export interface Regression2 { id: string; group?: { richText1?: { root: { type: string; children: { type: string; version: number; [k: string]: unknown; }[]; direction: ('ltr' | 'rtl') | null; format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; indent: number; version: number; }; [k: string]: unknown; } | null; text?: string | null; }; array?: | { richText2?: { root: { type: string; children: { type: string; version: number; [k: string]: unknown; }[]; direction: ('ltr' | 'rtl') | null; format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; indent: number; version: number; }; [k: string]: unknown; } | null; id?: string | null; }[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "hooks". */ export interface Hook { id: string; cannotMutateRequired: string; cannotMutateNotRequired?: string | null; canMutate?: string | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "auth-collection". */ export interface AuthCollection { id: string; password?: string | null; roles?: ('admin' | 'user')[] | null; updatedAt: string; createdAt: string; email: string; resetPasswordToken?: string | null; resetPasswordExpiration?: string | null; salt?: string | null; hash?: string | null; _verified?: boolean | null; _verificationToken?: string | null; loginAttempts?: number | null; lockUntil?: string | null; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "payload-locked-documents". */ export interface PayloadLockedDocument { id: string; document?: | ({ relationTo: 'users'; value: string | User; } | null) | ({ relationTo: 'public-users'; value: string | PublicUser; } | null) | ({ relationTo: 'posts'; value: string | Post; } | null) | ({ relationTo: 'unrestricted'; value: string | Unrestricted; } | null) | ({ relationTo: 'relation-restricted'; value: string | RelationRestricted; } | null) | ({ relationTo: 'fully-restricted'; value: string | FullyRestricted; } | null) | ({ relationTo: 'read-only-collection'; value: string | ReadOnlyCollection; } | null) | ({ relationTo: 'user-restricted-collection'; value: string | UserRestrictedCollection; } | null) | ({ relationTo: 'create-not-update-collection'; value: string | CreateNotUpdateCollection; } | null) | ({ relationTo: 'restricted-versions'; value: string | RestrictedVersion; } | null) | ({ relationTo: 'restricted-versions-admin-panel'; value: string | RestrictedVersionsAdminPanel; } | null) | ({ relationTo: 'sibling-data'; value: string | SiblingDatum; } | null) | ({ relationTo: 'rely-on-request-headers'; value: string | RelyOnRequestHeader; } | null) | ({ relationTo: 'doc-level-access'; value: string | DocLevelAccess; } | null) | ({ relationTo: 'hidden-fields'; value: string | HiddenField; } | null) | ({ relationTo: 'hidden-access'; value: string | HiddenAccess; } | null) | ({ relationTo: 'hidden-access-count'; value: string | HiddenAccessCount; } | null) | ({ relationTo: 'fields-and-top-access'; value: string | FieldsAndTopAccess; } | null) | ({ relationTo: 'disabled'; value: string | Disabled; } | null) | ({ relationTo: 'rich-text'; value: string | RichText; } | null) | ({ relationTo: 'regression1'; value: string | Regression1; } | null) | ({ relationTo: 'regression2'; value: string | Regression2; } | null) | ({ relationTo: 'hooks'; value: string | Hook; } | null) | ({ relationTo: 'auth-collection'; value: string | AuthCollection; } | null); globalSlug?: string | null; user: | { relationTo: 'users'; value: string | User; } | { relationTo: 'public-users'; value: string | PublicUser; } | { relationTo: 'auth-collection'; value: string | AuthCollection; }; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "payload-preferences". */ export interface PayloadPreference { id: string; user: | { relationTo: 'users'; value: string | User; } | { relationTo: 'public-users'; value: string | PublicUser; } | { relationTo: 'auth-collection'; value: string | AuthCollection; }; key?: string | null; value?: | { [k: string]: unknown; } | unknown[] | string | number | boolean | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "payload-sessions". */ export interface PayloadSession { id: string; session: string; expiration: string; user: | { relationTo: 'users'; value: string | User; } | { relationTo: 'public-users'; value: string | PublicUser; }; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "payload-migrations". */ export interface PayloadMigration { id: string; name?: string | null; batch?: number | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "users_select". */ export interface UsersSelect { roles?: T; updatedAt?: T; createdAt?: T; email?: T; resetPasswordToken?: T; resetPasswordExpiration?: T; salt?: T; hash?: T; loginAttempts?: T; lockUntil?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "public-users_select". */ export interface PublicUsersSelect { updatedAt?: T; createdAt?: T; email?: T; resetPasswordToken?: T; resetPasswordExpiration?: T; salt?: T; hash?: T; loginAttempts?: T; lockUntil?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "posts_select". */ export interface PostsSelect { restrictedField?: T; group?: | T | { restrictedGroupText?: T; }; restrictedRowText?: T; restrictedCollapsibleText?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "unrestricted_select". */ export interface UnrestrictedSelect { name?: T; userRestrictedDocs?: T; createNotUpdateDocs?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "relation-restricted_select". */ export interface RelationRestrictedSelect { name?: T; post?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "fully-restricted_select". */ export interface FullyRestrictedSelect { name?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "read-only-collection_select". */ export interface ReadOnlyCollectionSelect { name?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "user-restricted-collection_select". */ export interface UserRestrictedCollectionSelect { name?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "create-not-update-collection_select". */ export interface CreateNotUpdateCollectionSelect { name?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "restricted-versions_select". */ export interface RestrictedVersionsSelect { name?: T; hidden?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "restricted-versions-admin-panel_select". */ export interface RestrictedVersionsAdminPanelSelect { name?: T; hidden?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "sibling-data_select". */ export interface SiblingDataSelect { array?: | T | { allowPublicReadability?: T; text?: T; id?: T; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "rely-on-request-headers_select". */ export interface RelyOnRequestHeadersSelect { name?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "doc-level-access_select". */ export interface DocLevelAccessSelect { approvedForRemoval?: T; approvedTitle?: T; lockTitle?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "hidden-fields_select". */ export interface HiddenFieldsSelect { title?: T; partiallyHiddenGroup?: | T | { name?: T; value?: T; }; partiallyHiddenArray?: | T | { name?: T; value?: T; id?: T; }; hidden?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "hidden-access_select". */ export interface HiddenAccessSelect { title?: T; hidden?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "hidden-access-count_select". */ export interface HiddenAccessCountSelect { title?: T; hidden?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "fields-and-top-access_select". */ export interface FieldsAndTopAccessSelect { secret?: T; updatedAt?: T; createdAt?: T; _status?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "disabled_select". */ export interface DisabledSelect { group?: | T | { text?: T; }; namedTab?: | T | { text?: T; }; unnamedTab?: T; array?: | T | { text?: T; id?: T; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "rich-text_select". */ export interface RichTextSelect { blocks?: | T | { richText?: | T | { richText?: T; id?: T; blockName?: T; }; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "regression1_select". */ export interface Regression1Select { group1?: | T | { richText1?: T; text?: T; }; tab1?: | T | { richText2?: T; blocks2?: | T | { myBlock?: | T | { richText3?: T; id?: T; blockName?: T; }; }; }; richText4?: T; blocks3?: | T | { myBlock2?: | T | { richText5?: T; id?: T; blockName?: T; }; }; array?: | T | { art?: T; id?: T; }; arrayWithAccessFalse?: | T | { richText6?: T; id?: T; }; blocks?: | T | { myBlock3?: | T | { richText7?: T; id?: T; blockName?: T; }; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "regression2_select". */ export interface Regression2Select { group?: | T | { richText1?: T; text?: T; }; array?: | T | { richText2?: T; id?: T; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "hooks_select". */ export interface HooksSelect { cannotMutateRequired?: T; cannotMutateNotRequired?: T; canMutate?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "auth-collection_select". */ export interface AuthCollectionSelect { password?: T; roles?: T; updatedAt?: T; createdAt?: T; email?: T; resetPasswordToken?: T; resetPasswordExpiration?: T; salt?: T; hash?: T; _verified?: T; _verificationToken?: T; loginAttempts?: T; lockUntil?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "payload-locked-documents_select". */ export interface PayloadLockedDocumentsSelect { document?: T; globalSlug?: T; user?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "payload-preferences_select". */ export interface PayloadPreferencesSelect { user?: T; key?: T; value?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "payload-sessions_select". */ export interface PayloadSessionsSelect { session?: T; expiration?: T; user?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "payload-migrations_select". */ export interface PayloadMigrationsSelect { name?: T; batch?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "settings". */ export interface Setting { id: string; test?: boolean | null; updatedAt?: string | null; createdAt?: string | null; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "test". */ export interface Test { id: string; updatedAt?: string | null; createdAt?: string | null; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "read-only-global". */ export interface ReadOnlyGlobal { id: string; name?: string | null; updatedAt?: string | null; createdAt?: string | null; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "user-restricted-global". */ export interface UserRestrictedGlobal { id: string; name?: string | null; updatedAt?: string | null; createdAt?: string | null; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "read-not-update-global". */ export interface ReadNotUpdateGlobal { id: string; name?: string | null; updatedAt?: string | null; createdAt?: string | null; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "settings_select". */ export interface SettingsSelect { test?: T; updatedAt?: T; createdAt?: T; globalType?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "test_select". */ export interface TestSelect { updatedAt?: T; createdAt?: T; globalType?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "read-only-global_select". */ export interface ReadOnlyGlobalSelect { name?: T; updatedAt?: T; createdAt?: T; globalType?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "user-restricted-global_select". */ export interface UserRestrictedGlobalSelect { name?: T; updatedAt?: T; createdAt?: T; globalType?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "read-not-update-global_select". */ export interface ReadNotUpdateGlobalSelect { name?: T; updatedAt?: T; createdAt?: T; globalType?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "auth". */ export interface Auth { [k: string]: unknown; } declare module 'payload' { // @ts-ignore export interface GeneratedTypes extends Config {} }