@objectstack/platform-objects 8.0.1 → 9.0.1

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.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import { ObjectSchema, Field } from '@objectstack/spec/data';
2
2
  export { SysMetadata, SysMetadataAuditObject, SysMetadataHistoryObject, SysMetadataObject, SysViewDefinitionObject } from '@objectstack/metadata-core';
3
- import { Dashboard } from '@objectstack/spec/ui';
3
+ import { Dashboard, defineDataset } from '@objectstack/spec/ui';
4
4
 
5
5
  // src/identity/sys-user.object.ts
6
6
  var SysUser = ObjectSchema.create({
@@ -4599,6 +4599,7 @@ var SETUP_NAV_CONTRIBUTIONS = [
4599
4599
  items: [
4600
4600
  { id: "nav_settings_hub", type: "url", label: "All Settings", url: "/apps/setup/system/settings", icon: "settings-2", requiredPermissions: ["manage_platform_settings"] },
4601
4601
  { id: "nav_settings_branding", type: "url", label: "Branding", url: "/apps/setup/system/settings/branding", icon: "palette" },
4602
+ { id: "nav_settings_auth", type: "url", label: "Authentication", url: "/apps/setup/system/settings/auth", icon: "lock-keyhole", requiredPermissions: ["manage_platform_settings"] },
4602
4603
  { id: "nav_settings_mail", type: "url", label: "Email", url: "/apps/setup/system/settings/mail", icon: "mail", requiredPermissions: ["manage_platform_settings"] },
4603
4604
  { id: "nav_settings_storage", type: "url", label: "File Storage", url: "/apps/setup/system/settings/storage", icon: "hard-drive", requiredPermissions: ["manage_platform_settings"] },
4604
4605
  { id: "nav_settings_ai", type: "url", label: "AI & Embedder", url: "/apps/setup/system/settings/ai", icon: "sparkles", requiredPermissions: ["manage_platform_settings"] },
@@ -4625,7 +4626,6 @@ var SETUP_NAV_CONTRIBUTIONS = [
4625
4626
  { id: "nav_oauth_apps", type: "object", label: "OAuth Applications", objectName: "sys_oauth_application", icon: "app-window" },
4626
4627
  { id: "nav_jwks", type: "object", label: "Signing Keys (JWKS)", objectName: "sys_jwks", icon: "key-round" },
4627
4628
  { id: "nav_verifications", type: "object", label: "Verifications", objectName: "sys_verification", icon: "mail-check" },
4628
- { id: "nav_two_factor", type: "object", label: "Two-Factor", objectName: "sys_two_factor", icon: "smartphone" },
4629
4629
  { id: "nav_device_codes", type: "object", label: "Device Codes", objectName: "sys_device_code", icon: "qr-code" },
4630
4630
  { id: "nav_accounts", type: "object", label: "Identity Links", objectName: "sys_account", icon: "link-2" },
4631
4631
  { id: "nav_user_preferences", type: "object", label: "User Preferences", objectName: "sys_user_preference", icon: "sliders" }
@@ -4937,8 +4937,8 @@ var ACCOUNT_APP = {
4937
4937
  // sky-500 — distinct from Setup's slate
4938
4938
  },
4939
4939
  // No `requiredPermissions`: any authenticated user must be able to
4940
- // manage their own 2FA / linked accounts / personal OAuth apps. RLS on
4941
- // each object scopes rows to the caller.
4940
+ // manage their own linked accounts / personal OAuth apps. RLS on each
4941
+ // object scopes rows to the caller.
4942
4942
  navigation: [
4943
4943
  // Profile is the canonical landing — a hand-written React settings card
4944
4944
  // (Vercel/Linear style) registered in the Console SPA as
@@ -5005,14 +5005,6 @@ var ACCOUNT_APP = {
5005
5005
  icon: "shield",
5006
5006
  defaultOpen: true,
5007
5007
  children: [
5008
- {
5009
- id: "nav_account_two_factor",
5010
- type: "object",
5011
- label: "Two-Factor Authentication",
5012
- objectName: "sys_two_factor",
5013
- icon: "smartphone",
5014
- requiresObject: "sys_two_factor"
5015
- },
5016
5008
  {
5017
5009
  id: "nav_account_linked",
5018
5010
  type: "object",
@@ -5080,45 +5072,45 @@ var SystemOverviewDashboard = Dashboard.create({
5080
5072
  // ── Row 1: Platform KPIs ────────────────────────────────────────
5081
5073
  {
5082
5074
  id: "widget_total_users",
5075
+ dataset: "sys_user_metrics",
5076
+ values: ["user_count"],
5083
5077
  title: "Total Users",
5084
5078
  type: "metric",
5085
- object: "sys_user",
5086
5079
  layout: { x: 0, y: 0, w: 3, h: 2 },
5087
- aggregate: "count",
5088
5080
  colorVariant: "teal",
5089
5081
  description: "Total registered users in the system"
5090
5082
  },
5091
5083
  {
5092
5084
  id: "widget_organizations",
5085
+ dataset: "sys_organization_metrics",
5086
+ values: ["org_count"],
5093
5087
  title: "Organizations",
5094
5088
  type: "metric",
5095
- object: "sys_organization",
5096
5089
  layout: { x: 3, y: 0, w: 3, h: 2 },
5097
- aggregate: "count",
5098
5090
  colorVariant: "orange",
5099
5091
  description: "Total organizations on the platform"
5100
5092
  },
5101
5093
  {
5102
5094
  id: "widget_active_sessions",
5095
+ dataset: "sys_session_metrics",
5096
+ values: ["session_count"],
5103
5097
  title: "Active Sessions",
5104
5098
  type: "metric",
5105
- object: "sys_session",
5106
5099
  layout: { x: 6, y: 0, w: 3, h: 2 },
5107
- aggregate: "count",
5108
5100
  colorVariant: "blue",
5109
5101
  description: "Number of currently active user sessions"
5110
5102
  },
5111
5103
  {
5112
5104
  id: "widget_packages_installed",
5105
+ dataset: "sys_package_installation_metrics",
5106
+ values: ["package_count"],
5113
5107
  title: "Packages Installed",
5114
5108
  type: "metric",
5115
- object: "sys_package_installation",
5116
5109
  // Cloud-only object — only registered when service-tenant is loaded.
5117
5110
  // Hide this widget gracefully in single-environment runtimes.
5118
5111
  requiresObject: "sys_package_installation",
5119
5112
  layout: { x: 9, y: 0, w: 3, h: 2 },
5120
5113
  filter: { status: "installed" },
5121
- aggregate: "count",
5122
5114
  colorVariant: "success",
5123
5115
  description: "Active package installations across projects"
5124
5116
  },
@@ -5129,34 +5121,34 @@ var SystemOverviewDashboard = Dashboard.create({
5129
5121
  // need a richer enum or a separate detail field first.
5130
5122
  {
5131
5123
  id: "widget_login_events",
5124
+ dataset: "sys_audit_log_metrics",
5125
+ values: ["event_count"],
5132
5126
  title: "Login Events",
5133
5127
  type: "metric",
5134
- object: "sys_audit_log",
5135
5128
  layout: { x: 0, y: 2, w: 4, h: 2 },
5136
5129
  filter: { action: "login" },
5137
- aggregate: "count",
5138
5130
  colorVariant: "blue",
5139
5131
  description: "Authentication events recorded by the audit log"
5140
5132
  },
5141
5133
  {
5142
5134
  id: "widget_permission_changes",
5135
+ dataset: "sys_audit_log_metrics",
5136
+ values: ["event_count"],
5143
5137
  title: "Permission Changes",
5144
5138
  type: "metric",
5145
- object: "sys_audit_log",
5146
5139
  layout: { x: 4, y: 2, w: 4, h: 2 },
5147
5140
  filter: { action: "permission_change" },
5148
- aggregate: "count",
5149
5141
  colorVariant: "warning",
5150
5142
  description: "Recent permission and role modifications"
5151
5143
  },
5152
5144
  {
5153
5145
  id: "widget_config_changes",
5146
+ dataset: "sys_audit_log_metrics",
5147
+ values: ["event_count"],
5154
5148
  title: "Config Changes",
5155
5149
  type: "metric",
5156
- object: "sys_audit_log",
5157
5150
  layout: { x: 8, y: 2, w: 4, h: 2 },
5158
5151
  filter: { action: "config_change" },
5159
- aggregate: "count",
5160
5152
  colorVariant: "blue",
5161
5153
  description: "System configuration modifications"
5162
5154
  },
@@ -5168,41 +5160,37 @@ var SystemOverviewDashboard = Dashboard.create({
5168
5160
  // to scope these widgets.
5169
5161
  {
5170
5162
  id: "widget_events_by_type",
5163
+ dataset: "sys_audit_log_metrics",
5164
+ dimensions: ["action"],
5165
+ values: ["event_count"],
5171
5166
  title: "Audit Events by Action",
5172
5167
  description: "Distribution of audit events by action type",
5173
5168
  type: "pie",
5174
- object: "sys_audit_log",
5175
- layout: { x: 0, y: 4, w: 6, h: 4 },
5176
- categoryField: "action",
5177
- aggregate: "count"
5169
+ layout: { x: 0, y: 4, w: 6, h: 4 }
5178
5170
  },
5179
5171
  {
5180
5172
  id: "widget_events_by_user",
5173
+ dataset: "sys_audit_log_metrics",
5174
+ dimensions: ["user_id"],
5175
+ values: ["event_count"],
5181
5176
  title: "Events by User",
5182
5177
  description: "Activity distribution across users",
5183
5178
  type: "bar",
5184
- object: "sys_audit_log",
5185
- layout: { x: 6, y: 4, w: 6, h: 4 },
5186
- categoryField: "user_id",
5187
- aggregate: "count"
5188
- },
5189
- // ── Row 4: Recent audit events table ────────────────────────────
5190
- // `type: 'table'` renders the underlying rows directly, so this
5191
- // panel actually shows the latest events instead of just repeating
5192
- // the total-count metric. `valueField`/`aggregate` are intentionally
5193
- // omitted — table widgets pull raw records.
5179
+ layout: { x: 6, y: 4, w: 6, h: 4 }
5180
+ },
5181
+ // ── Row 4: Audit events by action ───────────────────────────────
5182
+ // ADR-0021 single-form: a dataset-bound breakdown of events by action.
5183
+ // (The raw recent-events record list belongs in a ListView on
5184
+ // sys_audit_log a row-level lens, not a dashboard analytics widget.)
5194
5185
  {
5195
5186
  id: "widget_recent_events",
5196
- title: "Recent Audit Events",
5197
- description: "Latest platform events (login, permission, config, \u2026)",
5187
+ title: "Audit Events by Action",
5188
+ description: "Event volume grouped by action (login, permission, config, \u2026)",
5198
5189
  type: "table",
5199
- object: "sys_audit_log",
5200
- layout: { x: 0, y: 8, w: 12, h: 4 },
5201
- options: {
5202
- columns: ["created_at", "user_id", "action", "object_name", "record_id"],
5203
- sort: [{ field: "created_at", order: "desc" }],
5204
- pageSize: 20
5205
- }
5190
+ dataset: "sys_audit_log_metrics",
5191
+ dimensions: ["action"],
5192
+ values: ["event_count"],
5193
+ layout: { x: 0, y: 8, w: 12, h: 4 }
5206
5194
  }
5207
5195
  ],
5208
5196
  globalFilters: [
@@ -5215,6 +5203,51 @@ var SystemOverviewDashboard = Dashboard.create({
5215
5203
  }
5216
5204
  ]
5217
5205
  });
5206
+ var SysUserDataset = defineDataset({
5207
+ name: "sys_user_metrics",
5208
+ label: "User Metrics",
5209
+ object: "sys_user",
5210
+ dimensions: [],
5211
+ measures: [{ name: "user_count", label: "Users", aggregate: "count" }]
5212
+ });
5213
+ var SysOrganizationDataset = defineDataset({
5214
+ name: "sys_organization_metrics",
5215
+ label: "Organization Metrics",
5216
+ object: "sys_organization",
5217
+ dimensions: [],
5218
+ measures: [{ name: "org_count", label: "Organizations", aggregate: "count" }]
5219
+ });
5220
+ var SysSessionDataset = defineDataset({
5221
+ name: "sys_session_metrics",
5222
+ label: "Session Metrics",
5223
+ object: "sys_session",
5224
+ dimensions: [],
5225
+ measures: [{ name: "session_count", label: "Sessions", aggregate: "count" }]
5226
+ });
5227
+ var SysPackageInstallationDataset = defineDataset({
5228
+ name: "sys_package_installation_metrics",
5229
+ label: "Package Installation Metrics",
5230
+ object: "sys_package_installation",
5231
+ dimensions: [],
5232
+ measures: [{ name: "package_count", label: "Installations", aggregate: "count" }]
5233
+ });
5234
+ var SysAuditLogDataset = defineDataset({
5235
+ name: "sys_audit_log_metrics",
5236
+ label: "Audit Log Metrics",
5237
+ object: "sys_audit_log",
5238
+ dimensions: [
5239
+ { name: "action", label: "Action", field: "action", type: "string" },
5240
+ { name: "user_id", label: "User", field: "user_id", type: "lookup" }
5241
+ ],
5242
+ measures: [{ name: "event_count", label: "Events", aggregate: "count" }]
5243
+ });
5244
+ var SystemOverviewDatasets = [
5245
+ SysUserDataset,
5246
+ SysOrganizationDataset,
5247
+ SysSessionDataset,
5248
+ SysPackageInstallationDataset,
5249
+ SysAuditLogDataset
5250
+ ];
5218
5251
 
5219
5252
  // src/apps/translations/en.objects.generated.ts
5220
5253
  var enObjects = {
@@ -7803,7 +7836,6 @@ var en = {
7803
7836
  nav_account_notifications: { label: "Notifications" },
7804
7837
  nav_account_approvals: { label: "Approvals" },
7805
7838
  nav_account_memberships: { label: "My Organizations" },
7806
- nav_account_two_factor: { label: "Two-Factor Authentication" },
7807
7839
  nav_account_linked: { label: "Linked Accounts" },
7808
7840
  nav_account_sessions: { label: "Active Sessions" },
7809
7841
  nav_account_api_keys: { label: "API Keys" },
@@ -7821,6 +7853,7 @@ var en = {
7821
7853
  group_access_control: { label: "Access Control" },
7822
7854
  group_approvals: { label: "Approvals" },
7823
7855
  group_configuration: { label: "Configuration" },
7856
+ group_integrations: { label: "Integrations" },
7824
7857
  group_diagnostics: { label: "Diagnostics" },
7825
7858
  group_advanced: { label: "Advanced" },
7826
7859
  // Overview
@@ -7848,7 +7881,15 @@ var en = {
7848
7881
  nav_settings_hub: { label: "All Settings" },
7849
7882
  nav_settings_mail: { label: "Email" },
7850
7883
  nav_settings_branding: { label: "Branding" },
7884
+ nav_settings_auth: { label: "Authentication" },
7885
+ nav_settings_storage: { label: "File Storage" },
7886
+ nav_settings_ai: { label: "AI & Embedder" },
7887
+ nav_settings_knowledge: { label: "Knowledge" },
7851
7888
  nav_settings_feature_flags: { label: "Feature Flags" },
7889
+ // Notifications (contributed by @objectstack/service-messaging)
7890
+ nav_notification_preferences: { label: "Notification Preferences" },
7891
+ nav_notification_subscriptions: { label: "Notification Subscriptions" },
7892
+ nav_notification_templates: { label: "Notification Templates" },
7852
7893
  // Diagnostics
7853
7894
  nav_sessions: { label: "Sessions" },
7854
7895
  nav_audit_logs: { label: "Audit Logs" },
@@ -7857,7 +7898,6 @@ var en = {
7857
7898
  nav_oauth_apps: { label: "OAuth Applications" },
7858
7899
  nav_jwks: { label: "Signing Keys (JWKS)" },
7859
7900
  nav_verifications: { label: "Verifications" },
7860
- nav_two_factor: { label: "Two-Factor" },
7861
7901
  nav_device_codes: { label: "Device Codes" },
7862
7902
  nav_accounts: { label: "Identity Links" },
7863
7903
  nav_user_preferences: { label: "User Preferences" },
@@ -10537,7 +10577,6 @@ var zhCN = {
10537
10577
  nav_account_notifications: { label: "\u901A\u77E5" },
10538
10578
  nav_account_approvals: { label: "\u5F85\u6211\u5BA1\u6279" },
10539
10579
  nav_account_memberships: { label: "\u6211\u7684\u7EC4\u7EC7" },
10540
- nav_account_two_factor: { label: "\u53CC\u91CD\u8BA4\u8BC1" },
10541
10580
  nav_account_linked: { label: "\u5DF2\u5173\u8054\u8D26\u6237" },
10542
10581
  nav_account_sessions: { label: "\u6D3B\u52A8\u4F1A\u8BDD" },
10543
10582
  nav_account_api_keys: { label: "API \u5BC6\u94A5" },
@@ -10556,6 +10595,7 @@ var zhCN = {
10556
10595
  group_access_control: { label: "\u8BBF\u95EE\u63A7\u5236" },
10557
10596
  group_approvals: { label: "\u5BA1\u6279" },
10558
10597
  group_configuration: { label: "\u914D\u7F6E" },
10598
+ group_integrations: { label: "\u96C6\u6210" },
10559
10599
  group_diagnostics: { label: "\u8BCA\u65AD" },
10560
10600
  group_advanced: { label: "\u9AD8\u7EA7" },
10561
10601
  nav_system_overview: { label: "\u7CFB\u7EDF\u6982\u89C8" },
@@ -10575,14 +10615,20 @@ var zhCN = {
10575
10615
  nav_settings_hub: { label: "\u5168\u90E8\u8BBE\u7F6E" },
10576
10616
  nav_settings_mail: { label: "\u90AE\u4EF6" },
10577
10617
  nav_settings_branding: { label: "\u54C1\u724C" },
10618
+ nav_settings_auth: { label: "\u8BA4\u8BC1" },
10619
+ nav_settings_storage: { label: "\u6587\u4EF6\u5B58\u50A8" },
10620
+ nav_settings_ai: { label: "AI \u4E0E Embedder" },
10621
+ nav_settings_knowledge: { label: "\u77E5\u8BC6\u5E93" },
10578
10622
  nav_settings_feature_flags: { label: "\u529F\u80FD\u5F00\u5173" },
10623
+ nav_notification_preferences: { label: "\u901A\u77E5\u504F\u597D" },
10624
+ nav_notification_subscriptions: { label: "\u901A\u77E5\u8BA2\u9605" },
10625
+ nav_notification_templates: { label: "\u901A\u77E5\u6A21\u677F" },
10579
10626
  nav_sessions: { label: "\u4F1A\u8BDD" },
10580
10627
  nav_audit_logs: { label: "\u5BA1\u8BA1\u65E5\u5FD7" },
10581
10628
  nav_notifications: { label: "\u901A\u77E5" },
10582
10629
  nav_oauth_apps: { label: "OAuth \u5E94\u7528" },
10583
10630
  nav_jwks: { label: "\u7B7E\u540D\u5BC6\u94A5 (JWKS)" },
10584
10631
  nav_verifications: { label: "\u9A8C\u8BC1\u8BB0\u5F55" },
10585
- nav_two_factor: { label: "\u53CC\u91CD\u8BA4\u8BC1" },
10586
10632
  nav_device_codes: { label: "\u8BBE\u5907\u4EE3\u7801" },
10587
10633
  nav_accounts: { label: "\u8EAB\u4EFD\u94FE\u63A5" },
10588
10634
  nav_user_preferences: { label: "\u7528\u6237\u504F\u597D" },
@@ -13232,7 +13278,6 @@ var jaJP = {
13232
13278
  nav_account_notifications: { label: "\u901A\u77E5" },
13233
13279
  nav_account_approvals: { label: "\u627F\u8A8D\u5F85\u3061" },
13234
13280
  nav_account_memberships: { label: "\u6240\u5C5E\u7D44\u7E54" },
13235
- nav_account_two_factor: { label: "\u4E8C\u8981\u7D20\u8A8D\u8A3C" },
13236
13281
  nav_account_linked: { label: "\u9023\u643A\u30A2\u30AB\u30A6\u30F3\u30C8" },
13237
13282
  nav_account_sessions: { label: "\u30A2\u30AF\u30C6\u30A3\u30D6\u30BB\u30C3\u30B7\u30E7\u30F3" },
13238
13283
  nav_account_api_keys: { label: "API \u30AD\u30FC" },
@@ -13251,6 +13296,7 @@ var jaJP = {
13251
13296
  group_access_control: { label: "\u30A2\u30AF\u30BB\u30B9\u5236\u5FA1" },
13252
13297
  group_approvals: { label: "\u627F\u8A8D" },
13253
13298
  group_configuration: { label: "\u69CB\u6210" },
13299
+ group_integrations: { label: "\u7D71\u5408" },
13254
13300
  group_diagnostics: { label: "\u8A3A\u65AD" },
13255
13301
  group_advanced: { label: "\u8A73\u7D30" },
13256
13302
  nav_system_overview: { label: "\u30B7\u30B9\u30C6\u30E0\u6982\u8981" },
@@ -13270,14 +13316,20 @@ var jaJP = {
13270
13316
  nav_settings_hub: { label: "\u3059\u3079\u3066\u306E\u8A2D\u5B9A" },
13271
13317
  nav_settings_mail: { label: "\u30E1\u30FC\u30EB" },
13272
13318
  nav_settings_branding: { label: "\u30D6\u30E9\u30F3\u30C7\u30A3\u30F3\u30B0" },
13319
+ nav_settings_auth: { label: "\u8A8D\u8A3C" },
13320
+ nav_settings_storage: { label: "\u30D5\u30A1\u30A4\u30EB\u30B9\u30C8\u30EC\u30FC\u30B8" },
13321
+ nav_settings_ai: { label: "AI \u3068 Embedder" },
13322
+ nav_settings_knowledge: { label: "\u30CA\u30EC\u30C3\u30B8" },
13273
13323
  nav_settings_feature_flags: { label: "\u6A5F\u80FD\u30D5\u30E9\u30B0" },
13324
+ nav_notification_preferences: { label: "\u901A\u77E5\u8A2D\u5B9A" },
13325
+ nav_notification_subscriptions: { label: "\u901A\u77E5\u8CFC\u8AAD" },
13326
+ nav_notification_templates: { label: "\u901A\u77E5\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8" },
13274
13327
  nav_sessions: { label: "\u30BB\u30C3\u30B7\u30E7\u30F3" },
13275
13328
  nav_audit_logs: { label: "\u76E3\u67FB\u30ED\u30B0" },
13276
13329
  nav_notifications: { label: "\u901A\u77E5" },
13277
13330
  nav_oauth_apps: { label: "OAuth \u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3" },
13278
13331
  nav_jwks: { label: "\u7F72\u540D\u30AD\u30FC (JWKS)" },
13279
13332
  nav_verifications: { label: "\u691C\u8A3C" },
13280
- nav_two_factor: { label: "\u4E8C\u8981\u7D20\u8A8D\u8A3C" },
13281
13333
  nav_device_codes: { label: "\u30C7\u30D0\u30A4\u30B9\u30B3\u30FC\u30C9" },
13282
13334
  nav_accounts: { label: "ID \u9023\u643A" },
13283
13335
  nav_user_preferences: { label: "\u30E6\u30FC\u30B6\u30FC\u8A2D\u5B9A" },
@@ -15927,7 +15979,6 @@ var esES = {
15927
15979
  nav_account_notifications: { label: "Notificaciones" },
15928
15980
  nav_account_approvals: { label: "Aprobaciones pendientes" },
15929
15981
  nav_account_memberships: { label: "Mis organizaciones" },
15930
- nav_account_two_factor: { label: "Autenticaci\xF3n de dos factores" },
15931
15982
  nav_account_linked: { label: "Cuentas vinculadas" },
15932
15983
  nav_account_sessions: { label: "Sesiones activas" },
15933
15984
  nav_account_api_keys: { label: "Claves API" },
@@ -15946,6 +15997,7 @@ var esES = {
15946
15997
  group_access_control: { label: "Control de Acceso" },
15947
15998
  group_approvals: { label: "Aprobaciones" },
15948
15999
  group_configuration: { label: "Configuraci\xF3n" },
16000
+ group_integrations: { label: "Integraciones" },
15949
16001
  group_diagnostics: { label: "Diagn\xF3stico" },
15950
16002
  group_advanced: { label: "Avanzado" },
15951
16003
  nav_system_overview: { label: "Resumen del Sistema" },
@@ -15965,14 +16017,20 @@ var esES = {
15965
16017
  nav_settings_hub: { label: "Todos los Ajustes" },
15966
16018
  nav_settings_mail: { label: "Correo" },
15967
16019
  nav_settings_branding: { label: "Marca" },
16020
+ nav_settings_auth: { label: "Autenticaci\xF3n" },
16021
+ nav_settings_storage: { label: "Almacenamiento de Archivos" },
16022
+ nav_settings_ai: { label: "IA y Embedder" },
16023
+ nav_settings_knowledge: { label: "Conocimiento" },
15968
16024
  nav_settings_feature_flags: { label: "Indicadores de Funcionalidad" },
16025
+ nav_notification_preferences: { label: "Preferencias de Notificaci\xF3n" },
16026
+ nav_notification_subscriptions: { label: "Suscripciones de Notificaci\xF3n" },
16027
+ nav_notification_templates: { label: "Plantillas de Notificaci\xF3n" },
15969
16028
  nav_sessions: { label: "Sesiones" },
15970
16029
  nav_audit_logs: { label: "Registros de Auditor\xEDa" },
15971
16030
  nav_notifications: { label: "Notificaciones" },
15972
16031
  nav_oauth_apps: { label: "Aplicaciones OAuth" },
15973
16032
  nav_jwks: { label: "Claves de Firma (JWKS)" },
15974
16033
  nav_verifications: { label: "Verificaciones" },
15975
- nav_two_factor: { label: "Doble Factor" },
15976
16034
  nav_device_codes: { label: "C\xF3digos de Dispositivo" },
15977
16035
  nav_accounts: { label: "Enlaces de Identidad" },
15978
16036
  nav_user_preferences: { label: "Preferencias de Usuario" },
@@ -22913,6 +22971,6 @@ function createPlatformObjectsPlugin() {
22913
22971
  return new PlatformObjectsPlugin();
22914
22972
  }
22915
22973
 
22916
- export { ACCOUNT_APP, MetadataFormsTranslations, PlatformObjectsPlugin, SETUP_APP, SETUP_NAV_CONTRIBUTIONS, STUDIO_APP, SetupAppTranslations, SysAccount, SysApiKey, SysAttachment, SysDepartment, SysDepartmentMember, SysDeviceCode, SysEmail, SysEmailTemplate, SysInvitation, SysJob, SysJobQueue, SysJobRun, SysJwks, SysMember, SysNotification, SysOauthAccessToken, SysOauthApplication, SysOauthConsent, SysOauthRefreshToken, SysOrganization, SysOrganizationDetailPage, SysReportSchedule, SysSavedReport, SysSecret, SysSession, SysSetting, SysSettingAudit, SysTeam, SysTeamMember, SysTwoFactor, SysUser, SysUserDetailPage, SysUserPreference, SysVerification, SystemOverviewDashboard, createPlatformObjectsPlugin, en, esES, jaJP, zhCN };
22974
+ export { ACCOUNT_APP, MetadataFormsTranslations, PlatformObjectsPlugin, SETUP_APP, SETUP_NAV_CONTRIBUTIONS, STUDIO_APP, SetupAppTranslations, SysAccount, SysApiKey, SysAttachment, SysDepartment, SysDepartmentMember, SysDeviceCode, SysEmail, SysEmailTemplate, SysInvitation, SysJob, SysJobQueue, SysJobRun, SysJwks, SysMember, SysNotification, SysOauthAccessToken, SysOauthApplication, SysOauthConsent, SysOauthRefreshToken, SysOrganization, SysOrganizationDetailPage, SysReportSchedule, SysSavedReport, SysSecret, SysSession, SysSetting, SysSettingAudit, SysTeam, SysTeamMember, SysTwoFactor, SysUser, SysUserDetailPage, SysUserPreference, SysVerification, SystemOverviewDashboard, SystemOverviewDatasets, createPlatformObjectsPlugin, en, esES, jaJP, zhCN };
22917
22975
  //# sourceMappingURL=index.mjs.map
22918
22976
  //# sourceMappingURL=index.mjs.map