@objectstack/platform-objects 9.2.0 → 9.4.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 +22 -9
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +22 -9
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +306 -9
- package/dist/audit/index.d.ts +306 -9
- package/dist/identity/index.d.mts +680 -20
- package/dist/identity/index.d.ts +680 -20
- package/dist/index.js +22 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -9
- package/dist/index.mjs.map +1 -1
- package/dist/system/index.d.mts +102 -3
- package/dist/system/index.d.ts +102 -3
- package/package.json +3 -3
package/dist/apps/index.mjs
CHANGED
|
@@ -106,15 +106,9 @@ 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
|
-
|
|
112
|
-
priority: BASE_PRIORITY,
|
|
113
|
-
items: [
|
|
114
|
-
{ id: "nav_marketplace_browse", type: "url", label: "Browse Marketplace", url: "/apps/setup/system/marketplace", icon: "store" },
|
|
115
|
-
{ id: "nav_marketplace_installed", type: "url", label: "Installed Apps", url: "/apps/setup/system/marketplace/installed", icon: "package-check", requiresObject: "sys_package_installation" }
|
|
116
|
-
]
|
|
117
|
-
},
|
|
109
|
+
// No group_apps contribution left here — both marketplace entries moved
|
|
110
|
+
// out (see header note); the group_apps shell anchor in setup.app.ts is
|
|
111
|
+
// filled entirely by capability plugins now.
|
|
118
112
|
{
|
|
119
113
|
app: "setup",
|
|
120
114
|
group: "group_people_org",
|
|
@@ -193,6 +187,15 @@ var STUDIO_APP = {
|
|
|
193
187
|
icon: "hammer",
|
|
194
188
|
active: true,
|
|
195
189
|
isDefault: false,
|
|
190
|
+
// ADR-0010 §3.7 — author-facing protection block. Loader translates
|
|
191
|
+
// this into the `_lock` envelope at registration time. Same rationale
|
|
192
|
+
// as Setup: tenant overlay edits to the metadata workbench can lock
|
|
193
|
+
// implementers out of the very surface used to repair metadata.
|
|
194
|
+
protection: {
|
|
195
|
+
lock: "full",
|
|
196
|
+
reason: "Core developer workbench shipped by @objectstack/platform-objects \u2014 see ADR-0010.",
|
|
197
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
198
|
+
},
|
|
196
199
|
// Studio is the metadata-authoring host, so its ambient copilot is
|
|
197
200
|
// pinned to the schema-architect agent. Resolved by the ambient chat
|
|
198
201
|
// endpoint via `app.defaultAgent` — no UI-side `?agent=` override
|
|
@@ -484,6 +487,16 @@ var ACCOUNT_APP = {
|
|
|
484
487
|
isDefault: false,
|
|
485
488
|
// Surface via the avatar dropdown, not the App Switcher — see App.hidden.
|
|
486
489
|
hidden: true,
|
|
490
|
+
// ADR-0010 §3.7 — author-facing protection block. Loader translates
|
|
491
|
+
// this into the `_lock` envelope at registration time. Every
|
|
492
|
+
// authenticated user depends on this app to manage their own
|
|
493
|
+
// sessions / API keys / linked accounts, so a tenant overlay that
|
|
494
|
+
// breaks it is a security-relevant outage — same class as Setup.
|
|
495
|
+
protection: {
|
|
496
|
+
lock: "full",
|
|
497
|
+
reason: "Core self-service security UI shipped by @objectstack/platform-objects \u2014 see ADR-0010.",
|
|
498
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
499
|
+
},
|
|
487
500
|
branding: {
|
|
488
501
|
primaryColor: "#0ea5e9"
|
|
489
502
|
// sky-500 — distinct from Setup's slate
|