@objectstack/plugin-auth 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/index.js +4 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
// src/auth-plugin.ts
|
|
2
2
|
import { SystemObjectName as SystemObjectName3, SystemUserId } from "@objectstack/spec/system";
|
|
3
3
|
import {
|
|
4
|
-
SETUP_APP,
|
|
5
|
-
SETUP_NAV_CONTRIBUTIONS,
|
|
6
|
-
STUDIO_APP,
|
|
7
|
-
ACCOUNT_APP,
|
|
8
4
|
SystemOverviewDashboard,
|
|
9
5
|
SystemOverviewDatasets
|
|
10
6
|
} from "@objectstack/platform-objects/apps";
|
|
@@ -1537,15 +1533,10 @@ var AuthPlugin = class {
|
|
|
1537
1533
|
...authPluginManifestHeader,
|
|
1538
1534
|
...this.options.manifestDatasource ? { defaultDatasource: this.options.manifestDatasource } : {},
|
|
1539
1535
|
objects: authIdentityObjects,
|
|
1540
|
-
//
|
|
1541
|
-
// @objectstack/
|
|
1542
|
-
//
|
|
1543
|
-
//
|
|
1544
|
-
apps: [SETUP_APP, STUDIO_APP, ACCOUNT_APP],
|
|
1545
|
-
// ADR-0029 D7 — the Setup App is a shell of group anchors; its entries
|
|
1546
|
-
// for platform-objects-owned objects are contributed here. Capability
|
|
1547
|
-
// plugins (e.g. plugin-webhooks) contribute their own slots' entries.
|
|
1548
|
-
navigationContributions: SETUP_NAV_CONTRIBUTIONS,
|
|
1536
|
+
// ADR-0048 — Setup/Studio/Account apps (and the Setup nav contributions)
|
|
1537
|
+
// moved to their own one-app packages (@objectstack/{setup,studio,account}),
|
|
1538
|
+
// each registering under its own package id so /apps/<packageId> resolves
|
|
1539
|
+
// unambiguously. plugin-auth keeps only the auth objects + their pages.
|
|
1549
1540
|
// Slotted record-detail pages for system objects — currently
|
|
1550
1541
|
// sys_organization gets a Members / Invitations / Teams tab strip
|
|
1551
1542
|
// (see SysOrganizationDetailPage for the rationale and the
|