@@ -107,6 +107,7 @@ export interface Config {
107107 'array-fields' : ArrayField ;
108108 OnDemandForm : OnDemandForm ;
109109 OnDemandOutsideForm : OnDemandOutsideForm ;
110+ 'lexical-custom-cell' : LexicalCustomCell ;
110111 'payload-kv' : PayloadKv ;
111112 users : User ;
112113 'payload-locked-documents' : PayloadLockedDocument ;
@@ -136,6 +137,7 @@ export interface Config {
136137 'array-fields' : ArrayFieldsSelect < false > | ArrayFieldsSelect < true > ;
137138 OnDemandForm : OnDemandFormSelect < false > | OnDemandFormSelect < true > ;
138139 OnDemandOutsideForm : OnDemandOutsideFormSelect < false > | OnDemandOutsideFormSelect < true > ;
140+ 'lexical-custom-cell' : LexicalCustomCellSelect < false > | LexicalCustomCellSelect < true > ;
139141 'payload-kv' : PayloadKvSelect < false > | PayloadKvSelect < true > ;
140142 users : UsersSelect < false > | UsersSelect < true > ;
141143 'payload-locked-documents' : PayloadLockedDocumentsSelect < false > | PayloadLockedDocumentsSelect < true > ;
@@ -1086,6 +1088,31 @@ export interface OnDemandOutsideForm {
10861088 updatedAt : string ;
10871089 createdAt : string ;
10881090}
1091+ /**
1092+ * This interface was referenced by `Config`'s JSON-Schema
1093+ * via the `definition` "lexical-custom-cell".
1094+ */
1095+ export interface LexicalCustomCell {
1096+ id : string ;
1097+ title : string ;
1098+ richTextField ?: {
1099+ root : {
1100+ type : string ;
1101+ children : {
1102+ type : any ;
1103+ version : number ;
1104+ [ k : string ] : unknown ;
1105+ } [ ] ;
1106+ direction : ( 'ltr' | 'rtl' ) | null ;
1107+ format : 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '' ;
1108+ indent : number ;
1109+ version : number ;
1110+ } ;
1111+ [ k : string ] : unknown ;
1112+ } | null ;
1113+ updatedAt : string ;
1114+ createdAt : string ;
1115+ }
10891116/**
10901117 * This interface was referenced by `Config`'s JSON-Schema
10911118 * via the `definition` "payload-kv".
@@ -1219,6 +1246,10 @@ export interface PayloadLockedDocument {
12191246 relationTo : 'OnDemandOutsideForm' ;
12201247 value : string | OnDemandOutsideForm ;
12211248 } | null )
1249+ | ( {
1250+ relationTo : 'lexical-custom-cell' ;
1251+ value : string | LexicalCustomCell ;
1252+ } | null )
12221253 | ( {
12231254 relationTo : 'users' ;
12241255 value : string | User ;
@@ -1676,6 +1707,16 @@ export interface OnDemandOutsideFormSelect<T extends boolean = true> {
16761707 updatedAt ?: T ;
16771708 createdAt ?: T ;
16781709}
1710+ /**
1711+ * This interface was referenced by `Config`'s JSON-Schema
1712+ * via the `definition` "lexical-custom-cell_select".
1713+ */
1714+ export interface LexicalCustomCellSelect < T extends boolean = true > {
1715+ title ?: T ;
1716+ richTextField ?: T ;
1717+ updatedAt ?: T ;
1718+ createdAt ?: T ;
1719+ }
16791720/**
16801721 * This interface was referenced by `Config`'s JSON-Schema
16811722 * via the `definition` "payload-kv_select".
0 commit comments