@objectstack/platform-objects 11.6.0 → 11.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apps/index.js +26 -3
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +26 -3
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +70 -250
- package/dist/audit/index.d.ts +70 -250
- package/dist/audit/index.js +10 -10
- package/dist/audit/index.js.map +1 -1
- package/dist/audit/index.mjs +10 -10
- package/dist/audit/index.mjs.map +1 -1
- package/dist/identity/index.d.mts +154 -550
- package/dist/identity/index.d.ts +154 -550
- package/dist/identity/index.js +22 -22
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +22 -22
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.js +61 -38
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +61 -38
- package/dist/index.mjs.map +1 -1
- package/dist/system/index.d.mts +21 -75
- package/dist/system/index.d.ts +21 -75
- package/dist/system/index.js +3 -3
- package/dist/system/index.js.map +1 -1
- package/dist/system/index.mjs +3 -3
- package/dist/system/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/apps/index.mjs
CHANGED
|
@@ -106,9 +106,19 @@ var SETUP_NAV_CONTRIBUTIONS = [
|
|
|
106
106
|
{ id: "nav_system_overview", type: "dashboard", label: "System Overview", dashboardName: "system_overview", icon: "activity" }
|
|
107
107
|
]
|
|
108
108
|
},
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
109
|
+
{
|
|
110
|
+
// Package ADMINISTRATION is a platform/operator concern (ADR-0084:
|
|
111
|
+
// packages are Operate, out of the builder) — so its home is Setup, not
|
|
112
|
+
// the application builder. The console binds `developer:packages` to the
|
|
113
|
+
// existing package-management page. Building/creating apps is a separate
|
|
114
|
+
// journey (Home cover → /studio); this entry is for install/inspect/admin.
|
|
115
|
+
app: "setup",
|
|
116
|
+
group: "group_apps",
|
|
117
|
+
priority: BASE_PRIORITY,
|
|
118
|
+
items: [
|
|
119
|
+
{ id: "nav_packages", type: "component", label: "Packages", componentRef: "developer:packages", icon: "package" }
|
|
120
|
+
]
|
|
121
|
+
},
|
|
112
122
|
{
|
|
113
123
|
app: "setup",
|
|
114
124
|
group: "group_people_org",
|
|
@@ -252,6 +262,19 @@ var STUDIO_APP = {
|
|
|
252
262
|
label: "Overview",
|
|
253
263
|
icon: "layout-dashboard",
|
|
254
264
|
children: [
|
|
265
|
+
{
|
|
266
|
+
// The application builder's front door (ADR-0080/0084): pick or
|
|
267
|
+
// create a writable base package, then design in the full-screen
|
|
268
|
+
// pillar builder (/studio/:packageId/:tab). The console binds
|
|
269
|
+
// `studio:builder` to the BuilderLanding page — this makes the
|
|
270
|
+
// builder reachable from login (Home → Studio → App Builder)
|
|
271
|
+
// instead of being a URL-only surface.
|
|
272
|
+
id: "nav_app_builder",
|
|
273
|
+
type: "component",
|
|
274
|
+
label: "App Builder",
|
|
275
|
+
componentRef: "studio:builder",
|
|
276
|
+
icon: "hammer"
|
|
277
|
+
},
|
|
255
278
|
{
|
|
256
279
|
id: "nav_metadata_directory",
|
|
257
280
|
type: "component",
|