@objectstack/platform-objects 6.5.1 → 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/apps/index.d.mts +18 -189
- package/dist/apps/index.d.ts +18 -189
- 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/identity/index.d.mts +110 -1
- package/dist/identity/index.d.ts +110 -1
- package/dist/identity/index.js +120 -1
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +120 -1
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +326 -271
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +327 -271
- package/dist/index.mjs.map +1 -1
- package/dist/security/index.d.mts +150 -0
- package/dist/security/index.d.ts +150 -0
- package/dist/security/index.js +135 -0
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +135 -0
- package/dist/security/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/apps/index.js
CHANGED
|
@@ -22,8 +22,7 @@ var SETUP_APP = {
|
|
|
22
22
|
label: "Overview",
|
|
23
23
|
icon: "layout-dashboard",
|
|
24
24
|
children: [
|
|
25
|
-
{ id: "nav_system_overview", type: "dashboard", label: "System Overview", dashboardName: "system_overview", icon: "activity" }
|
|
26
|
-
{ id: "nav_security_overview", type: "dashboard", label: "Security Overview", dashboardName: "security_overview", icon: "shield" }
|
|
25
|
+
{ id: "nav_system_overview", type: "dashboard", label: "System Overview", dashboardName: "system_overview", icon: "activity" }
|
|
27
26
|
]
|
|
28
27
|
},
|
|
29
28
|
{
|
|
@@ -85,9 +84,17 @@ var SETUP_APP = {
|
|
|
85
84
|
// is used (not `object`) because settings are stored in a generic
|
|
86
85
|
// K/V table (`sys_setting`) rather than per-namespace objects, and
|
|
87
86
|
// the renderer is a dedicated <SettingsView> page in objectui.
|
|
87
|
+
//
|
|
88
|
+
// Order mirrors `builtinSettingsManifests` so left-nav order matches
|
|
89
|
+
// the All-Settings index. AI groups chat + embedder under one entry
|
|
90
|
+
// because operators reason about them together; Knowledge is its
|
|
91
|
+
// own entry because the adapter selection is independent.
|
|
88
92
|
{ id: "nav_settings_hub", type: "url", label: "All Settings", url: "/apps/setup/system/settings", icon: "settings-2" },
|
|
89
|
-
{ id: "nav_settings_mail", type: "url", label: "Email", url: "/apps/setup/system/settings/mail", icon: "mail" },
|
|
90
93
|
{ id: "nav_settings_branding", type: "url", label: "Branding", url: "/apps/setup/system/settings/branding", icon: "palette" },
|
|
94
|
+
{ id: "nav_settings_mail", type: "url", label: "Email", url: "/apps/setup/system/settings/mail", icon: "mail" },
|
|
95
|
+
{ id: "nav_settings_storage", type: "url", label: "File Storage", url: "/apps/setup/system/settings/storage", icon: "hard-drive" },
|
|
96
|
+
{ id: "nav_settings_ai", type: "url", label: "AI & Embedder", url: "/apps/setup/system/settings/ai", icon: "sparkles" },
|
|
97
|
+
{ id: "nav_settings_knowledge", type: "url", label: "Knowledge", url: "/apps/setup/system/settings/knowledge", icon: "book-open" },
|
|
91
98
|
{ id: "nav_settings_feature_flags", type: "url", label: "Feature Flags", url: "/apps/setup/system/settings/feature_flags", icon: "flag" }
|
|
92
99
|
]
|
|
93
100
|
},
|
|
@@ -166,63 +173,42 @@ var SETUP_APP = {
|
|
|
166
173
|
var SystemOverviewDashboard = ui.Dashboard.create({
|
|
167
174
|
name: "system_overview",
|
|
168
175
|
label: "System Overview",
|
|
169
|
-
description: "Platform health,
|
|
170
|
-
// 12-column grid matches the widget `w` values below
|
|
171
|
-
// this, the renderer falls back to a 4-column grid and `w: 3` becomes 75%
|
|
172
|
-
// width per metric — so KPI cards stack vertically instead of forming a
|
|
173
|
-
// 4-up row.
|
|
176
|
+
description: "Platform health, security activity, and recent audit events",
|
|
177
|
+
// 12-column grid matches the widget `w` values below.
|
|
174
178
|
columns: 12,
|
|
175
179
|
gap: 4,
|
|
176
180
|
widgets: [
|
|
177
|
-
// ──
|
|
178
|
-
{
|
|
179
|
-
id: "widget_active_sessions",
|
|
180
|
-
title: "Active Sessions",
|
|
181
|
-
type: "metric",
|
|
182
|
-
object: "sys_session",
|
|
183
|
-
layout: {
|
|
184
|
-
x: 0,
|
|
185
|
-
y: 0,
|
|
186
|
-
w: 3,
|
|
187
|
-
h: 2
|
|
188
|
-
},
|
|
189
|
-
aggregate: "count",
|
|
190
|
-
colorVariant: "blue",
|
|
191
|
-
description: "Number of currently active user sessions"
|
|
192
|
-
},
|
|
193
|
-
// ── Total Users Widget ──────────────────────────────────────────
|
|
181
|
+
// ── Row 1: Platform KPIs ────────────────────────────────────────
|
|
194
182
|
{
|
|
195
183
|
id: "widget_total_users",
|
|
196
184
|
title: "Total Users",
|
|
197
185
|
type: "metric",
|
|
198
186
|
object: "sys_user",
|
|
199
|
-
layout: {
|
|
200
|
-
x: 3,
|
|
201
|
-
y: 0,
|
|
202
|
-
w: 3,
|
|
203
|
-
h: 2
|
|
204
|
-
},
|
|
187
|
+
layout: { x: 0, y: 0, w: 3, h: 2 },
|
|
205
188
|
aggregate: "count",
|
|
206
189
|
colorVariant: "teal",
|
|
207
190
|
description: "Total registered users in the system"
|
|
208
191
|
},
|
|
209
|
-
// ── Organizations Widget ────────────────────────────────────────
|
|
210
192
|
{
|
|
211
193
|
id: "widget_organizations",
|
|
212
194
|
title: "Organizations",
|
|
213
195
|
type: "metric",
|
|
214
196
|
object: "sys_organization",
|
|
215
|
-
layout: {
|
|
216
|
-
x: 6,
|
|
217
|
-
y: 0,
|
|
218
|
-
w: 3,
|
|
219
|
-
h: 2
|
|
220
|
-
},
|
|
197
|
+
layout: { x: 3, y: 0, w: 3, h: 2 },
|
|
221
198
|
aggregate: "count",
|
|
222
199
|
colorVariant: "orange",
|
|
223
200
|
description: "Total organizations on the platform"
|
|
224
201
|
},
|
|
225
|
-
|
|
202
|
+
{
|
|
203
|
+
id: "widget_active_sessions",
|
|
204
|
+
title: "Active Sessions",
|
|
205
|
+
type: "metric",
|
|
206
|
+
object: "sys_session",
|
|
207
|
+
layout: { x: 6, y: 0, w: 3, h: 2 },
|
|
208
|
+
aggregate: "count",
|
|
209
|
+
colorVariant: "blue",
|
|
210
|
+
description: "Number of currently active user sessions"
|
|
211
|
+
},
|
|
226
212
|
{
|
|
227
213
|
id: "widget_packages_installed",
|
|
228
214
|
title: "Packages Installed",
|
|
@@ -231,97 +217,13 @@ var SystemOverviewDashboard = ui.Dashboard.create({
|
|
|
231
217
|
// Cloud-only object — only registered when service-tenant is loaded.
|
|
232
218
|
// Hide this widget gracefully in single-environment runtimes.
|
|
233
219
|
requiresObject: "sys_package_installation",
|
|
234
|
-
layout: {
|
|
235
|
-
x: 9,
|
|
236
|
-
y: 0,
|
|
237
|
-
w: 3,
|
|
238
|
-
h: 2
|
|
239
|
-
},
|
|
220
|
+
layout: { x: 9, y: 0, w: 3, h: 2 },
|
|
240
221
|
filter: { status: "installed" },
|
|
241
222
|
aggregate: "count",
|
|
242
223
|
colorVariant: "success",
|
|
243
224
|
description: "Active package installations across projects"
|
|
244
225
|
},
|
|
245
|
-
// ──
|
|
246
|
-
// Note: relative date filters like `NOW() - INTERVAL 7 DAY` are not
|
|
247
|
-
// currently substituted by the analytics layer (see
|
|
248
|
-
// service-analytics/strategies/filter-normalizer.ts). The dashboard's
|
|
249
|
-
// `globalFilters` date-range bar at the bottom is the supported way
|
|
250
|
-
// to scope this widget.
|
|
251
|
-
{
|
|
252
|
-
id: "widget_audit_actions",
|
|
253
|
-
title: "Audit Actions",
|
|
254
|
-
description: "Distribution of audit events by action type",
|
|
255
|
-
type: "pie",
|
|
256
|
-
object: "sys_audit_log",
|
|
257
|
-
layout: {
|
|
258
|
-
x: 0,
|
|
259
|
-
y: 2,
|
|
260
|
-
w: 6,
|
|
261
|
-
h: 4
|
|
262
|
-
},
|
|
263
|
-
categoryField: "action",
|
|
264
|
-
aggregate: "count"
|
|
265
|
-
},
|
|
266
|
-
// ── Session Status Overview ─────────────────────────────────────
|
|
267
|
-
{
|
|
268
|
-
id: "widget_active_orgs",
|
|
269
|
-
title: "Sessions by Organization",
|
|
270
|
-
description: "Active sessions grouped by organization",
|
|
271
|
-
type: "bar",
|
|
272
|
-
object: "sys_session",
|
|
273
|
-
layout: {
|
|
274
|
-
x: 6,
|
|
275
|
-
y: 2,
|
|
276
|
-
w: 6,
|
|
277
|
-
h: 4
|
|
278
|
-
},
|
|
279
|
-
categoryField: "active_organization_id",
|
|
280
|
-
aggregate: "count"
|
|
281
|
-
},
|
|
282
|
-
// ── Recent Audit Log (Table) ────────────────────────────────────
|
|
283
|
-
// `type: 'table'` renders the underlying rows directly, so this
|
|
284
|
-
// panel actually shows the latest events instead of just repeating
|
|
285
|
-
// the total-count metric. `valueField`/`aggregate` are intentionally
|
|
286
|
-
// omitted — table widgets pull raw records.
|
|
287
|
-
{
|
|
288
|
-
id: "widget_recent_events",
|
|
289
|
-
title: "Recent Audit Events",
|
|
290
|
-
description: "Latest platform events",
|
|
291
|
-
type: "table",
|
|
292
|
-
object: "sys_audit_log",
|
|
293
|
-
layout: {
|
|
294
|
-
x: 0,
|
|
295
|
-
y: 6,
|
|
296
|
-
w: 12,
|
|
297
|
-
h: 4
|
|
298
|
-
},
|
|
299
|
-
options: {
|
|
300
|
-
columns: ["created_at", "user_id", "action", "object_name", "record_id"],
|
|
301
|
-
sort: [{ field: "created_at", order: "desc" }],
|
|
302
|
-
pageSize: 20
|
|
303
|
-
}
|
|
304
|
-
}
|
|
305
|
-
],
|
|
306
|
-
globalFilters: [
|
|
307
|
-
{
|
|
308
|
-
field: "created_at",
|
|
309
|
-
type: "date",
|
|
310
|
-
label: "Date Range",
|
|
311
|
-
scope: "dashboard",
|
|
312
|
-
defaultValue: "last_7_days"
|
|
313
|
-
}
|
|
314
|
-
]
|
|
315
|
-
});
|
|
316
|
-
var SecurityOverviewDashboard = ui.Dashboard.create({
|
|
317
|
-
name: "security_overview",
|
|
318
|
-
label: "Security Overview",
|
|
319
|
-
description: "Security events, authentication, and audit trails",
|
|
320
|
-
// 12-column grid matches the widget `w` values below.
|
|
321
|
-
columns: 12,
|
|
322
|
-
gap: 4,
|
|
323
|
-
widgets: [
|
|
324
|
-
// ── Login Events Widget ─────────────────────────────────────────
|
|
226
|
+
// ── Row 2: Security KPIs ────────────────────────────────────────
|
|
325
227
|
// The `sys_audit_log.action` enum doesn't distinguish failed vs
|
|
326
228
|
// successful logins (both fold into `action='login'`). Surfacing a
|
|
327
229
|
// total Login Events count is honest; a "Failed Logins" widget will
|
|
@@ -331,116 +233,72 @@ var SecurityOverviewDashboard = ui.Dashboard.create({
|
|
|
331
233
|
title: "Login Events",
|
|
332
234
|
type: "metric",
|
|
333
235
|
object: "sys_audit_log",
|
|
334
|
-
layout: {
|
|
335
|
-
x: 0,
|
|
336
|
-
y: 0,
|
|
337
|
-
w: 3,
|
|
338
|
-
h: 2
|
|
339
|
-
},
|
|
236
|
+
layout: { x: 0, y: 2, w: 4, h: 2 },
|
|
340
237
|
filter: { action: "login" },
|
|
341
238
|
aggregate: "count",
|
|
342
239
|
colorVariant: "blue",
|
|
343
240
|
description: "Authentication events recorded by the audit log"
|
|
344
241
|
},
|
|
345
|
-
// ── Permission Changes Widget ───────────────────────────────────
|
|
346
242
|
{
|
|
347
243
|
id: "widget_permission_changes",
|
|
348
244
|
title: "Permission Changes",
|
|
349
245
|
type: "metric",
|
|
350
246
|
object: "sys_audit_log",
|
|
351
|
-
layout: {
|
|
352
|
-
x: 3,
|
|
353
|
-
y: 0,
|
|
354
|
-
w: 3,
|
|
355
|
-
h: 2
|
|
356
|
-
},
|
|
247
|
+
layout: { x: 4, y: 2, w: 4, h: 2 },
|
|
357
248
|
filter: { action: "permission_change" },
|
|
358
249
|
aggregate: "count",
|
|
359
250
|
colorVariant: "warning",
|
|
360
251
|
description: "Recent permission and role modifications"
|
|
361
252
|
},
|
|
362
|
-
// ── System Config Changes Widget ────────────────────────────────
|
|
363
253
|
{
|
|
364
254
|
id: "widget_config_changes",
|
|
365
255
|
title: "Config Changes",
|
|
366
256
|
type: "metric",
|
|
367
257
|
object: "sys_audit_log",
|
|
368
|
-
layout: {
|
|
369
|
-
x: 6,
|
|
370
|
-
y: 0,
|
|
371
|
-
w: 3,
|
|
372
|
-
h: 2
|
|
373
|
-
},
|
|
258
|
+
layout: { x: 8, y: 2, w: 4, h: 2 },
|
|
374
259
|
filter: { action: "config_change" },
|
|
375
260
|
aggregate: "count",
|
|
376
261
|
colorVariant: "blue",
|
|
377
262
|
description: "System configuration modifications"
|
|
378
263
|
},
|
|
379
|
-
// ──
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
layout: {
|
|
386
|
-
x: 9,
|
|
387
|
-
y: 0,
|
|
388
|
-
w: 3,
|
|
389
|
-
h: 2
|
|
390
|
-
},
|
|
391
|
-
aggregate: "count",
|
|
392
|
-
colorVariant: "success",
|
|
393
|
-
description: "Currently active user sessions"
|
|
394
|
-
},
|
|
395
|
-
// ── Audit Events by Type ────────────────────────────────────────
|
|
264
|
+
// ── Row 3: Distribution charts ──────────────────────────────────
|
|
265
|
+
// Note: relative date filters like `NOW() - INTERVAL 7 DAY` are not
|
|
266
|
+
// currently substituted by the analytics layer (see
|
|
267
|
+
// service-analytics/strategies/filter-normalizer.ts). The dashboard's
|
|
268
|
+
// `globalFilters` date-range bar at the bottom is the supported way
|
|
269
|
+
// to scope these widgets.
|
|
396
270
|
{
|
|
397
271
|
id: "widget_events_by_type",
|
|
398
|
-
title: "Audit Events by
|
|
399
|
-
description: "Distribution of
|
|
272
|
+
title: "Audit Events by Action",
|
|
273
|
+
description: "Distribution of audit events by action type",
|
|
400
274
|
type: "pie",
|
|
401
275
|
object: "sys_audit_log",
|
|
402
|
-
layout: {
|
|
403
|
-
x: 0,
|
|
404
|
-
y: 2,
|
|
405
|
-
w: 6,
|
|
406
|
-
h: 4
|
|
407
|
-
},
|
|
276
|
+
layout: { x: 0, y: 4, w: 6, h: 4 },
|
|
408
277
|
categoryField: "action",
|
|
409
278
|
aggregate: "count"
|
|
410
279
|
},
|
|
411
|
-
// ── Audit Events by User ────────────────────────────────────────
|
|
412
280
|
{
|
|
413
281
|
id: "widget_events_by_user",
|
|
414
282
|
title: "Events by User",
|
|
415
283
|
description: "Activity distribution across users",
|
|
416
284
|
type: "bar",
|
|
417
285
|
object: "sys_audit_log",
|
|
418
|
-
layout: {
|
|
419
|
-
x: 6,
|
|
420
|
-
y: 2,
|
|
421
|
-
w: 6,
|
|
422
|
-
h: 4
|
|
423
|
-
},
|
|
286
|
+
layout: { x: 6, y: 4, w: 6, h: 4 },
|
|
424
287
|
categoryField: "user_id",
|
|
425
288
|
aggregate: "count"
|
|
426
289
|
},
|
|
427
|
-
// ── Recent
|
|
428
|
-
//
|
|
290
|
+
// ── Row 4: Recent audit events table ────────────────────────────
|
|
291
|
+
// `type: 'table'` renders the underlying rows directly, so this
|
|
292
|
+
// panel actually shows the latest events instead of just repeating
|
|
293
|
+
// the total-count metric. `valueField`/`aggregate` are intentionally
|
|
294
|
+
// omitted — table widgets pull raw records.
|
|
429
295
|
{
|
|
430
|
-
id: "
|
|
431
|
-
title: "Recent
|
|
432
|
-
description: "Latest permission
|
|
296
|
+
id: "widget_recent_events",
|
|
297
|
+
title: "Recent Audit Events",
|
|
298
|
+
description: "Latest platform events (login, permission, config, \u2026)",
|
|
433
299
|
type: "table",
|
|
434
300
|
object: "sys_audit_log",
|
|
435
|
-
layout: {
|
|
436
|
-
x: 0,
|
|
437
|
-
y: 6,
|
|
438
|
-
w: 12,
|
|
439
|
-
h: 4
|
|
440
|
-
},
|
|
441
|
-
filter: {
|
|
442
|
-
action: { $in: ["login", "logout", "permission_change", "config_change"] }
|
|
443
|
-
},
|
|
301
|
+
layout: { x: 0, y: 8, w: 12, h: 4 },
|
|
444
302
|
options: {
|
|
445
303
|
columns: ["created_at", "user_id", "action", "object_name", "record_id"],
|
|
446
304
|
sort: [{ field: "created_at", order: "desc" }],
|
|
@@ -3384,7 +3242,6 @@ var en = {
|
|
|
3384
3242
|
group_advanced: { label: "Advanced" },
|
|
3385
3243
|
// Overview
|
|
3386
3244
|
nav_system_overview: { label: "System Overview" },
|
|
3387
|
-
nav_security_overview: { label: "Security Overview" },
|
|
3388
3245
|
// People & Organization
|
|
3389
3246
|
nav_users: { label: "Users" },
|
|
3390
3247
|
nav_departments: { label: "Departments" },
|
|
@@ -3425,12 +3282,8 @@ var en = {
|
|
|
3425
3282
|
dashboards: {
|
|
3426
3283
|
system_overview: {
|
|
3427
3284
|
label: "System Overview",
|
|
3428
|
-
description: "Platform health,
|
|
3285
|
+
description: "Platform health, security activity, and recent audit events",
|
|
3429
3286
|
widgets: {
|
|
3430
|
-
widget_active_sessions: {
|
|
3431
|
-
title: "Active Sessions",
|
|
3432
|
-
description: "Number of currently active user sessions"
|
|
3433
|
-
},
|
|
3434
3287
|
widget_total_users: {
|
|
3435
3288
|
title: "Total Users",
|
|
3436
3289
|
description: "Total registered users in the system"
|
|
@@ -3439,28 +3292,14 @@ var en = {
|
|
|
3439
3292
|
title: "Organizations",
|
|
3440
3293
|
description: "Total organizations on the platform"
|
|
3441
3294
|
},
|
|
3295
|
+
widget_active_sessions: {
|
|
3296
|
+
title: "Active Sessions",
|
|
3297
|
+
description: "Number of currently active user sessions"
|
|
3298
|
+
},
|
|
3442
3299
|
widget_packages_installed: {
|
|
3443
3300
|
title: "Packages Installed",
|
|
3444
3301
|
description: "Active package installations across projects"
|
|
3445
3302
|
},
|
|
3446
|
-
widget_audit_actions: {
|
|
3447
|
-
title: "Audit Actions",
|
|
3448
|
-
description: "Distribution of audit events by action type"
|
|
3449
|
-
},
|
|
3450
|
-
widget_active_orgs: {
|
|
3451
|
-
title: "Sessions by Organization",
|
|
3452
|
-
description: "Active sessions grouped by organization"
|
|
3453
|
-
},
|
|
3454
|
-
widget_recent_events: {
|
|
3455
|
-
title: "Recent Audit Events",
|
|
3456
|
-
description: "Latest platform events"
|
|
3457
|
-
}
|
|
3458
|
-
}
|
|
3459
|
-
},
|
|
3460
|
-
security_overview: {
|
|
3461
|
-
label: "Security Overview",
|
|
3462
|
-
description: "Security events, authentication, and audit trails",
|
|
3463
|
-
widgets: {
|
|
3464
3303
|
widget_login_events: {
|
|
3465
3304
|
title: "Login Events",
|
|
3466
3305
|
description: "Authentication events recorded by the audit log"
|
|
@@ -3473,21 +3312,17 @@ var en = {
|
|
|
3473
3312
|
title: "Config Changes",
|
|
3474
3313
|
description: "System configuration modifications"
|
|
3475
3314
|
},
|
|
3476
|
-
widget_active_sessions: {
|
|
3477
|
-
title: "Active Sessions",
|
|
3478
|
-
description: "Currently active user sessions"
|
|
3479
|
-
},
|
|
3480
3315
|
widget_events_by_type: {
|
|
3481
|
-
title: "Audit Events by
|
|
3482
|
-
description: "Distribution of
|
|
3316
|
+
title: "Audit Events by Action",
|
|
3317
|
+
description: "Distribution of audit events by action type"
|
|
3483
3318
|
},
|
|
3484
3319
|
widget_events_by_user: {
|
|
3485
3320
|
title: "Events by User",
|
|
3486
3321
|
description: "Activity distribution across users"
|
|
3487
3322
|
},
|
|
3488
|
-
|
|
3489
|
-
title: "Recent
|
|
3490
|
-
description: "Latest permission
|
|
3323
|
+
widget_recent_events: {
|
|
3324
|
+
title: "Recent Audit Events",
|
|
3325
|
+
description: "Latest platform events (login, permission, config, \u2026)"
|
|
3491
3326
|
}
|
|
3492
3327
|
}
|
|
3493
3328
|
}
|
|
@@ -6421,7 +6256,6 @@ var zhCN = {
|
|
|
6421
6256
|
group_diagnostics: { label: "\u8BCA\u65AD" },
|
|
6422
6257
|
group_advanced: { label: "\u9AD8\u7EA7" },
|
|
6423
6258
|
nav_system_overview: { label: "\u7CFB\u7EDF\u6982\u89C8" },
|
|
6424
|
-
nav_security_overview: { label: "\u5B89\u5168\u6982\u89C8" },
|
|
6425
6259
|
nav_users: { label: "\u7528\u6237" },
|
|
6426
6260
|
nav_departments: { label: "\u90E8\u95E8" },
|
|
6427
6261
|
nav_teams: { label: "\u56E2\u961F" },
|
|
@@ -6456,28 +6290,18 @@ var zhCN = {
|
|
|
6456
6290
|
dashboards: {
|
|
6457
6291
|
system_overview: {
|
|
6458
6292
|
label: "\u7CFB\u7EDF\u6982\u89C8",
|
|
6459
|
-
description: "\u5E73\u53F0\u8FD0\u884C\u72B6\u51B5\u3001\
|
|
6293
|
+
description: "\u5E73\u53F0\u8FD0\u884C\u72B6\u51B5\u3001\u5B89\u5168\u6D3B\u52A8\u4E0E\u6700\u8FD1\u5BA1\u8BA1\u4E8B\u4EF6",
|
|
6460
6294
|
widgets: {
|
|
6461
|
-
widget_active_sessions: { title: "\u6D3B\u8DC3\u4F1A\u8BDD", description: "\u5F53\u524D\u6D3B\u8DC3\u7528\u6237\u4F1A\u8BDD\u6570\u91CF" },
|
|
6462
6295
|
widget_total_users: { title: "\u7528\u6237\u603B\u6570", description: "\u7CFB\u7EDF\u4E2D\u5DF2\u6CE8\u518C\u7684\u7528\u6237\u603B\u6570" },
|
|
6463
6296
|
widget_organizations: { title: "\u7EC4\u7EC7\u6570", description: "\u5E73\u53F0\u4E0A\u7684\u7EC4\u7EC7\u603B\u6570" },
|
|
6297
|
+
widget_active_sessions: { title: "\u6D3B\u8DC3\u4F1A\u8BDD", description: "\u5F53\u524D\u6D3B\u8DC3\u7528\u6237\u4F1A\u8BDD\u6570\u91CF" },
|
|
6464
6298
|
widget_packages_installed: { title: "\u5DF2\u5B89\u88C5\u5305", description: "\u9879\u76EE\u4E2D\u5DF2\u6FC0\u6D3B\u7684\u5B89\u88C5\u5305\u6570" },
|
|
6465
|
-
widget_audit_actions: { title: "\u5BA1\u8BA1\u64CD\u4F5C", description: "\u6309\u64CD\u4F5C\u7C7B\u578B\u5206\u5E03\u7684\u5BA1\u8BA1\u4E8B\u4EF6" },
|
|
6466
|
-
widget_active_orgs: { title: "\u6309\u7EC4\u7EC7\u5212\u5206\u4F1A\u8BDD", description: "\u6309\u7EC4\u7EC7\u5206\u7EC4\u7684\u6D3B\u8DC3\u4F1A\u8BDD" },
|
|
6467
|
-
widget_recent_events: { title: "\u6700\u8FD1\u5BA1\u8BA1\u4E8B\u4EF6", description: "\u6700\u65B0\u7684\u5E73\u53F0\u4E8B\u4EF6" }
|
|
6468
|
-
}
|
|
6469
|
-
},
|
|
6470
|
-
security_overview: {
|
|
6471
|
-
label: "\u5B89\u5168\u6982\u89C8",
|
|
6472
|
-
description: "\u5B89\u5168\u4E8B\u4EF6\u3001\u8EAB\u4EFD\u8BA4\u8BC1\u4E0E\u5BA1\u8BA1\u8FFD\u8E2A",
|
|
6473
|
-
widgets: {
|
|
6474
6299
|
widget_login_events: { title: "\u767B\u5F55\u4E8B\u4EF6", description: "\u5BA1\u8BA1\u65E5\u5FD7\u4E2D\u8BB0\u5F55\u7684\u8BA4\u8BC1\u4E8B\u4EF6" },
|
|
6475
6300
|
widget_permission_changes: { title: "\u6743\u9650\u53D8\u66F4", description: "\u6700\u8FD1\u7684\u6743\u9650\u548C\u89D2\u8272\u4FEE\u6539" },
|
|
6476
6301
|
widget_config_changes: { title: "\u914D\u7F6E\u53D8\u66F4", description: "\u7CFB\u7EDF\u914D\u7F6E\u4FEE\u6539" },
|
|
6477
|
-
|
|
6478
|
-
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" },
|
|
6302
|
+
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" },
|
|
6479
6303
|
widget_events_by_user: { title: "\u6309\u7528\u6237\u5206\u5E03\u7684\u4E8B\u4EF6", description: "\u7528\u6237\u6D3B\u52A8\u5206\u5E03" },
|
|
6480
|
-
|
|
6304
|
+
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" }
|
|
6481
6305
|
}
|
|
6482
6306
|
}
|
|
6483
6307
|
}
|
|
@@ -9406,7 +9230,6 @@ var jaJP = {
|
|
|
9406
9230
|
group_diagnostics: { label: "\u8A3A\u65AD" },
|
|
9407
9231
|
group_advanced: { label: "\u8A73\u7D30" },
|
|
9408
9232
|
nav_system_overview: { label: "\u30B7\u30B9\u30C6\u30E0\u6982\u8981" },
|
|
9409
|
-
nav_security_overview: { label: "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u6982\u8981" },
|
|
9410
9233
|
nav_users: { label: "\u30E6\u30FC\u30B6\u30FC" },
|
|
9411
9234
|
nav_departments: { label: "\u90E8\u7F72" },
|
|
9412
9235
|
nav_teams: { label: "\u30C1\u30FC\u30E0" },
|
|
@@ -9441,28 +9264,18 @@ var jaJP = {
|
|
|
9441
9264
|
dashboards: {
|
|
9442
9265
|
system_overview: {
|
|
9443
9266
|
label: "\u30B7\u30B9\u30C6\u30E0\u6982\u8981",
|
|
9444
|
-
description: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u306E\u5065\u5168\u6027\u3001\u30BB\
|
|
9267
|
+
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",
|
|
9445
9268
|
widgets: {
|
|
9446
|
-
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" },
|
|
9447
9269
|
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" },
|
|
9448
9270
|
widget_organizations: { title: "\u7D44\u7E54", description: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u4E0A\u306E\u7D44\u7E54\u7DCF\u6570" },
|
|
9271
|
+
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" },
|
|
9449
9272
|
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" },
|
|
9450
|
-
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" },
|
|
9451
|
-
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" },
|
|
9452
|
-
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" }
|
|
9453
|
-
}
|
|
9454
|
-
},
|
|
9455
|
-
security_overview: {
|
|
9456
|
-
label: "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u6982\u8981",
|
|
9457
|
-
description: "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u30A4\u30D9\u30F3\u30C8\u3001\u8A8D\u8A3C\u3001\u76E3\u67FB\u8A3C\u8DE1",
|
|
9458
|
-
widgets: {
|
|
9459
9273
|
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" },
|
|
9460
9274
|
widget_permission_changes: { title: "\u6A29\u9650\u5909\u66F4", description: "\u6700\u8FD1\u306E\u6A29\u9650\u3068\u30ED\u30FC\u30EB\u306E\u5909\u66F4" },
|
|
9461
9275
|
widget_config_changes: { title: "\u69CB\u6210\u5909\u66F4", description: "\u30B7\u30B9\u30C6\u30E0\u69CB\u6210\u306E\u5909\u66F4" },
|
|
9462
|
-
|
|
9463
|
-
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" },
|
|
9276
|
+
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" },
|
|
9464
9277
|
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" },
|
|
9465
|
-
|
|
9278
|
+
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" }
|
|
9466
9279
|
}
|
|
9467
9280
|
}
|
|
9468
9281
|
}
|
|
@@ -12391,7 +12204,6 @@ var esES = {
|
|
|
12391
12204
|
group_diagnostics: { label: "Diagn\xF3stico" },
|
|
12392
12205
|
group_advanced: { label: "Avanzado" },
|
|
12393
12206
|
nav_system_overview: { label: "Resumen del Sistema" },
|
|
12394
|
-
nav_security_overview: { label: "Resumen de Seguridad" },
|
|
12395
12207
|
nav_users: { label: "Usuarios" },
|
|
12396
12208
|
nav_departments: { label: "Departamentos" },
|
|
12397
12209
|
nav_teams: { label: "Equipos" },
|
|
@@ -12426,28 +12238,18 @@ var esES = {
|
|
|
12426
12238
|
dashboards: {
|
|
12427
12239
|
system_overview: {
|
|
12428
12240
|
label: "Resumen del Sistema",
|
|
12429
|
-
description: "Estado de la plataforma,
|
|
12241
|
+
description: "Estado de la plataforma, actividad de seguridad y eventos de auditor\xEDa recientes",
|
|
12430
12242
|
widgets: {
|
|
12431
|
-
widget_active_sessions: { title: "Sesiones Activas", description: "N\xFAmero de sesiones de usuario activas en este momento" },
|
|
12432
12243
|
widget_total_users: { title: "Usuarios Totales", description: "Total de usuarios registrados en el sistema" },
|
|
12433
12244
|
widget_organizations: { title: "Organizaciones", description: "Total de organizaciones en la plataforma" },
|
|
12245
|
+
widget_active_sessions: { title: "Sesiones Activas", description: "N\xFAmero de sesiones de usuario activas en este momento" },
|
|
12434
12246
|
widget_packages_installed: { title: "Paquetes Instalados", description: "Instalaciones de paquetes activas en los proyectos" },
|
|
12435
|
-
widget_audit_actions: { title: "Acciones de Auditor\xEDa", description: "Distribuci\xF3n de eventos de auditor\xEDa por tipo de acci\xF3n" },
|
|
12436
|
-
widget_active_orgs: { title: "Sesiones por Organizaci\xF3n", description: "Sesiones activas agrupadas por organizaci\xF3n" },
|
|
12437
|
-
widget_recent_events: { title: "Eventos de Auditor\xEDa Recientes", description: "\xDAltimos eventos de la plataforma" }
|
|
12438
|
-
}
|
|
12439
|
-
},
|
|
12440
|
-
security_overview: {
|
|
12441
|
-
label: "Resumen de Seguridad",
|
|
12442
|
-
description: "Eventos de seguridad, autenticaci\xF3n y registros de auditor\xEDa",
|
|
12443
|
-
widgets: {
|
|
12444
12247
|
widget_login_events: { title: "Eventos de Inicio de Sesi\xF3n", description: "Eventos de autenticaci\xF3n registrados por el log de auditor\xEDa" },
|
|
12445
12248
|
widget_permission_changes: { title: "Cambios de Permisos", description: "Modificaciones recientes de permisos y roles" },
|
|
12446
12249
|
widget_config_changes: { title: "Cambios de Configuraci\xF3n", description: "Modificaciones de configuraci\xF3n del sistema" },
|
|
12447
|
-
|
|
12448
|
-
widget_events_by_type: { title: "Eventos de Auditor\xEDa por Tipo", description: "Distribuci\xF3n de eventos de seguridad y auditor\xEDa" },
|
|
12250
|
+
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" },
|
|
12449
12251
|
widget_events_by_user: { title: "Eventos por Usuario", description: "Distribuci\xF3n de actividad entre usuarios" },
|
|
12450
|
-
|
|
12252
|
+
widget_recent_events: { title: "Eventos de Auditor\xEDa Recientes", description: "\xDAltimos eventos de la plataforma (inicio de sesi\xF3n, permisos, configuraci\xF3n, \u2026)" }
|
|
12451
12253
|
}
|
|
12452
12254
|
}
|
|
12453
12255
|
}
|
|
@@ -12462,7 +12264,6 @@ var SetupAppTranslations = {
|
|
|
12462
12264
|
};
|
|
12463
12265
|
|
|
12464
12266
|
exports.SETUP_APP = SETUP_APP;
|
|
12465
|
-
exports.SecurityOverviewDashboard = SecurityOverviewDashboard;
|
|
12466
12267
|
exports.SetupAppTranslations = SetupAppTranslations;
|
|
12467
12268
|
exports.SystemOverviewDashboard = SystemOverviewDashboard;
|
|
12468
12269
|
exports.en = en;
|