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