File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import { DatasetSchema } from './data/dataset.zod';
1515
1616// UI Protocol
1717import { AppSchema } from './ui/app.zod' ;
18+ import { PortalSchema } from './ui/portal.zod' ;
1819import { ViewSchema } from './ui/view.zod' ;
1920import { PageSchema } from './ui/page.zod' ;
2021import { DashboardSchema } from './ui/dashboard.zod' ;
@@ -198,6 +199,7 @@ export const ObjectStackDefinitionSchema = lazySchema(() => z.object({
198199 * Apps, Menus, Pages, and Visualizations.
199200 */
200201 apps : z . array ( AppSchema ) . optional ( ) . describe ( 'Applications' ) ,
202+ portals : z . array ( PortalSchema ) . optional ( ) . describe ( 'External-user UI portals (projections of apps/views/actions)' ) ,
201203 views : z . array ( ViewSchema ) . optional ( ) . describe ( 'List Views' ) ,
202204 pages : z . array ( PageSchema ) . optional ( ) . describe ( 'Custom Pages' ) ,
203205 dashboards : z . array ( DashboardSchema ) . optional ( ) . describe ( 'Dashboards' ) ,
You can’t perform that action at this time.
0 commit comments