@objectstack/platform-objects 6.8.1 → 7.0.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.d.mts +30 -1
- package/dist/apps/index.d.ts +30 -1
- package/dist/apps/index.js +994 -37
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +994 -38
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +320 -16
- package/dist/audit/index.d.ts +320 -16
- package/dist/identity/index.d.mts +1000 -22
- package/dist/identity/index.d.ts +1000 -22
- package/dist/identity/index.js +384 -8
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +384 -8
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +7060 -154
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7054 -155
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +20 -1
- package/dist/integration/index.d.ts +20 -1
- package/dist/metadata/index.d.mts +40 -2
- package/dist/metadata/index.d.ts +40 -2
- package/dist/metadata-translations/index.d.mts +20 -0
- package/dist/metadata-translations/index.d.ts +20 -0
- package/dist/metadata-translations/index.js +4777 -0
- package/dist/metadata-translations/index.js.map +1 -0
- package/dist/metadata-translations/index.mjs +4775 -0
- package/dist/metadata-translations/index.mjs.map +1 -0
- package/dist/pages/index.d.mts +68 -0
- package/dist/pages/index.d.ts +68 -0
- package/dist/pages/index.js +371 -0
- package/dist/pages/index.js.map +1 -0
- package/dist/pages/index.mjs +368 -0
- package/dist/pages/index.mjs.map +1 -0
- package/dist/plugin.d.mts +35 -0
- package/dist/plugin.d.ts +35 -0
- package/dist/plugin.js +17566 -0
- package/dist/plugin.js.map +1 -0
- package/dist/plugin.mjs +17563 -0
- package/dist/plugin.mjs.map +1 -0
- package/dist/security/index.d.mts +6376 -2094
- package/dist/security/index.d.ts +6376 -2094
- package/dist/security/index.js +383 -1
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +383 -2
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +60 -3
- package/dist/system/index.d.ts +60 -3
- package/package.json +17 -2
package/dist/apps/index.d.mts
CHANGED
|
@@ -54,6 +54,35 @@ declare const SETUP_APP: App;
|
|
|
54
54
|
|
|
55
55
|
declare const STUDIO_APP: App;
|
|
56
56
|
|
|
57
|
+
/**
|
|
58
|
+
* Account App — personal self-service surface for the current user.
|
|
59
|
+
*
|
|
60
|
+
* Hidden from the App Switcher (`hidden: true`) and surfaced by the
|
|
61
|
+
* shell through the avatar / user dropdown instead — the same pattern
|
|
62
|
+
* GitHub, Google, and Salesforce use for personal settings.
|
|
63
|
+
*
|
|
64
|
+
* Replaces the legacy standalone `apps/account` SPA (M10.31): rather
|
|
65
|
+
* than ship a second shell just for security settings, we expose the
|
|
66
|
+
* same `sys_*` identity objects here and rely on RLS to scope rows to
|
|
67
|
+
* the caller. Crucially this app declares **no** `requiredPermissions`,
|
|
68
|
+
* so every authenticated user can reach it — unlike Setup which
|
|
69
|
+
* requires `setup.access` and therefore excludes the default
|
|
70
|
+
* `member_default` permission set.
|
|
71
|
+
*
|
|
72
|
+
* The C-tier `resultDialog` actions previously shipped on these objects
|
|
73
|
+
* make the experience equivalent to the old account SPA:
|
|
74
|
+
* - `sys_two_factor.enable_two_factor` — QR + backup codes
|
|
75
|
+
* - `sys_oauth_application.create` — one-time client_secret reveal
|
|
76
|
+
* - `sys_account.link_social` — OAuth redirect URL
|
|
77
|
+
*
|
|
78
|
+
* The same objects also appear (admin-only) in `setup.app.ts`'s
|
|
79
|
+
* Advanced group, gated by `manage_platform_settings`, for tenant-wide
|
|
80
|
+
* inspection. The duplication is intentional: end users get a friendly
|
|
81
|
+
* self-service view, platform admins get the browsable tables.
|
|
82
|
+
*/
|
|
83
|
+
|
|
84
|
+
declare const ACCOUNT_APP: App;
|
|
85
|
+
|
|
57
86
|
/**
|
|
58
87
|
* System Overview Dashboard
|
|
59
88
|
*
|
|
@@ -298,4 +327,4 @@ declare const jaJP: TranslationData;
|
|
|
298
327
|
*/
|
|
299
328
|
declare const esES: TranslationData;
|
|
300
329
|
|
|
301
|
-
export { SETUP_APP, STUDIO_APP, SetupAppTranslations, SystemOverviewDashboard, en, esES, jaJP, zhCN };
|
|
330
|
+
export { ACCOUNT_APP, SETUP_APP, STUDIO_APP, SetupAppTranslations, SystemOverviewDashboard, en, esES, jaJP, zhCN };
|
package/dist/apps/index.d.ts
CHANGED
|
@@ -54,6 +54,35 @@ declare const SETUP_APP: App;
|
|
|
54
54
|
|
|
55
55
|
declare const STUDIO_APP: App;
|
|
56
56
|
|
|
57
|
+
/**
|
|
58
|
+
* Account App — personal self-service surface for the current user.
|
|
59
|
+
*
|
|
60
|
+
* Hidden from the App Switcher (`hidden: true`) and surfaced by the
|
|
61
|
+
* shell through the avatar / user dropdown instead — the same pattern
|
|
62
|
+
* GitHub, Google, and Salesforce use for personal settings.
|
|
63
|
+
*
|
|
64
|
+
* Replaces the legacy standalone `apps/account` SPA (M10.31): rather
|
|
65
|
+
* than ship a second shell just for security settings, we expose the
|
|
66
|
+
* same `sys_*` identity objects here and rely on RLS to scope rows to
|
|
67
|
+
* the caller. Crucially this app declares **no** `requiredPermissions`,
|
|
68
|
+
* so every authenticated user can reach it — unlike Setup which
|
|
69
|
+
* requires `setup.access` and therefore excludes the default
|
|
70
|
+
* `member_default` permission set.
|
|
71
|
+
*
|
|
72
|
+
* The C-tier `resultDialog` actions previously shipped on these objects
|
|
73
|
+
* make the experience equivalent to the old account SPA:
|
|
74
|
+
* - `sys_two_factor.enable_two_factor` — QR + backup codes
|
|
75
|
+
* - `sys_oauth_application.create` — one-time client_secret reveal
|
|
76
|
+
* - `sys_account.link_social` — OAuth redirect URL
|
|
77
|
+
*
|
|
78
|
+
* The same objects also appear (admin-only) in `setup.app.ts`'s
|
|
79
|
+
* Advanced group, gated by `manage_platform_settings`, for tenant-wide
|
|
80
|
+
* inspection. The duplication is intentional: end users get a friendly
|
|
81
|
+
* self-service view, platform admins get the browsable tables.
|
|
82
|
+
*/
|
|
83
|
+
|
|
84
|
+
declare const ACCOUNT_APP: App;
|
|
85
|
+
|
|
57
86
|
/**
|
|
58
87
|
* System Overview Dashboard
|
|
59
88
|
*
|
|
@@ -298,4 +327,4 @@ declare const jaJP: TranslationData;
|
|
|
298
327
|
*/
|
|
299
328
|
declare const esES: TranslationData;
|
|
300
329
|
|
|
301
|
-
export { SETUP_APP, STUDIO_APP, SetupAppTranslations, SystemOverviewDashboard, en, esES, jaJP, zhCN };
|
|
330
|
+
export { ACCOUNT_APP, SETUP_APP, STUDIO_APP, SetupAppTranslations, SystemOverviewDashboard, en, esES, jaJP, zhCN };
|