@@ -20,6 +20,10 @@ export interface Config {
20
20
kitchenSink : KitchenSink ;
21
21
} ;
22
22
}
23
+ /**
24
+ * This interface was referenced by `Config`'s JSON-Schema
25
+ * via the `definition` "users".
26
+ */
23
27
export interface User {
24
28
id : string ;
25
29
updatedAt : string ;
@@ -33,6 +37,10 @@ export interface User {
33
37
lockUntil ?: string | null ;
34
38
password : string | null ;
35
39
}
40
+ /**
41
+ * This interface was referenced by `Config`'s JSON-Schema
42
+ * via the `definition` "posts".
43
+ */
36
44
export interface Post {
37
45
id : string ;
38
46
title : string ;
@@ -51,23 +59,41 @@ export interface Post {
51
59
) [ ]
52
60
| null ;
53
61
status ?: ( 'draft' | 'published' ) | null ;
62
+ checkParagraph ?: boolean | null ;
63
+ paragraph ?:
64
+ | {
65
+ [ k : string ] : unknown ;
66
+ } [ ]
67
+ | null ;
54
68
description ?: string | null ;
55
69
updatedAt : string ;
56
70
createdAt : string ;
57
71
_status ?: ( 'draft' | 'published' ) | null ;
58
72
}
73
+ /**
74
+ * This interface was referenced by `Config`'s JSON-Schema
75
+ * via the `definition` "categories".
76
+ */
59
77
export interface Category {
60
78
id : string ;
61
79
name : string ;
62
80
updatedAt : string ;
63
81
createdAt : string ;
64
82
}
83
+ /**
84
+ * This interface was referenced by `Config`'s JSON-Schema
85
+ * via the `definition` "tags".
86
+ */
65
87
export interface Tag {
66
88
id : string ;
67
89
name : string ;
68
90
updatedAt : string ;
69
91
createdAt : string ;
70
92
}
93
+ /**
94
+ * This interface was referenced by `Config`'s JSON-Schema
95
+ * via the `definition` "media".
96
+ */
71
97
export interface Medium {
72
98
id : string ;
73
99
updatedAt : string ;
@@ -79,6 +105,10 @@ export interface Medium {
79
105
width ?: number | null ;
80
106
height ?: number | null ;
81
107
}
108
+ /**
109
+ * This interface was referenced by `Config`'s JSON-Schema
110
+ * via the `definition` "payload-preferences".
111
+ */
82
112
export interface PayloadPreference {
83
113
id : string ;
84
114
user : {
@@ -98,13 +128,21 @@ export interface PayloadPreference {
98
128
updatedAt : string ;
99
129
createdAt : string ;
100
130
}
131
+ /**
132
+ * This interface was referenced by `Config`'s JSON-Schema
133
+ * via the `definition` "payload-migrations".
134
+ */
101
135
export interface PayloadMigration {
102
136
id : string ;
103
137
name ?: string | null ;
104
138
batch ?: number | null ;
105
139
updatedAt : string ;
106
140
createdAt : string ;
107
141
}
142
+ /**
143
+ * This interface was referenced by `Config`'s JSON-Schema
144
+ * via the `definition` "kitchenSink".
145
+ */
108
146
export interface KitchenSink {
109
147
id : string ;
110
148
array : {
0 commit comments