@@ -140,9 +140,6 @@ export type EmbedFormData = {
140140 fields : { [ key : string ] : FormFieldData } ;
141141 layout : FormLayoutData | null ;
142142} ;
143- export type EmbeddedFieldAuthorizationsData = {
144- view : boolean ;
145- } ;
146143export type EntityListAuthorizationsData = {
147144 create : boolean ;
148145 reorder : boolean ;
@@ -726,6 +723,7 @@ export type OrderedListWidgetData = {
726723export type PageAlertData = {
727724 level : PageAlertLevel ;
728725 text : string ;
726+ sectionKey : string | null ;
729727 buttonLabel : string | null ;
730728 buttonUrl : string | null ;
731729} ;
@@ -811,7 +809,7 @@ export type ShowDashboardFieldData = {
811809 dashboardKey : string ;
812810 hiddenCommands : Array < string > ;
813811 endpointUrl : string ;
814- authorizations : EmbeddedFieldAuthorizationsData ;
812+ authorizations : ShowFieldAuthorizationsData ;
815813 label : string | null ;
816814 hiddenFilters : { [ key : string ] : any } | null ;
817815} ;
@@ -838,10 +836,13 @@ export type ShowEntityListFieldData = {
838836 showSearchField : boolean ;
839837 showCount : boolean ;
840838 endpointUrl : string ;
841- authorizations : EmbeddedFieldAuthorizationsData ;
839+ authorizations : ShowFieldAuthorizationsData ;
842840 label : string | null ;
843841 hiddenFilters : { [ key : string ] : any } | null ;
844842} ;
843+ export type ShowFieldAuthorizationsData = {
844+ view : boolean ;
845+ } ;
845846export type ShowFieldData =
846847 | ShowDashboardFieldData
847848 | ShowEntityListFieldData
0 commit comments