chore(scripts): fix generate template variations script (#9671)
This commit is contained in:
1
.github/workflows/post-release.yml
vendored
1
.github/workflows/post-release.yml
vendored
@@ -52,7 +52,6 @@ jobs:
|
|||||||
avatar_url: 'https://l4wlsi8vxy8hre4v.public.blob.vercel-storage.com/discord-bot-logo.png'
|
avatar_url: 'https://l4wlsi8vxy8hre4v.public.blob.vercel-storage.com/discord-bot-logo.png'
|
||||||
|
|
||||||
update_templates:
|
update_templates:
|
||||||
if: false # Still needs some troubleshooting
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|||||||
@@ -36,6 +36,10 @@ type TemplateVariations = {
|
|||||||
envNames?: {
|
envNames?: {
|
||||||
dbUri: string
|
dbUri: string
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* @default false
|
||||||
|
*/
|
||||||
|
skipReadme?: boolean
|
||||||
configureConfig?: boolean
|
configureConfig?: boolean
|
||||||
generateLockfile?: boolean
|
generateLockfile?: boolean
|
||||||
}
|
}
|
||||||
@@ -92,6 +96,7 @@ async function main() {
|
|||||||
// This will replace the process.env.DATABASE_URI to process.env.POSTGRES_URL
|
// This will replace the process.env.DATABASE_URI to process.env.POSTGRES_URL
|
||||||
dbUri: 'POSTGRES_URL',
|
dbUri: 'POSTGRES_URL',
|
||||||
},
|
},
|
||||||
|
skipReadme: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'payload-postgres-template',
|
name: 'payload-postgres-template',
|
||||||
@@ -151,6 +156,7 @@ async function main() {
|
|||||||
envNames,
|
envNames,
|
||||||
sharp,
|
sharp,
|
||||||
configureConfig,
|
configureConfig,
|
||||||
|
skipReadme = false,
|
||||||
} of variations) {
|
} of variations) {
|
||||||
header(`Generating ${name}...`)
|
header(`Generating ${name}...`)
|
||||||
const destDir = path.join(templatesDir, dirname)
|
const destDir = path.join(templatesDir, dirname)
|
||||||
@@ -160,6 +166,7 @@ async function main() {
|
|||||||
'.next',
|
'.next',
|
||||||
'.env$',
|
'.env$',
|
||||||
'pnpm-lock.yaml',
|
'pnpm-lock.yaml',
|
||||||
|
...(skipReadme ? ['README.md'] : ['']),
|
||||||
])
|
])
|
||||||
|
|
||||||
log(`Copied to ${destDir}`)
|
log(`Copied to ${destDir}`)
|
||||||
@@ -183,15 +190,26 @@ async function main() {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
await generateReadme({
|
if (!skipReadme) {
|
||||||
destDir,
|
await generateReadme({
|
||||||
data: {
|
destDir,
|
||||||
name,
|
data: {
|
||||||
description: name, // TODO: Add descriptions
|
name,
|
||||||
attributes: { db, storage },
|
description: name, // TODO: Add descriptions
|
||||||
...(vercelDeployButtonLink && { vercelDeployButtonLink }),
|
attributes: { db, storage },
|
||||||
},
|
...(vercelDeployButtonLink && { vercelDeployButtonLink }),
|
||||||
})
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if (generateLockfile) {
|
||||||
|
log('Generating pnpm-lock.yaml')
|
||||||
|
execSyncSafe(`pnpm install --ignore-workspace`, { cwd: destDir })
|
||||||
|
} else {
|
||||||
|
log('Installing dependencies without generating lockfile')
|
||||||
|
execSyncSafe(`pnpm install --ignore-workspace`, { cwd: destDir })
|
||||||
|
await fs.rm(`${destDir}/pnpm-lock.yaml`, { force: true })
|
||||||
|
}
|
||||||
|
|
||||||
// Copy in initial migration if db is postgres. This contains user and media.
|
// Copy in initial migration if db is postgres. This contains user and media.
|
||||||
if (db === 'postgres' || db === 'vercel-postgres') {
|
if (db === 'postgres' || db === 'vercel-postgres') {
|
||||||
@@ -214,17 +232,13 @@ async function main() {
|
|||||||
cwd: destDir,
|
cwd: destDir,
|
||||||
env: {
|
env: {
|
||||||
...process.env,
|
...process.env,
|
||||||
|
PAYLOAD_SECRET: 'asecretsolongnotevensantacouldguessit',
|
||||||
BLOB_READ_WRITE_TOKEN: 'vercel_blob_rw_TEST_asdf',
|
BLOB_READ_WRITE_TOKEN: 'vercel_blob_rw_TEST_asdf',
|
||||||
DATABASE_URI: 'postgres://localhost:5432/payloadtests',
|
DATABASE_URI: 'postgres://localhost:5432/payloadtests',
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
if (generateLockfile) {
|
|
||||||
log('Generating pnpm-lock.yaml')
|
|
||||||
execSyncSafe(`pnpm install --ignore-workspace`, { cwd: destDir })
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: Email?
|
// TODO: Email?
|
||||||
|
|
||||||
// TODO: Sharp?
|
// TODO: Sharp?
|
||||||
@@ -302,7 +316,7 @@ function log(message: string) {
|
|||||||
function execSyncSafe(command: string, options?: Parameters<typeof execSync>[1]) {
|
function execSyncSafe(command: string, options?: Parameters<typeof execSync>[1]) {
|
||||||
try {
|
try {
|
||||||
console.log(`Executing: ${command}`)
|
console.log(`Executing: ${command}`)
|
||||||
execSync(command, options)
|
execSync(command, { stdio: 'inherit', ...options })
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (error instanceof Error) {
|
if (error instanceof Error) {
|
||||||
const stderr = (error as any).stderr?.toString()
|
const stderr = (error as any).stderr?.toString()
|
||||||
|
|||||||
518
templates/website/pnpm-lock.yaml
generated
518
templates/website/pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -21,6 +21,7 @@ export async function generateStaticParams() {
|
|||||||
draft: false,
|
draft: false,
|
||||||
limit: 1000,
|
limit: 1000,
|
||||||
overrideAccess: false,
|
overrideAccess: false,
|
||||||
|
pagination: false,
|
||||||
select: {
|
select: {
|
||||||
slug: true,
|
slug: true,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ export async function generateStaticParams() {
|
|||||||
draft: false,
|
draft: false,
|
||||||
limit: 1000,
|
limit: 1000,
|
||||||
overrideAccess: false,
|
overrideAccess: false,
|
||||||
|
pagination: false,
|
||||||
select: {
|
select: {
|
||||||
slug: true,
|
slug: true,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ export const Pages: CollectionConfig<'pages'> = {
|
|||||||
},
|
},
|
||||||
// This config controls what's populated by default when a page is referenced
|
// This config controls what's populated by default when a page is referenced
|
||||||
// https://payloadcms.com/docs/queries/select#defaultpopulate-collection-config-property
|
// https://payloadcms.com/docs/queries/select#defaultpopulate-collection-config-property
|
||||||
// Type safe if the collection slug generic is passed to `CollectionConfig` - `CollectionConfig<'pagess'>
|
// Type safe if the collection slug generic is passed to `CollectionConfig` - `CollectionConfig<'pages'>
|
||||||
defaultPopulate: {
|
defaultPopulate: {
|
||||||
title: true,
|
title: true,
|
||||||
slug: true,
|
slug: true,
|
||||||
|
|||||||
@@ -874,11 +874,9 @@ export interface PagesSelect<T extends boolean = true> {
|
|||||||
meta?:
|
meta?:
|
||||||
| T
|
| T
|
||||||
| {
|
| {
|
||||||
overview?: T;
|
|
||||||
title?: T;
|
title?: T;
|
||||||
image?: T;
|
image?: T;
|
||||||
description?: T;
|
description?: T;
|
||||||
preview?: T;
|
|
||||||
};
|
};
|
||||||
publishedAt?: T;
|
publishedAt?: T;
|
||||||
slug?: T;
|
slug?: T;
|
||||||
@@ -899,11 +897,9 @@ export interface PostsSelect<T extends boolean = true> {
|
|||||||
meta?:
|
meta?:
|
||||||
| T
|
| T
|
||||||
| {
|
| {
|
||||||
overview?: T;
|
|
||||||
title?: T;
|
title?: T;
|
||||||
image?: T;
|
image?: T;
|
||||||
description?: T;
|
description?: T;
|
||||||
preview?: T;
|
|
||||||
};
|
};
|
||||||
publishedAt?: T;
|
publishedAt?: T;
|
||||||
authors?: T;
|
authors?: T;
|
||||||
@@ -1208,7 +1204,6 @@ export interface SearchSelect<T extends boolean = true> {
|
|||||||
title?: T;
|
title?: T;
|
||||||
priority?: T;
|
priority?: T;
|
||||||
doc?: T;
|
doc?: T;
|
||||||
docUrl?: T;
|
|
||||||
slug?: T;
|
slug?: T;
|
||||||
meta?:
|
meta?:
|
||||||
| T
|
| T
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ export default async function Page({ params: paramsPromise }: Args) {
|
|||||||
const { slug = 'home' } = await paramsPromise
|
const { slug = 'home' } = await paramsPromise
|
||||||
const url = '/' + slug
|
const url = '/' + slug
|
||||||
|
|
||||||
let page: Pick<PageType, 'slug' | 'layout' | 'hero'> | null
|
let page: PageType | null
|
||||||
|
|
||||||
page = await queryPageBySlug({
|
page = await queryPageBySlug({
|
||||||
slug,
|
slug,
|
||||||
@@ -97,11 +97,6 @@ const queryPageBySlug = cache(async ({ slug }: { slug: string }) => {
|
|||||||
limit: 1,
|
limit: 1,
|
||||||
pagination: false,
|
pagination: false,
|
||||||
overrideAccess: draft,
|
overrideAccess: draft,
|
||||||
select: {
|
|
||||||
slug: true,
|
|
||||||
hero: true,
|
|
||||||
layout: true,
|
|
||||||
},
|
|
||||||
where: {
|
where: {
|
||||||
slug: {
|
slug: {
|
||||||
equals: slug,
|
equals: slug,
|
||||||
|
|||||||
@@ -70,6 +70,7 @@ export async function GET(
|
|||||||
collection,
|
collection,
|
||||||
draft: true,
|
draft: true,
|
||||||
limit: 1,
|
limit: 1,
|
||||||
|
// pagination: false reduces overhead if you don't need totalDocs
|
||||||
pagination: false,
|
pagination: false,
|
||||||
depth: 0,
|
depth: 0,
|
||||||
select: {},
|
select: {},
|
||||||
|
|||||||
@@ -20,7 +20,6 @@ export async function generateStaticParams() {
|
|||||||
collection: 'posts',
|
collection: 'posts',
|
||||||
draft: false,
|
draft: false,
|
||||||
limit: 1000,
|
limit: 1000,
|
||||||
pagination: false,
|
|
||||||
overrideAccess: false,
|
overrideAccess: false,
|
||||||
select: {
|
select: {
|
||||||
slug: true,
|
slug: true,
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ import { SlugComponent as SlugComponent_92cc057d0a2abb4f6cf0307edf59f986 } from
|
|||||||
import { HorizontalRuleFeatureClient as HorizontalRuleFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
import { HorizontalRuleFeatureClient as HorizontalRuleFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||||
import { BlocksFeatureClient as BlocksFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
import { BlocksFeatureClient as BlocksFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||||
import { LinkToDoc as LinkToDoc_aead06e4cbf6b2620c5c51c9ab283634 } from '@payloadcms/plugin-search/client'
|
import { LinkToDoc as LinkToDoc_aead06e4cbf6b2620c5c51c9ab283634 } from '@payloadcms/plugin-search/client'
|
||||||
|
import { ReindexButton as ReindexButton_aead06e4cbf6b2620c5c51c9ab283634 } from '@payloadcms/plugin-search/client'
|
||||||
import { default as default_1a7510af427896d367a49dbf838d2de6 } from '@/components/BeforeDashboard'
|
import { default as default_1a7510af427896d367a49dbf838d2de6 } from '@/components/BeforeDashboard'
|
||||||
import { default as default_8a7ab0eb7ab5c511aba12e68480bfe5e } from '@/components/BeforeLogin'
|
import { default as default_8a7ab0eb7ab5c511aba12e68480bfe5e } from '@/components/BeforeLogin'
|
||||||
|
|
||||||
@@ -57,6 +58,7 @@ export const importMap = {
|
|||||||
'@payloadcms/richtext-lexical/client#BlocksFeatureClient':
|
'@payloadcms/richtext-lexical/client#BlocksFeatureClient':
|
||||||
BlocksFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
BlocksFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||||
'@payloadcms/plugin-search/client#LinkToDoc': LinkToDoc_aead06e4cbf6b2620c5c51c9ab283634,
|
'@payloadcms/plugin-search/client#LinkToDoc': LinkToDoc_aead06e4cbf6b2620c5c51c9ab283634,
|
||||||
|
'@payloadcms/plugin-search/client#ReindexButton': ReindexButton_aead06e4cbf6b2620c5c51c9ab283634,
|
||||||
'@/components/BeforeDashboard#default': default_1a7510af427896d367a49dbf838d2de6,
|
'@/components/BeforeDashboard#default': default_1a7510af427896d367a49dbf838d2de6,
|
||||||
'@/components/BeforeLogin#default': default_8a7ab0eb7ab5c511aba12e68480bfe5e,
|
'@/components/BeforeLogin#default': default_8a7ab0eb7ab5c511aba12e68480bfe5e,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ export const Pages: CollectionConfig<'pages'> = {
|
|||||||
},
|
},
|
||||||
// This config controls what's populated by default when a page is referenced
|
// This config controls what's populated by default when a page is referenced
|
||||||
// https://payloadcms.com/docs/queries/select#defaultpopulate-collection-config-property
|
// https://payloadcms.com/docs/queries/select#defaultpopulate-collection-config-property
|
||||||
// Type safe if the collection slug generic is passed to `CollectionConfig` - `CollectionConfig<'pages'>
|
// Type safe if the collection slug generic is passed to `CollectionConfig` - `CollectionConfig<'pagess'>
|
||||||
defaultPopulate: {
|
defaultPopulate: {
|
||||||
title: true,
|
title: true,
|
||||||
slug: true,
|
slug: true,
|
||||||
|
|||||||
@@ -30,7 +30,8 @@ export const MediumImpactHero: React.FC<Page['hero']> = ({ links, media, richTex
|
|||||||
<Media
|
<Media
|
||||||
className="-mx-4 md:-mx-8 2xl:-mx-16"
|
className="-mx-4 md:-mx-8 2xl:-mx-16"
|
||||||
imgClassName=""
|
imgClassName=""
|
||||||
priority
|
priority={false}
|
||||||
|
loading="lazy"
|
||||||
resource={media}
|
resource={media}
|
||||||
/>
|
/>
|
||||||
{media?.caption && (
|
{media?.caption && (
|
||||||
|
|||||||
@@ -79,7 +79,13 @@ export const PostHero: React.FC<{
|
|||||||
</div>
|
</div>
|
||||||
<div className="min-h-[80vh] select-none">
|
<div className="min-h-[80vh] select-none">
|
||||||
{metaImage && typeof metaImage !== 'string' && (
|
{metaImage && typeof metaImage !== 'string' && (
|
||||||
<Media fill imgClassName="-z-10 object-cover" resource={metaImage} />
|
<Media
|
||||||
|
fill
|
||||||
|
priority={false}
|
||||||
|
loading="lazy"
|
||||||
|
imgClassName="-z-10 object-cover"
|
||||||
|
resource={metaImage}
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
<div className="absolute pointer-events-none left-0 bottom-0 w-full h-1/2 bg-gradient-to-t from-black to-transparent" />
|
<div className="absolute pointer-events-none left-0 bottom-0 w-full h-1/2 bg-gradient-to-t from-black to-transparent" />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ export interface Config {
|
|||||||
'payload-migrations': PayloadMigrationsSelect<false> | PayloadMigrationsSelect<true>;
|
'payload-migrations': PayloadMigrationsSelect<false> | PayloadMigrationsSelect<true>;
|
||||||
};
|
};
|
||||||
db: {
|
db: {
|
||||||
defaultIDType: string;
|
defaultIDType: number;
|
||||||
};
|
};
|
||||||
globals: {
|
globals: {
|
||||||
header: Header;
|
header: Header;
|
||||||
@@ -82,7 +82,7 @@ export interface UserAuthOperations {
|
|||||||
* via the `definition` "pages".
|
* via the `definition` "pages".
|
||||||
*/
|
*/
|
||||||
export interface Page {
|
export interface Page {
|
||||||
id: string;
|
id: number;
|
||||||
title: string;
|
title: string;
|
||||||
hero: {
|
hero: {
|
||||||
type: 'none' | 'highImpact' | 'mediumImpact' | 'lowImpact';
|
type: 'none' | 'highImpact' | 'mediumImpact' | 'lowImpact';
|
||||||
@@ -108,7 +108,7 @@ export interface Page {
|
|||||||
newTab?: boolean | null;
|
newTab?: boolean | null;
|
||||||
reference?: {
|
reference?: {
|
||||||
relationTo: 'pages';
|
relationTo: 'pages';
|
||||||
value: string | Page;
|
value: number | Page;
|
||||||
} | null;
|
} | null;
|
||||||
url?: string | null;
|
url?: string | null;
|
||||||
label: string;
|
label: string;
|
||||||
@@ -117,12 +117,12 @@ export interface Page {
|
|||||||
id?: string | null;
|
id?: string | null;
|
||||||
}[]
|
}[]
|
||||||
| null;
|
| null;
|
||||||
media?: (string | null) | Media;
|
media?: (number | null) | Media;
|
||||||
};
|
};
|
||||||
layout: (CallToActionBlock | ContentBlock | MediaBlock | ArchiveBlock | FormBlock)[];
|
layout: (CallToActionBlock | ContentBlock | MediaBlock | ArchiveBlock | FormBlock)[];
|
||||||
meta?: {
|
meta?: {
|
||||||
title?: string | null;
|
title?: string | null;
|
||||||
image?: (string | null) | Media;
|
image?: (number | null) | Media;
|
||||||
description?: string | null;
|
description?: string | null;
|
||||||
};
|
};
|
||||||
publishedAt?: string | null;
|
publishedAt?: string | null;
|
||||||
@@ -137,7 +137,7 @@ export interface Page {
|
|||||||
* via the `definition` "media".
|
* via the `definition` "media".
|
||||||
*/
|
*/
|
||||||
export interface Media {
|
export interface Media {
|
||||||
id: string;
|
id: number;
|
||||||
alt?: string | null;
|
alt?: string | null;
|
||||||
caption?: {
|
caption?: {
|
||||||
root: {
|
root: {
|
||||||
@@ -243,7 +243,7 @@ export interface CallToActionBlock {
|
|||||||
newTab?: boolean | null;
|
newTab?: boolean | null;
|
||||||
reference?: {
|
reference?: {
|
||||||
relationTo: 'pages';
|
relationTo: 'pages';
|
||||||
value: string | Page;
|
value: number | Page;
|
||||||
} | null;
|
} | null;
|
||||||
url?: string | null;
|
url?: string | null;
|
||||||
label: string;
|
label: string;
|
||||||
@@ -285,7 +285,7 @@ export interface ContentBlock {
|
|||||||
newTab?: boolean | null;
|
newTab?: boolean | null;
|
||||||
reference?: {
|
reference?: {
|
||||||
relationTo: 'pages';
|
relationTo: 'pages';
|
||||||
value: string | Page;
|
value: number | Page;
|
||||||
} | null;
|
} | null;
|
||||||
url?: string | null;
|
url?: string | null;
|
||||||
label: string;
|
label: string;
|
||||||
@@ -303,7 +303,7 @@ export interface ContentBlock {
|
|||||||
* via the `definition` "MediaBlock".
|
* via the `definition` "MediaBlock".
|
||||||
*/
|
*/
|
||||||
export interface MediaBlock {
|
export interface MediaBlock {
|
||||||
media: string | Media;
|
media: number | Media;
|
||||||
id?: string | null;
|
id?: string | null;
|
||||||
blockName?: string | null;
|
blockName?: string | null;
|
||||||
blockType: 'mediaBlock';
|
blockType: 'mediaBlock';
|
||||||
@@ -330,12 +330,12 @@ export interface ArchiveBlock {
|
|||||||
} | null;
|
} | null;
|
||||||
populateBy?: ('collection' | 'selection') | null;
|
populateBy?: ('collection' | 'selection') | null;
|
||||||
relationTo?: 'posts' | null;
|
relationTo?: 'posts' | null;
|
||||||
categories?: (string | Category)[] | null;
|
categories?: (number | Category)[] | null;
|
||||||
limit?: number | null;
|
limit?: number | null;
|
||||||
selectedDocs?:
|
selectedDocs?:
|
||||||
| {
|
| {
|
||||||
relationTo: 'posts';
|
relationTo: 'posts';
|
||||||
value: string | Post;
|
value: number | Post;
|
||||||
}[]
|
}[]
|
||||||
| null;
|
| null;
|
||||||
id?: string | null;
|
id?: string | null;
|
||||||
@@ -347,12 +347,12 @@ export interface ArchiveBlock {
|
|||||||
* via the `definition` "categories".
|
* via the `definition` "categories".
|
||||||
*/
|
*/
|
||||||
export interface Category {
|
export interface Category {
|
||||||
id: string;
|
id: number;
|
||||||
title: string;
|
title: string;
|
||||||
parent?: (string | null) | Category;
|
parent?: (number | null) | Category;
|
||||||
breadcrumbs?:
|
breadcrumbs?:
|
||||||
| {
|
| {
|
||||||
doc?: (string | null) | Category;
|
doc?: (number | null) | Category;
|
||||||
url?: string | null;
|
url?: string | null;
|
||||||
label?: string | null;
|
label?: string | null;
|
||||||
id?: string | null;
|
id?: string | null;
|
||||||
@@ -366,7 +366,7 @@ export interface Category {
|
|||||||
* via the `definition` "posts".
|
* via the `definition` "posts".
|
||||||
*/
|
*/
|
||||||
export interface Post {
|
export interface Post {
|
||||||
id: string;
|
id: number;
|
||||||
title: string;
|
title: string;
|
||||||
content: {
|
content: {
|
||||||
root: {
|
root: {
|
||||||
@@ -383,15 +383,15 @@ export interface Post {
|
|||||||
};
|
};
|
||||||
[k: string]: unknown;
|
[k: string]: unknown;
|
||||||
};
|
};
|
||||||
relatedPosts?: (string | Post)[] | null;
|
relatedPosts?: (number | Post)[] | null;
|
||||||
categories?: (string | Category)[] | null;
|
categories?: (number | Category)[] | null;
|
||||||
meta?: {
|
meta?: {
|
||||||
title?: string | null;
|
title?: string | null;
|
||||||
image?: (string | null) | Media;
|
image?: (number | null) | Media;
|
||||||
description?: string | null;
|
description?: string | null;
|
||||||
};
|
};
|
||||||
publishedAt?: string | null;
|
publishedAt?: string | null;
|
||||||
authors?: (string | User)[] | null;
|
authors?: (number | User)[] | null;
|
||||||
populatedAuthors?:
|
populatedAuthors?:
|
||||||
| {
|
| {
|
||||||
id?: string | null;
|
id?: string | null;
|
||||||
@@ -409,7 +409,7 @@ export interface Post {
|
|||||||
* via the `definition` "users".
|
* via the `definition` "users".
|
||||||
*/
|
*/
|
||||||
export interface User {
|
export interface User {
|
||||||
id: string;
|
id: number;
|
||||||
name?: string | null;
|
name?: string | null;
|
||||||
updatedAt: string;
|
updatedAt: string;
|
||||||
createdAt: string;
|
createdAt: string;
|
||||||
@@ -427,7 +427,7 @@ export interface User {
|
|||||||
* via the `definition` "FormBlock".
|
* via the `definition` "FormBlock".
|
||||||
*/
|
*/
|
||||||
export interface FormBlock {
|
export interface FormBlock {
|
||||||
form: string | Form;
|
form: number | Form;
|
||||||
enableIntro?: boolean | null;
|
enableIntro?: boolean | null;
|
||||||
introContent?: {
|
introContent?: {
|
||||||
root: {
|
root: {
|
||||||
@@ -453,7 +453,7 @@ export interface FormBlock {
|
|||||||
* via the `definition` "forms".
|
* via the `definition` "forms".
|
||||||
*/
|
*/
|
||||||
export interface Form {
|
export interface Form {
|
||||||
id: string;
|
id: number;
|
||||||
title: string;
|
title: string;
|
||||||
fields?:
|
fields?:
|
||||||
| (
|
| (
|
||||||
@@ -617,18 +617,18 @@ export interface Form {
|
|||||||
* via the `definition` "redirects".
|
* via the `definition` "redirects".
|
||||||
*/
|
*/
|
||||||
export interface Redirect {
|
export interface Redirect {
|
||||||
id: string;
|
id: number;
|
||||||
from: string;
|
from: string;
|
||||||
to?: {
|
to?: {
|
||||||
type?: ('reference' | 'custom') | null;
|
type?: ('reference' | 'custom') | null;
|
||||||
reference?:
|
reference?:
|
||||||
| ({
|
| ({
|
||||||
relationTo: 'pages';
|
relationTo: 'pages';
|
||||||
value: string | Page;
|
value: number | Page;
|
||||||
} | null)
|
} | null)
|
||||||
| ({
|
| ({
|
||||||
relationTo: 'posts';
|
relationTo: 'posts';
|
||||||
value: string | Post;
|
value: number | Post;
|
||||||
} | null);
|
} | null);
|
||||||
url?: string | null;
|
url?: string | null;
|
||||||
};
|
};
|
||||||
@@ -640,8 +640,8 @@ export interface Redirect {
|
|||||||
* via the `definition` "form-submissions".
|
* via the `definition` "form-submissions".
|
||||||
*/
|
*/
|
||||||
export interface FormSubmission {
|
export interface FormSubmission {
|
||||||
id: string;
|
id: number;
|
||||||
form: string | Form;
|
form: number | Form;
|
||||||
submissionData?:
|
submissionData?:
|
||||||
| {
|
| {
|
||||||
field: string;
|
field: string;
|
||||||
@@ -657,18 +657,18 @@ export interface FormSubmission {
|
|||||||
* via the `definition` "search".
|
* via the `definition` "search".
|
||||||
*/
|
*/
|
||||||
export interface Search {
|
export interface Search {
|
||||||
id: string;
|
id: number;
|
||||||
title?: string | null;
|
title?: string | null;
|
||||||
priority?: number | null;
|
priority?: number | null;
|
||||||
doc: {
|
doc: {
|
||||||
relationTo: 'posts';
|
relationTo: 'posts';
|
||||||
value: string | Post;
|
value: number | Post;
|
||||||
};
|
};
|
||||||
slug?: string | null;
|
slug?: string | null;
|
||||||
meta?: {
|
meta?: {
|
||||||
title?: string | null;
|
title?: string | null;
|
||||||
description?: string | null;
|
description?: string | null;
|
||||||
image?: (string | null) | Media;
|
image?: (number | null) | Media;
|
||||||
};
|
};
|
||||||
categories?:
|
categories?:
|
||||||
| {
|
| {
|
||||||
@@ -685,48 +685,48 @@ export interface Search {
|
|||||||
* via the `definition` "payload-locked-documents".
|
* via the `definition` "payload-locked-documents".
|
||||||
*/
|
*/
|
||||||
export interface PayloadLockedDocument {
|
export interface PayloadLockedDocument {
|
||||||
id: string;
|
id: number;
|
||||||
document?:
|
document?:
|
||||||
| ({
|
| ({
|
||||||
relationTo: 'pages';
|
relationTo: 'pages';
|
||||||
value: string | Page;
|
value: number | Page;
|
||||||
} | null)
|
} | null)
|
||||||
| ({
|
| ({
|
||||||
relationTo: 'posts';
|
relationTo: 'posts';
|
||||||
value: string | Post;
|
value: number | Post;
|
||||||
} | null)
|
} | null)
|
||||||
| ({
|
| ({
|
||||||
relationTo: 'media';
|
relationTo: 'media';
|
||||||
value: string | Media;
|
value: number | Media;
|
||||||
} | null)
|
} | null)
|
||||||
| ({
|
| ({
|
||||||
relationTo: 'categories';
|
relationTo: 'categories';
|
||||||
value: string | Category;
|
value: number | Category;
|
||||||
} | null)
|
} | null)
|
||||||
| ({
|
| ({
|
||||||
relationTo: 'users';
|
relationTo: 'users';
|
||||||
value: string | User;
|
value: number | User;
|
||||||
} | null)
|
} | null)
|
||||||
| ({
|
| ({
|
||||||
relationTo: 'redirects';
|
relationTo: 'redirects';
|
||||||
value: string | Redirect;
|
value: number | Redirect;
|
||||||
} | null)
|
} | null)
|
||||||
| ({
|
| ({
|
||||||
relationTo: 'forms';
|
relationTo: 'forms';
|
||||||
value: string | Form;
|
value: number | Form;
|
||||||
} | null)
|
} | null)
|
||||||
| ({
|
| ({
|
||||||
relationTo: 'form-submissions';
|
relationTo: 'form-submissions';
|
||||||
value: string | FormSubmission;
|
value: number | FormSubmission;
|
||||||
} | null)
|
} | null)
|
||||||
| ({
|
| ({
|
||||||
relationTo: 'search';
|
relationTo: 'search';
|
||||||
value: string | Search;
|
value: number | Search;
|
||||||
} | null);
|
} | null);
|
||||||
globalSlug?: string | null;
|
globalSlug?: string | null;
|
||||||
user: {
|
user: {
|
||||||
relationTo: 'users';
|
relationTo: 'users';
|
||||||
value: string | User;
|
value: number | User;
|
||||||
};
|
};
|
||||||
updatedAt: string;
|
updatedAt: string;
|
||||||
createdAt: string;
|
createdAt: string;
|
||||||
@@ -736,10 +736,10 @@ export interface PayloadLockedDocument {
|
|||||||
* via the `definition` "payload-preferences".
|
* via the `definition` "payload-preferences".
|
||||||
*/
|
*/
|
||||||
export interface PayloadPreference {
|
export interface PayloadPreference {
|
||||||
id: string;
|
id: number;
|
||||||
user: {
|
user: {
|
||||||
relationTo: 'users';
|
relationTo: 'users';
|
||||||
value: string | User;
|
value: number | User;
|
||||||
};
|
};
|
||||||
key?: string | null;
|
key?: string | null;
|
||||||
value?:
|
value?:
|
||||||
@@ -759,7 +759,7 @@ export interface PayloadPreference {
|
|||||||
* via the `definition` "payload-migrations".
|
* via the `definition` "payload-migrations".
|
||||||
*/
|
*/
|
||||||
export interface PayloadMigration {
|
export interface PayloadMigration {
|
||||||
id: string;
|
id: number;
|
||||||
name?: string | null;
|
name?: string | null;
|
||||||
batch?: number | null;
|
batch?: number | null;
|
||||||
updatedAt: string;
|
updatedAt: string;
|
||||||
@@ -874,11 +874,9 @@ export interface PagesSelect<T extends boolean = true> {
|
|||||||
meta?:
|
meta?:
|
||||||
| T
|
| T
|
||||||
| {
|
| {
|
||||||
overview?: T;
|
|
||||||
title?: T;
|
title?: T;
|
||||||
image?: T;
|
image?: T;
|
||||||
description?: T;
|
description?: T;
|
||||||
preview?: T;
|
|
||||||
};
|
};
|
||||||
publishedAt?: T;
|
publishedAt?: T;
|
||||||
slug?: T;
|
slug?: T;
|
||||||
@@ -899,11 +897,9 @@ export interface PostsSelect<T extends boolean = true> {
|
|||||||
meta?:
|
meta?:
|
||||||
| T
|
| T
|
||||||
| {
|
| {
|
||||||
overview?: T;
|
|
||||||
title?: T;
|
title?: T;
|
||||||
image?: T;
|
image?: T;
|
||||||
description?: T;
|
description?: T;
|
||||||
preview?: T;
|
|
||||||
};
|
};
|
||||||
publishedAt?: T;
|
publishedAt?: T;
|
||||||
authors?: T;
|
authors?: T;
|
||||||
@@ -1208,7 +1204,6 @@ export interface SearchSelect<T extends boolean = true> {
|
|||||||
title?: T;
|
title?: T;
|
||||||
priority?: T;
|
priority?: T;
|
||||||
doc?: T;
|
doc?: T;
|
||||||
docUrl?: T;
|
|
||||||
slug?: T;
|
slug?: T;
|
||||||
meta?:
|
meta?:
|
||||||
| T
|
| T
|
||||||
@@ -1264,7 +1259,7 @@ export interface PayloadMigrationsSelect<T extends boolean = true> {
|
|||||||
* via the `definition` "header".
|
* via the `definition` "header".
|
||||||
*/
|
*/
|
||||||
export interface Header {
|
export interface Header {
|
||||||
id: string;
|
id: number;
|
||||||
navItems?:
|
navItems?:
|
||||||
| {
|
| {
|
||||||
link: {
|
link: {
|
||||||
@@ -1272,7 +1267,7 @@ export interface Header {
|
|||||||
newTab?: boolean | null;
|
newTab?: boolean | null;
|
||||||
reference?: {
|
reference?: {
|
||||||
relationTo: 'pages';
|
relationTo: 'pages';
|
||||||
value: string | Page;
|
value: number | Page;
|
||||||
} | null;
|
} | null;
|
||||||
url?: string | null;
|
url?: string | null;
|
||||||
label: string;
|
label: string;
|
||||||
@@ -1288,7 +1283,7 @@ export interface Header {
|
|||||||
* via the `definition` "footer".
|
* via the `definition` "footer".
|
||||||
*/
|
*/
|
||||||
export interface Footer {
|
export interface Footer {
|
||||||
id: string;
|
id: number;
|
||||||
navItems?:
|
navItems?:
|
||||||
| {
|
| {
|
||||||
link: {
|
link: {
|
||||||
@@ -1296,7 +1291,7 @@ export interface Footer {
|
|||||||
newTab?: boolean | null;
|
newTab?: boolean | null;
|
||||||
reference?: {
|
reference?: {
|
||||||
relationTo: 'pages';
|
relationTo: 'pages';
|
||||||
value: string | Page;
|
value: number | Page;
|
||||||
} | null;
|
} | null;
|
||||||
url?: string | null;
|
url?: string | null;
|
||||||
label: string;
|
label: string;
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ export default {
|
|||||||
foreground: 'hsl(var(--accent-foreground))',
|
foreground: 'hsl(var(--accent-foreground))',
|
||||||
},
|
},
|
||||||
background: 'hsl(var(--background))',
|
background: 'hsl(var(--background))',
|
||||||
border: 'hsl(var(--border))',
|
border: 'hsla(var(--border))',
|
||||||
card: {
|
card: {
|
||||||
DEFAULT: 'hsl(var(--card))',
|
DEFAULT: 'hsl(var(--card))',
|
||||||
foreground: 'hsl(var(--card-foreground))',
|
foreground: 'hsl(var(--card-foreground))',
|
||||||
@@ -110,7 +110,7 @@ export default {
|
|||||||
'--tw-prose-body': 'var(--text)',
|
'--tw-prose-body': 'var(--text)',
|
||||||
'--tw-prose-headings': 'var(--text)',
|
'--tw-prose-headings': 'var(--text)',
|
||||||
h1: {
|
h1: {
|
||||||
fontSize: '4rem',
|
fontSize: '3.5rem',
|
||||||
fontWeight: 'normal',
|
fontWeight: 'normal',
|
||||||
marginBottom: '0.25em',
|
marginBottom: '0.25em',
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user