@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.
Files changed (51) hide show
  1. package/dist/apps/index.d.mts +30 -1
  2. package/dist/apps/index.d.ts +30 -1
  3. package/dist/apps/index.js +994 -37
  4. package/dist/apps/index.js.map +1 -1
  5. package/dist/apps/index.mjs +994 -38
  6. package/dist/apps/index.mjs.map +1 -1
  7. package/dist/audit/index.d.mts +320 -16
  8. package/dist/audit/index.d.ts +320 -16
  9. package/dist/identity/index.d.mts +1000 -22
  10. package/dist/identity/index.d.ts +1000 -22
  11. package/dist/identity/index.js +384 -8
  12. package/dist/identity/index.js.map +1 -1
  13. package/dist/identity/index.mjs +384 -8
  14. package/dist/identity/index.mjs.map +1 -1
  15. package/dist/index.d.mts +5 -2
  16. package/dist/index.d.ts +5 -2
  17. package/dist/index.js +7060 -154
  18. package/dist/index.js.map +1 -1
  19. package/dist/index.mjs +7054 -155
  20. package/dist/index.mjs.map +1 -1
  21. package/dist/integration/index.d.mts +20 -1
  22. package/dist/integration/index.d.ts +20 -1
  23. package/dist/metadata/index.d.mts +40 -2
  24. package/dist/metadata/index.d.ts +40 -2
  25. package/dist/metadata-translations/index.d.mts +20 -0
  26. package/dist/metadata-translations/index.d.ts +20 -0
  27. package/dist/metadata-translations/index.js +4777 -0
  28. package/dist/metadata-translations/index.js.map +1 -0
  29. package/dist/metadata-translations/index.mjs +4775 -0
  30. package/dist/metadata-translations/index.mjs.map +1 -0
  31. package/dist/pages/index.d.mts +68 -0
  32. package/dist/pages/index.d.ts +68 -0
  33. package/dist/pages/index.js +371 -0
  34. package/dist/pages/index.js.map +1 -0
  35. package/dist/pages/index.mjs +368 -0
  36. package/dist/pages/index.mjs.map +1 -0
  37. package/dist/plugin.d.mts +35 -0
  38. package/dist/plugin.d.ts +35 -0
  39. package/dist/plugin.js +17566 -0
  40. package/dist/plugin.js.map +1 -0
  41. package/dist/plugin.mjs +17563 -0
  42. package/dist/plugin.mjs.map +1 -0
  43. package/dist/security/index.d.mts +6376 -2094
  44. package/dist/security/index.d.ts +6376 -2094
  45. package/dist/security/index.js +383 -1
  46. package/dist/security/index.js.map +1 -1
  47. package/dist/security/index.mjs +383 -2
  48. package/dist/security/index.mjs.map +1 -1
  49. package/dist/system/index.d.mts +60 -3
  50. package/dist/system/index.d.ts +60 -3
  51. package/package.json +17 -2
@@ -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 };
@@ -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 };