@@ -149,6 +149,7 @@ export type EntityListData = {
149149 data : Array < { [ key : string ] : any } > ;
150150 filterValues : FilterValuesData ;
151151 query : EntityListQueryParamsData | null ;
152+ title : string | null ;
152153 forms : { [ key : string ] : EntityListMultiformData } | null ;
153154 meta : PaginatorMetaData | null ;
154155 pageAlert : PageAlertData | null ;
@@ -274,9 +275,7 @@ export type FormConditionalDisplayData = {
274275 fields : Array < { key : string ; values : string | boolean | Array < string > } > ;
275276} ;
276277export type FormConfigData = {
277- hasShowPage : boolean ;
278278 isSingle : boolean ;
279- breadcrumbAttribute : string | null ;
280279} ;
281280export type FormCustomFieldData = {
282281 value ?: any ;
@@ -295,6 +294,7 @@ export type FormData = {
295294 fields : { [ key : string ] : FormFieldData } ;
296295 layout : FormLayoutData ;
297296 locales : Array < string > ;
297+ title : string | null ;
298298 pageAlert : PageAlertData | null ;
299299} ;
300300export type FormDateFieldData = {
@@ -575,8 +575,6 @@ export type FormUploadFieldData = {
575575 allowedExtensions : Array < string > | null ;
576576 maxFileSize : number | null ;
577577 validationRule : Array < string > | null ;
578- storageBasePath : string | null ;
579- storageDisk : string | null ;
580578 label : string | null ;
581579 readOnly : boolean | null ;
582580 conditionalDisplay : FormConditionalDisplayData | null ;
@@ -764,6 +762,7 @@ export type ShowData = {
764762 fields : { [ key : string ] : ShowFieldData } ;
765763 layout : ShowLayoutData ;
766764 locales : Array < string > | null ;
765+ title : string | { [ locale : string ] : string } | null ;
767766 pageAlert : PageAlertData | null ;
768767} ;
769768export type ShowEntityListFieldData = {
0 commit comments