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