* test: removes unnecessary lines * fix: do not error if row field has no fields (#5433) * ci(deps): update turborepo * ci: release script updates * chore: lint all json/yml, add to lint-staged * chore: lint mdx in lint-staged * chore: enable e2e live preview (#5444) * chore: update workflow file --------- Co-authored-by: Alessio Gravili <70709113+AlessioGr@users.noreply.github.com> Co-authored-by: Elliot DeNolf <denolfe@gmail.com> Co-authored-by: Paul <paul@payloadcms.com>
10 lines
163 B
TypeScript
10 lines
163 B
TypeScript
export interface Page {
|
|
id: string
|
|
parent?: string
|
|
slug: string
|
|
_status?: 'draft' | 'published'
|
|
title?: string
|
|
updatedAt: string
|
|
createdAt: string
|
|
}
|