@objectstack/platform-objects 6.6.0 → 6.7.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.mjs CHANGED
@@ -6506,8 +6506,7 @@ var SETUP_APP = {
6506
6506
  label: "Overview",
6507
6507
  icon: "layout-dashboard",
6508
6508
  children: [
6509
- { id: "nav_system_overview", type: "dashboard", label: "System Overview", dashboardName: "system_overview", icon: "activity" },
6510
- { id: "nav_security_overview", type: "dashboard", label: "Security Overview", dashboardName: "security_overview", icon: "shield" }
6509
+ { id: "nav_system_overview", type: "dashboard", label: "System Overview", dashboardName: "system_overview", icon: "activity" }
6511
6510
  ]
6512
6511
  },
6513
6512
  {
@@ -6569,9 +6568,17 @@ var SETUP_APP = {
6569
6568
  // is used (not `object`) because settings are stored in a generic
6570
6569
  // K/V table (`sys_setting`) rather than per-namespace objects, and
6571
6570
  // the renderer is a dedicated <SettingsView> page in objectui.
6571
+ //
6572
+ // Order mirrors `builtinSettingsManifests` so left-nav order matches
6573
+ // the All-Settings index. AI groups chat + embedder under one entry
6574
+ // because operators reason about them together; Knowledge is its
6575
+ // own entry because the adapter selection is independent.
6572
6576
  { id: "nav_settings_hub", type: "url", label: "All Settings", url: "/apps/setup/system/settings", icon: "settings-2" },
6573
- { id: "nav_settings_mail", type: "url", label: "Email", url: "/apps/setup/system/settings/mail", icon: "mail" },
6574
6577
  { id: "nav_settings_branding", type: "url", label: "Branding", url: "/apps/setup/system/settings/branding", icon: "palette" },
6578
+ { id: "nav_settings_mail", type: "url", label: "Email", url: "/apps/setup/system/settings/mail", icon: "mail" },
6579
+ { id: "nav_settings_storage", type: "url", label: "File Storage", url: "/apps/setup/system/settings/storage", icon: "hard-drive" },
6580
+ { id: "nav_settings_ai", type: "url", label: "AI & Embedder", url: "/apps/setup/system/settings/ai", icon: "sparkles" },
6581
+ { id: "nav_settings_knowledge", type: "url", label: "Knowledge", url: "/apps/setup/system/settings/knowledge", icon: "book-open" },
6575
6582
  { id: "nav_settings_feature_flags", type: "url", label: "Feature Flags", url: "/apps/setup/system/settings/feature_flags", icon: "flag" }
6576
6583
  ]
6577
6584
  },
@@ -6650,63 +6657,42 @@ var SETUP_APP = {
6650
6657
  var SystemOverviewDashboard = Dashboard.create({
6651
6658
  name: "system_overview",
6652
6659
  label: "System Overview",
6653
- description: "Platform health, sessions, and audit activity",
6654
- // 12-column grid matches the widget `w` values below (3, 6, 12). Without
6655
- // this, the renderer falls back to a 4-column grid and `w: 3` becomes 75%
6656
- // width per metric — so KPI cards stack vertically instead of forming a
6657
- // 4-up row.
6660
+ description: "Platform health, security activity, and recent audit events",
6661
+ // 12-column grid matches the widget `w` values below.
6658
6662
  columns: 12,
6659
6663
  gap: 4,
6660
6664
  widgets: [
6661
- // ── Active Sessions Widget ──────────────────────────────────────
6662
- {
6663
- id: "widget_active_sessions",
6664
- title: "Active Sessions",
6665
- type: "metric",
6666
- object: "sys_session",
6667
- layout: {
6668
- x: 0,
6669
- y: 0,
6670
- w: 3,
6671
- h: 2
6672
- },
6673
- aggregate: "count",
6674
- colorVariant: "blue",
6675
- description: "Number of currently active user sessions"
6676
- },
6677
- // ── Total Users Widget ──────────────────────────────────────────
6665
+ // ── Row 1: Platform KPIs ────────────────────────────────────────
6678
6666
  {
6679
6667
  id: "widget_total_users",
6680
6668
  title: "Total Users",
6681
6669
  type: "metric",
6682
6670
  object: "sys_user",
6683
- layout: {
6684
- x: 3,
6685
- y: 0,
6686
- w: 3,
6687
- h: 2
6688
- },
6671
+ layout: { x: 0, y: 0, w: 3, h: 2 },
6689
6672
  aggregate: "count",
6690
6673
  colorVariant: "teal",
6691
6674
  description: "Total registered users in the system"
6692
6675
  },
6693
- // ── Organizations Widget ────────────────────────────────────────
6694
6676
  {
6695
6677
  id: "widget_organizations",
6696
6678
  title: "Organizations",
6697
6679
  type: "metric",
6698
6680
  object: "sys_organization",
6699
- layout: {
6700
- x: 6,
6701
- y: 0,
6702
- w: 3,
6703
- h: 2
6704
- },
6681
+ layout: { x: 3, y: 0, w: 3, h: 2 },
6705
6682
  aggregate: "count",
6706
6683
  colorVariant: "orange",
6707
6684
  description: "Total organizations on the platform"
6708
6685
  },
6709
- // ── Packages Installed Widget ───────────────────────────────────
6686
+ {
6687
+ id: "widget_active_sessions",
6688
+ title: "Active Sessions",
6689
+ type: "metric",
6690
+ object: "sys_session",
6691
+ layout: { x: 6, y: 0, w: 3, h: 2 },
6692
+ aggregate: "count",
6693
+ colorVariant: "blue",
6694
+ description: "Number of currently active user sessions"
6695
+ },
6710
6696
  {
6711
6697
  id: "widget_packages_installed",
6712
6698
  title: "Packages Installed",
@@ -6715,97 +6701,13 @@ var SystemOverviewDashboard = Dashboard.create({
6715
6701
  // Cloud-only object — only registered when service-tenant is loaded.
6716
6702
  // Hide this widget gracefully in single-environment runtimes.
6717
6703
  requiresObject: "sys_package_installation",
6718
- layout: {
6719
- x: 9,
6720
- y: 0,
6721
- w: 3,
6722
- h: 2
6723
- },
6704
+ layout: { x: 9, y: 0, w: 3, h: 2 },
6724
6705
  filter: { status: "installed" },
6725
6706
  aggregate: "count",
6726
6707
  colorVariant: "success",
6727
6708
  description: "Active package installations across projects"
6728
6709
  },
6729
- // ── Audit Actions by Type ───────────────────────────────────────
6730
- // Note: relative date filters like `NOW() - INTERVAL 7 DAY` are not
6731
- // currently substituted by the analytics layer (see
6732
- // service-analytics/strategies/filter-normalizer.ts). The dashboard's
6733
- // `globalFilters` date-range bar at the bottom is the supported way
6734
- // to scope this widget.
6735
- {
6736
- id: "widget_audit_actions",
6737
- title: "Audit Actions",
6738
- description: "Distribution of audit events by action type",
6739
- type: "pie",
6740
- object: "sys_audit_log",
6741
- layout: {
6742
- x: 0,
6743
- y: 2,
6744
- w: 6,
6745
- h: 4
6746
- },
6747
- categoryField: "action",
6748
- aggregate: "count"
6749
- },
6750
- // ── Session Status Overview ─────────────────────────────────────
6751
- {
6752
- id: "widget_active_orgs",
6753
- title: "Sessions by Organization",
6754
- description: "Active sessions grouped by organization",
6755
- type: "bar",
6756
- object: "sys_session",
6757
- layout: {
6758
- x: 6,
6759
- y: 2,
6760
- w: 6,
6761
- h: 4
6762
- },
6763
- categoryField: "active_organization_id",
6764
- aggregate: "count"
6765
- },
6766
- // ── Recent Audit Log (Table) ────────────────────────────────────
6767
- // `type: 'table'` renders the underlying rows directly, so this
6768
- // panel actually shows the latest events instead of just repeating
6769
- // the total-count metric. `valueField`/`aggregate` are intentionally
6770
- // omitted — table widgets pull raw records.
6771
- {
6772
- id: "widget_recent_events",
6773
- title: "Recent Audit Events",
6774
- description: "Latest platform events",
6775
- type: "table",
6776
- object: "sys_audit_log",
6777
- layout: {
6778
- x: 0,
6779
- y: 6,
6780
- w: 12,
6781
- h: 4
6782
- },
6783
- options: {
6784
- columns: ["created_at", "user_id", "action", "object_name", "record_id"],
6785
- sort: [{ field: "created_at", order: "desc" }],
6786
- pageSize: 20
6787
- }
6788
- }
6789
- ],
6790
- globalFilters: [
6791
- {
6792
- field: "created_at",
6793
- type: "date",
6794
- label: "Date Range",
6795
- scope: "dashboard",
6796
- defaultValue: "last_7_days"
6797
- }
6798
- ]
6799
- });
6800
- var SecurityOverviewDashboard = Dashboard.create({
6801
- name: "security_overview",
6802
- label: "Security Overview",
6803
- description: "Security events, authentication, and audit trails",
6804
- // 12-column grid matches the widget `w` values below.
6805
- columns: 12,
6806
- gap: 4,
6807
- widgets: [
6808
- // ── Login Events Widget ─────────────────────────────────────────
6710
+ // ── Row 2: Security KPIs ────────────────────────────────────────
6809
6711
  // The `sys_audit_log.action` enum doesn't distinguish failed vs
6810
6712
  // successful logins (both fold into `action='login'`). Surfacing a
6811
6713
  // total Login Events count is honest; a "Failed Logins" widget will
@@ -6815,116 +6717,72 @@ var SecurityOverviewDashboard = Dashboard.create({
6815
6717
  title: "Login Events",
6816
6718
  type: "metric",
6817
6719
  object: "sys_audit_log",
6818
- layout: {
6819
- x: 0,
6820
- y: 0,
6821
- w: 3,
6822
- h: 2
6823
- },
6720
+ layout: { x: 0, y: 2, w: 4, h: 2 },
6824
6721
  filter: { action: "login" },
6825
6722
  aggregate: "count",
6826
6723
  colorVariant: "blue",
6827
6724
  description: "Authentication events recorded by the audit log"
6828
6725
  },
6829
- // ── Permission Changes Widget ───────────────────────────────────
6830
6726
  {
6831
6727
  id: "widget_permission_changes",
6832
6728
  title: "Permission Changes",
6833
6729
  type: "metric",
6834
6730
  object: "sys_audit_log",
6835
- layout: {
6836
- x: 3,
6837
- y: 0,
6838
- w: 3,
6839
- h: 2
6840
- },
6731
+ layout: { x: 4, y: 2, w: 4, h: 2 },
6841
6732
  filter: { action: "permission_change" },
6842
6733
  aggregate: "count",
6843
6734
  colorVariant: "warning",
6844
6735
  description: "Recent permission and role modifications"
6845
6736
  },
6846
- // ── System Config Changes Widget ────────────────────────────────
6847
6737
  {
6848
6738
  id: "widget_config_changes",
6849
6739
  title: "Config Changes",
6850
6740
  type: "metric",
6851
6741
  object: "sys_audit_log",
6852
- layout: {
6853
- x: 6,
6854
- y: 0,
6855
- w: 3,
6856
- h: 2
6857
- },
6742
+ layout: { x: 8, y: 2, w: 4, h: 2 },
6858
6743
  filter: { action: "config_change" },
6859
6744
  aggregate: "count",
6860
6745
  colorVariant: "blue",
6861
6746
  description: "System configuration modifications"
6862
6747
  },
6863
- // ── Active Sessions Widget ──────────────────────────────────────
6864
- {
6865
- id: "widget_active_sessions",
6866
- title: "Active Sessions",
6867
- type: "metric",
6868
- object: "sys_session",
6869
- layout: {
6870
- x: 9,
6871
- y: 0,
6872
- w: 3,
6873
- h: 2
6874
- },
6875
- aggregate: "count",
6876
- colorVariant: "success",
6877
- description: "Currently active user sessions"
6878
- },
6879
- // ── Audit Events by Type ────────────────────────────────────────
6748
+ // ── Row 3: Distribution charts ──────────────────────────────────
6749
+ // Note: relative date filters like `NOW() - INTERVAL 7 DAY` are not
6750
+ // currently substituted by the analytics layer (see
6751
+ // service-analytics/strategies/filter-normalizer.ts). The dashboard's
6752
+ // `globalFilters` date-range bar at the bottom is the supported way
6753
+ // to scope these widgets.
6880
6754
  {
6881
6755
  id: "widget_events_by_type",
6882
- title: "Audit Events by Type",
6883
- description: "Distribution of security and audit events",
6756
+ title: "Audit Events by Action",
6757
+ description: "Distribution of audit events by action type",
6884
6758
  type: "pie",
6885
6759
  object: "sys_audit_log",
6886
- layout: {
6887
- x: 0,
6888
- y: 2,
6889
- w: 6,
6890
- h: 4
6891
- },
6760
+ layout: { x: 0, y: 4, w: 6, h: 4 },
6892
6761
  categoryField: "action",
6893
6762
  aggregate: "count"
6894
6763
  },
6895
- // ── Audit Events by User ────────────────────────────────────────
6896
6764
  {
6897
6765
  id: "widget_events_by_user",
6898
6766
  title: "Events by User",
6899
6767
  description: "Activity distribution across users",
6900
6768
  type: "bar",
6901
6769
  object: "sys_audit_log",
6902
- layout: {
6903
- x: 6,
6904
- y: 2,
6905
- w: 6,
6906
- h: 4
6907
- },
6770
+ layout: { x: 6, y: 4, w: 6, h: 4 },
6908
6771
  categoryField: "user_id",
6909
6772
  aggregate: "count"
6910
6773
  },
6911
- // ── Recent Security Events (Table) ──────────────────────────────
6912
- // Real table widget pulls the latest permission/config rows.
6774
+ // ── Row 4: Recent audit events table ────────────────────────────
6775
+ // `type: 'table'` renders the underlying rows directly, so this
6776
+ // panel actually shows the latest events instead of just repeating
6777
+ // the total-count metric. `valueField`/`aggregate` are intentionally
6778
+ // omitted — table widgets pull raw records.
6913
6779
  {
6914
- id: "widget_recent_security_events",
6915
- title: "Recent Security Events",
6916
- description: "Latest permission and config changes",
6780
+ id: "widget_recent_events",
6781
+ title: "Recent Audit Events",
6782
+ description: "Latest platform events (login, permission, config, \u2026)",
6917
6783
  type: "table",
6918
6784
  object: "sys_audit_log",
6919
- layout: {
6920
- x: 0,
6921
- y: 6,
6922
- w: 12,
6923
- h: 4
6924
- },
6925
- filter: {
6926
- action: { $in: ["login", "logout", "permission_change", "config_change"] }
6927
- },
6785
+ layout: { x: 0, y: 8, w: 12, h: 4 },
6928
6786
  options: {
6929
6787
  columns: ["created_at", "user_id", "action", "object_name", "record_id"],
6930
6788
  sort: [{ field: "created_at", order: "desc" }],
@@ -9868,7 +9726,6 @@ var en = {
9868
9726
  group_advanced: { label: "Advanced" },
9869
9727
  // Overview
9870
9728
  nav_system_overview: { label: "System Overview" },
9871
- nav_security_overview: { label: "Security Overview" },
9872
9729
  // People & Organization
9873
9730
  nav_users: { label: "Users" },
9874
9731
  nav_departments: { label: "Departments" },
@@ -9909,12 +9766,8 @@ var en = {
9909
9766
  dashboards: {
9910
9767
  system_overview: {
9911
9768
  label: "System Overview",
9912
- description: "Platform health, sessions, and audit activity",
9769
+ description: "Platform health, security activity, and recent audit events",
9913
9770
  widgets: {
9914
- widget_active_sessions: {
9915
- title: "Active Sessions",
9916
- description: "Number of currently active user sessions"
9917
- },
9918
9771
  widget_total_users: {
9919
9772
  title: "Total Users",
9920
9773
  description: "Total registered users in the system"
@@ -9923,28 +9776,14 @@ var en = {
9923
9776
  title: "Organizations",
9924
9777
  description: "Total organizations on the platform"
9925
9778
  },
9779
+ widget_active_sessions: {
9780
+ title: "Active Sessions",
9781
+ description: "Number of currently active user sessions"
9782
+ },
9926
9783
  widget_packages_installed: {
9927
9784
  title: "Packages Installed",
9928
9785
  description: "Active package installations across projects"
9929
9786
  },
9930
- widget_audit_actions: {
9931
- title: "Audit Actions",
9932
- description: "Distribution of audit events by action type"
9933
- },
9934
- widget_active_orgs: {
9935
- title: "Sessions by Organization",
9936
- description: "Active sessions grouped by organization"
9937
- },
9938
- widget_recent_events: {
9939
- title: "Recent Audit Events",
9940
- description: "Latest platform events"
9941
- }
9942
- }
9943
- },
9944
- security_overview: {
9945
- label: "Security Overview",
9946
- description: "Security events, authentication, and audit trails",
9947
- widgets: {
9948
9787
  widget_login_events: {
9949
9788
  title: "Login Events",
9950
9789
  description: "Authentication events recorded by the audit log"
@@ -9957,21 +9796,17 @@ var en = {
9957
9796
  title: "Config Changes",
9958
9797
  description: "System configuration modifications"
9959
9798
  },
9960
- widget_active_sessions: {
9961
- title: "Active Sessions",
9962
- description: "Currently active user sessions"
9963
- },
9964
9799
  widget_events_by_type: {
9965
- title: "Audit Events by Type",
9966
- description: "Distribution of security and audit events"
9800
+ title: "Audit Events by Action",
9801
+ description: "Distribution of audit events by action type"
9967
9802
  },
9968
9803
  widget_events_by_user: {
9969
9804
  title: "Events by User",
9970
9805
  description: "Activity distribution across users"
9971
9806
  },
9972
- widget_recent_security_events: {
9973
- title: "Recent Security Events",
9974
- description: "Latest permission and config changes"
9807
+ widget_recent_events: {
9808
+ title: "Recent Audit Events",
9809
+ description: "Latest platform events (login, permission, config, \u2026)"
9975
9810
  }
9976
9811
  }
9977
9812
  }
@@ -12905,7 +12740,6 @@ var zhCN = {
12905
12740
  group_diagnostics: { label: "\u8BCA\u65AD" },
12906
12741
  group_advanced: { label: "\u9AD8\u7EA7" },
12907
12742
  nav_system_overview: { label: "\u7CFB\u7EDF\u6982\u89C8" },
12908
- nav_security_overview: { label: "\u5B89\u5168\u6982\u89C8" },
12909
12743
  nav_users: { label: "\u7528\u6237" },
12910
12744
  nav_departments: { label: "\u90E8\u95E8" },
12911
12745
  nav_teams: { label: "\u56E2\u961F" },
@@ -12940,28 +12774,18 @@ var zhCN = {
12940
12774
  dashboards: {
12941
12775
  system_overview: {
12942
12776
  label: "\u7CFB\u7EDF\u6982\u89C8",
12943
- description: "\u5E73\u53F0\u8FD0\u884C\u72B6\u51B5\u3001\u4F1A\u8BDD\u4E0E\u5BA1\u8BA1\u6D3B\u52A8",
12777
+ description: "\u5E73\u53F0\u8FD0\u884C\u72B6\u51B5\u3001\u5B89\u5168\u6D3B\u52A8\u4E0E\u6700\u8FD1\u5BA1\u8BA1\u4E8B\u4EF6",
12944
12778
  widgets: {
12945
- widget_active_sessions: { title: "\u6D3B\u8DC3\u4F1A\u8BDD", description: "\u5F53\u524D\u6D3B\u8DC3\u7528\u6237\u4F1A\u8BDD\u6570\u91CF" },
12946
12779
  widget_total_users: { title: "\u7528\u6237\u603B\u6570", description: "\u7CFB\u7EDF\u4E2D\u5DF2\u6CE8\u518C\u7684\u7528\u6237\u603B\u6570" },
12947
12780
  widget_organizations: { title: "\u7EC4\u7EC7\u6570", description: "\u5E73\u53F0\u4E0A\u7684\u7EC4\u7EC7\u603B\u6570" },
12781
+ widget_active_sessions: { title: "\u6D3B\u8DC3\u4F1A\u8BDD", description: "\u5F53\u524D\u6D3B\u8DC3\u7528\u6237\u4F1A\u8BDD\u6570\u91CF" },
12948
12782
  widget_packages_installed: { title: "\u5DF2\u5B89\u88C5\u5305", description: "\u9879\u76EE\u4E2D\u5DF2\u6FC0\u6D3B\u7684\u5B89\u88C5\u5305\u6570" },
12949
- widget_audit_actions: { title: "\u5BA1\u8BA1\u64CD\u4F5C", description: "\u6309\u64CD\u4F5C\u7C7B\u578B\u5206\u5E03\u7684\u5BA1\u8BA1\u4E8B\u4EF6" },
12950
- widget_active_orgs: { title: "\u6309\u7EC4\u7EC7\u5212\u5206\u4F1A\u8BDD", description: "\u6309\u7EC4\u7EC7\u5206\u7EC4\u7684\u6D3B\u8DC3\u4F1A\u8BDD" },
12951
- widget_recent_events: { title: "\u6700\u8FD1\u5BA1\u8BA1\u4E8B\u4EF6", description: "\u6700\u65B0\u7684\u5E73\u53F0\u4E8B\u4EF6" }
12952
- }
12953
- },
12954
- security_overview: {
12955
- label: "\u5B89\u5168\u6982\u89C8",
12956
- description: "\u5B89\u5168\u4E8B\u4EF6\u3001\u8EAB\u4EFD\u8BA4\u8BC1\u4E0E\u5BA1\u8BA1\u8FFD\u8E2A",
12957
- widgets: {
12958
12783
  widget_login_events: { title: "\u767B\u5F55\u4E8B\u4EF6", description: "\u5BA1\u8BA1\u65E5\u5FD7\u4E2D\u8BB0\u5F55\u7684\u8BA4\u8BC1\u4E8B\u4EF6" },
12959
12784
  widget_permission_changes: { title: "\u6743\u9650\u53D8\u66F4", description: "\u6700\u8FD1\u7684\u6743\u9650\u548C\u89D2\u8272\u4FEE\u6539" },
12960
12785
  widget_config_changes: { title: "\u914D\u7F6E\u53D8\u66F4", description: "\u7CFB\u7EDF\u914D\u7F6E\u4FEE\u6539" },
12961
- widget_active_sessions: { title: "\u6D3B\u8DC3\u4F1A\u8BDD", description: "\u5F53\u524D\u6D3B\u8DC3\u7528\u6237\u4F1A\u8BDD" },
12962
- widget_events_by_type: { title: "\u6309\u7C7B\u578B\u5206\u5E03\u7684\u5BA1\u8BA1\u4E8B\u4EF6", description: "\u5B89\u5168\u4E0E\u5BA1\u8BA1\u4E8B\u4EF6\u5206\u5E03" },
12786
+ widget_events_by_type: { title: "\u6309\u64CD\u4F5C\u5206\u5E03\u7684\u5BA1\u8BA1\u4E8B\u4EF6", description: "\u5BA1\u8BA1\u4E8B\u4EF6\u6309\u64CD\u4F5C\u7C7B\u578B\u5206\u5E03" },
12963
12787
  widget_events_by_user: { title: "\u6309\u7528\u6237\u5206\u5E03\u7684\u4E8B\u4EF6", description: "\u7528\u6237\u6D3B\u52A8\u5206\u5E03" },
12964
- widget_recent_security_events: { title: "\u6700\u8FD1\u5B89\u5168\u4E8B\u4EF6", description: "\u6700\u65B0\u7684\u6743\u9650\u4E0E\u914D\u7F6E\u53D8\u66F4" }
12788
+ widget_recent_events: { title: "\u6700\u8FD1\u5BA1\u8BA1\u4E8B\u4EF6", description: "\u6700\u65B0\u7684\u5E73\u53F0\u4E8B\u4EF6\uFF08\u767B\u5F55\u3001\u6743\u9650\u3001\u914D\u7F6E\u7B49\uFF09" }
12965
12789
  }
12966
12790
  }
12967
12791
  }
@@ -15890,7 +15714,6 @@ var jaJP = {
15890
15714
  group_diagnostics: { label: "\u8A3A\u65AD" },
15891
15715
  group_advanced: { label: "\u8A73\u7D30" },
15892
15716
  nav_system_overview: { label: "\u30B7\u30B9\u30C6\u30E0\u6982\u8981" },
15893
- nav_security_overview: { label: "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u6982\u8981" },
15894
15717
  nav_users: { label: "\u30E6\u30FC\u30B6\u30FC" },
15895
15718
  nav_departments: { label: "\u90E8\u7F72" },
15896
15719
  nav_teams: { label: "\u30C1\u30FC\u30E0" },
@@ -15925,28 +15748,18 @@ var jaJP = {
15925
15748
  dashboards: {
15926
15749
  system_overview: {
15927
15750
  label: "\u30B7\u30B9\u30C6\u30E0\u6982\u8981",
15928
- description: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u306E\u5065\u5168\u6027\u3001\u30BB\u30C3\u30B7\u30E7\u30F3\u3001\u76E3\u67FB\u30A2\u30AF\u30C6\u30A3\u30D3\u30C6\u30A3",
15751
+ description: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u306E\u5065\u5168\u6027\u3001\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u6D3B\u52D5\u3001\u6700\u8FD1\u306E\u76E3\u67FB\u30A4\u30D9\u30F3\u30C8",
15929
15752
  widgets: {
15930
- widget_active_sessions: { title: "\u30A2\u30AF\u30C6\u30A3\u30D6\u30BB\u30C3\u30B7\u30E7\u30F3", description: "\u73FE\u5728\u30A2\u30AF\u30C6\u30A3\u30D6\u306A\u30E6\u30FC\u30B6\u30FC\u30BB\u30C3\u30B7\u30E7\u30F3\u6570" },
15931
15753
  widget_total_users: { title: "\u30E6\u30FC\u30B6\u30FC\u7DCF\u6570", description: "\u30B7\u30B9\u30C6\u30E0\u306B\u767B\u9332\u3055\u308C\u305F\u30E6\u30FC\u30B6\u30FC\u306E\u7DCF\u6570" },
15932
15754
  widget_organizations: { title: "\u7D44\u7E54", description: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u4E0A\u306E\u7D44\u7E54\u7DCF\u6570" },
15755
+ widget_active_sessions: { title: "\u30A2\u30AF\u30C6\u30A3\u30D6\u30BB\u30C3\u30B7\u30E7\u30F3", description: "\u73FE\u5728\u30A2\u30AF\u30C6\u30A3\u30D6\u306A\u30E6\u30FC\u30B6\u30FC\u30BB\u30C3\u30B7\u30E7\u30F3\u6570" },
15933
15756
  widget_packages_installed: { title: "\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u6E08\u307F\u30D1\u30C3\u30B1\u30FC\u30B8", description: "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u3067\u30A2\u30AF\u30C6\u30A3\u30D6\u306A\u30D1\u30C3\u30B1\u30FC\u30B8\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u6570" },
15934
- widget_audit_actions: { title: "\u76E3\u67FB\u30A2\u30AF\u30B7\u30E7\u30F3", description: "\u30A2\u30AF\u30B7\u30E7\u30F3\u30BF\u30A4\u30D7\u5225\u306E\u76E3\u67FB\u30A4\u30D9\u30F3\u30C8\u5206\u5E03" },
15935
- widget_active_orgs: { title: "\u7D44\u7E54\u5225\u30BB\u30C3\u30B7\u30E7\u30F3", description: "\u7D44\u7E54\u5225\u306B\u30B0\u30EB\u30FC\u30D7\u5316\u3055\u308C\u305F\u30A2\u30AF\u30C6\u30A3\u30D6\u30BB\u30C3\u30B7\u30E7\u30F3" },
15936
- widget_recent_events: { title: "\u6700\u8FD1\u306E\u76E3\u67FB\u30A4\u30D9\u30F3\u30C8", description: "\u6700\u65B0\u306E\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u30A4\u30D9\u30F3\u30C8" }
15937
- }
15938
- },
15939
- security_overview: {
15940
- label: "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u6982\u8981",
15941
- description: "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u30A4\u30D9\u30F3\u30C8\u3001\u8A8D\u8A3C\u3001\u76E3\u67FB\u8A3C\u8DE1",
15942
- widgets: {
15943
15757
  widget_login_events: { title: "\u30ED\u30B0\u30A4\u30F3\u30A4\u30D9\u30F3\u30C8", description: "\u76E3\u67FB\u30ED\u30B0\u306B\u8A18\u9332\u3055\u308C\u305F\u8A8D\u8A3C\u30A4\u30D9\u30F3\u30C8" },
15944
15758
  widget_permission_changes: { title: "\u6A29\u9650\u5909\u66F4", description: "\u6700\u8FD1\u306E\u6A29\u9650\u3068\u30ED\u30FC\u30EB\u306E\u5909\u66F4" },
15945
15759
  widget_config_changes: { title: "\u69CB\u6210\u5909\u66F4", description: "\u30B7\u30B9\u30C6\u30E0\u69CB\u6210\u306E\u5909\u66F4" },
15946
- widget_active_sessions: { title: "\u30A2\u30AF\u30C6\u30A3\u30D6\u30BB\u30C3\u30B7\u30E7\u30F3", description: "\u73FE\u5728\u30A2\u30AF\u30C6\u30A3\u30D6\u306A\u30E6\u30FC\u30B6\u30FC\u30BB\u30C3\u30B7\u30E7\u30F3" },
15947
- widget_events_by_type: { title: "\u30BF\u30A4\u30D7\u5225\u76E3\u67FB\u30A4\u30D9\u30F3\u30C8", description: "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u3068\u76E3\u67FB\u30A4\u30D9\u30F3\u30C8\u306E\u5206\u5E03" },
15760
+ widget_events_by_type: { title: "\u30A2\u30AF\u30B7\u30E7\u30F3\u5225\u76E3\u67FB\u30A4\u30D9\u30F3\u30C8", description: "\u30A2\u30AF\u30B7\u30E7\u30F3\u30BF\u30A4\u30D7\u5225\u306E\u76E3\u67FB\u30A4\u30D9\u30F3\u30C8\u5206\u5E03" },
15948
15761
  widget_events_by_user: { title: "\u30E6\u30FC\u30B6\u30FC\u5225\u30A4\u30D9\u30F3\u30C8", description: "\u30E6\u30FC\u30B6\u30FC\u5225\u30A2\u30AF\u30C6\u30A3\u30D3\u30C6\u30A3\u5206\u5E03" },
15949
- widget_recent_security_events: { title: "\u6700\u8FD1\u306E\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u30A4\u30D9\u30F3\u30C8", description: "\u6700\u65B0\u306E\u6A29\u9650\u3068\u69CB\u6210\u306E\u5909\u66F4" }
15762
+ widget_recent_events: { title: "\u6700\u8FD1\u306E\u76E3\u67FB\u30A4\u30D9\u30F3\u30C8", description: "\u6700\u65B0\u306E\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u30A4\u30D9\u30F3\u30C8\uFF08\u30ED\u30B0\u30A4\u30F3\u3001\u6A29\u9650\u3001\u69CB\u6210\u306A\u3069\uFF09" }
15950
15763
  }
15951
15764
  }
15952
15765
  }
@@ -18875,7 +18688,6 @@ var esES = {
18875
18688
  group_diagnostics: { label: "Diagn\xF3stico" },
18876
18689
  group_advanced: { label: "Avanzado" },
18877
18690
  nav_system_overview: { label: "Resumen del Sistema" },
18878
- nav_security_overview: { label: "Resumen de Seguridad" },
18879
18691
  nav_users: { label: "Usuarios" },
18880
18692
  nav_departments: { label: "Departamentos" },
18881
18693
  nav_teams: { label: "Equipos" },
@@ -18910,28 +18722,18 @@ var esES = {
18910
18722
  dashboards: {
18911
18723
  system_overview: {
18912
18724
  label: "Resumen del Sistema",
18913
- description: "Estado de la plataforma, sesiones y actividad de auditor\xEDa",
18725
+ description: "Estado de la plataforma, actividad de seguridad y eventos de auditor\xEDa recientes",
18914
18726
  widgets: {
18915
- widget_active_sessions: { title: "Sesiones Activas", description: "N\xFAmero de sesiones de usuario activas en este momento" },
18916
18727
  widget_total_users: { title: "Usuarios Totales", description: "Total de usuarios registrados en el sistema" },
18917
18728
  widget_organizations: { title: "Organizaciones", description: "Total de organizaciones en la plataforma" },
18729
+ widget_active_sessions: { title: "Sesiones Activas", description: "N\xFAmero de sesiones de usuario activas en este momento" },
18918
18730
  widget_packages_installed: { title: "Paquetes Instalados", description: "Instalaciones de paquetes activas en los proyectos" },
18919
- widget_audit_actions: { title: "Acciones de Auditor\xEDa", description: "Distribuci\xF3n de eventos de auditor\xEDa por tipo de acci\xF3n" },
18920
- widget_active_orgs: { title: "Sesiones por Organizaci\xF3n", description: "Sesiones activas agrupadas por organizaci\xF3n" },
18921
- widget_recent_events: { title: "Eventos de Auditor\xEDa Recientes", description: "\xDAltimos eventos de la plataforma" }
18922
- }
18923
- },
18924
- security_overview: {
18925
- label: "Resumen de Seguridad",
18926
- description: "Eventos de seguridad, autenticaci\xF3n y registros de auditor\xEDa",
18927
- widgets: {
18928
18731
  widget_login_events: { title: "Eventos de Inicio de Sesi\xF3n", description: "Eventos de autenticaci\xF3n registrados por el log de auditor\xEDa" },
18929
18732
  widget_permission_changes: { title: "Cambios de Permisos", description: "Modificaciones recientes de permisos y roles" },
18930
18733
  widget_config_changes: { title: "Cambios de Configuraci\xF3n", description: "Modificaciones de configuraci\xF3n del sistema" },
18931
- widget_active_sessions: { title: "Sesiones Activas", description: "Sesiones de usuario actualmente activas" },
18932
- widget_events_by_type: { title: "Eventos de Auditor\xEDa por Tipo", description: "Distribuci\xF3n de eventos de seguridad y auditor\xEDa" },
18734
+ widget_events_by_type: { title: "Eventos de Auditor\xEDa por Acci\xF3n", description: "Distribuci\xF3n de eventos de auditor\xEDa por tipo de acci\xF3n" },
18933
18735
  widget_events_by_user: { title: "Eventos por Usuario", description: "Distribuci\xF3n de actividad entre usuarios" },
18934
- widget_recent_security_events: { title: "Eventos de Seguridad Recientes", description: "\xDAltimos cambios de permisos y configuraci\xF3n" }
18736
+ widget_recent_events: { title: "Eventos de Auditor\xEDa Recientes", description: "\xDAltimos eventos de la plataforma (inicio de sesi\xF3n, permisos, configuraci\xF3n, \u2026)" }
18935
18737
  }
18936
18738
  }
18937
18739
  }
@@ -18945,6 +18747,6 @@ var SetupAppTranslations = {
18945
18747
  "es-ES": esES
18946
18748
  };
18947
18749
 
18948
- export { SETUP_APP, SecurityOverviewDashboard, SetupAppTranslations, SysAccount, SysActivity, SysApiKey, SysApprovalAction, SysApprovalProcess, SysApprovalRequest, SysAttachment, SysAuditLog, SysComment, SysDepartment, SysDepartmentMember, SysDeviceCode, SysEmail, SysEmailTemplate, SysInvitation, SysJob, SysJobQueue, SysJobRun, SysJwks, SysMember, SysMetadataObject as SysMetadata, SysMetadataHistoryObject, SysMetadataObject, SysNotification, SysOauthAccessToken, SysOauthApplication, SysOauthConsent, SysOauthRefreshToken, SysOrganization, SysPermissionSet, SysPresence, SysRecordShare, SysReportSchedule, SysRole, SysRolePermissionSet, SysSavedReport, SysSecret, SysSession, SysSetting, SysSettingAudit, SysSharingRule, SysTeam, SysTeamMember, SysTwoFactor, SysUser, SysUserPermissionSet, SysUserPreference, SysVerification, SysWebhook, SystemOverviewDashboard, defaultPermissionSets, en, esES, jaJP, zhCN };
18750
+ export { SETUP_APP, SetupAppTranslations, SysAccount, SysActivity, SysApiKey, SysApprovalAction, SysApprovalProcess, SysApprovalRequest, SysAttachment, SysAuditLog, SysComment, SysDepartment, SysDepartmentMember, SysDeviceCode, SysEmail, SysEmailTemplate, SysInvitation, SysJob, SysJobQueue, SysJobRun, SysJwks, SysMember, SysMetadataObject as SysMetadata, SysMetadataHistoryObject, SysMetadataObject, SysNotification, SysOauthAccessToken, SysOauthApplication, SysOauthConsent, SysOauthRefreshToken, SysOrganization, SysPermissionSet, SysPresence, SysRecordShare, SysReportSchedule, SysRole, SysRolePermissionSet, SysSavedReport, SysSecret, SysSession, SysSetting, SysSettingAudit, SysSharingRule, SysTeam, SysTeamMember, SysTwoFactor, SysUser, SysUserPermissionSet, SysUserPreference, SysVerification, SysWebhook, SystemOverviewDashboard, defaultPermissionSets, en, esES, jaJP, zhCN };
18949
18751
  //# sourceMappingURL=index.mjs.map
18950
18752
  //# sourceMappingURL=index.mjs.map