/* 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' | 'America/Monterrey'; export interface Config { auth: { users: UserAuthOperations; }; blocks: { ConfigBlockTest: ConfigBlockTest; localizedTextReference: LocalizedTextReference; localizedTextReference2: LocalizedTextReference2; }; collections: { users: User; 'select-versions-fields': SelectVersionsField; 'array-fields': ArrayField; 'block-fields': BlockField; 'checkbox-fields': CheckboxField; 'code-fields': CodeField; 'collapsible-fields': CollapsibleField; 'conditional-logic': ConditionalLogic; 'custom-id': CustomId; 'custom-tab-id': CustomTabId; 'custom-row-id': CustomRowId; 'date-fields': DateField; 'email-fields': EmailField; 'radio-fields': RadioField; 'group-fields': GroupField; 'row-fields': RowField; 'indexed-fields': IndexedField; 'json-fields': JsonField; 'number-fields': NumberField; 'point-fields': PointField; 'relationship-fields': RelationshipField; 'select-fields': SelectField; 'tabs-fields-2': TabsFields2; 'tabs-fields': TabsField; 'text-fields': TextField; uploads: Upload; uploads2: Uploads2; uploads3: Uploads3; 'uploads-multi': UploadsMulti; 'uploads-poly': UploadsPoly; 'uploads-multi-poly': UploadsMultiPoly; 'uploads-restricted': UploadsRestricted; 'ui-fields': UiField; 'payload-locked-documents': PayloadLockedDocument; 'payload-preferences': PayloadPreference; 'payload-migrations': PayloadMigration; }; collectionsJoins: {}; collectionsSelect: { users: UsersSelect | UsersSelect; 'select-versions-fields': SelectVersionsFieldsSelect | SelectVersionsFieldsSelect; 'array-fields': ArrayFieldsSelect | ArrayFieldsSelect; 'block-fields': BlockFieldsSelect | BlockFieldsSelect; 'checkbox-fields': CheckboxFieldsSelect | CheckboxFieldsSelect; 'code-fields': CodeFieldsSelect | CodeFieldsSelect; 'collapsible-fields': CollapsibleFieldsSelect | CollapsibleFieldsSelect; 'conditional-logic': ConditionalLogicSelect | ConditionalLogicSelect; 'custom-id': CustomIdSelect | CustomIdSelect; 'custom-tab-id': CustomTabIdSelect | CustomTabIdSelect; 'custom-row-id': CustomRowIdSelect | CustomRowIdSelect; 'date-fields': DateFieldsSelect | DateFieldsSelect; 'email-fields': EmailFieldsSelect | EmailFieldsSelect; 'radio-fields': RadioFieldsSelect | RadioFieldsSelect; 'group-fields': GroupFieldsSelect | GroupFieldsSelect; 'row-fields': RowFieldsSelect | RowFieldsSelect; 'indexed-fields': IndexedFieldsSelect | IndexedFieldsSelect; 'json-fields': JsonFieldsSelect | JsonFieldsSelect; 'number-fields': NumberFieldsSelect | NumberFieldsSelect; 'point-fields': PointFieldsSelect | PointFieldsSelect; 'relationship-fields': RelationshipFieldsSelect | RelationshipFieldsSelect; 'select-fields': SelectFieldsSelect | SelectFieldsSelect; 'tabs-fields-2': TabsFields2Select | TabsFields2Select; 'tabs-fields': TabsFieldsSelect | TabsFieldsSelect; 'text-fields': TextFieldsSelect | TextFieldsSelect; uploads: UploadsSelect | UploadsSelect; uploads2: Uploads2Select | Uploads2Select; uploads3: Uploads3Select | Uploads3Select; 'uploads-multi': UploadsMultiSelect | UploadsMultiSelect; 'uploads-poly': UploadsPolySelect | UploadsPolySelect; 'uploads-multi-poly': UploadsMultiPolySelect | UploadsMultiPolySelect; 'uploads-restricted': UploadsRestrictedSelect | UploadsRestrictedSelect; 'ui-fields': UiFieldsSelect | UiFieldsSelect; 'payload-locked-documents': PayloadLockedDocumentsSelect | PayloadLockedDocumentsSelect; 'payload-preferences': PayloadPreferencesSelect | PayloadPreferencesSelect; 'payload-migrations': PayloadMigrationsSelect | PayloadMigrationsSelect; }; db: { defaultIDType: string; }; globals: {}; globalsSelect: {}; locale: 'en' | 'es'; user: User & { collection: 'users'; }; 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; }; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "ConfigBlockTest". */ export interface ConfigBlockTest { deduplicatedText?: string | null; id?: string | null; blockName?: string | null; blockType: 'ConfigBlockTest'; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "localizedTextReference". */ export interface LocalizedTextReference { text?: string | null; id?: string | null; blockName?: string | null; blockType: 'localizedTextReference'; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "localizedTextReference2". */ export interface LocalizedTextReference2 { text?: string | null; id?: string | null; blockName?: string | null; blockType: 'localizedTextReference2'; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "users". */ export interface User { id: string; canViewConditionalField?: boolean | 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` "select-versions-fields". */ export interface SelectVersionsField { id: string; hasMany?: ('a' | 'b' | 'c' | 'd')[] | null; array?: | { hasManyArr?: ('a' | 'b' | 'c')[] | null; id?: string | null; }[] | null; blocks?: | { hasManyBlocks?: ('a' | 'b' | 'c')[] | null; id?: string | null; blockName?: string | null; blockType: 'block'; }[] | null; updatedAt: string; createdAt: string; _status?: ('draft' | 'published') | null; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "array-fields". */ export interface ArrayField { id: string; title?: string | null; items: { text: string; anotherText?: string | null; localizedText?: string | null; subArray?: | { text?: string | null; textTwo: string; textInRow: string; id?: string | null; }[] | null; id?: string | null; }[]; collapsedArray?: | { text: string; id?: string | null; }[] | null; localized: { text: string; id?: string | null; }[]; readOnly?: | { text?: string | null; id?: string | null; }[] | null; potentiallyEmptyArray?: | { text?: string | null; groupInRow?: { textInGroupInRow?: string | null; }; id?: string | null; }[] | null; /** * Row labels rendered as react components. */ rowLabelAsComponent?: | { title?: string | null; id?: string | null; }[] | null; arrayWithMinRows?: | { text?: string | null; id?: string | null; }[] | null; disableSort?: | { text: string; id?: string | null; }[] | null; nestedArrayLocalized?: | { array?: | { text?: string | null; id?: string | null; }[] | null; id?: string | null; }[] | null; externallyUpdatedArray?: | { id?: string | null; }[] | null; customArrayField?: | { text?: string | null; id?: string | null; }[] | null; arrayWithLabels?: | { text?: string | null; id?: string | null; }[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "block-fields". */ export interface BlockField { id: string; blocks: (ContentBlock | NoBlockname | NumberBlock | SubBlocksBlock | TabsBlock)[]; duplicate: (ContentBlock | NoBlockname | NumberBlock | SubBlocksBlock | TabsBlock)[]; collapsedByDefaultBlocks: ( | LocalizedContentBlock | LocalizedNoBlockname | LocalizedNumberBlock | LocalizedSubBlocksBlock | LocalizedTabsBlock )[]; disableSort: ( | LocalizedContentBlock | LocalizedNoBlockname | LocalizedNumberBlock | LocalizedSubBlocksBlock | LocalizedTabsBlock )[]; localizedBlocks: ( | LocalizedContentBlock | LocalizedNoBlockname | LocalizedNumberBlock | LocalizedSubBlocksBlock | LocalizedTabsBlock )[]; i18nBlocks?: | { text?: string | null; id?: string | null; blockName?: string | null; blockType: 'textInI18nBlock'; }[] | null; blocksWithLocalizedArray?: | { array?: | { text?: string | null; id?: string | null; }[] | null; id?: string | null; blockName?: string | null; blockType: 'localizedArray'; }[] | null; blocksWithSimilarConfigs?: | ( | { items?: | { title: string; id?: string | null; }[] | null; id?: string | null; blockName?: string | null; blockType: 'block-a'; } | { items?: | { title2: string; id?: string | null; }[] | null; id?: string | null; blockName?: string | null; blockType: 'block-b'; } | { group?: { text?: string | null; }; id?: string | null; blockName?: string | null; blockType: 'group-block'; } )[] | null; /** * The purpose of this field is to test validateExistingBlockIsIdentical works with similar blocks with group fields */ blocksWithSimilarGroup?: | ( | { group?: { text?: string | null; }; id?: string | null; blockName?: string | null; blockType: 'group-block'; } | { items?: | { title2: string; id?: string | null; }[] | null; id?: string | null; blockName?: string | null; blockType: 'block-b'; } )[] | null; blocksWithMinRows?: | { blockTitle?: string | null; id?: string | null; blockName?: string | null; blockType: 'blockWithMinRows'; }[] | null; customBlocks?: | ( | { block1Title?: string | null; id?: string | null; blockName?: string | null; blockType: 'block-1'; } | { block2Title?: string | null; id?: string | null; blockName?: string | null; blockType: 'block-2'; } )[] | null; relationshipBlocks?: | { relationship?: (string | null) | TextField; id?: string | null; blockName?: string | null; blockType: 'relationships'; }[] | null; blockWithLabels?: | { text?: string | null; id?: string | null; blockName?: string | null; blockType: 'text'; }[] | null; deduplicatedBlocks?: ConfigBlockTest[] | null; deduplicatedBlocks2?: ConfigBlockTest[] | null; localizedReferencesLocalizedBlock?: LocalizedTextReference[] | null; localizedReferences?: LocalizedTextReference2[] | null; /** * The purpose of this field is to test Block groups. */ groupedBlocks?: | ( | { text?: string | null; id?: string | null; blockName?: string | null; blockType: 'blockWithGroupOne'; } | { text?: string | null; id?: string | null; blockName?: string | null; blockType: 'blockWithGroupTwo'; } | { text?: string | null; id?: string | null; blockName?: string | null; blockType: 'blockWithLocalizedGroup'; } | { text?: string | null; id?: string | null; blockName?: string | null; blockType: 'blockWithoutGroup'; } )[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "ContentBlock". */ export interface ContentBlock { text: string; richText?: | { [k: string]: unknown; }[] | null; id?: string | null; blockName?: string | null; blockType: 'content'; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "NoBlockname". */ export interface NoBlockname { text?: string | null; id?: string | null; blockName?: string | null; blockType: 'noBlockname'; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "NumberBlock". */ export interface NumberBlock { number: number; id?: string | null; blockName?: string | null; blockType: 'number'; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "SubBlocksBlock". */ export interface SubBlocksBlock { subBlocks?: | ( | { text: string; id?: string | null; blockName?: string | null; blockType: 'textRequired'; } | NumberBlock )[] | null; id?: string | null; blockName?: string | null; blockType: 'subBlocks'; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "TabsBlock". */ export interface TabsBlock { textInCollapsible?: string | null; textInRow?: string | null; id?: string | null; blockName?: string | null; blockType: 'tabs'; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "localizedContentBlock". */ export interface LocalizedContentBlock { text: string; richText?: | { [k: string]: unknown; }[] | null; id?: string | null; blockName?: string | null; blockType: 'localizedContent'; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "localizedNoBlockname". */ export interface LocalizedNoBlockname { text?: string | null; id?: string | null; blockName?: string | null; blockType: 'localizedNoBlockname'; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "localizedNumberBlock". */ export interface LocalizedNumberBlock { number: number; id?: string | null; blockName?: string | null; blockType: 'localizedNumber'; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "localizedSubBlocksBlock". */ export interface LocalizedSubBlocksBlock { subBlocks?: | ( | { text: string; id?: string | null; blockName?: string | null; blockType: 'textRequired'; } | NumberBlock )[] | null; id?: string | null; blockName?: string | null; blockType: 'localizedSubBlocks'; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "localizedTabsBlock". */ export interface LocalizedTabsBlock { textInCollapsible?: string | null; textInRow?: string | null; id?: string | null; blockName?: string | null; blockType: 'localizedTabs'; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "text-fields". */ export interface TextField { id: string; text: string; hiddenTextField?: string | null; /** * This field should be hidden */ adminHiddenTextField?: string | null; /** * This field should be disabled */ disabledTextField?: string | null; localizedText?: string | null; /** * en description */ i18nText?: string | null; defaultString?: string | null; defaultEmptyString?: string | null; defaultFunction?: string | null; defaultAsync?: string | null; overrideLength?: string | null; fieldWithDefaultValue?: string | null; dependentOnFieldWithDefaultValue?: string | null; hasMany?: string[] | null; readOnlyHasMany?: string[] | null; validatesHasMany?: string[] | null; localizedHasMany?: string[] | null; withMinRows?: string[] | null; withMaxRows?: string[] | null; defaultValueFromReq?: string | null; array?: | { texts?: string[] | null; id?: string | null; }[] | null; blocks?: | { texts?: string[] | null; id?: string | null; blockName?: string | null; blockType: 'blockWithText'; }[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "checkbox-fields". */ export interface CheckboxField { id: string; checkbox: boolean; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "code-fields". */ export interface CodeField { id: string; javascript?: string | null; typescript?: string | null; json?: string | null; html?: string | null; css?: string | null; codeWithPadding?: string | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "collapsible-fields". */ export interface CollapsibleField { id: string; text: string; group: { textWithinGroup?: string | null; subGroup: { textWithinSubGroup?: string | null; requiredTextWithinSubGroup: string; }; }; someText?: string | null; group2?: { textWithinGroup?: string | null; subGroup?: { textWithinSubGroup?: string | null; }; }; functionTitleField?: string | null; componentTitleField?: string | null; nestedTitle?: string | null; arrayWithCollapsibles?: | { innerCollapsible?: string | null; id?: string | null; }[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "conditional-logic". */ export interface ConditionalLogic { id: string; text: string; toggleField?: boolean | null; fieldWithCondition?: string | null; fieldWithOperationCondition?: string | null; customFieldWithField?: string | null; customFieldWithHOC?: string | null; customClientFieldWithCondition?: string | null; customServerFieldWithCondition?: string | null; conditionalRichText?: { 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; userConditional?: string | null; parentGroup?: { enableParentGroupFields?: boolean | null; /** * Ensures we can rely on nested fields within `data`. */ siblingField?: string | null; }; /** * Ensures we can rely on nested fields within `siblingsData`. */ reliesOnParentGroup?: string | null; groupSelection?: ('group1' | 'group2') | null; group1?: { group1Field?: string | null; }; group2?: { group2Field?: string | null; }; enableConditionalFields?: boolean | null; arrayWithConditionalField?: | { text?: string | null; textWithCondition?: string | null; id?: string | null; }[] | null; blocksWithConditionalField?: | { text?: string | null; textWithCondition?: string | null; id?: string | null; blockName?: string | null; blockType: 'blockWithConditionalField'; }[] | null; arrayOne?: | { title?: string | null; arrayTwo?: | { selectOptions?: ('optionOne' | 'optionTwo') | null; arrayThree?: | { numberField?: number | null; id?: string | null; }[] | null; id?: string | null; }[] | null; id?: string | null; }[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "custom-id". */ export interface CustomId { id: string; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "custom-tab-id". */ export interface CustomTabId { id: string; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "custom-row-id". */ export interface CustomRowId { id: string; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "date-fields". */ export interface DateField { id: string; default: string; timeOnly?: string | null; timeOnlyWithCustomFormat?: string | null; dayOnly?: string | null; dayAndTime?: string | null; monthOnly?: string | null; defaultWithTimezone?: string | null; defaultWithTimezone_tz?: SupportedTimezones; /** * This date here should be required. */ dayAndTimeWithTimezone: string; dayAndTimeWithTimezone_tz: SupportedTimezones; timezoneBlocks?: | { dayAndTime?: string | null; dayAndTime_tz?: SupportedTimezones; id?: string | null; blockName?: string | null; blockType: 'dateBlock'; }[] | null; timezoneArray?: | { dayAndTime?: string | null; dayAndTime_tz?: SupportedTimezones; id?: string | null; }[] | null; array?: | { date?: string | null; id?: string | null; }[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "email-fields". */ export interface EmailField { id: string; email: string; localizedEmail?: string | null; emailWithAutocomplete?: string | null; /** * en description */ i18nEmail?: string | null; defaultEmail?: string | null; defaultEmptyString?: string | null; defaultFunction?: string | null; defaultAsync?: string | null; customLabel?: string | null; customError?: string | null; beforeAndAfterInput?: string | null; disableListColumnText?: string | null; disableListFilterText?: string | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "radio-fields". */ export interface RadioField { id: string; radio?: ('one' | 'two' | 'three') | null; radioWithJsxLabelOption?: ('one' | 'two' | 'three') | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "group-fields". */ export interface GroupField { id: string; /** * This is a group. */ group: { text: string; defaultParent?: string | null; defaultChild?: string | null; subGroup?: { textWithinGroup?: string | null; arrayWithinGroup?: | { textWithinArray?: string | null; id?: string | null; }[] | null; }; }; arrayOfGroups?: | { groupItem?: { text?: string | null; }; id?: string | null; }[] | null; localizedGroup?: { text?: string | null; }; potentiallyEmptyGroup?: { text?: string | null; }; groupInRow?: { field?: string | null; secondField?: string | null; thirdField?: string | null; }; secondGroupInRow?: { field?: string | null; nestedGroup?: { nestedField?: string | null; }; }; groups?: { groupInRow?: { field?: string | null; secondField?: string | null; thirdField?: string | null; }; secondGroupInRow?: { field?: string | null; nestedGroup?: { nestedField?: string | null; }; }; }; camelCaseGroup?: { array?: | { text?: string | null; array?: | { text?: string | null; id?: string | null; }[] | null; id?: string | null; }[] | null; }; localizedGroupArr?: { array?: | { text?: string | null; id?: string | null; }[] | null; }; localizedGroupSelect?: { select?: ('one' | 'two')[] | null; }; localizedGroupRel?: { email?: (string | null) | EmailField; }; localizedGroupManyRel?: { email?: (string | EmailField)[] | null; }; localizedGroupPolyRel?: { email?: { relationTo: 'email-fields'; value: string | EmailField; } | null; }; localizedGroupPolyHasManyRel?: { email?: | { relationTo: 'email-fields'; value: string | EmailField; }[] | null; }; insideUnnamedGroup?: string | null; deeplyNestedGroup?: { insideNestedUnnamedGroup?: string | null; }; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "row-fields". */ export interface RowField { id: string; title: string; field_with_width_a?: string | null; field_with_width_b?: string | null; field_with_width_30_percent?: string | null; field_with_width_60_percent?: string | null; field_with_width_20_percent?: string | null; field_within_collapsible_a?: string | null; field_within_collapsible_b?: string | null; field_20_percent_width_within_row_a?: string | null; no_set_width_within_row_b?: string | null; no_set_width_within_row_c?: string | null; field_20_percent_width_within_row_d?: string | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "indexed-fields". */ export interface IndexedField { id: string; text: string; uniqueText?: string | null; uniqueRelationship?: (string | null) | TextField; uniqueHasManyRelationship?: (string | TextField)[] | null; uniqueHasManyRelationship_2?: (string | TextField)[] | null; uniquePolymorphicRelationship?: { relationTo: 'text-fields'; value: string | TextField; } | null; uniquePolymorphicRelationship_2?: { relationTo: 'text-fields'; value: string | TextField; } | null; uniqueHasManyPolymorphicRelationship?: | { relationTo: 'text-fields'; value: string | TextField; }[] | null; uniqueHasManyPolymorphicRelationship_2?: | { relationTo: 'text-fields'; value: string | TextField; }[] | null; uniqueRequiredText: string; localizedUniqueRequiredText: string; /** * @minItems 2 * @maxItems 2 */ point?: [number, number] | null; group?: { localizedUnique?: string | null; unique?: string | null; /** * @minItems 2 * @maxItems 2 */ point?: [number, number] | null; }; collapsibleLocalizedUnique?: string | null; collapsibleTextUnique?: string | null; someText?: string | null; some?: | { text?: string | null; id?: string | null; }[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "json-fields". */ export interface JsonField { id: string; json?: { array?: { object?: { array?: number[]; text?: string; }; text?: string; }[]; foo?: 'bar' | 'foobar'; number?: 10 | 5; [k: string]: unknown; }; group?: { jsonWithinGroup?: | { [k: string]: unknown; } | unknown[] | string | number | boolean | null; }; customJSON?: | { [k: string]: unknown; } | unknown[] | string | number | boolean | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "number-fields". */ export interface NumberField { id: string; number?: number | null; min?: number | null; max?: number | null; positiveNumber?: number | null; negativeNumber?: number | null; decimalMin?: number | null; decimalMax?: number | null; defaultNumber?: number | null; hasMany?: number[] | null; validatesHasMany?: number[] | null; localizedHasMany?: number[] | null; withMinRows?: number[] | null; array?: | { numbers?: number[] | null; id?: string | null; }[] | null; blocks?: | { numbers?: number[] | null; id?: string | null; blockName?: string | null; blockType: 'blockWithNumber'; }[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "point-fields". */ export interface PointField { id: string; /** * @minItems 2 * @maxItems 2 */ point: [number, number]; /** * @minItems 2 * @maxItems 2 */ localized?: [number, number] | null; group?: { /** * @minItems 2 * @maxItems 2 */ point?: [number, number] | null; }; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "relationship-fields". */ export interface RelationshipField { id: string; text?: string | null; relationship: | { relationTo: 'text-fields'; value: string | TextField; } | { relationTo: 'array-fields'; value: string | ArrayField; }; relationHasManyPolymorphic?: | ( | { relationTo: 'text-fields'; value: string | TextField; } | { relationTo: 'array-fields'; value: string | ArrayField; } )[] | null; relationToSelf?: (string | null) | RelationshipField; relationToSelfSelectOnly?: (string | null) | RelationshipField; relationWithAllowCreateToFalse?: (string | null) | User; relationWithAllowEditToFalse?: (string | null) | User; relationWithDynamicDefault?: (string | null) | User; relationHasManyWithDynamicDefault?: { relationTo: 'users'; value: string | User; } | null; relationshipWithMin?: (string | TextField)[] | null; relationshipWithMax?: (string | TextField)[] | null; relationshipHasMany?: (string | TextField)[] | null; array?: | { relationship?: (string | null) | TextField; id?: string | null; }[] | null; relationshipWithMinRows?: | { relationTo: 'text-fields'; value: string | TextField; }[] | null; relationToRow?: (string | null) | RowField; relationToRowMany?: (string | RowField)[] | null; relationshipDrawer?: (string | null) | TextField; relationshipDrawerReadOnly?: (string | null) | TextField; polymorphicRelationshipDrawer?: | ({ relationTo: 'text-fields'; value: string | TextField; } | null) | ({ relationTo: 'array-fields'; value: string | ArrayField; } | null); relationshipDrawerHasMany?: (string | TextField)[] | null; relationshipDrawerHasManyPolymorphic?: | ( | { relationTo: 'text-fields'; value: string | TextField; } | { relationTo: 'array-fields'; value: string | ArrayField; } )[] | null; relationshipDrawerWithAllowCreateFalse?: (string | null) | TextField; relationshipDrawerWithFilterOptions?: { relationTo: 'text-fields'; value: string | TextField; } | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "select-fields". */ export interface SelectField { id: string; select?: ('one' | 'two' | 'three') | null; selectReadOnly?: ('one' | 'two' | 'three') | null; selectHasMany?: ('one' | 'two' | 'three' | 'four' | 'five' | 'six')[] | null; array?: | { selectHasMany?: ('one' | 'two' | 'three' | 'four' | 'five' | 'six')[] | null; group?: { selectHasMany?: ('one' | 'two' | 'three' | 'four' | 'five' | 'six')[] | null; }; id?: string | null; }[] | null; selectHasManyLocalized?: ('one' | 'two')[] | null; selectI18n?: ('one' | 'two' | 'three') | null; simple?: ('One' | 'Two' | 'Three') | null; settings?: { category?: ('a' | 'b')[] | null; }; selectWithJsxLabelOption?: ('one' | 'two' | 'three') | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "tabs-fields-2". */ export interface TabsFields2 { id: string; tabsInArray?: | { text?: string | null; tab2?: { text2?: string | null; }; id?: string | null; }[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "tabs-fields". */ export interface TabsField { id: string; /** * This should not collapse despite there being many tabs pushing the main fields open. */ sidebarField?: string | null; /** * When active, the conditional tab should be visible. When inactive, it should be hidden. */ conditionalTabVisible?: boolean | null; conditionalTab?: { conditionalTabField?: string | null; /** * When active, the nested conditional tab should be visible. When inactive, it should be hidden. */ nestedConditionalTabVisible?: boolean | null; conditionalTabGroup?: { conditionalTabGroupTitle?: string | null; conditionalTab?: {}; }; nestedUnconditionalTabInput?: string | null; nestedConditionalTabInput?: string | null; }; array: { text: string; id?: string | null; }[]; blocks: (ContentBlock | NoBlockname | NumberBlock | SubBlocksBlock | TabsBlock)[]; group: { number: number; }; textInRow: string; numberInRow: number; json?: | { [k: string]: unknown; } | unknown[] | string | number | boolean | null; tab: TabWithName; namedTabWithDefaultValue?: { defaultValue?: string | null; }; localizedTab?: { text?: string | null; }; accessControlTab?: { text?: string | null; }; hooksTab?: { beforeValidate?: boolean | null; beforeChange?: boolean | null; afterChange?: boolean | null; afterRead?: boolean | null; }; camelCaseTab?: { array?: | { text?: string | null; array?: | { text?: string | null; id?: string | null; }[] | null; id?: string | null; }[] | null; }; textarea?: string | null; anotherText: string; nestedTab?: { text?: string | null; }; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "TabWithName". */ export interface TabWithName { array: { text: string; id?: string | null; }[]; text?: string | null; defaultValue?: string | null; arrayInRow?: | { textInArrayInRow?: string | null; id?: string | null; }[] | null; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads". */ export interface Upload { id: string; text?: string | null; media?: (string | null) | Upload; updatedAt: string; createdAt: string; url?: string | null; thumbnailURL?: string | null; filename?: string | null; mimeType?: string | null; filesize?: number | null; width?: number | null; height?: number | null; focalX?: number | null; focalY?: number | null; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads2". */ export interface Uploads2 { id: string; text?: string | null; media?: (string | null) | Uploads2; updatedAt: string; createdAt: string; url?: string | null; thumbnailURL?: string | null; filename?: string | null; mimeType?: string | null; filesize?: number | null; width?: number | null; height?: number | null; focalX?: number | null; focalY?: number | null; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads3". */ export interface Uploads3 { id: string; media?: (string | null) | Uploads3; updatedAt: string; createdAt: string; url?: string | null; thumbnailURL?: string | null; filename?: string | null; mimeType?: string | null; filesize?: number | null; width?: number | null; height?: number | null; focalX?: number | null; focalY?: number | null; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads-multi". */ export interface UploadsMulti { id: string; text?: string | null; media?: (string | Upload)[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads-poly". */ export interface UploadsPoly { id: string; text?: string | null; media?: | ({ relationTo: 'uploads'; value: string | Upload; } | null) | ({ relationTo: 'uploads2'; value: string | Uploads2; } | null); updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads-multi-poly". */ export interface UploadsMultiPoly { id: string; text?: string | null; media?: | ( | { relationTo: 'uploads'; value: string | Upload; } | { relationTo: 'uploads2'; value: string | Uploads2; } )[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads-restricted". */ export interface UploadsRestricted { id: string; text?: string | null; uploadWithoutRestriction?: (string | null) | Upload; uploadWithAllowCreateFalse?: (string | null) | Upload; uploadMultipleWithAllowCreateFalse?: (string | Upload)[] | null; updatedAt: string; createdAt: string; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "ui-fields". */ export interface UiField { id: string; text: string; updatedAt: string; createdAt: string; } /** * 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: 'select-versions-fields'; value: string | SelectVersionsField; } | null) | ({ relationTo: 'array-fields'; value: string | ArrayField; } | null) | ({ relationTo: 'block-fields'; value: string | BlockField; } | null) | ({ relationTo: 'checkbox-fields'; value: string | CheckboxField; } | null) | ({ relationTo: 'code-fields'; value: string | CodeField; } | null) | ({ relationTo: 'collapsible-fields'; value: string | CollapsibleField; } | null) | ({ relationTo: 'conditional-logic'; value: string | ConditionalLogic; } | null) | ({ relationTo: 'custom-id'; value: string | CustomId; } | null) | ({ relationTo: 'custom-tab-id'; value: string | CustomTabId; } | null) | ({ relationTo: 'custom-row-id'; value: string | CustomRowId; } | null) | ({ relationTo: 'date-fields'; value: string | DateField; } | null) | ({ relationTo: 'email-fields'; value: string | EmailField; } | null) | ({ relationTo: 'radio-fields'; value: string | RadioField; } | null) | ({ relationTo: 'group-fields'; value: string | GroupField; } | null) | ({ relationTo: 'row-fields'; value: string | RowField; } | null) | ({ relationTo: 'indexed-fields'; value: string | IndexedField; } | null) | ({ relationTo: 'json-fields'; value: string | JsonField; } | null) | ({ relationTo: 'number-fields'; value: string | NumberField; } | null) | ({ relationTo: 'point-fields'; value: string | PointField; } | null) | ({ relationTo: 'relationship-fields'; value: string | RelationshipField; } | null) | ({ relationTo: 'select-fields'; value: string | SelectField; } | null) | ({ relationTo: 'tabs-fields-2'; value: string | TabsFields2; } | null) | ({ relationTo: 'tabs-fields'; value: string | TabsField; } | null) | ({ relationTo: 'text-fields'; value: string | TextField; } | null) | ({ relationTo: 'uploads'; value: string | Upload; } | null) | ({ relationTo: 'uploads2'; value: string | Uploads2; } | null) | ({ relationTo: 'uploads3'; value: string | Uploads3; } | null) | ({ relationTo: 'uploads-multi'; value: string | UploadsMulti; } | null) | ({ relationTo: 'uploads-poly'; value: string | UploadsPoly; } | null) | ({ relationTo: 'uploads-multi-poly'; value: string | UploadsMultiPoly; } | null) | ({ relationTo: 'uploads-restricted'; value: string | UploadsRestricted; } | null) | ({ relationTo: 'ui-fields'; value: string | UiField; } | null); globalSlug?: string | null; user: { relationTo: 'users'; value: string | User; }; 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; }; 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-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 { canViewConditionalField?: 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` "select-versions-fields_select". */ export interface SelectVersionsFieldsSelect { hasMany?: T; array?: | T | { hasManyArr?: T; id?: T; }; blocks?: | T | { block?: | T | { hasManyBlocks?: T; id?: T; blockName?: T; }; }; updatedAt?: T; createdAt?: T; _status?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "array-fields_select". */ export interface ArrayFieldsSelect { title?: T; items?: | T | { text?: T; anotherText?: T; localizedText?: T; subArray?: | T | { text?: T; textTwo?: T; textInRow?: T; id?: T; }; id?: T; }; collapsedArray?: | T | { text?: T; id?: T; }; localized?: | T | { text?: T; id?: T; }; readOnly?: | T | { text?: T; id?: T; }; potentiallyEmptyArray?: | T | { text?: T; groupInRow?: | T | { textInGroupInRow?: T; }; id?: T; }; rowLabelAsComponent?: | T | { title?: T; id?: T; }; arrayWithMinRows?: | T | { text?: T; id?: T; }; disableSort?: | T | { text?: T; id?: T; }; nestedArrayLocalized?: | T | { array?: | T | { text?: T; id?: T; }; id?: T; }; externallyUpdatedArray?: | T | { id?: T; }; customArrayField?: | T | { text?: T; id?: T; }; arrayWithLabels?: | T | { text?: T; id?: T; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "block-fields_select". */ export interface BlockFieldsSelect { blocks?: | T | { content?: T | ContentBlockSelect; noBlockname?: T | NoBlocknameSelect; number?: T | NumberBlockSelect; subBlocks?: T | SubBlocksBlockSelect; tabs?: T | TabsBlockSelect; }; duplicate?: | T | { content?: T | ContentBlockSelect; noBlockname?: T | NoBlocknameSelect; number?: T | NumberBlockSelect; subBlocks?: T | SubBlocksBlockSelect; tabs?: T | TabsBlockSelect; }; collapsedByDefaultBlocks?: | T | { localizedContent?: T | LocalizedContentBlockSelect; localizedNoBlockname?: T | LocalizedNoBlocknameSelect; localizedNumber?: T | LocalizedNumberBlockSelect; localizedSubBlocks?: T | LocalizedSubBlocksBlockSelect; localizedTabs?: T | LocalizedTabsBlockSelect; }; disableSort?: | T | { localizedContent?: T | LocalizedContentBlockSelect; localizedNoBlockname?: T | LocalizedNoBlocknameSelect; localizedNumber?: T | LocalizedNumberBlockSelect; localizedSubBlocks?: T | LocalizedSubBlocksBlockSelect; localizedTabs?: T | LocalizedTabsBlockSelect; }; localizedBlocks?: | T | { localizedContent?: T | LocalizedContentBlockSelect; localizedNoBlockname?: T | LocalizedNoBlocknameSelect; localizedNumber?: T | LocalizedNumberBlockSelect; localizedSubBlocks?: T | LocalizedSubBlocksBlockSelect; localizedTabs?: T | LocalizedTabsBlockSelect; }; i18nBlocks?: | T | { textInI18nBlock?: | T | { text?: T; id?: T; blockName?: T; }; }; blocksWithLocalizedArray?: | T | { localizedArray?: | T | { array?: | T | { text?: T; id?: T; }; id?: T; blockName?: T; }; }; blocksWithSimilarConfigs?: | T | { 'block-a'?: | T | { items?: | T | { title?: T; id?: T; }; id?: T; blockName?: T; }; 'block-b'?: | T | { items?: | T | { title2?: T; id?: T; }; id?: T; blockName?: T; }; 'group-block'?: | T | { group?: | T | { text?: T; }; id?: T; blockName?: T; }; }; blocksWithSimilarGroup?: | T | { 'group-block'?: | T | { group?: | T | { text?: T; }; id?: T; blockName?: T; }; 'block-b'?: | T | { items?: | T | { title2?: T; id?: T; }; id?: T; blockName?: T; }; }; blocksWithMinRows?: | T | { blockWithMinRows?: | T | { blockTitle?: T; id?: T; blockName?: T; }; }; customBlocks?: | T | { 'block-1'?: | T | { block1Title?: T; id?: T; blockName?: T; }; 'block-2'?: | T | { block2Title?: T; id?: T; blockName?: T; }; }; relationshipBlocks?: | T | { relationships?: | T | { relationship?: T; id?: T; blockName?: T; }; }; blockWithLabels?: | T | { text?: | T | { text?: T; id?: T; blockName?: T; }; }; deduplicatedBlocks?: T | {}; deduplicatedBlocks2?: T | {}; localizedReferencesLocalizedBlock?: T | {}; localizedReferences?: T | {}; groupedBlocks?: | T | { blockWithGroupOne?: | T | { text?: T; id?: T; blockName?: T; }; blockWithGroupTwo?: | T | { text?: T; id?: T; blockName?: T; }; blockWithLocalizedGroup?: | T | { text?: T; id?: T; blockName?: T; }; blockWithoutGroup?: | T | { text?: T; id?: T; blockName?: T; }; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "ContentBlock_select". */ export interface ContentBlockSelect { text?: T; richText?: T; id?: T; blockName?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "NoBlockname_select". */ export interface NoBlocknameSelect { text?: T; id?: T; blockName?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "NumberBlock_select". */ export interface NumberBlockSelect { number?: T; id?: T; blockName?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "SubBlocksBlock_select". */ export interface SubBlocksBlockSelect { subBlocks?: | T | { textRequired?: | T | { text?: T; id?: T; blockName?: T; }; number?: T | NumberBlockSelect; }; id?: T; blockName?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "TabsBlock_select". */ export interface TabsBlockSelect { textInCollapsible?: T; textInRow?: T; id?: T; blockName?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "localizedContentBlock_select". */ export interface LocalizedContentBlockSelect { text?: T; richText?: T; id?: T; blockName?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "localizedNoBlockname_select". */ export interface LocalizedNoBlocknameSelect { text?: T; id?: T; blockName?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "localizedNumberBlock_select". */ export interface LocalizedNumberBlockSelect { number?: T; id?: T; blockName?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "localizedSubBlocksBlock_select". */ export interface LocalizedSubBlocksBlockSelect { subBlocks?: | T | { textRequired?: | T | { text?: T; id?: T; blockName?: T; }; number?: T | NumberBlockSelect; }; id?: T; blockName?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "localizedTabsBlock_select". */ export interface LocalizedTabsBlockSelect { textInCollapsible?: T; textInRow?: T; id?: T; blockName?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "checkbox-fields_select". */ export interface CheckboxFieldsSelect { checkbox?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "code-fields_select". */ export interface CodeFieldsSelect { javascript?: T; typescript?: T; json?: T; html?: T; css?: T; codeWithPadding?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "collapsible-fields_select". */ export interface CollapsibleFieldsSelect { text?: T; group?: | T | { textWithinGroup?: T; subGroup?: | T | { textWithinSubGroup?: T; requiredTextWithinSubGroup?: T; }; }; someText?: T; group2?: | T | { textWithinGroup?: T; subGroup?: | T | { textWithinSubGroup?: T; }; }; functionTitleField?: T; componentTitleField?: T; nestedTitle?: T; arrayWithCollapsibles?: | T | { innerCollapsible?: T; id?: T; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "conditional-logic_select". */ export interface ConditionalLogicSelect { text?: T; toggleField?: T; fieldWithCondition?: T; fieldWithOperationCondition?: T; customFieldWithField?: T; customFieldWithHOC?: T; customClientFieldWithCondition?: T; customServerFieldWithCondition?: T; conditionalRichText?: T; userConditional?: T; parentGroup?: | T | { enableParentGroupFields?: T; siblingField?: T; }; reliesOnParentGroup?: T; groupSelection?: T; group1?: | T | { group1Field?: T; }; group2?: | T | { group2Field?: T; }; enableConditionalFields?: T; arrayWithConditionalField?: | T | { text?: T; textWithCondition?: T; id?: T; }; blocksWithConditionalField?: | T | { blockWithConditionalField?: | T | { text?: T; textWithCondition?: T; id?: T; blockName?: T; }; }; arrayOne?: | T | { title?: T; arrayTwo?: | T | { selectOptions?: T; arrayThree?: | T | { numberField?: T; id?: T; }; id?: T; }; id?: T; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "custom-id_select". */ export interface CustomIdSelect { id?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "custom-tab-id_select". */ export interface CustomTabIdSelect { id?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "custom-row-id_select". */ export interface CustomRowIdSelect { id?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "date-fields_select". */ export interface DateFieldsSelect { default?: T; timeOnly?: T; timeOnlyWithCustomFormat?: T; dayOnly?: T; dayAndTime?: T; monthOnly?: T; defaultWithTimezone?: T; defaultWithTimezone_tz?: T; dayAndTimeWithTimezone?: T; dayAndTimeWithTimezone_tz?: T; timezoneBlocks?: | T | { dateBlock?: | T | { dayAndTime?: T; dayAndTime_tz?: T; id?: T; blockName?: T; }; }; timezoneArray?: | T | { dayAndTime?: T; dayAndTime_tz?: T; id?: T; }; array?: | T | { date?: T; id?: T; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "email-fields_select". */ export interface EmailFieldsSelect { email?: T; localizedEmail?: T; emailWithAutocomplete?: T; i18nEmail?: T; defaultEmail?: T; defaultEmptyString?: T; defaultFunction?: T; defaultAsync?: T; customLabel?: T; customError?: T; beforeAndAfterInput?: T; disableListColumnText?: T; disableListFilterText?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "radio-fields_select". */ export interface RadioFieldsSelect { radio?: T; radioWithJsxLabelOption?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "group-fields_select". */ export interface GroupFieldsSelect { group?: | T | { text?: T; defaultParent?: T; defaultChild?: T; subGroup?: | T | { textWithinGroup?: T; arrayWithinGroup?: | T | { textWithinArray?: T; id?: T; }; }; }; arrayOfGroups?: | T | { groupItem?: | T | { text?: T; }; id?: T; }; localizedGroup?: | T | { text?: T; }; potentiallyEmptyGroup?: | T | { text?: T; }; groupInRow?: | T | { field?: T; secondField?: T; thirdField?: T; }; secondGroupInRow?: | T | { field?: T; nestedGroup?: | T | { nestedField?: T; }; }; groups?: | T | { groupInRow?: | T | { field?: T; secondField?: T; thirdField?: T; }; secondGroupInRow?: | T | { field?: T; nestedGroup?: | T | { nestedField?: T; }; }; }; camelCaseGroup?: | T | { array?: | T | { text?: T; array?: | T | { text?: T; id?: T; }; id?: T; }; }; localizedGroupArr?: | T | { array?: | T | { text?: T; id?: T; }; }; localizedGroupSelect?: | T | { select?: T; }; localizedGroupRel?: | T | { email?: T; }; localizedGroupManyRel?: | T | { email?: T; }; localizedGroupPolyRel?: | T | { email?: T; }; localizedGroupPolyHasManyRel?: | T | { email?: T; }; insideUnnamedGroup?: T; deeplyNestedGroup?: | T | { insideNestedUnnamedGroup?: T; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "row-fields_select". */ export interface RowFieldsSelect { id?: T; title?: T; field_with_width_a?: T; field_with_width_b?: T; field_with_width_30_percent?: T; field_with_width_60_percent?: T; field_with_width_20_percent?: T; field_within_collapsible_a?: T; field_within_collapsible_b?: T; field_20_percent_width_within_row_a?: T; no_set_width_within_row_b?: T; no_set_width_within_row_c?: T; field_20_percent_width_within_row_d?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "indexed-fields_select". */ export interface IndexedFieldsSelect { text?: T; uniqueText?: T; uniqueRelationship?: T; uniqueHasManyRelationship?: T; uniqueHasManyRelationship_2?: T; uniquePolymorphicRelationship?: T; uniquePolymorphicRelationship_2?: T; uniqueHasManyPolymorphicRelationship?: T; uniqueHasManyPolymorphicRelationship_2?: T; uniqueRequiredText?: T; localizedUniqueRequiredText?: T; point?: T; group?: | T | { localizedUnique?: T; unique?: T; point?: T; }; collapsibleLocalizedUnique?: T; collapsibleTextUnique?: T; someText?: T; some?: | T | { text?: T; id?: T; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "json-fields_select". */ export interface JsonFieldsSelect { json?: T; group?: | T | { jsonWithinGroup?: T; }; customJSON?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "number-fields_select". */ export interface NumberFieldsSelect { number?: T; min?: T; max?: T; positiveNumber?: T; negativeNumber?: T; decimalMin?: T; decimalMax?: T; defaultNumber?: T; hasMany?: T; validatesHasMany?: T; localizedHasMany?: T; withMinRows?: T; array?: | T | { numbers?: T; id?: T; }; blocks?: | T | { blockWithNumber?: | T | { numbers?: T; id?: T; blockName?: T; }; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "point-fields_select". */ export interface PointFieldsSelect { point?: T; localized?: T; group?: | T | { point?: T; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "relationship-fields_select". */ export interface RelationshipFieldsSelect { text?: T; relationship?: T; relationHasManyPolymorphic?: T; relationToSelf?: T; relationToSelfSelectOnly?: T; relationWithAllowCreateToFalse?: T; relationWithAllowEditToFalse?: T; relationWithDynamicDefault?: T; relationHasManyWithDynamicDefault?: T; relationshipWithMin?: T; relationshipWithMax?: T; relationshipHasMany?: T; array?: | T | { relationship?: T; id?: T; }; relationshipWithMinRows?: T; relationToRow?: T; relationToRowMany?: T; relationshipDrawer?: T; relationshipDrawerReadOnly?: T; polymorphicRelationshipDrawer?: T; relationshipDrawerHasMany?: T; relationshipDrawerHasManyPolymorphic?: T; relationshipDrawerWithAllowCreateFalse?: T; relationshipDrawerWithFilterOptions?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "select-fields_select". */ export interface SelectFieldsSelect { select?: T; selectReadOnly?: T; selectHasMany?: T; array?: | T | { selectHasMany?: T; group?: | T | { selectHasMany?: T; }; id?: T; }; selectHasManyLocalized?: T; selectI18n?: T; simple?: T; settings?: | T | { category?: T; }; selectWithJsxLabelOption?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "tabs-fields-2_select". */ export interface TabsFields2Select { tabsInArray?: | T | { text?: T; tab2?: | T | { text2?: T; }; id?: T; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "tabs-fields_select". */ export interface TabsFieldsSelect { sidebarField?: T; conditionalTabVisible?: T; conditionalTab?: | T | { conditionalTabField?: T; nestedConditionalTabVisible?: T; conditionalTabGroup?: | T | { conditionalTabGroupTitle?: T; conditionalTab?: T | {}; }; nestedUnconditionalTabInput?: T; nestedConditionalTabInput?: T; }; array?: | T | { text?: T; id?: T; }; blocks?: | T | { content?: T | ContentBlockSelect; noBlockname?: T | NoBlocknameSelect; number?: T | NumberBlockSelect; subBlocks?: T | SubBlocksBlockSelect; tabs?: T | TabsBlockSelect; }; group?: | T | { number?: T; }; textInRow?: T; numberInRow?: T; json?: T; tab?: T | TabWithNameSelect; namedTabWithDefaultValue?: | T | { defaultValue?: T; }; localizedTab?: | T | { text?: T; }; accessControlTab?: | T | { text?: T; }; hooksTab?: | T | { beforeValidate?: T; beforeChange?: T; afterChange?: T; afterRead?: T; }; camelCaseTab?: | T | { array?: | T | { text?: T; array?: | T | { text?: T; id?: T; }; id?: T; }; }; textarea?: T; anotherText?: T; nestedTab?: | T | { text?: T; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "TabWithName_select". */ export interface TabWithNameSelect { array?: | T | { text?: T; id?: T; }; text?: T; defaultValue?: T; arrayInRow?: | T | { textInArrayInRow?: T; id?: T; }; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "text-fields_select". */ export interface TextFieldsSelect { text?: T; hiddenTextField?: T; adminHiddenTextField?: T; disabledTextField?: T; localizedText?: T; i18nText?: T; defaultString?: T; defaultEmptyString?: T; defaultFunction?: T; defaultAsync?: T; overrideLength?: T; fieldWithDefaultValue?: T; dependentOnFieldWithDefaultValue?: T; hasMany?: T; readOnlyHasMany?: T; validatesHasMany?: T; localizedHasMany?: T; withMinRows?: T; withMaxRows?: T; defaultValueFromReq?: T; array?: | T | { texts?: T; id?: T; }; blocks?: | T | { blockWithText?: | T | { texts?: T; id?: T; blockName?: T; }; }; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads_select". */ export interface UploadsSelect { text?: T; media?: T; updatedAt?: T; createdAt?: T; url?: T; thumbnailURL?: T; filename?: T; mimeType?: T; filesize?: T; width?: T; height?: T; focalX?: T; focalY?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads2_select". */ export interface Uploads2Select { text?: T; media?: T; updatedAt?: T; createdAt?: T; url?: T; thumbnailURL?: T; filename?: T; mimeType?: T; filesize?: T; width?: T; height?: T; focalX?: T; focalY?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads3_select". */ export interface Uploads3Select { media?: T; updatedAt?: T; createdAt?: T; url?: T; thumbnailURL?: T; filename?: T; mimeType?: T; filesize?: T; width?: T; height?: T; focalX?: T; focalY?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads-multi_select". */ export interface UploadsMultiSelect { text?: T; media?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads-poly_select". */ export interface UploadsPolySelect { text?: T; media?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads-multi-poly_select". */ export interface UploadsMultiPolySelect { text?: T; media?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "uploads-restricted_select". */ export interface UploadsRestrictedSelect { text?: T; uploadWithoutRestriction?: T; uploadWithAllowCreateFalse?: T; uploadMultipleWithAllowCreateFalse?: T; updatedAt?: T; createdAt?: T; } /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "ui-fields_select". */ export interface UiFieldsSelect { text?: T; updatedAt?: T; createdAt?: 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-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` "auth". */ export interface Auth { [k: string]: unknown; } declare module 'payload' { // @ts-ignore export interface GeneratedTypes extends Config {} }