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;
|
blockName?: string | null;
|
||||||
blockType: 'skillsMarquee';
|
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?:
|
columns?:
|
||||||
| {
|
| {
|
||||||
|
|
@ -329,6 +369,8 @@ export interface Page {
|
||||||
imageUrl?: string | null;
|
imageUrl?: string | null;
|
||||||
title: string;
|
title: string;
|
||||||
description?: string | null;
|
description?: string | null;
|
||||||
|
category: 'engineering' | 'design';
|
||||||
|
featured?: boolean | null;
|
||||||
tags?:
|
tags?:
|
||||||
| {
|
| {
|
||||||
tag: string;
|
tag: string;
|
||||||
|
|
@ -1378,6 +1420,50 @@ export interface PagesSelect<T extends boolean = true> {
|
||||||
id?: T;
|
id?: T;
|
||||||
blockName?: 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?:
|
kanbanColor?:
|
||||||
| T
|
| T
|
||||||
| {
|
| {
|
||||||
|
|
@ -1429,6 +1515,8 @@ export interface PagesSelect<T extends boolean = true> {
|
||||||
imageUrl?: T;
|
imageUrl?: T;
|
||||||
title?: T;
|
title?: T;
|
||||||
description?: T;
|
description?: T;
|
||||||
|
category?: T;
|
||||||
|
featured?: T;
|
||||||
tags?:
|
tags?:
|
||||||
| T
|
| 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