@objectstack/platform-objects 13.0.0 → 14.5.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.
Files changed (41) hide show
  1. package/dist/apps/index.d.mts +1 -1
  2. package/dist/apps/index.d.ts +1 -1
  3. package/dist/apps/index.js +525 -1200
  4. package/dist/apps/index.js.map +1 -1
  5. package/dist/apps/index.mjs +525 -1200
  6. package/dist/apps/index.mjs.map +1 -1
  7. package/dist/audit/index.d.mts +262 -10
  8. package/dist/audit/index.d.ts +262 -10
  9. package/dist/audit/index.js +14 -0
  10. package/dist/audit/index.js.map +1 -1
  11. package/dist/audit/index.mjs +14 -0
  12. package/dist/audit/index.mjs.map +1 -1
  13. package/dist/identity/index.d.mts +1403 -236
  14. package/dist/identity/index.d.ts +1403 -236
  15. package/dist/identity/index.js +177 -17
  16. package/dist/identity/index.js.map +1 -1
  17. package/dist/identity/index.mjs +177 -17
  18. package/dist/identity/index.mjs.map +1 -1
  19. package/dist/index.d.mts +1 -1
  20. package/dist/index.d.ts +1 -1
  21. package/dist/index.js +1878 -1736
  22. package/dist/index.js.map +1 -1
  23. package/dist/index.mjs +1878 -1737
  24. package/dist/index.mjs.map +1 -1
  25. package/dist/metadata-translations/index.js +1020 -488
  26. package/dist/metadata-translations/index.js.map +1 -1
  27. package/dist/metadata-translations/index.mjs +1020 -488
  28. package/dist/metadata-translations/index.mjs.map +1 -1
  29. package/dist/pages/index.d.mts +34 -3
  30. package/dist/pages/index.d.ts +34 -3
  31. package/dist/pages/index.js +111 -0
  32. package/dist/pages/index.js.map +1 -1
  33. package/dist/pages/index.mjs +111 -1
  34. package/dist/pages/index.mjs.map +1 -1
  35. package/dist/plugin.js +1564 -1707
  36. package/dist/plugin.js.map +1 -1
  37. package/dist/plugin.mjs +1564 -1707
  38. package/dist/plugin.mjs.map +1 -1
  39. package/dist/system/index.d.mts +75 -3
  40. package/dist/system/index.d.ts +75 -3
  41. package/package.json +3 -3
@@ -146,12 +146,12 @@ var SETUP_NAV_CONTRIBUTIONS = [
146
146
  {
147
147
  app: "setup",
148
148
  group: "group_access_control",
149
- // Priority 300 keeps API Keys after plugin-security's Roles / Permission
149
+ // Priority 300 keeps API Keys after plugin-security's Positions / Permission
150
150
  // Sets (100) and plugin-sharing's Sharing Rules / Record Shares (200),
151
151
  // preserving the original menu order.
152
152
  priority: 300,
153
153
  items: [
154
- // Roles / Permission Sets are contributed by @objectstack/plugin-security
154
+ // Positions / Permission Sets are contributed by @objectstack/plugin-security
155
155
  // and Sharing Rules / Record Shares by @objectstack/plugin-sharing
156
156
  // (ADR-0029 K2). Only API Keys (sys_api_key, an identity object owned by
157
157
  // plugin-auth) remains a platform-objects base entry here.
@@ -914,14 +914,64 @@ var enObjects = {
914
914
  label: "Ban Expires",
915
915
  help: "When set, the ban auto-clears at this time."
916
916
  },
917
+ failed_login_count: {
918
+ label: "Failed Login Count",
919
+ help: "Consecutive failed sign-in attempts; reset to 0 on success. Maintained by the auth manager."
920
+ },
921
+ locked_until: {
922
+ label: "Locked Until",
923
+ help: "When set and in the future, sign-in is rejected (brute-force lockout). Auto-clears past this time; an admin can clear it early via Unlock."
924
+ },
925
+ password_changed_at: {
926
+ label: "Password Changed At",
927
+ help: "Timestamp of the last password change. Backs password_expiry_days; system-managed."
928
+ },
929
+ phone_number: {
930
+ label: "Phone Number",
931
+ help: "Sign-in phone number (E.164 recommended). Unique per user; managed by better-auth when the phoneNumber plugin is enabled."
932
+ },
933
+ phone_number_verified: {
934
+ label: "Phone Verified",
935
+ help: "Whether the phone number has been verified (OTP verification requires SMS infrastructure; false until that ships). System-managed."
936
+ },
937
+ must_change_password: {
938
+ label: "Must Change Password",
939
+ help: "When true, the user is blocked (403 PASSWORD_EXPIRED) until they change their password. Stamped by the admin user-management routes; system-managed."
940
+ },
941
+ mfa_required_at: {
942
+ label: "MFA Required At",
943
+ help: "When enforced MFA first applied to this user (grace-period clock). Backs mfa_required; system-managed."
944
+ },
945
+ last_login_at: {
946
+ label: "Last Login At",
947
+ help: "Timestamp of the last successful sign-in. Stamped by the auth manager; system-managed."
948
+ },
949
+ last_login_ip: {
950
+ label: "Last Login IP",
951
+ help: "Client IP of the last successful sign-in (from the trusted proxy forwarded header). System-managed."
952
+ },
953
+ ai_access: {
954
+ label: "AI Access",
955
+ help: "Whether this user holds an AI seat \u2014 grants access to the in-UI AI agents (build / ask). The framework synthesizes the `ai_seat` capability from this flag (plugin-hono-server resolveCtx). Assignment is capped by the licensed / purchased seat count (enforced by @objectstack/security-enterprise AiSeatPlugin). Owned by objectql (better-auth is oblivious to this column)."
956
+ },
917
957
  image: {
918
958
  label: "Profile Image"
919
959
  },
920
960
  manager_id: {
921
- label: "Manager"
961
+ label: "Manager",
962
+ help: "This user's direct manager. Forms the reporting chain the `own_and_reports` hierarchy scope walks (ADR-0057 / @objectstack/security-enterprise)."
922
963
  },
923
964
  primary_business_unit_id: {
924
- label: "Primary Business Unit"
965
+ label: "Primary Business Unit",
966
+ help: "The user's primary business unit \u2014 a denormalised projection of sys_business_unit_member.is_primary, maintained by plugin-sharing (ADR-0057 addendum D12). Lets a user-lookup filter candidates by business unit without traversing the membership junction. Do not edit directly; set it via business-unit membership."
967
+ },
968
+ source: {
969
+ label: "Identity Source",
970
+ help: "How this identity was created \u2014 idp_provisioned (federated SSO JIT) or env_native (local signup / app end-user). System-managed; do not edit.",
971
+ options: {
972
+ idp_provisioned: "IdP-Provisioned",
973
+ env_native: "Env-Native"
974
+ }
925
975
  },
926
976
  id: {
927
977
  label: "User ID"
@@ -964,6 +1014,14 @@ var enObjects = {
964
1014
  label: "Unban User",
965
1015
  successMessage: "User unbanned"
966
1016
  },
1017
+ unlock_user: {
1018
+ label: "Unlock Account",
1019
+ successMessage: "Account unlocked"
1020
+ },
1021
+ create_user: {
1022
+ label: "Create User",
1023
+ successMessage: "User created"
1024
+ },
967
1025
  set_user_password: {
968
1026
  label: "Set Password",
969
1027
  successMessage: "Password updated"
@@ -1025,6 +1083,18 @@ var enObjects = {
1025
1083
  expires_at: {
1026
1084
  label: "Expires At"
1027
1085
  },
1086
+ last_activity_at: {
1087
+ label: "Last Activity At",
1088
+ help: "Timestamp of the last request on this session; drives idle-timeout. System-managed."
1089
+ },
1090
+ revoked_at: {
1091
+ label: "Revoked At",
1092
+ help: "When set, this session was revoked (idle / absolute-max / concurrent-cap / admin). System-managed."
1093
+ },
1094
+ revoke_reason: {
1095
+ label: "Revoke Reason",
1096
+ help: "Why the session was revoked (idle_timeout, absolute_max, concurrent_cap, \u2026)."
1097
+ },
1028
1098
  active_organization_id: {
1029
1099
  label: "Active Organization"
1030
1100
  },
@@ -1123,6 +1193,10 @@ var enObjects = {
1123
1193
  password: {
1124
1194
  label: "Password Hash",
1125
1195
  help: "Hashed password for email/password provider"
1196
+ },
1197
+ previous_password_hashes: {
1198
+ label: "Previous Password Hashes",
1199
+ help: "JSON array of prior password hashes (bounded by password_history_count); reuse-prevention only. System-managed."
1126
1200
  }
1127
1201
  },
1128
1202
  _views: {
@@ -1193,6 +1267,10 @@ var enObjects = {
1193
1267
  label: "Metadata",
1194
1268
  help: "JSON-serialized organization metadata"
1195
1269
  },
1270
+ require_mfa: {
1271
+ label: "Require Multi-Factor Auth",
1272
+ help: "When true, every member of this organization must enroll an authenticator app to access data."
1273
+ },
1196
1274
  id: {
1197
1275
  label: "Organization ID"
1198
1276
  },
@@ -1517,6 +1595,9 @@ var enObjects = {
1517
1595
  }
1518
1596
  },
1519
1597
  _views: {
1598
+ org_chart: {
1599
+ label: "Org Chart"
1600
+ },
1520
1601
  active: {
1521
1602
  label: "Active"
1522
1603
  },
@@ -2098,263 +2179,57 @@ var enObjects = {
2098
2179
  }
2099
2180
  }
2100
2181
  },
2101
- sys_audit_log: {
2102
- label: "Audit Log",
2103
- pluralLabel: "Audit Logs",
2104
- description: "Immutable audit trail for platform events",
2105
- fields: {
2106
- created_at: {
2107
- label: "Timestamp"
2108
- },
2109
- action: {
2110
- label: "Action",
2111
- help: "Action type (snake_case)",
2112
- options: {
2113
- create: "create",
2114
- update: "update",
2115
- delete: "delete",
2116
- restore: "restore",
2117
- login: "login",
2118
- logout: "logout",
2119
- permission_change: "permission_change",
2120
- config_change: "config_change",
2121
- export: "export",
2122
- import: "import"
2123
- }
2124
- },
2125
- user_id: {
2126
- label: "Actor",
2127
- help: "User who performed the action (null for system actions)"
2128
- },
2129
- object_name: {
2130
- label: "Object",
2131
- help: "Target object (e.g. sys_user, project_task)"
2132
- },
2133
- record_id: {
2134
- label: "Record ID",
2135
- help: "ID of the affected record"
2136
- },
2137
- old_value: {
2138
- label: "Old Value",
2139
- help: "JSON-serialized previous state"
2140
- },
2141
- new_value: {
2142
- label: "New Value",
2143
- help: "JSON-serialized new state"
2144
- },
2145
- ip_address: {
2146
- label: "IP Address"
2147
- },
2148
- user_agent: {
2149
- label: "User Agent"
2150
- },
2151
- tenant_id: {
2152
- label: "Tenant",
2153
- help: "Tenant context for multi-tenant isolation"
2154
- },
2155
- metadata: {
2156
- label: "Metadata",
2157
- help: "JSON-serialized additional context"
2158
- },
2159
- id: {
2160
- label: "Audit Log ID"
2161
- }
2162
- },
2163
- _views: {
2164
- recent: {
2165
- label: "Recent"
2166
- },
2167
- writes_only: {
2168
- label: "Writes"
2169
- },
2170
- auth_events: {
2171
- label: "Auth"
2172
- },
2173
- config_changes: {
2174
- label: "Config"
2175
- },
2176
- all_events: {
2177
- label: "All"
2178
- }
2179
- }
2180
- },
2181
- sys_presence: {
2182
- label: "Presence",
2183
- pluralLabel: "Presences",
2184
- description: "Real-time user presence and activity tracking",
2182
+ sys_notification: {
2183
+ label: "Notification",
2184
+ pluralLabel: "Notifications",
2185
+ description: "Per-user notification inbox entries",
2185
2186
  fields: {
2186
2187
  id: {
2187
- label: "Presence ID"
2188
- },
2189
- created_at: {
2190
- label: "Created At"
2191
- },
2192
- updated_at: {
2193
- label: "Updated At"
2194
- },
2195
- user_id: {
2196
- label: "User"
2197
- },
2198
- session_id: {
2199
- label: "Session"
2200
- },
2201
- status: {
2202
- label: "Status",
2203
- options: {
2204
- online: "Online",
2205
- away: "Away",
2206
- busy: "Busy",
2207
- offline: "Offline"
2208
- }
2188
+ label: "Notification ID"
2209
2189
  },
2210
- last_seen: {
2211
- label: "Last Seen"
2190
+ topic: {
2191
+ label: "Topic",
2192
+ help: "Notification topic, e.g. task.assigned, collab.mention"
2212
2193
  },
2213
- current_location: {
2214
- label: "Current Location"
2194
+ payload: {
2195
+ label: "Payload",
2196
+ help: "Template inputs carried to channels (title/body/url/actor/source/\u2026)"
2215
2197
  },
2216
- device: {
2217
- label: "Device",
2198
+ severity: {
2199
+ label: "Severity",
2200
+ help: "Severity hint for rendering / filtering",
2218
2201
  options: {
2219
- desktop: "Desktop",
2220
- mobile: "Mobile",
2221
- tablet: "Tablet",
2222
- other: "Other"
2202
+ info: "info",
2203
+ warning: "warning",
2204
+ critical: "critical"
2223
2205
  }
2224
2206
  },
2225
- custom_status: {
2226
- label: "Custom Status"
2227
- },
2228
- metadata: {
2229
- label: "Metadata",
2230
- help: "Arbitrary JSON metadata associated with the presence state (matches PresenceStateSchema.metadata)."
2231
- }
2232
- }
2233
- },
2234
- sys_activity: {
2235
- label: "Activity",
2236
- pluralLabel: "Activities",
2237
- description: "Recent activity stream entries (lightweight, denormalized)",
2238
- fields: {
2239
- id: {
2240
- label: "Activity ID"
2241
- },
2242
- timestamp: {
2243
- label: "Timestamp"
2207
+ dedup_key: {
2208
+ label: "Dedup Key",
2209
+ help: "Idempotency key within a topic window; a repeat emit is a no-op"
2244
2210
  },
2245
- type: {
2246
- label: "Type",
2247
- options: {
2248
- created: "created",
2249
- updated: "updated",
2250
- deleted: "deleted",
2251
- commented: "commented",
2252
- mentioned: "mentioned",
2253
- shared: "shared",
2254
- assigned: "assigned",
2255
- completed: "completed",
2256
- login: "login",
2257
- logout: "logout",
2258
- system: "system"
2259
- }
2211
+ source_object: {
2212
+ label: "Source Object",
2213
+ help: "Object name of the related record (e.g. lead, opportunity)"
2260
2214
  },
2261
- summary: {
2262
- label: "Summary",
2263
- help: "Human-readable one-line summary"
2215
+ source_id: {
2216
+ label: "Source Record",
2217
+ help: "Record id within source_object"
2264
2218
  },
2265
2219
  actor_id: {
2266
- label: "Actor"
2267
- },
2268
- actor_name: {
2269
- label: "Actor Name"
2270
- },
2271
- actor_avatar_url: {
2272
- label: "Actor Avatar"
2273
- },
2274
- object_name: {
2275
- label: "Object",
2276
- help: "Target object short name (e.g. account, sys_user)"
2277
- },
2278
- record_id: {
2279
- label: "Record ID"
2280
- },
2281
- record_label: {
2282
- label: "Record Label",
2283
- help: "Display label of the target record at write time"
2284
- },
2285
- url: {
2286
- label: "URL",
2287
- help: "Optional deep-link to the activity target"
2288
- },
2289
- environment_id: {
2290
- label: "Project",
2291
- help: "Environment context (multi-environment deployments)"
2292
- },
2293
- metadata: {
2294
- label: "Metadata",
2295
- help: "JSON-serialized additional context"
2296
- }
2297
- }
2298
- },
2299
- sys_comment: {
2300
- label: "Comment",
2301
- pluralLabel: "Comments",
2302
- description: "Threaded comments attached to records via thread_id",
2303
- fields: {
2304
- id: {
2305
- label: "Comment ID"
2306
- },
2307
- thread_id: {
2308
- label: "Thread",
2309
- help: "Thread identifier \u2014 conventionally `{object}:{record_id}` (e.g. `sys_user:abc123`)"
2310
- },
2311
- parent_id: {
2312
- label: "Parent Comment",
2313
- help: "Optional parent comment for nested replies"
2314
- },
2315
- reply_count: {
2316
- label: "Reply Count"
2317
- },
2318
- author_id: {
2319
- label: "Author"
2320
- },
2321
- author_name: {
2322
- label: "Author Name"
2323
- },
2324
- author_avatar_url: {
2325
- label: "Author Avatar"
2326
- },
2327
- body: {
2328
- label: "Body",
2329
- help: "Comment text (Markdown supported)"
2330
- },
2331
- mentions: {
2332
- label: "Mentions",
2333
- help: "JSON array of @mention objects"
2334
- },
2335
- reactions: {
2336
- label: "Reactions",
2337
- help: "JSON array of emoji reaction objects"
2338
- },
2339
- is_edited: {
2340
- label: "Edited"
2341
- },
2342
- edited_at: {
2343
- label: "Edited At"
2344
- },
2345
- visibility: {
2346
- label: "Visibility",
2347
- options: {
2348
- public: "public",
2349
- internal: "internal",
2350
- private: "private"
2351
- }
2220
+ label: "Actor",
2221
+ help: "User who caused the notification (mentioner, assigner)"
2352
2222
  },
2353
2223
  created_at: {
2354
2224
  label: "Created At"
2225
+ }
2226
+ },
2227
+ _views: {
2228
+ recent: {
2229
+ label: "Recent"
2355
2230
  },
2356
- updated_at: {
2357
- label: "Updated At"
2231
+ by_topic: {
2232
+ label: "By Topic"
2358
2233
  }
2359
2234
  }
2360
2235
  },
@@ -2419,60 +2294,6 @@ var enObjects = {
2419
2294
  }
2420
2295
  }
2421
2296
  },
2422
- sys_notification: {
2423
- label: "Notification",
2424
- pluralLabel: "Notifications",
2425
- description: "Per-user notification inbox entries",
2426
- fields: {
2427
- id: {
2428
- label: "Notification ID"
2429
- },
2430
- topic: {
2431
- label: "Topic",
2432
- help: "Notification topic, e.g. task.assigned, collab.mention"
2433
- },
2434
- payload: {
2435
- label: "Payload",
2436
- help: "Template inputs carried to channels (title/body/url/actor/source/\u2026)"
2437
- },
2438
- severity: {
2439
- label: "Severity",
2440
- help: "Severity hint for rendering / filtering",
2441
- options: {
2442
- info: "info",
2443
- warning: "warning",
2444
- critical: "critical"
2445
- }
2446
- },
2447
- dedup_key: {
2448
- label: "Dedup Key",
2449
- help: "Idempotency key within a topic window; a repeat emit is a no-op"
2450
- },
2451
- source_object: {
2452
- label: "Source Object",
2453
- help: "Object name of the related record (e.g. lead, opportunity)"
2454
- },
2455
- source_id: {
2456
- label: "Source Record",
2457
- help: "Record id within source_object"
2458
- },
2459
- actor_id: {
2460
- label: "Actor",
2461
- help: "User who caused the notification (mentioner, assigner)"
2462
- },
2463
- created_at: {
2464
- label: "Created At"
2465
- }
2466
- },
2467
- _views: {
2468
- recent: {
2469
- label: "Recent"
2470
- },
2471
- by_topic: {
2472
- label: "By Topic"
2473
- }
2474
- }
2475
- },
2476
2297
  sys_email: {
2477
2298
  label: "Email",
2478
2299
  pluralLabel: "Emails",
@@ -3377,6 +3198,11 @@ var enObjects = {
3377
3198
  label: "Ciphertext",
3378
3199
  help: "Provider-encoded ciphertext blob (base64 / JSON). Implementation-defined; only the matching ICryptoProvider can read it."
3379
3200
  }
3201
+ },
3202
+ _views: {
3203
+ all: {
3204
+ label: "All Secrets"
3205
+ }
3380
3206
  }
3381
3207
  },
3382
3208
  sys_setting_audit: {
@@ -3452,6 +3278,11 @@ var enObjects = {
3452
3278
  label: "Request ID",
3453
3279
  help: "Correlates with sys_audit_log / tracing."
3454
3280
  }
3281
+ },
3282
+ _views: {
3283
+ recent: {
3284
+ label: "Recent"
3285
+ }
3455
3286
  }
3456
3287
  }
3457
3288
  };
@@ -3504,7 +3335,7 @@ var en = {
3504
3335
  nav_organizations: { label: "Organizations" },
3505
3336
  nav_invitations: { label: "Invitations" },
3506
3337
  // Access Control
3507
- nav_roles: { label: "Roles" },
3338
+ nav_positions: { label: "Positions" },
3508
3339
  nav_permission_sets: { label: "Permission Sets" },
3509
3340
  nav_sharing_rules: { label: "Sharing Rules" },
3510
3341
  nav_record_shares: { label: "Record Shares" },
@@ -3661,14 +3492,64 @@ var zhCNObjects = {
3661
3492
  label: "\u5C01\u7981\u5230\u671F\u65F6\u95F4",
3662
3493
  help: "\u8BBE\u7F6E\u540E\uFF0C\u5230\u8FBE\u8BE5\u65F6\u95F4\u4F1A\u81EA\u52A8\u89E3\u9664\u5C01\u7981\u3002"
3663
3494
  },
3495
+ failed_login_count: {
3496
+ label: "Failed Login Count",
3497
+ help: "Consecutive failed sign-in attempts; reset to 0 on success. Maintained by the auth manager."
3498
+ },
3499
+ locked_until: {
3500
+ label: "Locked Until",
3501
+ help: "When set and in the future, sign-in is rejected (brute-force lockout). Auto-clears past this time; an admin can clear it early via Unlock."
3502
+ },
3503
+ password_changed_at: {
3504
+ label: "Password Changed At",
3505
+ help: "Timestamp of the last password change. Backs password_expiry_days; system-managed."
3506
+ },
3507
+ phone_number: {
3508
+ label: "Phone Number",
3509
+ help: "Sign-in phone number (E.164 recommended). Unique per user; managed by better-auth when the phoneNumber plugin is enabled."
3510
+ },
3511
+ phone_number_verified: {
3512
+ label: "Phone Verified",
3513
+ help: "Whether the phone number has been verified (OTP verification requires SMS infrastructure; false until that ships). System-managed."
3514
+ },
3515
+ must_change_password: {
3516
+ label: "Must Change Password",
3517
+ help: "When true, the user is blocked (403 PASSWORD_EXPIRED) until they change their password. Stamped by the admin user-management routes; system-managed."
3518
+ },
3519
+ mfa_required_at: {
3520
+ label: "MFA Required At",
3521
+ help: "When enforced MFA first applied to this user (grace-period clock). Backs mfa_required; system-managed."
3522
+ },
3523
+ last_login_at: {
3524
+ label: "Last Login At",
3525
+ help: "Timestamp of the last successful sign-in. Stamped by the auth manager; system-managed."
3526
+ },
3527
+ last_login_ip: {
3528
+ label: "Last Login IP",
3529
+ help: "Client IP of the last successful sign-in (from the trusted proxy forwarded header). System-managed."
3530
+ },
3531
+ ai_access: {
3532
+ label: "AI Access",
3533
+ help: "Whether this user holds an AI seat \u2014 grants access to the in-UI AI agents (build / ask). The framework synthesizes the `ai_seat` capability from this flag (plugin-hono-server resolveCtx). Assignment is capped by the licensed / purchased seat count (enforced by @objectstack/security-enterprise AiSeatPlugin). Owned by objectql (better-auth is oblivious to this column)."
3534
+ },
3664
3535
  image: {
3665
3536
  label: "\u5934\u50CF"
3666
3537
  },
3667
3538
  manager_id: {
3668
- label: "\u7ECF\u7406"
3539
+ label: "\u7ECF\u7406",
3540
+ help: "This user's direct manager. Forms the reporting chain the `own_and_reports` hierarchy scope walks (ADR-0057 / @objectstack/security-enterprise)."
3669
3541
  },
3670
3542
  primary_business_unit_id: {
3671
- label: "\u4E3B\u5C5E\u4E1A\u52A1\u5355\u5143"
3543
+ label: "\u4E3B\u5C5E\u4E1A\u52A1\u5355\u5143",
3544
+ help: "The user's primary business unit \u2014 a denormalised projection of sys_business_unit_member.is_primary, maintained by plugin-sharing (ADR-0057 addendum D12). Lets a user-lookup filter candidates by business unit without traversing the membership junction. Do not edit directly; set it via business-unit membership."
3545
+ },
3546
+ source: {
3547
+ label: "Identity Source",
3548
+ help: "How this identity was created \u2014 idp_provisioned (federated SSO JIT) or env_native (local signup / app end-user). System-managed; do not edit.",
3549
+ options: {
3550
+ idp_provisioned: "IdP-Provisioned",
3551
+ env_native: "Env-Native"
3552
+ }
3672
3553
  },
3673
3554
  id: {
3674
3555
  label: "\u7528\u6237 ID"
@@ -3711,6 +3592,14 @@ var zhCNObjects = {
3711
3592
  label: "\u89E3\u9664\u5C01\u7981",
3712
3593
  successMessage: "\u7528\u6237\u5DF2\u89E3\u9664\u5C01\u7981"
3713
3594
  },
3595
+ unlock_user: {
3596
+ label: "Unlock Account",
3597
+ successMessage: "Account unlocked"
3598
+ },
3599
+ create_user: {
3600
+ label: "Create User",
3601
+ successMessage: "User created"
3602
+ },
3714
3603
  set_user_password: {
3715
3604
  label: "\u8BBE\u7F6E\u5BC6\u7801",
3716
3605
  successMessage: "\u5BC6\u7801\u5DF2\u66F4\u65B0"
@@ -3772,6 +3661,18 @@ var zhCNObjects = {
3772
3661
  expires_at: {
3773
3662
  label: "\u8FC7\u671F\u65F6\u95F4"
3774
3663
  },
3664
+ last_activity_at: {
3665
+ label: "Last Activity At",
3666
+ help: "Timestamp of the last request on this session; drives idle-timeout. System-managed."
3667
+ },
3668
+ revoked_at: {
3669
+ label: "Revoked At",
3670
+ help: "When set, this session was revoked (idle / absolute-max / concurrent-cap / admin). System-managed."
3671
+ },
3672
+ revoke_reason: {
3673
+ label: "Revoke Reason",
3674
+ help: "Why the session was revoked (idle_timeout, absolute_max, concurrent_cap, \u2026)."
3675
+ },
3775
3676
  active_organization_id: {
3776
3677
  label: "\u5F53\u524D\u7EC4\u7EC7"
3777
3678
  },
@@ -3870,6 +3771,10 @@ var zhCNObjects = {
3870
3771
  password: {
3871
3772
  label: "\u5BC6\u7801\u54C8\u5E0C",
3872
3773
  help: "\u90AE\u7BB1/\u5BC6\u7801\u63D0\u4F9B\u65B9\u4F7F\u7528\u7684\u5BC6\u7801\u54C8\u5E0C"
3774
+ },
3775
+ previous_password_hashes: {
3776
+ label: "Previous Password Hashes",
3777
+ help: "JSON array of prior password hashes (bounded by password_history_count); reuse-prevention only. System-managed."
3873
3778
  }
3874
3779
  },
3875
3780
  _views: {
@@ -3940,6 +3845,10 @@ var zhCNObjects = {
3940
3845
  label: "\u5143\u6570\u636E",
3941
3846
  help: "JSON \u5E8F\u5217\u5316\u7684\u7EC4\u7EC7\u5143\u6570\u636E"
3942
3847
  },
3848
+ require_mfa: {
3849
+ label: "Require Multi-Factor Auth",
3850
+ help: "When true, every member of this organization must enroll an authenticator app to access data."
3851
+ },
3943
3852
  id: {
3944
3853
  label: "\u7EC4\u7EC7 ID"
3945
3854
  },
@@ -4264,6 +4173,9 @@ var zhCNObjects = {
4264
4173
  }
4265
4174
  },
4266
4175
  _views: {
4176
+ org_chart: {
4177
+ label: "Org Chart"
4178
+ },
4267
4179
  active: {
4268
4180
  label: "\u542F\u7528"
4269
4181
  },
@@ -4845,263 +4757,57 @@ var zhCNObjects = {
4845
4757
  }
4846
4758
  }
4847
4759
  },
4848
- sys_audit_log: {
4849
- label: "\u5BA1\u8BA1\u65E5\u5FD7",
4850
- pluralLabel: "\u5BA1\u8BA1\u65E5\u5FD7",
4851
- description: "\u5E73\u53F0\u4E8B\u4EF6\u7684\u4E0D\u53EF\u53D8\u5BA1\u8BA1\u8FFD\u8E2A",
4852
- fields: {
4853
- created_at: {
4854
- label: "\u65F6\u95F4\u6233"
4855
- },
4856
- action: {
4857
- label: "\u64CD\u4F5C",
4858
- help: "\u64CD\u4F5C\u7C7B\u578B\uFF08snake_case\uFF09",
4859
- options: {
4860
- create: "\u521B\u5EFA",
4861
- update: "\u66F4\u65B0",
4862
- delete: "\u5220\u9664",
4863
- restore: "\u6062\u590D",
4864
- login: "\u767B\u5F55",
4865
- logout: "\u767B\u51FA",
4866
- permission_change: "\u6743\u9650\u53D8\u66F4",
4867
- config_change: "\u914D\u7F6E\u53D8\u66F4",
4868
- export: "\u5BFC\u51FA",
4869
- import: "\u5BFC\u5165"
4870
- }
4871
- },
4872
- user_id: {
4873
- label: "\u6267\u884C\u4EBA",
4874
- help: "\u6267\u884C\u8BE5\u64CD\u4F5C\u7684\u7528\u6237\uFF08\u7CFB\u7EDF\u64CD\u4F5C\u65F6\u4E3A null\uFF09"
4875
- },
4876
- object_name: {
4877
- label: "\u5BF9\u8C61",
4878
- help: "\u76EE\u6807\u5BF9\u8C61\uFF08\u4F8B\u5982 sys_user\u3001project_task\uFF09"
4879
- },
4880
- record_id: {
4881
- label: "\u8BB0\u5F55 ID",
4882
- help: "\u53D7\u5F71\u54CD\u8BB0\u5F55\u7684 ID"
4883
- },
4884
- old_value: {
4885
- label: "\u65E7\u503C",
4886
- help: "\u65E7\u72B6\u6001\u7684 JSON \u5E8F\u5217\u5316\u5185\u5BB9"
4887
- },
4888
- new_value: {
4889
- label: "\u65B0\u503C",
4890
- help: "\u65B0\u72B6\u6001\u7684 JSON \u5E8F\u5217\u5316\u5185\u5BB9"
4891
- },
4892
- ip_address: {
4893
- label: "IP \u5730\u5740"
4894
- },
4895
- user_agent: {
4896
- label: "\u7528\u6237\u4EE3\u7406"
4897
- },
4898
- tenant_id: {
4899
- label: "\u79DF\u6237",
4900
- help: "\u7528\u4E8E\u591A\u79DF\u6237\u9694\u79BB\u7684\u79DF\u6237\u4E0A\u4E0B\u6587"
4901
- },
4902
- metadata: {
4903
- label: "\u5143\u6570\u636E",
4904
- help: "\u9644\u52A0\u4E0A\u4E0B\u6587\u7684 JSON \u5E8F\u5217\u5316\u5185\u5BB9"
4905
- },
4906
- id: {
4907
- label: "\u5BA1\u8BA1\u65E5\u5FD7 ID"
4908
- }
4909
- },
4910
- _views: {
4911
- recent: {
4912
- label: "\u6700\u8FD1"
4913
- },
4914
- writes_only: {
4915
- label: "\u5199\u5165"
4916
- },
4917
- auth_events: {
4918
- label: "\u8BA4\u8BC1"
4919
- },
4920
- config_changes: {
4921
- label: "\u914D\u7F6E"
4922
- },
4923
- all_events: {
4924
- label: "\u5168\u90E8"
4925
- }
4926
- }
4927
- },
4928
- sys_presence: {
4929
- label: "\u5728\u7EBF\u72B6\u6001",
4930
- pluralLabel: "\u5728\u7EBF\u72B6\u6001",
4931
- description: "\u5B9E\u65F6\u7528\u6237\u5728\u7EBF\u4E0E\u6D3B\u52A8\u8DDF\u8E2A",
4760
+ sys_notification: {
4761
+ label: "\u901A\u77E5",
4762
+ pluralLabel: "\u901A\u77E5",
4763
+ description: "\u6309\u7528\u6237\u5B58\u50A8\u7684\u901A\u77E5\u6536\u4EF6\u7BB1\u6761\u76EE",
4932
4764
  fields: {
4933
4765
  id: {
4934
- label: "\u5728\u7EBF\u72B6\u6001 ID"
4935
- },
4936
- created_at: {
4937
- label: "\u521B\u5EFA\u65F6\u95F4"
4938
- },
4939
- updated_at: {
4940
- label: "\u66F4\u65B0\u65F6\u95F4"
4941
- },
4942
- user_id: {
4943
- label: "\u7528\u6237"
4944
- },
4945
- session_id: {
4946
- label: "\u4F1A\u8BDD"
4947
- },
4948
- status: {
4949
- label: "\u72B6\u6001",
4950
- options: {
4951
- online: "\u5728\u7EBF",
4952
- away: "\u79BB\u5F00",
4953
- busy: "\u5FD9\u788C",
4954
- offline: "\u79BB\u7EBF"
4955
- }
4766
+ label: "\u901A\u77E5 ID"
4956
4767
  },
4957
- last_seen: {
4958
- label: "\u6700\u8FD1\u5728\u7EBF\u65F6\u95F4"
4768
+ topic: {
4769
+ label: "Topic",
4770
+ help: "Notification topic, e.g. task.assigned, collab.mention"
4959
4771
  },
4960
- current_location: {
4961
- label: "\u5F53\u524D\u4F4D\u7F6E"
4772
+ payload: {
4773
+ label: "Payload",
4774
+ help: "Template inputs carried to channels (title/body/url/actor/source/\u2026)"
4962
4775
  },
4963
- device: {
4964
- label: "\u8BBE\u5907",
4776
+ severity: {
4777
+ label: "Severity",
4778
+ help: "Severity hint for rendering / filtering",
4965
4779
  options: {
4966
- desktop: "\u684C\u9762\u7AEF",
4967
- mobile: "\u79FB\u52A8\u7AEF",
4968
- tablet: "\u5E73\u677F\u7AEF",
4969
- other: "\u5176\u4ED6"
4780
+ info: "info",
4781
+ warning: "warning",
4782
+ critical: "critical"
4970
4783
  }
4971
4784
  },
4972
- custom_status: {
4973
- label: "\u81EA\u5B9A\u4E49\u72B6\u6001"
4974
- },
4975
- metadata: {
4976
- label: "\u5143\u6570\u636E",
4977
- help: "\u4E0E\u5728\u7EBF\u72B6\u6001\u5173\u8054\u7684\u4EFB\u610F JSON \u5143\u6570\u636E\uFF08\u5BF9\u5E94 PresenceStateSchema.metadata\uFF09\u3002"
4978
- }
4979
- }
4980
- },
4981
- sys_activity: {
4982
- label: "\u6D3B\u52A8",
4983
- pluralLabel: "\u6D3B\u52A8",
4984
- description: "\u6700\u8FD1\u6D3B\u52A8\u6D41\u6761\u76EE\uFF08\u8F7B\u91CF\u3001\u53BB\u89C4\u8303\u5316\uFF09",
4985
- fields: {
4986
- id: {
4987
- label: "\u6D3B\u52A8 ID"
4988
- },
4989
- timestamp: {
4990
- label: "\u65F6\u95F4\u6233"
4785
+ dedup_key: {
4786
+ label: "Dedup Key",
4787
+ help: "Idempotency key within a topic window; a repeat emit is a no-op"
4991
4788
  },
4992
- type: {
4993
- label: "\u7C7B\u578B",
4994
- options: {
4995
- created: "\u5DF2\u521B\u5EFA",
4996
- updated: "\u5DF2\u66F4\u65B0",
4997
- deleted: "\u5DF2\u5220\u9664",
4998
- commented: "\u5DF2\u8BC4\u8BBA",
4999
- mentioned: "\u88AB\u63D0\u53CA",
5000
- shared: "\u5DF2\u5171\u4EAB",
5001
- assigned: "\u5DF2\u5206\u914D",
5002
- completed: "\u5DF2\u5B8C\u6210",
5003
- login: "\u767B\u5F55",
5004
- logout: "\u767B\u51FA",
5005
- system: "\u7CFB\u7EDF"
5006
- }
4789
+ source_object: {
4790
+ label: "\u6765\u6E90\u5BF9\u8C61",
4791
+ help: "\u5173\u8054\u8BB0\u5F55\u7684\u5BF9\u8C61\u540D\u79F0\uFF08\u4F8B\u5982 lead\u3001opportunity\uFF09"
5007
4792
  },
5008
- summary: {
5009
- label: "\u6458\u8981",
5010
- help: "\u4EBA\u7C7B\u53EF\u8BFB\u7684\u5355\u884C\u6458\u8981"
4793
+ source_id: {
4794
+ label: "\u6765\u6E90\u8BB0\u5F55",
4795
+ help: "source_object \u4E2D\u7684\u8BB0\u5F55 ID"
5011
4796
  },
5012
4797
  actor_id: {
5013
- label: "\u6267\u884C\u4EBA"
5014
- },
5015
- actor_name: {
5016
- label: "\u6267\u884C\u4EBA\u540D\u79F0"
5017
- },
5018
- actor_avatar_url: {
5019
- label: "\u6267\u884C\u4EBA\u5934\u50CF"
5020
- },
5021
- object_name: {
5022
- label: "\u5BF9\u8C61",
5023
- help: "\u76EE\u6807\u5BF9\u8C61\u77ED\u540D\u79F0\uFF08\u4F8B\u5982 account\u3001sys_user\uFF09"
5024
- },
5025
- record_id: {
5026
- label: "\u8BB0\u5F55 ID"
5027
- },
5028
- record_label: {
5029
- label: "\u8BB0\u5F55\u6807\u7B7E",
5030
- help: "\u5199\u5165\u65F6\u76EE\u6807\u8BB0\u5F55\u7684\u663E\u793A\u6807\u7B7E"
5031
- },
5032
- url: {
5033
- label: "URL",
5034
- help: "\u6307\u5411\u6D3B\u52A8\u76EE\u6807\u7684\u53EF\u9009\u6DF1\u5EA6\u94FE\u63A5"
5035
- },
5036
- environment_id: {
5037
- label: "\u9879\u76EE",
5038
- help: "\u9879\u76EE\u4E0A\u4E0B\u6587\uFF08\u591A\u9879\u76EE\u90E8\u7F72\uFF09"
5039
- },
5040
- metadata: {
5041
- label: "\u5143\u6570\u636E",
5042
- help: "\u9644\u52A0\u4E0A\u4E0B\u6587\u7684 JSON \u5E8F\u5217\u5316\u5185\u5BB9"
5043
- }
5044
- }
5045
- },
5046
- sys_comment: {
5047
- label: "\u8BC4\u8BBA",
5048
- pluralLabel: "\u8BC4\u8BBA",
5049
- description: "\u901A\u8FC7 thread_id \u9644\u52A0\u5230\u8BB0\u5F55\u7684\u7EBF\u7A0B\u5316\u8BC4\u8BBA",
5050
- fields: {
5051
- id: {
5052
- label: "\u8BC4\u8BBA ID"
5053
- },
5054
- thread_id: {
5055
- label: "\u7EBF\u7A0B",
5056
- help: "\u7EBF\u7A0B\u6807\u8BC6\u2014\u2014\u7EA6\u5B9A\u683C\u5F0F\u4E3A `{object}:{record_id}`\uFF08\u4F8B\u5982 `sys_user:abc123`\uFF09"
5057
- },
5058
- parent_id: {
5059
- label: "\u7236\u8BC4\u8BBA",
5060
- help: "\u53EF\u9009\u7684\u7236\u8BC4\u8BBA\uFF0C\u7528\u4E8E\u5D4C\u5957\u56DE\u590D"
5061
- },
5062
- reply_count: {
5063
- label: "\u56DE\u590D\u6570"
5064
- },
5065
- author_id: {
5066
- label: "\u4F5C\u8005"
5067
- },
5068
- author_name: {
5069
- label: "\u4F5C\u8005\u540D\u79F0"
5070
- },
5071
- author_avatar_url: {
5072
- label: "\u4F5C\u8005\u5934\u50CF"
5073
- },
5074
- body: {
5075
- label: "\u6B63\u6587",
5076
- help: "\u8BC4\u8BBA\u6587\u672C\uFF08\u652F\u6301 Markdown\uFF09"
5077
- },
5078
- mentions: {
5079
- label: "\u63D0\u53CA",
5080
- help: "@mention \u5BF9\u8C61\u7684 JSON \u6570\u7EC4"
5081
- },
5082
- reactions: {
5083
- label: "\u56DE\u5E94",
5084
- help: "\u8868\u60C5\u56DE\u5E94\u5BF9\u8C61\u7684 JSON \u6570\u7EC4"
5085
- },
5086
- is_edited: {
5087
- label: "\u5DF2\u7F16\u8F91"
5088
- },
5089
- edited_at: {
5090
- label: "\u7F16\u8F91\u65F6\u95F4"
5091
- },
5092
- visibility: {
5093
- label: "\u53EF\u89C1\u6027",
5094
- options: {
5095
- public: "\u516C\u5F00",
5096
- internal: "\u5185\u90E8",
5097
- private: "\u79C1\u6709"
5098
- }
4798
+ label: "\u6267\u884C\u4EBA",
4799
+ help: "\u89E6\u53D1\u8BE5\u901A\u77E5\u7684\u7528\u6237\uFF08\u63D0\u53CA\u4EBA\u3001\u5206\u914D\u4EBA\uFF09"
5099
4800
  },
5100
4801
  created_at: {
5101
4802
  label: "\u521B\u5EFA\u65F6\u95F4"
4803
+ }
4804
+ },
4805
+ _views: {
4806
+ recent: {
4807
+ label: "Recent"
5102
4808
  },
5103
- updated_at: {
5104
- label: "\u66F4\u65B0\u65F6\u95F4"
4809
+ by_topic: {
4810
+ label: "By Topic"
5105
4811
  }
5106
4812
  }
5107
4813
  },
@@ -5166,60 +4872,6 @@ var zhCNObjects = {
5166
4872
  }
5167
4873
  }
5168
4874
  },
5169
- sys_notification: {
5170
- label: "\u901A\u77E5",
5171
- pluralLabel: "\u901A\u77E5",
5172
- description: "\u6309\u7528\u6237\u5B58\u50A8\u7684\u901A\u77E5\u6536\u4EF6\u7BB1\u6761\u76EE",
5173
- fields: {
5174
- id: {
5175
- label: "\u901A\u77E5 ID"
5176
- },
5177
- topic: {
5178
- label: "Topic",
5179
- help: "Notification topic, e.g. task.assigned, collab.mention"
5180
- },
5181
- payload: {
5182
- label: "Payload",
5183
- help: "Template inputs carried to channels (title/body/url/actor/source/\u2026)"
5184
- },
5185
- severity: {
5186
- label: "Severity",
5187
- help: "Severity hint for rendering / filtering",
5188
- options: {
5189
- info: "info",
5190
- warning: "warning",
5191
- critical: "critical"
5192
- }
5193
- },
5194
- dedup_key: {
5195
- label: "Dedup Key",
5196
- help: "Idempotency key within a topic window; a repeat emit is a no-op"
5197
- },
5198
- source_object: {
5199
- label: "\u6765\u6E90\u5BF9\u8C61",
5200
- help: "\u5173\u8054\u8BB0\u5F55\u7684\u5BF9\u8C61\u540D\u79F0\uFF08\u4F8B\u5982 lead\u3001opportunity\uFF09"
5201
- },
5202
- source_id: {
5203
- label: "\u6765\u6E90\u8BB0\u5F55",
5204
- help: "source_object \u4E2D\u7684\u8BB0\u5F55 ID"
5205
- },
5206
- actor_id: {
5207
- label: "\u6267\u884C\u4EBA",
5208
- help: "\u89E6\u53D1\u8BE5\u901A\u77E5\u7684\u7528\u6237\uFF08\u63D0\u53CA\u4EBA\u3001\u5206\u914D\u4EBA\uFF09"
5209
- },
5210
- created_at: {
5211
- label: "\u521B\u5EFA\u65F6\u95F4"
5212
- }
5213
- },
5214
- _views: {
5215
- recent: {
5216
- label: "Recent"
5217
- },
5218
- by_topic: {
5219
- label: "By Topic"
5220
- }
5221
- }
5222
- },
5223
4875
  sys_email: {
5224
4876
  label: "\u90AE\u4EF6",
5225
4877
  pluralLabel: "\u90AE\u4EF6",
@@ -6124,6 +5776,11 @@ var zhCNObjects = {
6124
5776
  label: "\u5BC6\u6587",
6125
5777
  help: "\u63D0\u4F9B\u65B9\u7F16\u7801\u540E\u7684\u5BC6\u6587\u6570\u636E\uFF08base64 / JSON\uFF09\u3002\u5B9E\u73B0\u5B9A\u4E49\uFF1B\u4EC5\u5339\u914D\u7684 ICryptoProvider \u53EF\u8BFB\u53D6\u3002"
6126
5778
  }
5779
+ },
5780
+ _views: {
5781
+ all: {
5782
+ label: "All Secrets"
5783
+ }
6127
5784
  }
6128
5785
  },
6129
5786
  sys_setting_audit: {
@@ -6199,6 +5856,11 @@ var zhCNObjects = {
6199
5856
  label: "\u8BF7\u6C42 ID",
6200
5857
  help: "\u4E0E sys_audit_log / tracing \u5173\u8054\u3002"
6201
5858
  }
5859
+ },
5860
+ _views: {
5861
+ recent: {
5862
+ label: "Recent"
5863
+ }
6202
5864
  }
6203
5865
  }
6204
5866
  };
@@ -6247,12 +5909,13 @@ var zhCN = {
6247
5909
  nav_teams: { label: "\u56E2\u961F" },
6248
5910
  nav_organizations: { label: "\u7EC4\u7EC7" },
6249
5911
  nav_invitations: { label: "\u9080\u8BF7" },
6250
- nav_roles: { label: "\u89D2\u8272" },
5912
+ nav_positions: { label: "\u5C97\u4F4D" },
6251
5913
  nav_capabilities: { label: "\u80FD\u529B" },
6252
5914
  nav_permission_sets: { label: "\u6743\u9650\u96C6" },
6253
5915
  nav_sharing_rules: { label: "\u5171\u4EAB\u89C4\u5219" },
6254
5916
  nav_record_shares: { label: "\u8BB0\u5F55\u5171\u4EAB" },
6255
5917
  nav_api_keys: { label: "API \u5BC6\u94A5" },
5918
+ nav_connect_agent: { label: "\u8FDE\u63A5\u667A\u80FD\u4F53" },
6256
5919
  nav_approval_processes: { label: "\u5BA1\u6279\u6D41\u7A0B" },
6257
5920
  nav_approval_requests: { label: "\u5BA1\u6279\u7533\u8BF7" },
6258
5921
  nav_approval_actions: { label: "\u5BA1\u6279\u5386\u53F2" },
@@ -6371,14 +6034,64 @@ var jaJPObjects = {
6371
6034
  label: "\u5229\u7528\u505C\u6B62\u671F\u9650",
6372
6035
  help: "\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u308B\u5834\u5408\u3001\u3053\u306E\u65E5\u6642\u306B\u5229\u7528\u505C\u6B62\u304C\u81EA\u52D5\u89E3\u9664\u3055\u308C\u307E\u3059\u3002"
6373
6036
  },
6037
+ failed_login_count: {
6038
+ label: "Failed Login Count",
6039
+ help: "Consecutive failed sign-in attempts; reset to 0 on success. Maintained by the auth manager."
6040
+ },
6041
+ locked_until: {
6042
+ label: "Locked Until",
6043
+ help: "When set and in the future, sign-in is rejected (brute-force lockout). Auto-clears past this time; an admin can clear it early via Unlock."
6044
+ },
6045
+ password_changed_at: {
6046
+ label: "Password Changed At",
6047
+ help: "Timestamp of the last password change. Backs password_expiry_days; system-managed."
6048
+ },
6049
+ phone_number: {
6050
+ label: "Phone Number",
6051
+ help: "Sign-in phone number (E.164 recommended). Unique per user; managed by better-auth when the phoneNumber plugin is enabled."
6052
+ },
6053
+ phone_number_verified: {
6054
+ label: "Phone Verified",
6055
+ help: "Whether the phone number has been verified (OTP verification requires SMS infrastructure; false until that ships). System-managed."
6056
+ },
6057
+ must_change_password: {
6058
+ label: "Must Change Password",
6059
+ help: "When true, the user is blocked (403 PASSWORD_EXPIRED) until they change their password. Stamped by the admin user-management routes; system-managed."
6060
+ },
6061
+ mfa_required_at: {
6062
+ label: "MFA Required At",
6063
+ help: "When enforced MFA first applied to this user (grace-period clock). Backs mfa_required; system-managed."
6064
+ },
6065
+ last_login_at: {
6066
+ label: "Last Login At",
6067
+ help: "Timestamp of the last successful sign-in. Stamped by the auth manager; system-managed."
6068
+ },
6069
+ last_login_ip: {
6070
+ label: "Last Login IP",
6071
+ help: "Client IP of the last successful sign-in (from the trusted proxy forwarded header). System-managed."
6072
+ },
6073
+ ai_access: {
6074
+ label: "AI Access",
6075
+ help: "Whether this user holds an AI seat \u2014 grants access to the in-UI AI agents (build / ask). The framework synthesizes the `ai_seat` capability from this flag (plugin-hono-server resolveCtx). Assignment is capped by the licensed / purchased seat count (enforced by @objectstack/security-enterprise AiSeatPlugin). Owned by objectql (better-auth is oblivious to this column)."
6076
+ },
6374
6077
  image: {
6375
6078
  label: "\u30D7\u30ED\u30D5\u30A3\u30FC\u30EB\u753B\u50CF"
6376
6079
  },
6377
6080
  manager_id: {
6378
- label: "\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC"
6081
+ label: "\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC",
6082
+ help: "This user's direct manager. Forms the reporting chain the `own_and_reports` hierarchy scope walks (ADR-0057 / @objectstack/security-enterprise)."
6379
6083
  },
6380
6084
  primary_business_unit_id: {
6381
- label: "\u4E3B\u6240\u5C5E\u30D3\u30B8\u30CD\u30B9\u30E6\u30CB\u30C3\u30C8"
6085
+ label: "\u4E3B\u6240\u5C5E\u30D3\u30B8\u30CD\u30B9\u30E6\u30CB\u30C3\u30C8",
6086
+ help: "The user's primary business unit \u2014 a denormalised projection of sys_business_unit_member.is_primary, maintained by plugin-sharing (ADR-0057 addendum D12). Lets a user-lookup filter candidates by business unit without traversing the membership junction. Do not edit directly; set it via business-unit membership."
6087
+ },
6088
+ source: {
6089
+ label: "Identity Source",
6090
+ help: "How this identity was created \u2014 idp_provisioned (federated SSO JIT) or env_native (local signup / app end-user). System-managed; do not edit.",
6091
+ options: {
6092
+ idp_provisioned: "IdP-Provisioned",
6093
+ env_native: "Env-Native"
6094
+ }
6382
6095
  },
6383
6096
  id: {
6384
6097
  label: "\u30E6\u30FC\u30B6\u30FC ID"
@@ -6421,6 +6134,14 @@ var jaJPObjects = {
6421
6134
  label: "\u5229\u7528\u505C\u6B62\u3092\u89E3\u9664",
6422
6135
  successMessage: "\u30E6\u30FC\u30B6\u30FC\u306E\u5229\u7528\u505C\u6B62\u3092\u89E3\u9664\u3057\u307E\u3057\u305F"
6423
6136
  },
6137
+ unlock_user: {
6138
+ label: "Unlock Account",
6139
+ successMessage: "Account unlocked"
6140
+ },
6141
+ create_user: {
6142
+ label: "Create User",
6143
+ successMessage: "User created"
6144
+ },
6424
6145
  set_user_password: {
6425
6146
  label: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u8A2D\u5B9A",
6426
6147
  successMessage: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F"
@@ -6482,6 +6203,18 @@ var jaJPObjects = {
6482
6203
  expires_at: {
6483
6204
  label: "\u6709\u52B9\u671F\u9650"
6484
6205
  },
6206
+ last_activity_at: {
6207
+ label: "Last Activity At",
6208
+ help: "Timestamp of the last request on this session; drives idle-timeout. System-managed."
6209
+ },
6210
+ revoked_at: {
6211
+ label: "Revoked At",
6212
+ help: "When set, this session was revoked (idle / absolute-max / concurrent-cap / admin). System-managed."
6213
+ },
6214
+ revoke_reason: {
6215
+ label: "Revoke Reason",
6216
+ help: "Why the session was revoked (idle_timeout, absolute_max, concurrent_cap, \u2026)."
6217
+ },
6485
6218
  active_organization_id: {
6486
6219
  label: "\u30A2\u30AF\u30C6\u30A3\u30D6\u7D44\u7E54"
6487
6220
  },
@@ -6580,6 +6313,10 @@ var jaJPObjects = {
6580
6313
  password: {
6581
6314
  label: "\u30D1\u30B9\u30EF\u30FC\u30C9\u30CF\u30C3\u30B7\u30E5",
6582
6315
  help: "\u30E1\u30FC\u30EB/\u30D1\u30B9\u30EF\u30FC\u30C9\u30D7\u30ED\u30D0\u30A4\u30C0\u30FC\u7528\u306E\u30CF\u30C3\u30B7\u30E5\u5316\u30D1\u30B9\u30EF\u30FC\u30C9"
6316
+ },
6317
+ previous_password_hashes: {
6318
+ label: "Previous Password Hashes",
6319
+ help: "JSON array of prior password hashes (bounded by password_history_count); reuse-prevention only. System-managed."
6583
6320
  }
6584
6321
  },
6585
6322
  _views: {
@@ -6650,6 +6387,10 @@ var jaJPObjects = {
6650
6387
  label: "\u30E1\u30BF\u30C7\u30FC\u30BF",
6651
6388
  help: "JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u3055\u308C\u305F\u7D44\u7E54\u30E1\u30BF\u30C7\u30FC\u30BF"
6652
6389
  },
6390
+ require_mfa: {
6391
+ label: "Require Multi-Factor Auth",
6392
+ help: "When true, every member of this organization must enroll an authenticator app to access data."
6393
+ },
6653
6394
  id: {
6654
6395
  label: "\u7D44\u7E54 ID"
6655
6396
  },
@@ -6974,6 +6715,9 @@ var jaJPObjects = {
6974
6715
  }
6975
6716
  },
6976
6717
  _views: {
6718
+ org_chart: {
6719
+ label: "Org Chart"
6720
+ },
6977
6721
  active: {
6978
6722
  label: "\u6709\u52B9"
6979
6723
  },
@@ -7555,263 +7299,57 @@ var jaJPObjects = {
7555
7299
  }
7556
7300
  }
7557
7301
  },
7558
- sys_audit_log: {
7559
- label: "\u76E3\u67FB\u30ED\u30B0",
7560
- pluralLabel: "\u76E3\u67FB\u30ED\u30B0",
7561
- description: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u30A4\u30D9\u30F3\u30C8\u306E\u4E0D\u5909\u306E\u76E3\u67FB\u8A3C\u8DE1",
7562
- fields: {
7563
- created_at: {
7564
- label: "\u30BF\u30A4\u30E0\u30B9\u30BF\u30F3\u30D7"
7565
- },
7566
- action: {
7567
- label: "\u30A2\u30AF\u30B7\u30E7\u30F3",
7568
- help: "\u30A2\u30AF\u30B7\u30E7\u30F3\u30BF\u30A4\u30D7\uFF08snake_case\uFF09",
7569
- options: {
7570
- create: "\u4F5C\u6210",
7571
- update: "\u66F4\u65B0",
7572
- delete: "\u524A\u9664",
7573
- restore: "\u5FA9\u5143",
7574
- login: "\u30ED\u30B0\u30A4\u30F3",
7575
- logout: "\u30ED\u30B0\u30A2\u30A6\u30C8",
7576
- permission_change: "\u6A29\u9650\u5909\u66F4",
7577
- config_change: "\u69CB\u6210\u5909\u66F4",
7578
- export: "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8",
7579
- import: "\u30A4\u30F3\u30DD\u30FC\u30C8"
7580
- }
7581
- },
7582
- user_id: {
7583
- label: "\u64CD\u4F5C\u8005",
7584
- help: "\u30A2\u30AF\u30B7\u30E7\u30F3\u3092\u5B9F\u884C\u3057\u305F\u30E6\u30FC\u30B6\u30FC\uFF08\u30B7\u30B9\u30C6\u30E0\u64CD\u4F5C\u306E\u5834\u5408\u306F null\uFF09"
7585
- },
7586
- object_name: {
7587
- label: "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8",
7588
- help: "\u5BFE\u8C61\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\uFF08\u4F8B: sys_user\u3001project_task\uFF09"
7589
- },
7590
- record_id: {
7591
- label: "\u30EC\u30B3\u30FC\u30C9 ID",
7592
- help: "\u5F71\u97FF\u3092\u53D7\u3051\u305F\u30EC\u30B3\u30FC\u30C9\u306E ID"
7593
- },
7594
- old_value: {
7595
- label: "\u5909\u66F4\u524D\u306E\u5024",
7596
- help: "JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u3055\u308C\u305F\u4EE5\u524D\u306E\u72B6\u614B"
7597
- },
7598
- new_value: {
7599
- label: "\u5909\u66F4\u5F8C\u306E\u5024",
7600
- help: "JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u3055\u308C\u305F\u65B0\u3057\u3044\u72B6\u614B"
7601
- },
7602
- ip_address: {
7603
- label: "IP \u30A2\u30C9\u30EC\u30B9"
7604
- },
7605
- user_agent: {
7606
- label: "\u30E6\u30FC\u30B6\u30FC\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8"
7607
- },
7608
- tenant_id: {
7609
- label: "\u30C6\u30CA\u30F3\u30C8",
7610
- help: "\u30DE\u30EB\u30C1\u30C6\u30CA\u30F3\u30C8\u5206\u96E2\u306E\u305F\u3081\u306E\u30C6\u30CA\u30F3\u30C8\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8"
7611
- },
7612
- metadata: {
7613
- label: "\u30E1\u30BF\u30C7\u30FC\u30BF",
7614
- help: "JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u3055\u308C\u305F\u8FFD\u52A0\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8"
7615
- },
7616
- id: {
7617
- label: "\u76E3\u67FB\u30ED\u30B0 ID"
7618
- }
7619
- },
7620
- _views: {
7621
- recent: {
7622
- label: "\u6700\u8FD1"
7623
- },
7624
- writes_only: {
7625
- label: "\u66F8\u304D\u8FBC\u307F"
7626
- },
7627
- auth_events: {
7628
- label: "\u8A8D\u8A3C"
7629
- },
7630
- config_changes: {
7631
- label: "\u69CB\u6210\u5909\u66F4"
7632
- },
7633
- all_events: {
7634
- label: "\u3059\u3079\u3066"
7635
- }
7636
- }
7637
- },
7638
- sys_presence: {
7639
- label: "\u5728\u5E2D\u72B6\u6CC1",
7640
- pluralLabel: "\u5728\u5E2D\u72B6\u6CC1",
7641
- description: "\u30EA\u30A2\u30EB\u30BF\u30A4\u30E0\u306E\u30E6\u30FC\u30B6\u30FC\u5728\u5E2D\u72B6\u6CC1\u3068\u30A2\u30AF\u30C6\u30A3\u30D3\u30C6\u30A3\u8FFD\u8DE1",
7302
+ sys_notification: {
7303
+ label: "\u901A\u77E5",
7304
+ pluralLabel: "\u901A\u77E5",
7305
+ description: "\u30E6\u30FC\u30B6\u30FC\u3054\u3068\u306E\u901A\u77E5\u53D7\u4FE1\u30DC\u30C3\u30AF\u30B9\u30A8\u30F3\u30C8\u30EA",
7642
7306
  fields: {
7643
7307
  id: {
7644
- label: "\u5728\u5E2D ID"
7645
- },
7646
- created_at: {
7647
- label: "\u4F5C\u6210\u65E5\u6642"
7648
- },
7649
- updated_at: {
7650
- label: "\u66F4\u65B0\u65E5\u6642"
7651
- },
7652
- user_id: {
7653
- label: "\u30E6\u30FC\u30B6\u30FC"
7654
- },
7655
- session_id: {
7656
- label: "\u30BB\u30C3\u30B7\u30E7\u30F3"
7657
- },
7658
- status: {
7659
- label: "\u30B9\u30C6\u30FC\u30BF\u30B9",
7660
- options: {
7661
- online: "\u30AA\u30F3\u30E9\u30A4\u30F3",
7662
- away: "\u96E2\u5E2D\u4E2D",
7663
- busy: "\u53D6\u308A\u8FBC\u307F\u4E2D",
7664
- offline: "\u30AA\u30D5\u30E9\u30A4\u30F3"
7665
- }
7308
+ label: "\u901A\u77E5 ID"
7666
7309
  },
7667
- last_seen: {
7668
- label: "\u6700\u7D42\u78BA\u8A8D\u65E5\u6642"
7310
+ topic: {
7311
+ label: "Topic",
7312
+ help: "Notification topic, e.g. task.assigned, collab.mention"
7669
7313
  },
7670
- current_location: {
7671
- label: "\u73FE\u5728\u5730"
7314
+ payload: {
7315
+ label: "Payload",
7316
+ help: "Template inputs carried to channels (title/body/url/actor/source/\u2026)"
7672
7317
  },
7673
- device: {
7674
- label: "\u30C7\u30D0\u30A4\u30B9",
7318
+ severity: {
7319
+ label: "Severity",
7320
+ help: "Severity hint for rendering / filtering",
7675
7321
  options: {
7676
- desktop: "\u30C7\u30B9\u30AF\u30C8\u30C3\u30D7",
7677
- mobile: "\u30E2\u30D0\u30A4\u30EB",
7678
- tablet: "\u30BF\u30D6\u30EC\u30C3\u30C8",
7679
- other: "\u305D\u306E\u4ED6"
7322
+ info: "info",
7323
+ warning: "warning",
7324
+ critical: "critical"
7680
7325
  }
7681
7326
  },
7682
- custom_status: {
7683
- label: "\u30AB\u30B9\u30BF\u30E0\u30B9\u30C6\u30FC\u30BF\u30B9"
7684
- },
7685
- metadata: {
7686
- label: "\u30E1\u30BF\u30C7\u30FC\u30BF",
7687
- help: "\u5728\u5E2D\u72B6\u614B\u306B\u95A2\u9023\u4ED8\u3051\u3089\u308C\u305F\u4EFB\u610F\u306E JSON \u30E1\u30BF\u30C7\u30FC\u30BF\uFF08PresenceStateSchema.metadata \u306B\u5BFE\u5FDC\uFF09\u3002"
7688
- }
7689
- }
7690
- },
7691
- sys_activity: {
7692
- label: "\u30A2\u30AF\u30C6\u30A3\u30D3\u30C6\u30A3",
7693
- pluralLabel: "\u30A2\u30AF\u30C6\u30A3\u30D3\u30C6\u30A3",
7694
- description: "\u6700\u8FD1\u306E\u30A2\u30AF\u30C6\u30A3\u30D3\u30C6\u30A3\u30B9\u30C8\u30EA\u30FC\u30E0\u30A8\u30F3\u30C8\u30EA\uFF08\u8EFD\u91CF\u3001\u975E\u6B63\u898F\u5316\uFF09",
7695
- fields: {
7696
- id: {
7697
- label: "\u30A2\u30AF\u30C6\u30A3\u30D3\u30C6\u30A3 ID"
7698
- },
7699
- timestamp: {
7700
- label: "\u30BF\u30A4\u30E0\u30B9\u30BF\u30F3\u30D7"
7327
+ dedup_key: {
7328
+ label: "Dedup Key",
7329
+ help: "Idempotency key within a topic window; a repeat emit is a no-op"
7701
7330
  },
7702
- type: {
7703
- label: "\u30BF\u30A4\u30D7",
7704
- options: {
7705
- created: "\u4F5C\u6210",
7706
- updated: "\u66F4\u65B0",
7707
- deleted: "\u524A\u9664",
7708
- commented: "\u30B3\u30E1\u30F3\u30C8",
7709
- mentioned: "\u30E1\u30F3\u30B7\u30E7\u30F3",
7710
- shared: "\u5171\u6709",
7711
- assigned: "\u5272\u308A\u5F53\u3066",
7712
- completed: "\u5B8C\u4E86",
7713
- login: "\u30ED\u30B0\u30A4\u30F3",
7714
- logout: "\u30ED\u30B0\u30A2\u30A6\u30C8",
7715
- system: "\u30B7\u30B9\u30C6\u30E0"
7716
- }
7331
+ source_object: {
7332
+ label: "\u30BD\u30FC\u30B9\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8",
7333
+ help: "\u95A2\u9023\u30EC\u30B3\u30FC\u30C9\u306E\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u540D\uFF08\u4F8B: lead\u3001opportunity\uFF09"
7717
7334
  },
7718
- summary: {
7719
- label: "\u30B5\u30DE\u30EA\u30FC",
7720
- help: "\u5224\u5225\u3057\u3084\u3059\u3044 1 \u884C\u30B5\u30DE\u30EA\u30FC"
7335
+ source_id: {
7336
+ label: "\u30BD\u30FC\u30B9\u30EC\u30B3\u30FC\u30C9",
7337
+ help: "source_object \u5185\u306E\u30EC\u30B3\u30FC\u30C9 ID"
7721
7338
  },
7722
7339
  actor_id: {
7723
- label: "\u64CD\u4F5C\u8005"
7724
- },
7725
- actor_name: {
7726
- label: "\u64CD\u4F5C\u8005\u540D"
7727
- },
7728
- actor_avatar_url: {
7729
- label: "\u64CD\u4F5C\u8005\u30A2\u30D0\u30BF\u30FC"
7730
- },
7731
- object_name: {
7732
- label: "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8",
7733
- help: "\u5BFE\u8C61\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u306E\u77ED\u3044\u540D\u524D\uFF08\u4F8B: account\u3001sys_user\uFF09"
7734
- },
7735
- record_id: {
7736
- label: "\u30EC\u30B3\u30FC\u30C9 ID"
7737
- },
7738
- record_label: {
7739
- label: "\u30EC\u30B3\u30FC\u30C9\u8868\u793A\u540D",
7740
- help: "\u66F8\u304D\u8FBC\u307F\u6642\u70B9\u306E\u5BFE\u8C61\u30EC\u30B3\u30FC\u30C9\u306E\u8868\u793A\u540D"
7741
- },
7742
- url: {
7743
- label: "URL",
7744
- help: "\u30A2\u30AF\u30C6\u30A3\u30D3\u30C6\u30A3\u30BF\u30FC\u30B2\u30C3\u30C8\u3078\u306E\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u30C7\u30A3\u30FC\u30D7\u30EA\u30F3\u30AF"
7745
- },
7746
- environment_id: {
7747
- label: "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8",
7748
- help: "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\uFF08\u30DE\u30EB\u30C1\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30C7\u30D7\u30ED\u30A4\u30E1\u30F3\u30C8\uFF09"
7749
- },
7750
- metadata: {
7751
- label: "\u30E1\u30BF\u30C7\u30FC\u30BF",
7752
- help: "JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u3055\u308C\u305F\u8FFD\u52A0\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8"
7753
- }
7754
- }
7755
- },
7756
- sys_comment: {
7757
- label: "\u30B3\u30E1\u30F3\u30C8",
7758
- pluralLabel: "\u30B3\u30E1\u30F3\u30C8",
7759
- description: "thread_id \u3092\u4ECB\u3057\u3066\u30EC\u30B3\u30FC\u30C9\u306B\u6DFB\u4ED8\u3055\u308C\u305F\u30B9\u30EC\u30C3\u30C9\u30B3\u30E1\u30F3\u30C8",
7760
- fields: {
7761
- id: {
7762
- label: "\u30B3\u30E1\u30F3\u30C8 ID"
7763
- },
7764
- thread_id: {
7765
- label: "\u30B9\u30EC\u30C3\u30C9",
7766
- help: "\u30B9\u30EC\u30C3\u30C9\u8B58\u5225\u5B50 \u2014 \u901A\u5E38\u306F `{object}:{record_id}`\uFF08\u4F8B: `sys_user:abc123`\uFF09"
7767
- },
7768
- parent_id: {
7769
- label: "\u89AA\u30B3\u30E1\u30F3\u30C8",
7770
- help: "\u30CD\u30B9\u30C8\u3057\u305F\u8FD4\u4FE1\u7528\u306E\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u89AA\u30B3\u30E1\u30F3\u30C8"
7771
- },
7772
- reply_count: {
7773
- label: "\u8FD4\u4FE1\u6570"
7774
- },
7775
- author_id: {
7776
- label: "\u6295\u7A3F\u8005"
7777
- },
7778
- author_name: {
7779
- label: "\u6295\u7A3F\u8005\u540D"
7780
- },
7781
- author_avatar_url: {
7782
- label: "\u6295\u7A3F\u8005\u30A2\u30D0\u30BF\u30FC"
7783
- },
7784
- body: {
7785
- label: "\u672C\u6587",
7786
- help: "\u30B3\u30E1\u30F3\u30C8\u30C6\u30AD\u30B9\u30C8\uFF08Markdown \u5BFE\u5FDC\uFF09"
7787
- },
7788
- mentions: {
7789
- label: "\u30E1\u30F3\u30B7\u30E7\u30F3",
7790
- help: "@\u30E1\u30F3\u30B7\u30E7\u30F3\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u306E JSON \u914D\u5217"
7791
- },
7792
- reactions: {
7793
- label: "\u30EA\u30A2\u30AF\u30B7\u30E7\u30F3",
7794
- help: "\u7D75\u6587\u5B57\u30EA\u30A2\u30AF\u30B7\u30E7\u30F3\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u306E JSON \u914D\u5217"
7795
- },
7796
- is_edited: {
7797
- label: "\u7DE8\u96C6\u6E08\u307F"
7798
- },
7799
- edited_at: {
7800
- label: "\u7DE8\u96C6\u65E5\u6642"
7801
- },
7802
- visibility: {
7803
- label: "\u516C\u958B\u7BC4\u56F2",
7804
- options: {
7805
- public: "\u516C\u958B",
7806
- internal: "\u5185\u90E8",
7807
- private: "\u975E\u516C\u958B"
7808
- }
7340
+ label: "\u64CD\u4F5C\u8005",
7341
+ help: "\u901A\u77E5\u3092\u5F15\u304D\u8D77\u3053\u3057\u305F\u30E6\u30FC\u30B6\u30FC\uFF08\u30E1\u30F3\u30B7\u30E7\u30F3\u8005\u3001\u62C5\u5F53\u8005\uFF09"
7809
7342
  },
7810
7343
  created_at: {
7811
7344
  label: "\u4F5C\u6210\u65E5\u6642"
7345
+ }
7346
+ },
7347
+ _views: {
7348
+ recent: {
7349
+ label: "Recent"
7812
7350
  },
7813
- updated_at: {
7814
- label: "\u66F4\u65B0\u65E5\u6642"
7351
+ by_topic: {
7352
+ label: "By Topic"
7815
7353
  }
7816
7354
  }
7817
7355
  },
@@ -7863,70 +7401,16 @@ var jaJPObjects = {
7863
7401
  }
7864
7402
  },
7865
7403
  uploaded_by: {
7866
- label: "\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u8005"
7867
- },
7868
- description: {
7869
- label: "\u8AAC\u660E"
7870
- },
7871
- created_at: {
7872
- label: "\u4F5C\u6210\u65E5\u6642"
7873
- },
7874
- updated_at: {
7875
- label: "\u66F4\u65B0\u65E5\u6642"
7876
- }
7877
- }
7878
- },
7879
- sys_notification: {
7880
- label: "\u901A\u77E5",
7881
- pluralLabel: "\u901A\u77E5",
7882
- description: "\u30E6\u30FC\u30B6\u30FC\u3054\u3068\u306E\u901A\u77E5\u53D7\u4FE1\u30DC\u30C3\u30AF\u30B9\u30A8\u30F3\u30C8\u30EA",
7883
- fields: {
7884
- id: {
7885
- label: "\u901A\u77E5 ID"
7886
- },
7887
- topic: {
7888
- label: "Topic",
7889
- help: "Notification topic, e.g. task.assigned, collab.mention"
7890
- },
7891
- payload: {
7892
- label: "Payload",
7893
- help: "Template inputs carried to channels (title/body/url/actor/source/\u2026)"
7894
- },
7895
- severity: {
7896
- label: "Severity",
7897
- help: "Severity hint for rendering / filtering",
7898
- options: {
7899
- info: "info",
7900
- warning: "warning",
7901
- critical: "critical"
7902
- }
7903
- },
7904
- dedup_key: {
7905
- label: "Dedup Key",
7906
- help: "Idempotency key within a topic window; a repeat emit is a no-op"
7907
- },
7908
- source_object: {
7909
- label: "\u30BD\u30FC\u30B9\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8",
7910
- help: "\u95A2\u9023\u30EC\u30B3\u30FC\u30C9\u306E\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u540D\uFF08\u4F8B: lead\u3001opportunity\uFF09"
7911
- },
7912
- source_id: {
7913
- label: "\u30BD\u30FC\u30B9\u30EC\u30B3\u30FC\u30C9",
7914
- help: "source_object \u5185\u306E\u30EC\u30B3\u30FC\u30C9 ID"
7915
- },
7916
- actor_id: {
7917
- label: "\u64CD\u4F5C\u8005",
7918
- help: "\u901A\u77E5\u3092\u5F15\u304D\u8D77\u3053\u3057\u305F\u30E6\u30FC\u30B6\u30FC\uFF08\u30E1\u30F3\u30B7\u30E7\u30F3\u8005\u3001\u62C5\u5F53\u8005\uFF09"
7404
+ label: "\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u8005"
7405
+ },
7406
+ description: {
7407
+ label: "\u8AAC\u660E"
7919
7408
  },
7920
7409
  created_at: {
7921
7410
  label: "\u4F5C\u6210\u65E5\u6642"
7922
- }
7923
- },
7924
- _views: {
7925
- recent: {
7926
- label: "Recent"
7927
7411
  },
7928
- by_topic: {
7929
- label: "By Topic"
7412
+ updated_at: {
7413
+ label: "\u66F4\u65B0\u65E5\u6642"
7930
7414
  }
7931
7415
  }
7932
7416
  },
@@ -8834,6 +8318,11 @@ var jaJPObjects = {
8834
8318
  label: "\u6697\u53F7\u6587",
8835
8319
  help: "\u30D7\u30ED\u30D0\u30A4\u30C0\u30FC\u30A8\u30F3\u30B3\u30FC\u30C9\u3055\u308C\u305F\u6697\u53F7\u6587 blob\uFF08base64 / JSON\uFF09\u3002\u5B9F\u88C5\u5B9A\u7FA9\u306E\u305F\u3081\u3001\u5BFE\u5FDC\u3059\u308B ICryptoProvider \u306E\u307F\u304C\u8AAD\u307F\u53D6\u308A\u53EF\u80FD\u3002"
8836
8320
  }
8321
+ },
8322
+ _views: {
8323
+ all: {
8324
+ label: "All Secrets"
8325
+ }
8837
8326
  }
8838
8327
  },
8839
8328
  sys_setting_audit: {
@@ -8909,6 +8398,11 @@ var jaJPObjects = {
8909
8398
  label: "\u30EA\u30AF\u30A8\u30B9\u30C8 ID",
8910
8399
  help: "sys_audit_log / \u30C8\u30EC\u30FC\u30B7\u30F3\u30B0\u3068\u306E\u76F8\u95A2\u7528\u3002"
8911
8400
  }
8401
+ },
8402
+ _views: {
8403
+ recent: {
8404
+ label: "Recent"
8405
+ }
8912
8406
  }
8913
8407
  }
8914
8408
  };
@@ -8956,7 +8450,7 @@ var jaJP = {
8956
8450
  nav_teams: { label: "\u30C1\u30FC\u30E0" },
8957
8451
  nav_organizations: { label: "\u7D44\u7E54" },
8958
8452
  nav_invitations: { label: "\u62DB\u5F85" },
8959
- nav_roles: { label: "\u30ED\u30FC\u30EB" },
8453
+ nav_positions: { label: "\u30DD\u30B8\u30B7\u30E7\u30F3" },
8960
8454
  nav_permission_sets: { label: "\u6A29\u9650\u30BB\u30C3\u30C8" },
8961
8455
  nav_sharing_rules: { label: "\u5171\u6709\u30EB\u30FC\u30EB" },
8962
8456
  nav_record_shares: { label: "\u30EC\u30B3\u30FC\u30C9\u5171\u6709" },
@@ -9078,14 +8572,64 @@ var esESObjects = {
9078
8572
  label: "El bloqueo caduca el",
9079
8573
  help: "Si se establece, el bloqueo se elimina autom\xE1ticamente en ese momento."
9080
8574
  },
8575
+ failed_login_count: {
8576
+ label: "Failed Login Count",
8577
+ help: "Consecutive failed sign-in attempts; reset to 0 on success. Maintained by the auth manager."
8578
+ },
8579
+ locked_until: {
8580
+ label: "Locked Until",
8581
+ help: "When set and in the future, sign-in is rejected (brute-force lockout). Auto-clears past this time; an admin can clear it early via Unlock."
8582
+ },
8583
+ password_changed_at: {
8584
+ label: "Password Changed At",
8585
+ help: "Timestamp of the last password change. Backs password_expiry_days; system-managed."
8586
+ },
8587
+ phone_number: {
8588
+ label: "Phone Number",
8589
+ help: "Sign-in phone number (E.164 recommended). Unique per user; managed by better-auth when the phoneNumber plugin is enabled."
8590
+ },
8591
+ phone_number_verified: {
8592
+ label: "Phone Verified",
8593
+ help: "Whether the phone number has been verified (OTP verification requires SMS infrastructure; false until that ships). System-managed."
8594
+ },
8595
+ must_change_password: {
8596
+ label: "Must Change Password",
8597
+ help: "When true, the user is blocked (403 PASSWORD_EXPIRED) until they change their password. Stamped by the admin user-management routes; system-managed."
8598
+ },
8599
+ mfa_required_at: {
8600
+ label: "MFA Required At",
8601
+ help: "When enforced MFA first applied to this user (grace-period clock). Backs mfa_required; system-managed."
8602
+ },
8603
+ last_login_at: {
8604
+ label: "Last Login At",
8605
+ help: "Timestamp of the last successful sign-in. Stamped by the auth manager; system-managed."
8606
+ },
8607
+ last_login_ip: {
8608
+ label: "Last Login IP",
8609
+ help: "Client IP of the last successful sign-in (from the trusted proxy forwarded header). System-managed."
8610
+ },
8611
+ ai_access: {
8612
+ label: "AI Access",
8613
+ help: "Whether this user holds an AI seat \u2014 grants access to the in-UI AI agents (build / ask). The framework synthesizes the `ai_seat` capability from this flag (plugin-hono-server resolveCtx). Assignment is capped by the licensed / purchased seat count (enforced by @objectstack/security-enterprise AiSeatPlugin). Owned by objectql (better-auth is oblivious to this column)."
8614
+ },
9081
8615
  image: {
9082
8616
  label: "Imagen de perfil"
9083
8617
  },
9084
8618
  manager_id: {
9085
- label: "Gerente"
8619
+ label: "Gerente",
8620
+ help: "This user's direct manager. Forms the reporting chain the `own_and_reports` hierarchy scope walks (ADR-0057 / @objectstack/security-enterprise)."
9086
8621
  },
9087
8622
  primary_business_unit_id: {
9088
- label: "Unidad de negocio principal"
8623
+ label: "Unidad de negocio principal",
8624
+ help: "The user's primary business unit \u2014 a denormalised projection of sys_business_unit_member.is_primary, maintained by plugin-sharing (ADR-0057 addendum D12). Lets a user-lookup filter candidates by business unit without traversing the membership junction. Do not edit directly; set it via business-unit membership."
8625
+ },
8626
+ source: {
8627
+ label: "Identity Source",
8628
+ help: "How this identity was created \u2014 idp_provisioned (federated SSO JIT) or env_native (local signup / app end-user). System-managed; do not edit.",
8629
+ options: {
8630
+ idp_provisioned: "IdP-Provisioned",
8631
+ env_native: "Env-Native"
8632
+ }
9089
8633
  },
9090
8634
  id: {
9091
8635
  label: "ID de usuario"
@@ -9128,6 +8672,14 @@ var esESObjects = {
9128
8672
  label: "Desbloquear usuario",
9129
8673
  successMessage: "Usuario desbloqueado"
9130
8674
  },
8675
+ unlock_user: {
8676
+ label: "Unlock Account",
8677
+ successMessage: "Account unlocked"
8678
+ },
8679
+ create_user: {
8680
+ label: "Create User",
8681
+ successMessage: "User created"
8682
+ },
9131
8683
  set_user_password: {
9132
8684
  label: "Establecer contrase\xF1a",
9133
8685
  successMessage: "Contrase\xF1a actualizada"
@@ -9189,6 +8741,18 @@ var esESObjects = {
9189
8741
  expires_at: {
9190
8742
  label: "Caduca el"
9191
8743
  },
8744
+ last_activity_at: {
8745
+ label: "Last Activity At",
8746
+ help: "Timestamp of the last request on this session; drives idle-timeout. System-managed."
8747
+ },
8748
+ revoked_at: {
8749
+ label: "Revoked At",
8750
+ help: "When set, this session was revoked (idle / absolute-max / concurrent-cap / admin). System-managed."
8751
+ },
8752
+ revoke_reason: {
8753
+ label: "Revoke Reason",
8754
+ help: "Why the session was revoked (idle_timeout, absolute_max, concurrent_cap, \u2026)."
8755
+ },
9192
8756
  active_organization_id: {
9193
8757
  label: "Organizaci\xF3n activa"
9194
8758
  },
@@ -9287,6 +8851,10 @@ var esESObjects = {
9287
8851
  password: {
9288
8852
  label: "Hash de la contrase\xF1a",
9289
8853
  help: "Hash de la contrase\xF1a para el proveedor de correo electr\xF3nico/contrase\xF1a."
8854
+ },
8855
+ previous_password_hashes: {
8856
+ label: "Previous Password Hashes",
8857
+ help: "JSON array of prior password hashes (bounded by password_history_count); reuse-prevention only. System-managed."
9290
8858
  }
9291
8859
  },
9292
8860
  _views: {
@@ -9357,6 +8925,10 @@ var esESObjects = {
9357
8925
  label: "Metadatos",
9358
8926
  help: "Metadatos de la organizaci\xF3n serializados en JSON."
9359
8927
  },
8928
+ require_mfa: {
8929
+ label: "Require Multi-Factor Auth",
8930
+ help: "When true, every member of this organization must enroll an authenticator app to access data."
8931
+ },
9360
8932
  id: {
9361
8933
  label: "ID de organizaci\xF3n"
9362
8934
  },
@@ -9681,6 +9253,9 @@ var esESObjects = {
9681
9253
  }
9682
9254
  },
9683
9255
  _views: {
9256
+ org_chart: {
9257
+ label: "Org Chart"
9258
+ },
9684
9259
  active: {
9685
9260
  label: "Activo"
9686
9261
  },
@@ -10262,263 +9837,57 @@ var esESObjects = {
10262
9837
  }
10263
9838
  }
10264
9839
  },
10265
- sys_audit_log: {
10266
- label: "Registro de auditor\xEDa",
10267
- pluralLabel: "Registros de auditor\xEDa",
10268
- description: "Registro de auditor\xEDa inmutable para eventos de la plataforma",
10269
- fields: {
10270
- created_at: {
10271
- label: "Marca temporal"
10272
- },
10273
- action: {
10274
- label: "Acci\xF3n",
10275
- help: "Tipo de acci\xF3n (snake_case).",
10276
- options: {
10277
- create: "Crear",
10278
- update: "Actualizar",
10279
- delete: "Eliminar",
10280
- restore: "Restaurar",
10281
- login: "Inicio de sesi\xF3n",
10282
- logout: "Cierre de sesi\xF3n",
10283
- permission_change: "Cambio de permisos",
10284
- config_change: "Cambio de configuraci\xF3n",
10285
- export: "Exportar",
10286
- import: "Importar"
10287
- }
10288
- },
10289
- user_id: {
10290
- label: "Actor",
10291
- help: "Usuario que realiz\xF3 la acci\xF3n (null para acciones del sistema)."
10292
- },
10293
- object_name: {
10294
- label: "Objeto",
10295
- help: "Objeto de destino (p. ej. sys_user, project_task)."
10296
- },
10297
- record_id: {
10298
- label: "ID de registro",
10299
- help: "ID del registro afectado."
10300
- },
10301
- old_value: {
10302
- label: "Valor anterior",
10303
- help: "Estado anterior serializado en JSON."
10304
- },
10305
- new_value: {
10306
- label: "Valor nuevo",
10307
- help: "Estado nuevo serializado en JSON."
10308
- },
10309
- ip_address: {
10310
- label: "Direcci\xF3n IP"
10311
- },
10312
- user_agent: {
10313
- label: "Agente de usuario"
10314
- },
10315
- tenant_id: {
10316
- label: "Inquilino",
10317
- help: "Contexto del tenant para el aislamiento multi-tenant."
10318
- },
10319
- metadata: {
10320
- label: "Metadatos",
10321
- help: "Contexto adicional serializado en JSON."
10322
- },
10323
- id: {
10324
- label: "ID de registro de auditor\xEDa"
10325
- }
10326
- },
10327
- _views: {
10328
- recent: {
10329
- label: "Recientes"
10330
- },
10331
- writes_only: {
10332
- label: "Escrituras"
10333
- },
10334
- auth_events: {
10335
- label: "Autenticaci\xF3n"
10336
- },
10337
- config_changes: {
10338
- label: "Configuraci\xF3n"
10339
- },
10340
- all_events: {
10341
- label: "Todos"
10342
- }
10343
- }
10344
- },
10345
- sys_presence: {
10346
- label: "Presencia",
10347
- pluralLabel: "Presencias",
10348
- description: "Seguimiento en tiempo real de presencia y actividad de usuarios",
9840
+ sys_notification: {
9841
+ label: "Notificaci\xF3n",
9842
+ pluralLabel: "Notificaciones",
9843
+ description: "Entradas del buz\xF3n de notificaciones por usuario",
10349
9844
  fields: {
10350
9845
  id: {
10351
- label: "ID de presencia"
10352
- },
10353
- created_at: {
10354
- label: "Creado el"
10355
- },
10356
- updated_at: {
10357
- label: "Actualizado el"
10358
- },
10359
- user_id: {
10360
- label: "Usuario"
10361
- },
10362
- session_id: {
10363
- label: "Sesi\xF3n"
10364
- },
10365
- status: {
10366
- label: "Estado",
10367
- options: {
10368
- online: "En l\xEDnea",
10369
- away: "Ausente",
10370
- busy: "Ocupado",
10371
- offline: "Desconectado"
10372
- }
9846
+ label: "ID de notificaci\xF3n"
10373
9847
  },
10374
- last_seen: {
10375
- label: "Visto por \xFAltima vez"
9848
+ topic: {
9849
+ label: "Topic",
9850
+ help: "Notification topic, e.g. task.assigned, collab.mention"
10376
9851
  },
10377
- current_location: {
10378
- label: "Ubicaci\xF3n actual"
9852
+ payload: {
9853
+ label: "Payload",
9854
+ help: "Template inputs carried to channels (title/body/url/actor/source/\u2026)"
10379
9855
  },
10380
- device: {
10381
- label: "Dispositivo",
9856
+ severity: {
9857
+ label: "Severity",
9858
+ help: "Severity hint for rendering / filtering",
10382
9859
  options: {
10383
- desktop: "Escritorio",
10384
- mobile: "M\xF3vil",
10385
- tablet: "Tableta",
10386
- other: "Otro"
9860
+ info: "info",
9861
+ warning: "warning",
9862
+ critical: "critical"
10387
9863
  }
10388
9864
  },
10389
- custom_status: {
10390
- label: "Estado personalizado"
10391
- },
10392
- metadata: {
10393
- label: "Metadatos",
10394
- help: "Metadatos JSON arbitrarios asociados al estado de presencia (coincide con PresenceStateSchema.metadata)."
10395
- }
10396
- }
10397
- },
10398
- sys_activity: {
10399
- label: "Actividad",
10400
- pluralLabel: "Actividades",
10401
- description: "Entradas recientes del flujo de actividad (ligeras y desnormalizadas).",
10402
- fields: {
10403
- id: {
10404
- label: "ID de actividad"
10405
- },
10406
- timestamp: {
10407
- label: "Marca temporal"
9865
+ dedup_key: {
9866
+ label: "Dedup Key",
9867
+ help: "Idempotency key within a topic window; a repeat emit is a no-op"
10408
9868
  },
10409
- type: {
10410
- label: "Tipo",
10411
- options: {
10412
- created: "Creado",
10413
- updated: "Actualizado",
10414
- deleted: "Eliminado",
10415
- commented: "Comentado",
10416
- mentioned: "Mencionado",
10417
- shared: "Compartido",
10418
- assigned: "Asignado",
10419
- completed: "Completado",
10420
- login: "Inicio de sesi\xF3n",
10421
- logout: "Cierre de sesi\xF3n",
10422
- system: "Sistema"
10423
- }
9869
+ source_object: {
9870
+ label: "Objeto de origen",
9871
+ help: "Nombre del objeto del registro relacionado (p. ej. lead, opportunity)."
10424
9872
  },
10425
- summary: {
10426
- label: "Resumen",
10427
- help: "Resumen legible de una l\xEDnea."
9873
+ source_id: {
9874
+ label: "Registro de origen",
9875
+ help: "ID del registro dentro de source_object."
10428
9876
  },
10429
9877
  actor_id: {
10430
- label: "Actor"
10431
- },
10432
- actor_name: {
10433
- label: "Nombre del actor"
10434
- },
10435
- actor_avatar_url: {
10436
- label: "Avatar del actor"
10437
- },
10438
- object_name: {
10439
- label: "Objeto",
10440
- help: "Nombre corto del objeto de destino (p. ej. account, sys_user)."
10441
- },
10442
- record_id: {
10443
- label: "ID de registro"
10444
- },
10445
- record_label: {
10446
- label: "Nombre visible del registro",
10447
- help: "Nombre visible del registro de destino en el momento de escritura."
10448
- },
10449
- url: {
10450
- label: "URL",
10451
- help: "Enlace profundo opcional al destino de la actividad."
10452
- },
10453
- environment_id: {
10454
- label: "Proyecto",
10455
- help: "Contexto del proyecto (implementaciones multiproyecto)."
10456
- },
10457
- metadata: {
10458
- label: "Metadatos",
10459
- help: "Contexto adicional serializado en JSON."
10460
- }
10461
- }
10462
- },
10463
- sys_comment: {
10464
- label: "Comentario",
10465
- pluralLabel: "Comentarios",
10466
- description: "Comentarios en hilo adjuntos a registros mediante thread_id.",
10467
- fields: {
10468
- id: {
10469
- label: "ID de comentario"
10470
- },
10471
- thread_id: {
10472
- label: "Hilo",
10473
- help: "Identificador del hilo; por convenci\xF3n `{object}:{record_id}` (p. ej. `sys_user:abc123`)."
10474
- },
10475
- parent_id: {
10476
- label: "Comentario principal",
10477
- help: "Comentario principal opcional para respuestas anidadas."
10478
- },
10479
- reply_count: {
10480
- label: "N\xFAmero de respuestas"
10481
- },
10482
- author_id: {
10483
- label: "Autor"
10484
- },
10485
- author_name: {
10486
- label: "Nombre del autor"
10487
- },
10488
- author_avatar_url: {
10489
- label: "Avatar del autor"
10490
- },
10491
- body: {
10492
- label: "Contenido",
10493
- help: "Texto del comentario (compatible con Markdown)."
10494
- },
10495
- mentions: {
10496
- label: "Menciones",
10497
- help: "Matriz JSON de objetos @mention."
10498
- },
10499
- reactions: {
10500
- label: "Reacciones",
10501
- help: "Matriz JSON de objetos de reacci\xF3n emoji."
10502
- },
10503
- is_edited: {
10504
- label: "Editado"
10505
- },
10506
- edited_at: {
10507
- label: "Editado el"
10508
- },
10509
- visibility: {
10510
- label: "Visibilidad",
10511
- options: {
10512
- public: "P\xFAblico",
10513
- internal: "Interno",
10514
- private: "Privado"
10515
- }
9878
+ label: "Actor",
9879
+ help: "Usuario que provoc\xF3 la notificaci\xF3n (quien menciona, quien asigna)."
10516
9880
  },
10517
9881
  created_at: {
10518
9882
  label: "Creado el"
9883
+ }
9884
+ },
9885
+ _views: {
9886
+ recent: {
9887
+ label: "Recent"
10519
9888
  },
10520
- updated_at: {
10521
- label: "Actualizado el"
9889
+ by_topic: {
9890
+ label: "By Topic"
10522
9891
  }
10523
9892
  }
10524
9893
  },
@@ -10583,60 +9952,6 @@ var esESObjects = {
10583
9952
  }
10584
9953
  }
10585
9954
  },
10586
- sys_notification: {
10587
- label: "Notificaci\xF3n",
10588
- pluralLabel: "Notificaciones",
10589
- description: "Entradas del buz\xF3n de notificaciones por usuario",
10590
- fields: {
10591
- id: {
10592
- label: "ID de notificaci\xF3n"
10593
- },
10594
- topic: {
10595
- label: "Topic",
10596
- help: "Notification topic, e.g. task.assigned, collab.mention"
10597
- },
10598
- payload: {
10599
- label: "Payload",
10600
- help: "Template inputs carried to channels (title/body/url/actor/source/\u2026)"
10601
- },
10602
- severity: {
10603
- label: "Severity",
10604
- help: "Severity hint for rendering / filtering",
10605
- options: {
10606
- info: "info",
10607
- warning: "warning",
10608
- critical: "critical"
10609
- }
10610
- },
10611
- dedup_key: {
10612
- label: "Dedup Key",
10613
- help: "Idempotency key within a topic window; a repeat emit is a no-op"
10614
- },
10615
- source_object: {
10616
- label: "Objeto de origen",
10617
- help: "Nombre del objeto del registro relacionado (p. ej. lead, opportunity)."
10618
- },
10619
- source_id: {
10620
- label: "Registro de origen",
10621
- help: "ID del registro dentro de source_object."
10622
- },
10623
- actor_id: {
10624
- label: "Actor",
10625
- help: "Usuario que provoc\xF3 la notificaci\xF3n (quien menciona, quien asigna)."
10626
- },
10627
- created_at: {
10628
- label: "Creado el"
10629
- }
10630
- },
10631
- _views: {
10632
- recent: {
10633
- label: "Recent"
10634
- },
10635
- by_topic: {
10636
- label: "By Topic"
10637
- }
10638
- }
10639
- },
10640
9955
  sys_email: {
10641
9956
  label: "Correo",
10642
9957
  pluralLabel: "Correos",
@@ -11541,6 +10856,11 @@ var esESObjects = {
11541
10856
  label: "Texto cifrado",
11542
10857
  help: "Blob de texto cifrado codificado por el proveedor (base64 / JSON). La implementaci\xF3n lo define; solo el ICryptoProvider correspondiente puede leerlo."
11543
10858
  }
10859
+ },
10860
+ _views: {
10861
+ all: {
10862
+ label: "All Secrets"
10863
+ }
11544
10864
  }
11545
10865
  },
11546
10866
  sys_setting_audit: {
@@ -11616,6 +10936,11 @@ var esESObjects = {
11616
10936
  label: "ID de solicitud",
11617
10937
  help: "Se correlaciona con sys_audit_log / tracing."
11618
10938
  }
10939
+ },
10940
+ _views: {
10941
+ recent: {
10942
+ label: "Recent"
10943
+ }
11619
10944
  }
11620
10945
  }
11621
10946
  };
@@ -11663,7 +10988,7 @@ var esES = {
11663
10988
  nav_teams: { label: "Equipos" },
11664
10989
  nav_organizations: { label: "Organizaciones" },
11665
10990
  nav_invitations: { label: "Invitaciones" },
11666
- nav_roles: { label: "Roles" },
10991
+ nav_positions: { label: "Posiciones" },
11667
10992
  nav_permission_sets: { label: "Conjuntos de Permisos" },
11668
10993
  nav_sharing_rules: { label: "Reglas de Compartici\xF3n" },
11669
10994
  nav_record_shares: { label: "Registros Compartidos" },