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