@objectstack/platform-objects 6.8.0 → 6.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 +33 -0
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +33 -0
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +128 -0
- package/dist/audit/index.d.ts +128 -0
- package/dist/identity/index.d.mts +160 -0
- package/dist/identity/index.d.ts +160 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +228 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +228 -1
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +8 -0
- package/dist/integration/index.d.ts +8 -0
- package/dist/metadata/index.d.mts +16 -0
- package/dist/metadata/index.d.ts +16 -0
- package/dist/security/index.d.mts +3681 -1
- package/dist/security/index.d.ts +3681 -1
- package/dist/security/index.js +195 -0
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +195 -1
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +24 -0
- package/dist/system/index.d.ts +24 -0
- package/package.json +2 -2
package/dist/apps/index.mjs
CHANGED
|
@@ -397,6 +397,39 @@ var STUDIO_APP = {
|
|
|
397
397
|
}
|
|
398
398
|
]
|
|
399
399
|
},
|
|
400
|
+
{
|
|
401
|
+
// Developer — first-party developer tooling surfaces hosted by the
|
|
402
|
+
// console (API console, flow run inspector, public forms registry).
|
|
403
|
+
// Registered as built-in components in the console's
|
|
404
|
+
// ComponentRegistry under the `developer:*` namespace.
|
|
405
|
+
id: "group_developer",
|
|
406
|
+
type: "group",
|
|
407
|
+
label: "Developer",
|
|
408
|
+
icon: "terminal",
|
|
409
|
+
children: [
|
|
410
|
+
{
|
|
411
|
+
id: "nav_api_console",
|
|
412
|
+
type: "component",
|
|
413
|
+
label: "API Console",
|
|
414
|
+
componentRef: "developer:api-console",
|
|
415
|
+
icon: "terminal"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
id: "nav_flow_runs",
|
|
419
|
+
type: "component",
|
|
420
|
+
label: "Flow Runs",
|
|
421
|
+
componentRef: "developer:flow-runs",
|
|
422
|
+
icon: "activity"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
id: "nav_public_forms",
|
|
426
|
+
type: "component",
|
|
427
|
+
label: "Public Forms",
|
|
428
|
+
componentRef: "developer:public-forms",
|
|
429
|
+
icon: "file-text"
|
|
430
|
+
}
|
|
431
|
+
]
|
|
432
|
+
},
|
|
400
433
|
{
|
|
401
434
|
// Integration — outbound shapes: datasources, email templates,
|
|
402
435
|
// routes/functions/services live here too once they have CRUD
|