@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.js
CHANGED
|
@@ -108,9 +108,19 @@ var SETUP_NAV_CONTRIBUTIONS = [
|
|
|
108
108
|
{ id: "nav_system_overview", type: "dashboard", label: "System Overview", dashboardName: "system_overview", icon: "activity" }
|
|
109
109
|
]
|
|
110
110
|
},
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
111
|
+
{
|
|
112
|
+
// Package ADMINISTRATION is a platform/operator concern (ADR-0084:
|
|
113
|
+
// packages are Operate, out of the builder) — so its home is Setup, not
|
|
114
|
+
// the application builder. The console binds `developer:packages` to the
|
|
115
|
+
// existing package-management page. Building/creating apps is a separate
|
|
116
|
+
// journey (Home cover → /studio); this entry is for install/inspect/admin.
|
|
117
|
+
app: "setup",
|
|
118
|
+
group: "group_apps",
|
|
119
|
+
priority: BASE_PRIORITY,
|
|
120
|
+
items: [
|
|
121
|
+
{ id: "nav_packages", type: "component", label: "Packages", componentRef: "developer:packages", icon: "package" }
|
|
122
|
+
]
|
|
123
|
+
},
|
|
114
124
|
{
|
|
115
125
|
app: "setup",
|
|
116
126
|
group: "group_people_org",
|
|
@@ -254,6 +264,19 @@ var STUDIO_APP = {
|
|
|
254
264
|
label: "Overview",
|
|
255
265
|
icon: "layout-dashboard",
|
|
256
266
|
children: [
|
|
267
|
+
{
|
|
268
|
+
// The application builder's front door (ADR-0080/0084): pick or
|
|
269
|
+
// create a writable base package, then design in the full-screen
|
|
270
|
+
// pillar builder (/studio/:packageId/:tab). The console binds
|
|
271
|
+
// `studio:builder` to the BuilderLanding page — this makes the
|
|
272
|
+
// builder reachable from login (Home → Studio → App Builder)
|
|
273
|
+
// instead of being a URL-only surface.
|
|
274
|
+
id: "nav_app_builder",
|
|
275
|
+
type: "component",
|
|
276
|
+
label: "App Builder",
|
|
277
|
+
componentRef: "studio:builder",
|
|
278
|
+
icon: "hammer"
|
|
279
|
+
},
|
|
257
280
|
{
|
|
258
281
|
id: "nav_metadata_directory",
|
|
259
282
|
type: "component",
|