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