payload
This commit is contained in:
parent
4e09fc7d7a
commit
dd83a095c5
2 changed files with 2357 additions and 0 deletions
|
|
@ -283,6 +283,46 @@ export interface Page {
|
|||
blockName?: string | null;
|
||||
blockType: 'skillsMarquee';
|
||||
}
|
||||
| {
|
||||
aboutHeading?: string | null;
|
||||
aboutText?: string | null;
|
||||
aboutCta?: {
|
||||
label?: string | null;
|
||||
url?: string | null;
|
||||
newTab?: boolean | null;
|
||||
};
|
||||
skillsHeading?: string | null;
|
||||
skills?:
|
||||
| {
|
||||
icon: string;
|
||||
title: string;
|
||||
tags: string;
|
||||
id?: string | null;
|
||||
}[]
|
||||
| null;
|
||||
id?: string | null;
|
||||
blockName?: string | null;
|
||||
blockType: 'about';
|
||||
}
|
||||
| {
|
||||
columns?:
|
||||
| {
|
||||
title: string;
|
||||
color?: ('gray' | 'blue' | 'green' | 'amber' | 'red' | 'purple' | 'teal') | null;
|
||||
cards?:
|
||||
| {
|
||||
title: string;
|
||||
subtitle?: string | null;
|
||||
id?: string | null;
|
||||
}[]
|
||||
| null;
|
||||
id?: string | null;
|
||||
}[]
|
||||
| null;
|
||||
id?: string | null;
|
||||
blockName?: string | null;
|
||||
blockType: 'process';
|
||||
}
|
||||
| {
|
||||
columns?:
|
||||
| {
|
||||
|
|
@ -329,6 +369,8 @@ export interface Page {
|
|||
imageUrl?: string | null;
|
||||
title: string;
|
||||
description?: string | null;
|
||||
category: 'engineering' | 'design';
|
||||
featured?: boolean | null;
|
||||
tags?:
|
||||
| {
|
||||
tag: string;
|
||||
|
|
@ -1378,6 +1420,50 @@ export interface PagesSelect<T extends boolean = true> {
|
|||
id?: T;
|
||||
blockName?: T;
|
||||
};
|
||||
about?:
|
||||
| T
|
||||
| {
|
||||
aboutHeading?: T;
|
||||
aboutText?: T;
|
||||
aboutCta?:
|
||||
| T
|
||||
| {
|
||||
label?: T;
|
||||
url?: T;
|
||||
newTab?: T;
|
||||
};
|
||||
skillsHeading?: T;
|
||||
skills?:
|
||||
| T
|
||||
| {
|
||||
icon?: T;
|
||||
title?: T;
|
||||
tags?: T;
|
||||
id?: T;
|
||||
};
|
||||
id?: T;
|
||||
blockName?: T;
|
||||
};
|
||||
process?:
|
||||
| T
|
||||
| {
|
||||
columns?:
|
||||
| T
|
||||
| {
|
||||
title?: T;
|
||||
color?: T;
|
||||
cards?:
|
||||
| T
|
||||
| {
|
||||
title?: T;
|
||||
subtitle?: T;
|
||||
id?: T;
|
||||
};
|
||||
id?: T;
|
||||
};
|
||||
id?: T;
|
||||
blockName?: T;
|
||||
};
|
||||
kanbanColor?:
|
||||
| T
|
||||
| {
|
||||
|
|
@ -1429,6 +1515,8 @@ export interface PagesSelect<T extends boolean = true> {
|
|||
imageUrl?: T;
|
||||
title?: T;
|
||||
description?: T;
|
||||
category?: T;
|
||||
featured?: T;
|
||||
tags?:
|
||||
| T
|
||||
| {
|
||||
|
|
|
|||
2269
src/payload-types_bk.ts
Normal file
2269
src/payload-types_bk.ts
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue