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