@objectstack/platform-objects 7.2.1 → 7.3.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 +12 -0
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +12 -0
- package/dist/apps/index.mjs.map +1 -1
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/apps/index.mjs
CHANGED
|
@@ -241,6 +241,11 @@ var STUDIO_APP = {
|
|
|
241
241
|
icon: "hammer",
|
|
242
242
|
active: true,
|
|
243
243
|
isDefault: false,
|
|
244
|
+
// Studio is the metadata-authoring host, so its ambient copilot is
|
|
245
|
+
// pinned to the schema-architect agent. Resolved by the ambient chat
|
|
246
|
+
// endpoint via `app.defaultAgent` — no UI-side `?agent=` override
|
|
247
|
+
// needed. Every other app falls back to the data-query agent.
|
|
248
|
+
defaultAgent: "metadata_assistant",
|
|
244
249
|
branding: {
|
|
245
250
|
primaryColor: "#6366f1"
|
|
246
251
|
// Indigo-500 — distinct from Setup's slate
|
|
@@ -284,6 +289,13 @@ var STUDIO_APP = {
|
|
|
284
289
|
label: "All Metadata Types",
|
|
285
290
|
componentRef: "metadata:directory",
|
|
286
291
|
icon: "layers"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
id: "nav_packages",
|
|
295
|
+
type: "component",
|
|
296
|
+
label: "Packages",
|
|
297
|
+
componentRef: "developer:packages",
|
|
298
|
+
icon: "package"
|
|
287
299
|
}
|
|
288
300
|
]
|
|
289
301
|
},
|