templates: bump for v3.9.0 (#10060)

🤖 Automated bump of templates for v3.9.0

Triggered by user: @denolfe

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Elliot DeNolf
2024-12-18 16:20:32 -05:00
committed by GitHub
parent d0d7b51ed5
commit a3457af36d
11 changed files with 105 additions and 90 deletions

View File

@@ -1,5 +1,5 @@
{
"id": "38e49236-d2dd-4a63-946e-4800e2e3e9d8",
"id": "dbc4300b-b1bd-4039-8afb-795ee84590c9",
"prevId": "00000000-0000-0000-0000-000000000000",
"version": "7",
"dialect": "postgresql",

View File

@@ -1,9 +1,9 @@
import * as migration_20241217_022224_initial from './20241217_022224_initial'
import * as migration_20241218_210714_initial from './20241218_210714_initial'
export const migrations = [
{
up: migration_20241217_022224_initial.up,
down: migration_20241217_022224_initial.down,
name: '20241217_022224_initial',
up: migration_20241218_210714_initial.up,
down: migration_20241218_210714_initial.down,
name: '20241218_210714_initial',
},
]

View File

@@ -1,2 +1,2 @@
POSTGRES_URL=mongodb://127.0.0.1/payload-template-blank-3-0
POSTGRES_URL=postgresql://127.0.0.1:5432/payloadtests
PAYLOAD_SECRET=YOUR_SECRET_HERE

View File

@@ -1,5 +1,5 @@
{
"id": "8b67dbb0-b807-4c8a-9d08-cbcedb4651bf",
"id": "3f310079-8a63-4e15-a2d8-42eafd3aa95c",
"prevId": "00000000-0000-0000-0000-000000000000",
"version": "7",
"dialect": "postgresql",

View File

@@ -1,9 +1,9 @@
import * as migration_20241217_022200_initial from './20241217_022200_initial'
import * as migration_20241218_210648_initial from './20241218_210648_initial'
export const migrations = [
{
up: migration_20241217_022200_initial.up,
down: migration_20241217_022200_initial.down,
name: '20241217_022200_initial',
up: migration_20241218_210648_initial.up,
down: migration_20241218_210648_initial.down,
name: '20241218_210648_initial',
},
]

View File

@@ -1,5 +1,5 @@
{
"id": "89be6945-b93b-4f4e-a970-5a021f6b9652",
"id": "d711bb29-c2e9-4121-b0fa-650889f5a7bd",
"prevId": "00000000-0000-0000-0000-000000000000",
"version": "7",
"dialect": "postgresql",

View File

@@ -1,9 +1,9 @@
import * as migration_20241217_022214_initial from './20241217_022214_initial'
import * as migration_20241218_210703_initial from './20241218_210703_initial'
export const migrations = [
{
up: migration_20241217_022214_initial.up,
down: migration_20241217_022214_initial.down,
name: '20241217_022214_initial',
up: migration_20241218_210703_initial.up,
down: migration_20241218_210703_initial.down,
name: '20241218_210703_initial',
},
]

View File

@@ -805,80 +805,11 @@ export interface PagesSelect<T extends boolean = true> {
layout?:
| T
| {
cta?:
| T
| {
richText?: T;
links?:
| T
| {
link?:
| T
| {
type?: T;
newTab?: T;
reference?: T;
url?: T;
label?: T;
appearance?: T;
};
id?: T;
};
id?: T;
blockName?: T;
};
content?:
| T
| {
columns?:
| T
| {
size?: T;
richText?: T;
enableLink?: T;
link?:
| T
| {
type?: T;
newTab?: T;
reference?: T;
url?: T;
label?: T;
appearance?: T;
};
id?: T;
};
id?: T;
blockName?: T;
};
mediaBlock?:
| T
| {
media?: T;
id?: T;
blockName?: T;
};
archive?:
| T
| {
introContent?: T;
populateBy?: T;
relationTo?: T;
categories?: T;
limit?: T;
selectedDocs?: T;
id?: T;
blockName?: T;
};
formBlock?:
| T
| {
form?: T;
enableIntro?: T;
introContent?: T;
id?: T;
blockName?: T;
};
cta?: T | CallToActionBlockSelect<T>;
content?: T | ContentBlockSelect<T>;
mediaBlock?: T | MediaBlockSelect<T>;
archive?: T | ArchiveBlockSelect<T>;
formBlock?: T | FormBlockSelect<T>;
};
meta?:
| T
@@ -894,6 +825,90 @@ export interface PagesSelect<T extends boolean = true> {
createdAt?: T;
_status?: T;
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "CallToActionBlock_select".
*/
export interface CallToActionBlockSelect<T extends boolean = true> {
richText?: T;
links?:
| T
| {
link?:
| T
| {
type?: T;
newTab?: T;
reference?: T;
url?: T;
label?: T;
appearance?: T;
};
id?: T;
};
id?: T;
blockName?: T;
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "ContentBlock_select".
*/
export interface ContentBlockSelect<T extends boolean = true> {
columns?:
| T
| {
size?: T;
richText?: T;
enableLink?: T;
link?:
| T
| {
type?: T;
newTab?: T;
reference?: T;
url?: T;
label?: T;
appearance?: T;
};
id?: T;
};
id?: T;
blockName?: T;
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "MediaBlock_select".
*/
export interface MediaBlockSelect<T extends boolean = true> {
media?: T;
id?: T;
blockName?: T;
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "ArchiveBlock_select".
*/
export interface ArchiveBlockSelect<T extends boolean = true> {
introContent?: T;
populateBy?: T;
relationTo?: T;
categories?: T;
limit?: T;
selectedDocs?: T;
id?: T;
blockName?: T;
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "FormBlock_select".
*/
export interface FormBlockSelect<T extends boolean = true> {
form?: T;
enableIntro?: T;
introContent?: T;
id?: T;
blockName?: T;
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "posts_select".