1032 lines
24 KiB
TypeScript
1032 lines
24 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.
|
|
*/
|
|
|
|
/**
|
|
* 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;
|
|
};
|
|
blocks: {};
|
|
collections: {
|
|
users: User;
|
|
media: Media;
|
|
pages: Page;
|
|
forms: Form;
|
|
'form-submissions': FormSubmission;
|
|
'payload-locked-documents': PayloadLockedDocument;
|
|
'payload-preferences': PayloadPreference;
|
|
'payload-migrations': PayloadMigration;
|
|
};
|
|
collectionsJoins: {};
|
|
collectionsSelect: {
|
|
users: UsersSelect<false> | UsersSelect<true>;
|
|
media: MediaSelect<false> | MediaSelect<true>;
|
|
pages: PagesSelect<false> | PagesSelect<true>;
|
|
forms: FormsSelect<false> | FormsSelect<true>;
|
|
'form-submissions': FormSubmissionsSelect<false> | FormSubmissionsSelect<true>;
|
|
'payload-locked-documents': PayloadLockedDocumentsSelect<false> | PayloadLockedDocumentsSelect<true>;
|
|
'payload-preferences': PayloadPreferencesSelect<false> | PayloadPreferencesSelect<true>;
|
|
'payload-migrations': PayloadMigrationsSelect<false> | PayloadMigrationsSelect<true>;
|
|
};
|
|
db: {
|
|
defaultIDType: number;
|
|
};
|
|
globals: {
|
|
meta: Meta;
|
|
nav: Nav;
|
|
};
|
|
globalsSelect: {
|
|
meta: MetaSelect<false> | MetaSelect<true>;
|
|
nav: NavSelect<false> | NavSelect<true>;
|
|
};
|
|
locale: null;
|
|
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` "users".
|
|
*/
|
|
export interface User {
|
|
id: number;
|
|
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` "media".
|
|
*/
|
|
export interface Media {
|
|
id: number;
|
|
alt: string;
|
|
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` "pages".
|
|
*/
|
|
export interface Page {
|
|
id: number;
|
|
slug?: string | null;
|
|
layout?:
|
|
| (SimpleListBlock | ShowcaseBlock | ProfileBriefBlock | SimpleBriefBlock | BadgeListBlock | ContactFormBlock)[]
|
|
| null;
|
|
updatedAt: string;
|
|
createdAt: string;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "SimpleListBlock".
|
|
*/
|
|
export interface SimpleListBlock {
|
|
listHeader?: string | null;
|
|
lineItems?:
|
|
| {
|
|
title?: string | null;
|
|
subtitle?: string | null;
|
|
description?: {
|
|
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;
|
|
extraDetail?: string | null;
|
|
avatar?: (number | null) | Media;
|
|
initials?: string | null;
|
|
link?: string | null;
|
|
isInitiallyHidden?: boolean | null;
|
|
id?: string | null;
|
|
}[]
|
|
| null;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'simpleList';
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "ShowcaseBlock".
|
|
*/
|
|
export interface ShowcaseBlock {
|
|
listName?: string | null;
|
|
heading?: string | null;
|
|
subheading?: string | null;
|
|
lineItems?: ShowcaseCardBlock[] | null;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'showcase';
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "ShowcaseCardBlock".
|
|
*/
|
|
export interface ShowcaseCardBlock {
|
|
image?: (number | null) | Media;
|
|
video?: (number | null) | Media;
|
|
mainLink?: string | null;
|
|
title?: string | null;
|
|
unstructuredDate?: string | null;
|
|
description?: {
|
|
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;
|
|
tags?: BadgeListBlock[] | null;
|
|
links?: BadgeListBlock[] | null;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'showcaseCard';
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "BadgeListBlock".
|
|
*/
|
|
export interface BadgeListBlock {
|
|
listHeader?: string | null;
|
|
shouldHideListHeader?: boolean | null;
|
|
defaultColor?: string | null;
|
|
defaultTextColor?: string | null;
|
|
/**
|
|
* A valid CSS text size string
|
|
*/
|
|
textSize?: string | null;
|
|
listVariant?: ('default' | 'secondary' | 'destructive' | 'outline') | null;
|
|
badges?:
|
|
| {
|
|
value?: string | null;
|
|
color?: string | null;
|
|
/**
|
|
* String of a valid CSS color
|
|
*/
|
|
textColor?: string | null;
|
|
icon?: (number | null) | Media;
|
|
href?: string | null;
|
|
id?: string | null;
|
|
}[]
|
|
| null;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'badgeList';
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "ProfileBriefBlock".
|
|
*/
|
|
export interface ProfileBriefBlock {
|
|
heading?: string | null;
|
|
subheading?: string | null;
|
|
avatar?: (number | null) | Media;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'profileBrief';
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "simpleBriefBlock".
|
|
*/
|
|
export interface SimpleBriefBlock {
|
|
title?: string | null;
|
|
content?: {
|
|
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: 'simpleBrief';
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "ContactFormBlock".
|
|
*/
|
|
export interface ContactFormBlock {
|
|
form: number | Form;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'contactForm';
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "forms".
|
|
*/
|
|
export interface Form {
|
|
id: number;
|
|
title: string;
|
|
fields?:
|
|
| (
|
|
| {
|
|
name: string;
|
|
label?: string | null;
|
|
width?: number | null;
|
|
required?: boolean | null;
|
|
defaultValue?: boolean | null;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'checkbox';
|
|
}
|
|
| {
|
|
name: string;
|
|
label?: string | null;
|
|
width?: number | null;
|
|
required?: boolean | null;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'country';
|
|
}
|
|
| {
|
|
name: string;
|
|
label?: string | null;
|
|
width?: number | null;
|
|
required?: boolean | null;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'email';
|
|
}
|
|
| {
|
|
message?: {
|
|
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: 'message';
|
|
}
|
|
| {
|
|
name: string;
|
|
label?: string | null;
|
|
width?: number | null;
|
|
defaultValue?: number | null;
|
|
required?: boolean | null;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'number';
|
|
}
|
|
| {
|
|
name: string;
|
|
label?: string | null;
|
|
width?: number | null;
|
|
defaultValue?: string | null;
|
|
placeholder?: string | null;
|
|
options?:
|
|
| {
|
|
label: string;
|
|
value: string;
|
|
id?: string | null;
|
|
}[]
|
|
| null;
|
|
required?: boolean | null;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'select';
|
|
}
|
|
| {
|
|
name: string;
|
|
label?: string | null;
|
|
width?: number | null;
|
|
required?: boolean | null;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'state';
|
|
}
|
|
| {
|
|
name: string;
|
|
label?: string | null;
|
|
width?: number | null;
|
|
defaultValue?: string | null;
|
|
required?: boolean | null;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'text';
|
|
}
|
|
| {
|
|
name: string;
|
|
label?: string | null;
|
|
width?: number | null;
|
|
defaultValue?: string | null;
|
|
required?: boolean | null;
|
|
id?: string | null;
|
|
blockName?: string | null;
|
|
blockType: 'textarea';
|
|
}
|
|
)[]
|
|
| null;
|
|
submitButtonLabel?: string | null;
|
|
/**
|
|
* Choose whether to display an on-page message or redirect to a different page after they submit the form.
|
|
*/
|
|
confirmationType?: ('message' | 'redirect') | null;
|
|
confirmationMessage?: {
|
|
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;
|
|
redirect?: {
|
|
url: string;
|
|
};
|
|
/**
|
|
* Send custom emails when the form submits. Use comma separated lists to send the same email to multiple recipients. To reference a value from this form, wrap that field's name with double curly brackets, i.e. {{firstName}}. You can use a wildcard {{*}} to output all data and {{*:table}} to format it as an HTML table in the email.
|
|
*/
|
|
emails?:
|
|
| {
|
|
emailTo?: string | null;
|
|
cc?: string | null;
|
|
bcc?: string | null;
|
|
replyTo?: string | null;
|
|
emailFrom?: string | null;
|
|
subject: string;
|
|
/**
|
|
* Enter the message that should be sent in this email.
|
|
*/
|
|
message?: {
|
|
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` "form-submissions".
|
|
*/
|
|
export interface FormSubmission {
|
|
id: number;
|
|
form: number | Form;
|
|
submissionData?:
|
|
| {
|
|
field: string;
|
|
value: string;
|
|
id?: string | null;
|
|
}[]
|
|
| null;
|
|
updatedAt: string;
|
|
createdAt: string;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "payload-locked-documents".
|
|
*/
|
|
export interface PayloadLockedDocument {
|
|
id: number;
|
|
document?:
|
|
| ({
|
|
relationTo: 'users';
|
|
value: number | User;
|
|
} | null)
|
|
| ({
|
|
relationTo: 'media';
|
|
value: number | Media;
|
|
} | null)
|
|
| ({
|
|
relationTo: 'pages';
|
|
value: number | Page;
|
|
} | null)
|
|
| ({
|
|
relationTo: 'forms';
|
|
value: number | Form;
|
|
} | null)
|
|
| ({
|
|
relationTo: 'form-submissions';
|
|
value: number | FormSubmission;
|
|
} | null);
|
|
globalSlug?: string | null;
|
|
user: {
|
|
relationTo: 'users';
|
|
value: number | User;
|
|
};
|
|
updatedAt: string;
|
|
createdAt: string;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "payload-preferences".
|
|
*/
|
|
export interface PayloadPreference {
|
|
id: number;
|
|
user: {
|
|
relationTo: 'users';
|
|
value: number | 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: number;
|
|
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<T extends boolean = true> {
|
|
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` "media_select".
|
|
*/
|
|
export interface MediaSelect<T extends boolean = true> {
|
|
alt?: 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` "pages_select".
|
|
*/
|
|
export interface PagesSelect<T extends boolean = true> {
|
|
slug?: T;
|
|
layout?:
|
|
| T
|
|
| {
|
|
simpleList?: T | SimpleListBlockSelect<T>;
|
|
showcase?: T | ShowcaseBlockSelect<T>;
|
|
profileBrief?: T | ProfileBriefBlockSelect<T>;
|
|
simpleBrief?: T | SimpleBriefBlockSelect<T>;
|
|
badgeList?: T | BadgeListBlockSelect<T>;
|
|
contactForm?: T | ContactFormBlockSelect<T>;
|
|
};
|
|
updatedAt?: T;
|
|
createdAt?: T;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "SimpleListBlock_select".
|
|
*/
|
|
export interface SimpleListBlockSelect<T extends boolean = true> {
|
|
listHeader?: T;
|
|
lineItems?:
|
|
| T
|
|
| {
|
|
title?: T;
|
|
subtitle?: T;
|
|
description?: T;
|
|
extraDetail?: T;
|
|
avatar?: T;
|
|
initials?: T;
|
|
link?: T;
|
|
isInitiallyHidden?: T;
|
|
id?: T;
|
|
};
|
|
id?: T;
|
|
blockName?: T;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "ShowcaseBlock_select".
|
|
*/
|
|
export interface ShowcaseBlockSelect<T extends boolean = true> {
|
|
listName?: T;
|
|
heading?: T;
|
|
subheading?: T;
|
|
lineItems?:
|
|
| T
|
|
| {
|
|
showcaseCard?: T | ShowcaseCardBlockSelect<T>;
|
|
};
|
|
id?: T;
|
|
blockName?: T;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "ShowcaseCardBlock_select".
|
|
*/
|
|
export interface ShowcaseCardBlockSelect<T extends boolean = true> {
|
|
image?: T;
|
|
video?: T;
|
|
mainLink?: T;
|
|
title?: T;
|
|
unstructuredDate?: T;
|
|
description?: T;
|
|
tags?:
|
|
| T
|
|
| {
|
|
badgeList?: T | BadgeListBlockSelect<T>;
|
|
};
|
|
links?:
|
|
| T
|
|
| {
|
|
badgeList?: T | BadgeListBlockSelect<T>;
|
|
};
|
|
id?: T;
|
|
blockName?: T;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "BadgeListBlock_select".
|
|
*/
|
|
export interface BadgeListBlockSelect<T extends boolean = true> {
|
|
listHeader?: T;
|
|
shouldHideListHeader?: T;
|
|
defaultColor?: T;
|
|
defaultTextColor?: T;
|
|
textSize?: T;
|
|
listVariant?: T;
|
|
badges?:
|
|
| T
|
|
| {
|
|
value?: T;
|
|
color?: T;
|
|
textColor?: T;
|
|
icon?: T;
|
|
href?: T;
|
|
id?: T;
|
|
};
|
|
id?: T;
|
|
blockName?: T;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "ProfileBriefBlock_select".
|
|
*/
|
|
export interface ProfileBriefBlockSelect<T extends boolean = true> {
|
|
heading?: T;
|
|
subheading?: T;
|
|
avatar?: T;
|
|
id?: T;
|
|
blockName?: T;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "simpleBriefBlock_select".
|
|
*/
|
|
export interface SimpleBriefBlockSelect<T extends boolean = true> {
|
|
title?: T;
|
|
content?: T;
|
|
id?: T;
|
|
blockName?: T;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "ContactFormBlock_select".
|
|
*/
|
|
export interface ContactFormBlockSelect<T extends boolean = true> {
|
|
form?: T;
|
|
id?: T;
|
|
blockName?: T;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "forms_select".
|
|
*/
|
|
export interface FormsSelect<T extends boolean = true> {
|
|
title?: T;
|
|
fields?:
|
|
| T
|
|
| {
|
|
checkbox?:
|
|
| T
|
|
| {
|
|
name?: T;
|
|
label?: T;
|
|
width?: T;
|
|
required?: T;
|
|
defaultValue?: T;
|
|
id?: T;
|
|
blockName?: T;
|
|
};
|
|
country?:
|
|
| T
|
|
| {
|
|
name?: T;
|
|
label?: T;
|
|
width?: T;
|
|
required?: T;
|
|
id?: T;
|
|
blockName?: T;
|
|
};
|
|
email?:
|
|
| T
|
|
| {
|
|
name?: T;
|
|
label?: T;
|
|
width?: T;
|
|
required?: T;
|
|
id?: T;
|
|
blockName?: T;
|
|
};
|
|
message?:
|
|
| T
|
|
| {
|
|
message?: T;
|
|
id?: T;
|
|
blockName?: T;
|
|
};
|
|
number?:
|
|
| T
|
|
| {
|
|
name?: T;
|
|
label?: T;
|
|
width?: T;
|
|
defaultValue?: T;
|
|
required?: T;
|
|
id?: T;
|
|
blockName?: T;
|
|
};
|
|
select?:
|
|
| T
|
|
| {
|
|
name?: T;
|
|
label?: T;
|
|
width?: T;
|
|
defaultValue?: T;
|
|
placeholder?: T;
|
|
options?:
|
|
| T
|
|
| {
|
|
label?: T;
|
|
value?: T;
|
|
id?: T;
|
|
};
|
|
required?: T;
|
|
id?: T;
|
|
blockName?: T;
|
|
};
|
|
state?:
|
|
| T
|
|
| {
|
|
name?: T;
|
|
label?: T;
|
|
width?: T;
|
|
required?: T;
|
|
id?: T;
|
|
blockName?: T;
|
|
};
|
|
text?:
|
|
| T
|
|
| {
|
|
name?: T;
|
|
label?: T;
|
|
width?: T;
|
|
defaultValue?: T;
|
|
required?: T;
|
|
id?: T;
|
|
blockName?: T;
|
|
};
|
|
textarea?:
|
|
| T
|
|
| {
|
|
name?: T;
|
|
label?: T;
|
|
width?: T;
|
|
defaultValue?: T;
|
|
required?: T;
|
|
id?: T;
|
|
blockName?: T;
|
|
};
|
|
};
|
|
submitButtonLabel?: T;
|
|
confirmationType?: T;
|
|
confirmationMessage?: T;
|
|
redirect?:
|
|
| T
|
|
| {
|
|
url?: T;
|
|
};
|
|
emails?:
|
|
| T
|
|
| {
|
|
emailTo?: T;
|
|
cc?: T;
|
|
bcc?: T;
|
|
replyTo?: T;
|
|
emailFrom?: T;
|
|
subject?: T;
|
|
message?: T;
|
|
id?: T;
|
|
};
|
|
updatedAt?: T;
|
|
createdAt?: T;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "form-submissions_select".
|
|
*/
|
|
export interface FormSubmissionsSelect<T extends boolean = true> {
|
|
form?: T;
|
|
submissionData?:
|
|
| T
|
|
| {
|
|
field?: T;
|
|
value?: T;
|
|
id?: T;
|
|
};
|
|
updatedAt?: T;
|
|
createdAt?: T;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "payload-locked-documents_select".
|
|
*/
|
|
export interface PayloadLockedDocumentsSelect<T extends boolean = true> {
|
|
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<T extends boolean = true> {
|
|
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<T extends boolean = true> {
|
|
name?: T;
|
|
batch?: T;
|
|
updatedAt?: T;
|
|
createdAt?: T;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "meta".
|
|
*/
|
|
export interface Meta {
|
|
id: number;
|
|
name?: string | null;
|
|
url?: string | null;
|
|
description?: string | null;
|
|
googleVerification?: string | null;
|
|
updatedAt?: string | null;
|
|
createdAt?: string | null;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "nav".
|
|
*/
|
|
export interface Nav {
|
|
id: number;
|
|
internalLinks?:
|
|
| {
|
|
href?: string | null;
|
|
iconSrc?: string | null;
|
|
label?: string | null;
|
|
id?: string | null;
|
|
}[]
|
|
| null;
|
|
contact?:
|
|
| {
|
|
href?: string | null;
|
|
iconSrc?: string | null;
|
|
label?: string | null;
|
|
id?: string | null;
|
|
}[]
|
|
| null;
|
|
updatedAt?: string | null;
|
|
createdAt?: string | null;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "meta_select".
|
|
*/
|
|
export interface MetaSelect<T extends boolean = true> {
|
|
name?: T;
|
|
url?: T;
|
|
description?: T;
|
|
googleVerification?: T;
|
|
updatedAt?: T;
|
|
createdAt?: T;
|
|
globalType?: T;
|
|
}
|
|
/**
|
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
* via the `definition` "nav_select".
|
|
*/
|
|
export interface NavSelect<T extends boolean = true> {
|
|
internalLinks?:
|
|
| T
|
|
| {
|
|
href?: T;
|
|
iconSrc?: T;
|
|
label?: T;
|
|
id?: T;
|
|
};
|
|
contact?:
|
|
| T
|
|
| {
|
|
href?: T;
|
|
iconSrc?: T;
|
|
label?: T;
|
|
id?: 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' {
|
|
export interface GeneratedTypes extends Config {}
|
|
} |