@objectstack/platform-objects 14.3.0 → 14.6.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.
@@ -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
  };
@@ -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
  };
@@ -6372,14 +6034,64 @@ var jaJPObjects = {
6372
6034
  label: "\u5229\u7528\u505C\u6B62\u671F\u9650",
6373
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"
6374
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
+ },
6375
6077
  image: {
6376
6078
  label: "\u30D7\u30ED\u30D5\u30A3\u30FC\u30EB\u753B\u50CF"
6377
6079
  },
6378
6080
  manager_id: {
6379
- 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)."
6380
6083
  },
6381
6084
  primary_business_unit_id: {
6382
- 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
+ }
6383
6095
  },
6384
6096
  id: {
6385
6097
  label: "\u30E6\u30FC\u30B6\u30FC ID"
@@ -6422,6 +6134,14 @@ var jaJPObjects = {
6422
6134
  label: "\u5229\u7528\u505C\u6B62\u3092\u89E3\u9664",
6423
6135
  successMessage: "\u30E6\u30FC\u30B6\u30FC\u306E\u5229\u7528\u505C\u6B62\u3092\u89E3\u9664\u3057\u307E\u3057\u305F"
6424
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
+ },
6425
6145
  set_user_password: {
6426
6146
  label: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u8A2D\u5B9A",
6427
6147
  successMessage: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F"
@@ -6483,6 +6203,18 @@ var jaJPObjects = {
6483
6203
  expires_at: {
6484
6204
  label: "\u6709\u52B9\u671F\u9650"
6485
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
+ },
6486
6218
  active_organization_id: {
6487
6219
  label: "\u30A2\u30AF\u30C6\u30A3\u30D6\u7D44\u7E54"
6488
6220
  },
@@ -6581,6 +6313,10 @@ var jaJPObjects = {
6581
6313
  password: {
6582
6314
  label: "\u30D1\u30B9\u30EF\u30FC\u30C9\u30CF\u30C3\u30B7\u30E5",
6583
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."
6584
6320
  }
6585
6321
  },
6586
6322
  _views: {
@@ -6651,6 +6387,10 @@ var jaJPObjects = {
6651
6387
  label: "\u30E1\u30BF\u30C7\u30FC\u30BF",
6652
6388
  help: "JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u3055\u308C\u305F\u7D44\u7E54\u30E1\u30BF\u30C7\u30FC\u30BF"
6653
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
+ },
6654
6394
  id: {
6655
6395
  label: "\u7D44\u7E54 ID"
6656
6396
  },
@@ -6975,6 +6715,9 @@ var jaJPObjects = {
6975
6715
  }
6976
6716
  },
6977
6717
  _views: {
6718
+ org_chart: {
6719
+ label: "Org Chart"
6720
+ },
6978
6721
  active: {
6979
6722
  label: "\u6709\u52B9"
6980
6723
  },
@@ -7556,263 +7299,57 @@ var jaJPObjects = {
7556
7299
  }
7557
7300
  }
7558
7301
  },
7559
- sys_audit_log: {
7560
- label: "\u76E3\u67FB\u30ED\u30B0",
7561
- pluralLabel: "\u76E3\u67FB\u30ED\u30B0",
7562
- description: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u30A4\u30D9\u30F3\u30C8\u306E\u4E0D\u5909\u306E\u76E3\u67FB\u8A3C\u8DE1",
7563
- fields: {
7564
- created_at: {
7565
- label: "\u30BF\u30A4\u30E0\u30B9\u30BF\u30F3\u30D7"
7566
- },
7567
- action: {
7568
- label: "\u30A2\u30AF\u30B7\u30E7\u30F3",
7569
- help: "\u30A2\u30AF\u30B7\u30E7\u30F3\u30BF\u30A4\u30D7\uFF08snake_case\uFF09",
7570
- options: {
7571
- create: "\u4F5C\u6210",
7572
- update: "\u66F4\u65B0",
7573
- delete: "\u524A\u9664",
7574
- restore: "\u5FA9\u5143",
7575
- login: "\u30ED\u30B0\u30A4\u30F3",
7576
- logout: "\u30ED\u30B0\u30A2\u30A6\u30C8",
7577
- permission_change: "\u6A29\u9650\u5909\u66F4",
7578
- config_change: "\u69CB\u6210\u5909\u66F4",
7579
- export: "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8",
7580
- import: "\u30A4\u30F3\u30DD\u30FC\u30C8"
7581
- }
7582
- },
7583
- user_id: {
7584
- label: "\u64CD\u4F5C\u8005",
7585
- 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"
7586
- },
7587
- object_name: {
7588
- label: "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8",
7589
- help: "\u5BFE\u8C61\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\uFF08\u4F8B: sys_user\u3001project_task\uFF09"
7590
- },
7591
- record_id: {
7592
- label: "\u30EC\u30B3\u30FC\u30C9 ID",
7593
- help: "\u5F71\u97FF\u3092\u53D7\u3051\u305F\u30EC\u30B3\u30FC\u30C9\u306E ID"
7594
- },
7595
- old_value: {
7596
- label: "\u5909\u66F4\u524D\u306E\u5024",
7597
- help: "JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u3055\u308C\u305F\u4EE5\u524D\u306E\u72B6\u614B"
7598
- },
7599
- new_value: {
7600
- label: "\u5909\u66F4\u5F8C\u306E\u5024",
7601
- help: "JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u3055\u308C\u305F\u65B0\u3057\u3044\u72B6\u614B"
7602
- },
7603
- ip_address: {
7604
- label: "IP \u30A2\u30C9\u30EC\u30B9"
7605
- },
7606
- user_agent: {
7607
- label: "\u30E6\u30FC\u30B6\u30FC\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8"
7608
- },
7609
- tenant_id: {
7610
- label: "\u30C6\u30CA\u30F3\u30C8",
7611
- help: "\u30DE\u30EB\u30C1\u30C6\u30CA\u30F3\u30C8\u5206\u96E2\u306E\u305F\u3081\u306E\u30C6\u30CA\u30F3\u30C8\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8"
7612
- },
7613
- metadata: {
7614
- label: "\u30E1\u30BF\u30C7\u30FC\u30BF",
7615
- help: "JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u3055\u308C\u305F\u8FFD\u52A0\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8"
7616
- },
7617
- id: {
7618
- label: "\u76E3\u67FB\u30ED\u30B0 ID"
7619
- }
7620
- },
7621
- _views: {
7622
- recent: {
7623
- label: "\u6700\u8FD1"
7624
- },
7625
- writes_only: {
7626
- label: "\u66F8\u304D\u8FBC\u307F"
7627
- },
7628
- auth_events: {
7629
- label: "\u8A8D\u8A3C"
7630
- },
7631
- config_changes: {
7632
- label: "\u69CB\u6210\u5909\u66F4"
7633
- },
7634
- all_events: {
7635
- label: "\u3059\u3079\u3066"
7636
- }
7637
- }
7638
- },
7639
- sys_presence: {
7640
- label: "\u5728\u5E2D\u72B6\u6CC1",
7641
- pluralLabel: "\u5728\u5E2D\u72B6\u6CC1",
7642
- 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",
7643
7306
  fields: {
7644
7307
  id: {
7645
- label: "\u5728\u5E2D ID"
7646
- },
7647
- created_at: {
7648
- label: "\u4F5C\u6210\u65E5\u6642"
7649
- },
7650
- updated_at: {
7651
- label: "\u66F4\u65B0\u65E5\u6642"
7652
- },
7653
- user_id: {
7654
- label: "\u30E6\u30FC\u30B6\u30FC"
7655
- },
7656
- session_id: {
7657
- label: "\u30BB\u30C3\u30B7\u30E7\u30F3"
7658
- },
7659
- status: {
7660
- label: "\u30B9\u30C6\u30FC\u30BF\u30B9",
7661
- options: {
7662
- online: "\u30AA\u30F3\u30E9\u30A4\u30F3",
7663
- away: "\u96E2\u5E2D\u4E2D",
7664
- busy: "\u53D6\u308A\u8FBC\u307F\u4E2D",
7665
- offline: "\u30AA\u30D5\u30E9\u30A4\u30F3"
7666
- }
7308
+ label: "\u901A\u77E5 ID"
7667
7309
  },
7668
- last_seen: {
7669
- label: "\u6700\u7D42\u78BA\u8A8D\u65E5\u6642"
7310
+ topic: {
7311
+ label: "Topic",
7312
+ help: "Notification topic, e.g. task.assigned, collab.mention"
7670
7313
  },
7671
- current_location: {
7672
- label: "\u73FE\u5728\u5730"
7314
+ payload: {
7315
+ label: "Payload",
7316
+ help: "Template inputs carried to channels (title/body/url/actor/source/\u2026)"
7673
7317
  },
7674
- device: {
7675
- label: "\u30C7\u30D0\u30A4\u30B9",
7318
+ severity: {
7319
+ label: "Severity",
7320
+ help: "Severity hint for rendering / filtering",
7676
7321
  options: {
7677
- desktop: "\u30C7\u30B9\u30AF\u30C8\u30C3\u30D7",
7678
- mobile: "\u30E2\u30D0\u30A4\u30EB",
7679
- tablet: "\u30BF\u30D6\u30EC\u30C3\u30C8",
7680
- other: "\u305D\u306E\u4ED6"
7322
+ info: "info",
7323
+ warning: "warning",
7324
+ critical: "critical"
7681
7325
  }
7682
7326
  },
7683
- custom_status: {
7684
- label: "\u30AB\u30B9\u30BF\u30E0\u30B9\u30C6\u30FC\u30BF\u30B9"
7685
- },
7686
- metadata: {
7687
- label: "\u30E1\u30BF\u30C7\u30FC\u30BF",
7688
- 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"
7689
- }
7690
- }
7691
- },
7692
- sys_activity: {
7693
- label: "\u30A2\u30AF\u30C6\u30A3\u30D3\u30C6\u30A3",
7694
- pluralLabel: "\u30A2\u30AF\u30C6\u30A3\u30D3\u30C6\u30A3",
7695
- 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",
7696
- fields: {
7697
- id: {
7698
- label: "\u30A2\u30AF\u30C6\u30A3\u30D3\u30C6\u30A3 ID"
7699
- },
7700
- timestamp: {
7701
- 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"
7702
7330
  },
7703
- type: {
7704
- label: "\u30BF\u30A4\u30D7",
7705
- options: {
7706
- created: "\u4F5C\u6210",
7707
- updated: "\u66F4\u65B0",
7708
- deleted: "\u524A\u9664",
7709
- commented: "\u30B3\u30E1\u30F3\u30C8",
7710
- mentioned: "\u30E1\u30F3\u30B7\u30E7\u30F3",
7711
- shared: "\u5171\u6709",
7712
- assigned: "\u5272\u308A\u5F53\u3066",
7713
- completed: "\u5B8C\u4E86",
7714
- login: "\u30ED\u30B0\u30A4\u30F3",
7715
- logout: "\u30ED\u30B0\u30A2\u30A6\u30C8",
7716
- system: "\u30B7\u30B9\u30C6\u30E0"
7717
- }
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"
7718
7334
  },
7719
- summary: {
7720
- label: "\u30B5\u30DE\u30EA\u30FC",
7721
- 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"
7722
7338
  },
7723
7339
  actor_id: {
7724
- label: "\u64CD\u4F5C\u8005"
7725
- },
7726
- actor_name: {
7727
- label: "\u64CD\u4F5C\u8005\u540D"
7728
- },
7729
- actor_avatar_url: {
7730
- label: "\u64CD\u4F5C\u8005\u30A2\u30D0\u30BF\u30FC"
7731
- },
7732
- object_name: {
7733
- label: "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8",
7734
- help: "\u5BFE\u8C61\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u306E\u77ED\u3044\u540D\u524D\uFF08\u4F8B: account\u3001sys_user\uFF09"
7735
- },
7736
- record_id: {
7737
- label: "\u30EC\u30B3\u30FC\u30C9 ID"
7738
- },
7739
- record_label: {
7740
- label: "\u30EC\u30B3\u30FC\u30C9\u8868\u793A\u540D",
7741
- help: "\u66F8\u304D\u8FBC\u307F\u6642\u70B9\u306E\u5BFE\u8C61\u30EC\u30B3\u30FC\u30C9\u306E\u8868\u793A\u540D"
7742
- },
7743
- url: {
7744
- label: "URL",
7745
- 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"
7746
- },
7747
- environment_id: {
7748
- label: "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8",
7749
- 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"
7750
- },
7751
- metadata: {
7752
- label: "\u30E1\u30BF\u30C7\u30FC\u30BF",
7753
- help: "JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u3055\u308C\u305F\u8FFD\u52A0\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8"
7754
- }
7755
- }
7756
- },
7757
- sys_comment: {
7758
- label: "\u30B3\u30E1\u30F3\u30C8",
7759
- pluralLabel: "\u30B3\u30E1\u30F3\u30C8",
7760
- 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",
7761
- fields: {
7762
- id: {
7763
- label: "\u30B3\u30E1\u30F3\u30C8 ID"
7764
- },
7765
- thread_id: {
7766
- label: "\u30B9\u30EC\u30C3\u30C9",
7767
- help: "\u30B9\u30EC\u30C3\u30C9\u8B58\u5225\u5B50 \u2014 \u901A\u5E38\u306F `{object}:{record_id}`\uFF08\u4F8B: `sys_user:abc123`\uFF09"
7768
- },
7769
- parent_id: {
7770
- label: "\u89AA\u30B3\u30E1\u30F3\u30C8",
7771
- help: "\u30CD\u30B9\u30C8\u3057\u305F\u8FD4\u4FE1\u7528\u306E\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u89AA\u30B3\u30E1\u30F3\u30C8"
7772
- },
7773
- reply_count: {
7774
- label: "\u8FD4\u4FE1\u6570"
7775
- },
7776
- author_id: {
7777
- label: "\u6295\u7A3F\u8005"
7778
- },
7779
- author_name: {
7780
- label: "\u6295\u7A3F\u8005\u540D"
7781
- },
7782
- author_avatar_url: {
7783
- label: "\u6295\u7A3F\u8005\u30A2\u30D0\u30BF\u30FC"
7784
- },
7785
- body: {
7786
- label: "\u672C\u6587",
7787
- help: "\u30B3\u30E1\u30F3\u30C8\u30C6\u30AD\u30B9\u30C8\uFF08Markdown \u5BFE\u5FDC\uFF09"
7788
- },
7789
- mentions: {
7790
- label: "\u30E1\u30F3\u30B7\u30E7\u30F3",
7791
- help: "@\u30E1\u30F3\u30B7\u30E7\u30F3\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u306E JSON \u914D\u5217"
7792
- },
7793
- reactions: {
7794
- label: "\u30EA\u30A2\u30AF\u30B7\u30E7\u30F3",
7795
- help: "\u7D75\u6587\u5B57\u30EA\u30A2\u30AF\u30B7\u30E7\u30F3\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u306E JSON \u914D\u5217"
7796
- },
7797
- is_edited: {
7798
- label: "\u7DE8\u96C6\u6E08\u307F"
7799
- },
7800
- edited_at: {
7801
- label: "\u7DE8\u96C6\u65E5\u6642"
7802
- },
7803
- visibility: {
7804
- label: "\u516C\u958B\u7BC4\u56F2",
7805
- options: {
7806
- public: "\u516C\u958B",
7807
- internal: "\u5185\u90E8",
7808
- private: "\u975E\u516C\u958B"
7809
- }
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"
7810
7342
  },
7811
7343
  created_at: {
7812
7344
  label: "\u4F5C\u6210\u65E5\u6642"
7345
+ }
7346
+ },
7347
+ _views: {
7348
+ recent: {
7349
+ label: "Recent"
7813
7350
  },
7814
- updated_at: {
7815
- label: "\u66F4\u65B0\u65E5\u6642"
7351
+ by_topic: {
7352
+ label: "By Topic"
7816
7353
  }
7817
7354
  }
7818
7355
  },
@@ -7864,70 +7401,16 @@ var jaJPObjects = {
7864
7401
  }
7865
7402
  },
7866
7403
  uploaded_by: {
7867
- label: "\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u8005"
7868
- },
7869
- description: {
7870
- label: "\u8AAC\u660E"
7871
- },
7872
- created_at: {
7873
- label: "\u4F5C\u6210\u65E5\u6642"
7874
- },
7875
- updated_at: {
7876
- label: "\u66F4\u65B0\u65E5\u6642"
7877
- }
7878
- }
7879
- },
7880
- sys_notification: {
7881
- label: "\u901A\u77E5",
7882
- pluralLabel: "\u901A\u77E5",
7883
- description: "\u30E6\u30FC\u30B6\u30FC\u3054\u3068\u306E\u901A\u77E5\u53D7\u4FE1\u30DC\u30C3\u30AF\u30B9\u30A8\u30F3\u30C8\u30EA",
7884
- fields: {
7885
- id: {
7886
- label: "\u901A\u77E5 ID"
7887
- },
7888
- topic: {
7889
- label: "Topic",
7890
- help: "Notification topic, e.g. task.assigned, collab.mention"
7891
- },
7892
- payload: {
7893
- label: "Payload",
7894
- help: "Template inputs carried to channels (title/body/url/actor/source/\u2026)"
7895
- },
7896
- severity: {
7897
- label: "Severity",
7898
- help: "Severity hint for rendering / filtering",
7899
- options: {
7900
- info: "info",
7901
- warning: "warning",
7902
- critical: "critical"
7903
- }
7904
- },
7905
- dedup_key: {
7906
- label: "Dedup Key",
7907
- help: "Idempotency key within a topic window; a repeat emit is a no-op"
7908
- },
7909
- source_object: {
7910
- label: "\u30BD\u30FC\u30B9\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8",
7911
- help: "\u95A2\u9023\u30EC\u30B3\u30FC\u30C9\u306E\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u540D\uFF08\u4F8B: lead\u3001opportunity\uFF09"
7912
- },
7913
- source_id: {
7914
- label: "\u30BD\u30FC\u30B9\u30EC\u30B3\u30FC\u30C9",
7915
- help: "source_object \u5185\u306E\u30EC\u30B3\u30FC\u30C9 ID"
7916
- },
7917
- actor_id: {
7918
- label: "\u64CD\u4F5C\u8005",
7919
- 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"
7920
7408
  },
7921
7409
  created_at: {
7922
7410
  label: "\u4F5C\u6210\u65E5\u6642"
7923
- }
7924
- },
7925
- _views: {
7926
- recent: {
7927
- label: "Recent"
7928
7411
  },
7929
- by_topic: {
7930
- label: "By Topic"
7412
+ updated_at: {
7413
+ label: "\u66F4\u65B0\u65E5\u6642"
7931
7414
  }
7932
7415
  }
7933
7416
  },
@@ -8835,6 +8318,11 @@ var jaJPObjects = {
8835
8318
  label: "\u6697\u53F7\u6587",
8836
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"
8837
8320
  }
8321
+ },
8322
+ _views: {
8323
+ all: {
8324
+ label: "All Secrets"
8325
+ }
8838
8326
  }
8839
8327
  },
8840
8328
  sys_setting_audit: {
@@ -8910,6 +8398,11 @@ var jaJPObjects = {
8910
8398
  label: "\u30EA\u30AF\u30A8\u30B9\u30C8 ID",
8911
8399
  help: "sys_audit_log / \u30C8\u30EC\u30FC\u30B7\u30F3\u30B0\u3068\u306E\u76F8\u95A2\u7528\u3002"
8912
8400
  }
8401
+ },
8402
+ _views: {
8403
+ recent: {
8404
+ label: "Recent"
8405
+ }
8913
8406
  }
8914
8407
  }
8915
8408
  };
@@ -9079,14 +8572,64 @@ var esESObjects = {
9079
8572
  label: "El bloqueo caduca el",
9080
8573
  help: "Si se establece, el bloqueo se elimina autom\xE1ticamente en ese momento."
9081
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
+ },
9082
8615
  image: {
9083
8616
  label: "Imagen de perfil"
9084
8617
  },
9085
8618
  manager_id: {
9086
- 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)."
9087
8621
  },
9088
8622
  primary_business_unit_id: {
9089
- 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
+ }
9090
8633
  },
9091
8634
  id: {
9092
8635
  label: "ID de usuario"
@@ -9129,6 +8672,14 @@ var esESObjects = {
9129
8672
  label: "Desbloquear usuario",
9130
8673
  successMessage: "Usuario desbloqueado"
9131
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
+ },
9132
8683
  set_user_password: {
9133
8684
  label: "Establecer contrase\xF1a",
9134
8685
  successMessage: "Contrase\xF1a actualizada"
@@ -9190,6 +8741,18 @@ var esESObjects = {
9190
8741
  expires_at: {
9191
8742
  label: "Caduca el"
9192
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
+ },
9193
8756
  active_organization_id: {
9194
8757
  label: "Organizaci\xF3n activa"
9195
8758
  },
@@ -9288,6 +8851,10 @@ var esESObjects = {
9288
8851
  password: {
9289
8852
  label: "Hash de la contrase\xF1a",
9290
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."
9291
8858
  }
9292
8859
  },
9293
8860
  _views: {
@@ -9358,6 +8925,10 @@ var esESObjects = {
9358
8925
  label: "Metadatos",
9359
8926
  help: "Metadatos de la organizaci\xF3n serializados en JSON."
9360
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
+ },
9361
8932
  id: {
9362
8933
  label: "ID de organizaci\xF3n"
9363
8934
  },
@@ -9682,6 +9253,9 @@ var esESObjects = {
9682
9253
  }
9683
9254
  },
9684
9255
  _views: {
9256
+ org_chart: {
9257
+ label: "Org Chart"
9258
+ },
9685
9259
  active: {
9686
9260
  label: "Activo"
9687
9261
  },
@@ -10263,263 +9837,57 @@ var esESObjects = {
10263
9837
  }
10264
9838
  }
10265
9839
  },
10266
- sys_audit_log: {
10267
- label: "Registro de auditor\xEDa",
10268
- pluralLabel: "Registros de auditor\xEDa",
10269
- description: "Registro de auditor\xEDa inmutable para eventos de la plataforma",
10270
- fields: {
10271
- created_at: {
10272
- label: "Marca temporal"
10273
- },
10274
- action: {
10275
- label: "Acci\xF3n",
10276
- help: "Tipo de acci\xF3n (snake_case).",
10277
- options: {
10278
- create: "Crear",
10279
- update: "Actualizar",
10280
- delete: "Eliminar",
10281
- restore: "Restaurar",
10282
- login: "Inicio de sesi\xF3n",
10283
- logout: "Cierre de sesi\xF3n",
10284
- permission_change: "Cambio de permisos",
10285
- config_change: "Cambio de configuraci\xF3n",
10286
- export: "Exportar",
10287
- import: "Importar"
10288
- }
10289
- },
10290
- user_id: {
10291
- label: "Actor",
10292
- help: "Usuario que realiz\xF3 la acci\xF3n (null para acciones del sistema)."
10293
- },
10294
- object_name: {
10295
- label: "Objeto",
10296
- help: "Objeto de destino (p. ej. sys_user, project_task)."
10297
- },
10298
- record_id: {
10299
- label: "ID de registro",
10300
- help: "ID del registro afectado."
10301
- },
10302
- old_value: {
10303
- label: "Valor anterior",
10304
- help: "Estado anterior serializado en JSON."
10305
- },
10306
- new_value: {
10307
- label: "Valor nuevo",
10308
- help: "Estado nuevo serializado en JSON."
10309
- },
10310
- ip_address: {
10311
- label: "Direcci\xF3n IP"
10312
- },
10313
- user_agent: {
10314
- label: "Agente de usuario"
10315
- },
10316
- tenant_id: {
10317
- label: "Inquilino",
10318
- help: "Contexto del tenant para el aislamiento multi-tenant."
10319
- },
10320
- metadata: {
10321
- label: "Metadatos",
10322
- help: "Contexto adicional serializado en JSON."
10323
- },
10324
- id: {
10325
- label: "ID de registro de auditor\xEDa"
10326
- }
10327
- },
10328
- _views: {
10329
- recent: {
10330
- label: "Recientes"
10331
- },
10332
- writes_only: {
10333
- label: "Escrituras"
10334
- },
10335
- auth_events: {
10336
- label: "Autenticaci\xF3n"
10337
- },
10338
- config_changes: {
10339
- label: "Configuraci\xF3n"
10340
- },
10341
- all_events: {
10342
- label: "Todos"
10343
- }
10344
- }
10345
- },
10346
- sys_presence: {
10347
- label: "Presencia",
10348
- pluralLabel: "Presencias",
10349
- 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",
10350
9844
  fields: {
10351
9845
  id: {
10352
- label: "ID de presencia"
10353
- },
10354
- created_at: {
10355
- label: "Creado el"
10356
- },
10357
- updated_at: {
10358
- label: "Actualizado el"
10359
- },
10360
- user_id: {
10361
- label: "Usuario"
10362
- },
10363
- session_id: {
10364
- label: "Sesi\xF3n"
10365
- },
10366
- status: {
10367
- label: "Estado",
10368
- options: {
10369
- online: "En l\xEDnea",
10370
- away: "Ausente",
10371
- busy: "Ocupado",
10372
- offline: "Desconectado"
10373
- }
9846
+ label: "ID de notificaci\xF3n"
10374
9847
  },
10375
- last_seen: {
10376
- label: "Visto por \xFAltima vez"
9848
+ topic: {
9849
+ label: "Topic",
9850
+ help: "Notification topic, e.g. task.assigned, collab.mention"
10377
9851
  },
10378
- current_location: {
10379
- label: "Ubicaci\xF3n actual"
9852
+ payload: {
9853
+ label: "Payload",
9854
+ help: "Template inputs carried to channels (title/body/url/actor/source/\u2026)"
10380
9855
  },
10381
- device: {
10382
- label: "Dispositivo",
9856
+ severity: {
9857
+ label: "Severity",
9858
+ help: "Severity hint for rendering / filtering",
10383
9859
  options: {
10384
- desktop: "Escritorio",
10385
- mobile: "M\xF3vil",
10386
- tablet: "Tableta",
10387
- other: "Otro"
9860
+ info: "info",
9861
+ warning: "warning",
9862
+ critical: "critical"
10388
9863
  }
10389
9864
  },
10390
- custom_status: {
10391
- label: "Estado personalizado"
10392
- },
10393
- metadata: {
10394
- label: "Metadatos",
10395
- help: "Metadatos JSON arbitrarios asociados al estado de presencia (coincide con PresenceStateSchema.metadata)."
10396
- }
10397
- }
10398
- },
10399
- sys_activity: {
10400
- label: "Actividad",
10401
- pluralLabel: "Actividades",
10402
- description: "Entradas recientes del flujo de actividad (ligeras y desnormalizadas).",
10403
- fields: {
10404
- id: {
10405
- label: "ID de actividad"
10406
- },
10407
- timestamp: {
10408
- 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"
10409
9868
  },
10410
- type: {
10411
- label: "Tipo",
10412
- options: {
10413
- created: "Creado",
10414
- updated: "Actualizado",
10415
- deleted: "Eliminado",
10416
- commented: "Comentado",
10417
- mentioned: "Mencionado",
10418
- shared: "Compartido",
10419
- assigned: "Asignado",
10420
- completed: "Completado",
10421
- login: "Inicio de sesi\xF3n",
10422
- logout: "Cierre de sesi\xF3n",
10423
- system: "Sistema"
10424
- }
9869
+ source_object: {
9870
+ label: "Objeto de origen",
9871
+ help: "Nombre del objeto del registro relacionado (p. ej. lead, opportunity)."
10425
9872
  },
10426
- summary: {
10427
- label: "Resumen",
10428
- help: "Resumen legible de una l\xEDnea."
9873
+ source_id: {
9874
+ label: "Registro de origen",
9875
+ help: "ID del registro dentro de source_object."
10429
9876
  },
10430
9877
  actor_id: {
10431
- label: "Actor"
10432
- },
10433
- actor_name: {
10434
- label: "Nombre del actor"
10435
- },
10436
- actor_avatar_url: {
10437
- label: "Avatar del actor"
10438
- },
10439
- object_name: {
10440
- label: "Objeto",
10441
- help: "Nombre corto del objeto de destino (p. ej. account, sys_user)."
10442
- },
10443
- record_id: {
10444
- label: "ID de registro"
10445
- },
10446
- record_label: {
10447
- label: "Nombre visible del registro",
10448
- help: "Nombre visible del registro de destino en el momento de escritura."
10449
- },
10450
- url: {
10451
- label: "URL",
10452
- help: "Enlace profundo opcional al destino de la actividad."
10453
- },
10454
- environment_id: {
10455
- label: "Proyecto",
10456
- help: "Contexto del proyecto (implementaciones multiproyecto)."
10457
- },
10458
- metadata: {
10459
- label: "Metadatos",
10460
- help: "Contexto adicional serializado en JSON."
10461
- }
10462
- }
10463
- },
10464
- sys_comment: {
10465
- label: "Comentario",
10466
- pluralLabel: "Comentarios",
10467
- description: "Comentarios en hilo adjuntos a registros mediante thread_id.",
10468
- fields: {
10469
- id: {
10470
- label: "ID de comentario"
10471
- },
10472
- thread_id: {
10473
- label: "Hilo",
10474
- help: "Identificador del hilo; por convenci\xF3n `{object}:{record_id}` (p. ej. `sys_user:abc123`)."
10475
- },
10476
- parent_id: {
10477
- label: "Comentario principal",
10478
- help: "Comentario principal opcional para respuestas anidadas."
10479
- },
10480
- reply_count: {
10481
- label: "N\xFAmero de respuestas"
10482
- },
10483
- author_id: {
10484
- label: "Autor"
10485
- },
10486
- author_name: {
10487
- label: "Nombre del autor"
10488
- },
10489
- author_avatar_url: {
10490
- label: "Avatar del autor"
10491
- },
10492
- body: {
10493
- label: "Contenido",
10494
- help: "Texto del comentario (compatible con Markdown)."
10495
- },
10496
- mentions: {
10497
- label: "Menciones",
10498
- help: "Matriz JSON de objetos @mention."
10499
- },
10500
- reactions: {
10501
- label: "Reacciones",
10502
- help: "Matriz JSON de objetos de reacci\xF3n emoji."
10503
- },
10504
- is_edited: {
10505
- label: "Editado"
10506
- },
10507
- edited_at: {
10508
- label: "Editado el"
10509
- },
10510
- visibility: {
10511
- label: "Visibilidad",
10512
- options: {
10513
- public: "P\xFAblico",
10514
- internal: "Interno",
10515
- private: "Privado"
10516
- }
9878
+ label: "Actor",
9879
+ help: "Usuario que provoc\xF3 la notificaci\xF3n (quien menciona, quien asigna)."
10517
9880
  },
10518
9881
  created_at: {
10519
9882
  label: "Creado el"
9883
+ }
9884
+ },
9885
+ _views: {
9886
+ recent: {
9887
+ label: "Recent"
10520
9888
  },
10521
- updated_at: {
10522
- label: "Actualizado el"
9889
+ by_topic: {
9890
+ label: "By Topic"
10523
9891
  }
10524
9892
  }
10525
9893
  },
@@ -10584,60 +9952,6 @@ var esESObjects = {
10584
9952
  }
10585
9953
  }
10586
9954
  },
10587
- sys_notification: {
10588
- label: "Notificaci\xF3n",
10589
- pluralLabel: "Notificaciones",
10590
- description: "Entradas del buz\xF3n de notificaciones por usuario",
10591
- fields: {
10592
- id: {
10593
- label: "ID de notificaci\xF3n"
10594
- },
10595
- topic: {
10596
- label: "Topic",
10597
- help: "Notification topic, e.g. task.assigned, collab.mention"
10598
- },
10599
- payload: {
10600
- label: "Payload",
10601
- help: "Template inputs carried to channels (title/body/url/actor/source/\u2026)"
10602
- },
10603
- severity: {
10604
- label: "Severity",
10605
- help: "Severity hint for rendering / filtering",
10606
- options: {
10607
- info: "info",
10608
- warning: "warning",
10609
- critical: "critical"
10610
- }
10611
- },
10612
- dedup_key: {
10613
- label: "Dedup Key",
10614
- help: "Idempotency key within a topic window; a repeat emit is a no-op"
10615
- },
10616
- source_object: {
10617
- label: "Objeto de origen",
10618
- help: "Nombre del objeto del registro relacionado (p. ej. lead, opportunity)."
10619
- },
10620
- source_id: {
10621
- label: "Registro de origen",
10622
- help: "ID del registro dentro de source_object."
10623
- },
10624
- actor_id: {
10625
- label: "Actor",
10626
- help: "Usuario que provoc\xF3 la notificaci\xF3n (quien menciona, quien asigna)."
10627
- },
10628
- created_at: {
10629
- label: "Creado el"
10630
- }
10631
- },
10632
- _views: {
10633
- recent: {
10634
- label: "Recent"
10635
- },
10636
- by_topic: {
10637
- label: "By Topic"
10638
- }
10639
- }
10640
- },
10641
9955
  sys_email: {
10642
9956
  label: "Correo",
10643
9957
  pluralLabel: "Correos",
@@ -11542,6 +10856,11 @@ var esESObjects = {
11542
10856
  label: "Texto cifrado",
11543
10857
  help: "Blob de texto cifrado codificado por el proveedor (base64 / JSON). La implementaci\xF3n lo define; solo el ICryptoProvider correspondiente puede leerlo."
11544
10858
  }
10859
+ },
10860
+ _views: {
10861
+ all: {
10862
+ label: "All Secrets"
10863
+ }
11545
10864
  }
11546
10865
  },
11547
10866
  sys_setting_audit: {
@@ -11617,6 +10936,11 @@ var esESObjects = {
11617
10936
  label: "ID de solicitud",
11618
10937
  help: "Se correlaciona con sys_audit_log / tracing."
11619
10938
  }
10939
+ },
10940
+ _views: {
10941
+ recent: {
10942
+ label: "Recent"
10943
+ }
11620
10944
  }
11621
10945
  }
11622
10946
  };