@objectstack/platform-objects 6.9.0 → 7.1.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 (51) hide show
  1. package/dist/apps/index.d.mts +30 -1
  2. package/dist/apps/index.d.ts +30 -1
  3. package/dist/apps/index.js +987 -37
  4. package/dist/apps/index.js.map +1 -1
  5. package/dist/apps/index.mjs +987 -38
  6. package/dist/apps/index.mjs.map +1 -1
  7. package/dist/audit/index.d.mts +240 -64
  8. package/dist/audit/index.d.ts +240 -64
  9. package/dist/identity/index.d.mts +900 -82
  10. package/dist/identity/index.d.ts +900 -82
  11. package/dist/identity/index.js +384 -8
  12. package/dist/identity/index.js.map +1 -1
  13. package/dist/identity/index.mjs +384 -8
  14. package/dist/identity/index.mjs.map +1 -1
  15. package/dist/index.d.mts +4 -1
  16. package/dist/index.d.ts +4 -1
  17. package/dist/index.js +6823 -99
  18. package/dist/index.js.map +1 -1
  19. package/dist/index.mjs +6818 -100
  20. package/dist/index.mjs.map +1 -1
  21. package/dist/integration/index.d.mts +15 -4
  22. package/dist/integration/index.d.ts +15 -4
  23. package/dist/metadata/index.d.mts +30 -8
  24. package/dist/metadata/index.d.ts +30 -8
  25. package/dist/metadata-translations/index.d.mts +20 -0
  26. package/dist/metadata-translations/index.d.ts +20 -0
  27. package/dist/metadata-translations/index.js +4777 -0
  28. package/dist/metadata-translations/index.js.map +1 -0
  29. package/dist/metadata-translations/index.mjs +4775 -0
  30. package/dist/metadata-translations/index.mjs.map +1 -0
  31. package/dist/pages/index.d.mts +73 -0
  32. package/dist/pages/index.d.ts +73 -0
  33. package/dist/pages/index.js +371 -0
  34. package/dist/pages/index.js.map +1 -0
  35. package/dist/pages/index.mjs +368 -0
  36. package/dist/pages/index.mjs.map +1 -0
  37. package/dist/plugin.d.mts +35 -0
  38. package/dist/plugin.d.ts +35 -0
  39. package/dist/plugin.js +17562 -0
  40. package/dist/plugin.js.map +1 -0
  41. package/dist/plugin.mjs +17559 -0
  42. package/dist/plugin.mjs.map +1 -0
  43. package/dist/security/index.d.mts +806 -204
  44. package/dist/security/index.d.ts +806 -204
  45. package/dist/security/index.js +208 -1
  46. package/dist/security/index.js.map +1 -1
  47. package/dist/security/index.mjs +208 -1
  48. package/dist/security/index.mjs.map +1 -1
  49. package/dist/system/index.d.mts +45 -12
  50. package/dist/system/index.d.ts +45 -12
  51. package/package.json +17 -2
@@ -21,6 +21,11 @@ var SETUP_APP = {
21
21
  type: "group",
22
22
  label: "Overview",
23
23
  icon: "layout-dashboard",
24
+ // Platform-wide metrics — aggregate counts across ALL tenants
25
+ // and are mislabeled for an org admin (RLS would filter to a
26
+ // single org but the dashboard still reads "Total Users" etc.).
27
+ // Hidden until a tenant-scoped `organization_overview` ships.
28
+ requiredPermissions: ["manage_platform_settings"],
24
29
  children: [
25
30
  { id: "nav_system_overview", type: "dashboard", label: "System Overview", dashboardName: "system_overview", icon: "activity" }
26
31
  ]
@@ -87,9 +92,13 @@ var SETUP_APP = {
87
92
  // People & Org cleanup.
88
93
  { id: "nav_roles", type: "object", label: "Roles", objectName: "sys_role", icon: "shield-check" },
89
94
  { id: "nav_permission_sets", type: "object", label: "Permission Sets", objectName: "sys_permission_set", icon: "lock" },
90
- { id: "nav_sharing_rules", type: "object", label: "Sharing Rules", objectName: "sys_sharing_rule", icon: "share-2", requiresObject: "sys_sharing_rule" },
91
- { id: "nav_record_shares", type: "object", label: "Record Shares", objectName: "sys_record_share", icon: "link", requiresObject: "sys_record_share" },
92
- { id: "nav_api_keys", type: "object", label: "API Keys", objectName: "sys_api_key", icon: "key" }
95
+ // Sharing rules / record shares / API keys are platform-managed
96
+ // (shared across orgs or operate on the global identity surface).
97
+ // Org admins see Roles + Permission Sets read-only via RLS but
98
+ // these advanced entries are hidden behind manage_platform_settings.
99
+ { id: "nav_sharing_rules", type: "object", label: "Sharing Rules", objectName: "sys_sharing_rule", icon: "share-2", requiresObject: "sys_sharing_rule", requiredPermissions: ["manage_platform_settings"] },
100
+ { id: "nav_record_shares", type: "object", label: "Record Shares", objectName: "sys_record_share", icon: "link", requiresObject: "sys_record_share", requiredPermissions: ["manage_platform_settings"] },
101
+ { id: "nav_api_keys", type: "object", label: "API Keys", objectName: "sys_api_key", icon: "key", requiredPermissions: ["manage_platform_settings"] }
93
102
  ]
94
103
  },
95
104
  {
@@ -97,6 +106,9 @@ var SETUP_APP = {
97
106
  type: "group",
98
107
  label: "Approvals",
99
108
  icon: "check-circle",
109
+ // Approval processes are configured at the platform level and
110
+ // reused across tenants. Hidden from org admins.
111
+ requiredPermissions: ["manage_platform_settings"],
100
112
  children: [
101
113
  { id: "nav_approval_processes", type: "object", label: "Processes", objectName: "sys_approval_process", icon: "workflow", requiresObject: "sys_approval_process" },
102
114
  { id: "nav_approval_requests", type: "object", label: "Requests", objectName: "sys_approval_request", icon: "inbox", requiresObject: "sys_approval_request" },
@@ -119,12 +131,18 @@ var SETUP_APP = {
119
131
  // the All-Settings index. AI groups chat + embedder under one entry
120
132
  // because operators reason about them together; Knowledge is its
121
133
  // own entry because the adapter selection is independent.
122
- { id: "nav_settings_hub", type: "url", label: "All Settings", url: "/apps/setup/system/settings", icon: "settings-2" },
134
+ //
135
+ // Permission gating: tenant-scoped manifests (branding,
136
+ // feature_flags) stay on `setup.access` so org admins can
137
+ // configure their own org. Global manifests (mail, storage,
138
+ // AI, knowledge) and the "All Settings" index sit behind
139
+ // `manage_platform_settings` because they affect every tenant.
140
+ { id: "nav_settings_hub", type: "url", label: "All Settings", url: "/apps/setup/system/settings", icon: "settings-2", requiredPermissions: ["manage_platform_settings"] },
123
141
  { id: "nav_settings_branding", type: "url", label: "Branding", url: "/apps/setup/system/settings/branding", icon: "palette" },
124
- { id: "nav_settings_mail", type: "url", label: "Email", url: "/apps/setup/system/settings/mail", icon: "mail" },
125
- { id: "nav_settings_storage", type: "url", label: "File Storage", url: "/apps/setup/system/settings/storage", icon: "hard-drive" },
126
- { id: "nav_settings_ai", type: "url", label: "AI & Embedder", url: "/apps/setup/system/settings/ai", icon: "sparkles" },
127
- { id: "nav_settings_knowledge", type: "url", label: "Knowledge", url: "/apps/setup/system/settings/knowledge", icon: "book-open" },
142
+ { id: "nav_settings_mail", type: "url", label: "Email", url: "/apps/setup/system/settings/mail", icon: "mail", requiredPermissions: ["manage_platform_settings"] },
143
+ { id: "nav_settings_storage", type: "url", label: "File Storage", url: "/apps/setup/system/settings/storage", icon: "hard-drive", requiredPermissions: ["manage_platform_settings"] },
144
+ { id: "nav_settings_ai", type: "url", label: "AI & Embedder", url: "/apps/setup/system/settings/ai", icon: "sparkles", requiredPermissions: ["manage_platform_settings"] },
145
+ { id: "nav_settings_knowledge", type: "url", label: "Knowledge", url: "/apps/setup/system/settings/knowledge", icon: "book-open", requiredPermissions: ["manage_platform_settings"] },
128
146
  { id: "nav_settings_feature_flags", type: "url", label: "Feature Flags", url: "/apps/setup/system/settings/feature_flags", icon: "flag" }
129
147
  ]
130
148
  },
@@ -133,6 +151,9 @@ var SETUP_APP = {
133
151
  type: "group",
134
152
  label: "Diagnostics",
135
153
  icon: "stethoscope",
154
+ // Sessions / audit logs / notifications expose cross-tenant
155
+ // telemetry and are platform-only.
156
+ requiredPermissions: ["manage_platform_settings"],
136
157
  children: [
137
158
  // Day-to-day observability surfaces. M10.30b removed `sys_activity`
138
159
  // and `sys_comment` — both are CRM operational data authored from
@@ -147,6 +168,8 @@ var SETUP_APP = {
147
168
  type: "group",
148
169
  label: "Integrations",
149
170
  icon: "plug",
171
+ // Webhook configuration and delivery telemetry are platform-only.
172
+ requiredPermissions: ["manage_platform_settings"],
150
173
  children: [
151
174
  // Outbound HTTP integrations. `sys_webhook` always ships with
152
175
  // platform-objects, so the Webhooks entry is always visible.
@@ -170,6 +193,10 @@ var SETUP_APP = {
170
193
  label: "Advanced",
171
194
  icon: "wrench",
172
195
  expanded: false,
196
+ // OAuth apps / JWKS / verifications / two-factor / device codes /
197
+ // identity links / user preferences are all platform support
198
+ // surfaces — hidden from org admins.
199
+ requiredPermissions: ["manage_platform_settings"],
173
200
  children: [
174
201
  // Better-auth internals — rarely useful for humans, but exposed
175
202
  // so support engineers can inspect token state without dropping
@@ -454,6 +481,152 @@ var STUDIO_APP = {
454
481
  }
455
482
  ]
456
483
  };
484
+
485
+ // src/apps/account.app.ts
486
+ var ACCOUNT_APP = {
487
+ name: "account",
488
+ label: "Account",
489
+ description: "Personal security and identity settings",
490
+ icon: "user-circle",
491
+ active: true,
492
+ isDefault: false,
493
+ // Surface via the avatar dropdown, not the App Switcher — see App.hidden.
494
+ hidden: true,
495
+ branding: {
496
+ primaryColor: "#0ea5e9"
497
+ // sky-500 — distinct from Setup's slate
498
+ },
499
+ // No `requiredPermissions`: any authenticated user must be able to
500
+ // manage their own 2FA / linked accounts / personal OAuth apps. RLS on
501
+ // each object scopes rows to the caller.
502
+ navigation: [
503
+ // Profile is the canonical landing — a hand-written React settings card
504
+ // (Vercel/Linear style) registered in the Console SPA as
505
+ // `account:profile_card`. The renderer reads the current user via
506
+ // `useAuth()` and writes via `client.auth.updateUser`, so there is no
507
+ // sys_user record context here — this is intentional. The admin-facing
508
+ // sys_user record page (see `pages/sys-user.page.ts`) stays focused on
509
+ // record browsing (Identity/Audit fields, related lists, admin actions)
510
+ // and is reached through Setup, never from the Account App.
511
+ {
512
+ id: "nav_account_profile",
513
+ type: "component",
514
+ label: "Profile",
515
+ componentRef: "account:profile_card",
516
+ icon: "user-circle"
517
+ },
518
+ // --- Inbox & work assigned to me -----------------------------------
519
+ // Notifications, approvals waiting on me, and the orgs I belong to.
520
+ // All three rely on pre-existing `*.mine` / `*.my_pending` listViews
521
+ // that filter by `{current_user_id}` via RLS — no new objects needed.
522
+ {
523
+ id: "grp_account_inbox",
524
+ type: "group",
525
+ label: "Inbox",
526
+ icon: "inbox",
527
+ defaultOpen: true,
528
+ children: [
529
+ {
530
+ id: "nav_account_notifications",
531
+ type: "object",
532
+ label: "Notifications",
533
+ objectName: "sys_notification",
534
+ viewName: "unread",
535
+ icon: "bell",
536
+ requiresObject: "sys_notification"
537
+ },
538
+ {
539
+ id: "nav_account_approvals",
540
+ type: "object",
541
+ label: "Approvals",
542
+ objectName: "sys_approval_request",
543
+ viewName: "my_pending",
544
+ icon: "check-circle",
545
+ requiresObject: "sys_approval_request"
546
+ },
547
+ {
548
+ id: "nav_account_memberships",
549
+ type: "object",
550
+ label: "My Organizations",
551
+ objectName: "sys_member",
552
+ viewName: "mine",
553
+ icon: "building-2",
554
+ requiresObject: "sys_member"
555
+ }
556
+ ]
557
+ },
558
+ // --- Security -------------------------------------------------------
559
+ {
560
+ id: "grp_account_security",
561
+ type: "group",
562
+ label: "Security",
563
+ icon: "shield",
564
+ defaultOpen: true,
565
+ children: [
566
+ {
567
+ id: "nav_account_two_factor",
568
+ type: "object",
569
+ label: "Two-Factor Authentication",
570
+ objectName: "sys_two_factor",
571
+ icon: "smartphone",
572
+ requiresObject: "sys_two_factor"
573
+ },
574
+ {
575
+ id: "nav_account_linked",
576
+ type: "object",
577
+ label: "Linked Accounts",
578
+ objectName: "sys_account",
579
+ icon: "link-2",
580
+ requiresObject: "sys_account"
581
+ },
582
+ {
583
+ id: "nav_account_sessions",
584
+ type: "object",
585
+ label: "Active Sessions",
586
+ objectName: "sys_session",
587
+ viewName: "mine",
588
+ icon: "monitor-smartphone",
589
+ requiresObject: "sys_session"
590
+ }
591
+ ]
592
+ },
593
+ // --- Developer ------------------------------------------------------
594
+ {
595
+ id: "grp_account_developer",
596
+ type: "group",
597
+ label: "Developer",
598
+ icon: "code",
599
+ defaultOpen: false,
600
+ children: [
601
+ {
602
+ id: "nav_account_api_keys",
603
+ type: "object",
604
+ label: "API Keys",
605
+ objectName: "sys_api_key",
606
+ viewName: "mine",
607
+ icon: "key-round",
608
+ requiresObject: "sys_api_key"
609
+ },
610
+ {
611
+ id: "nav_account_oauth_apps",
612
+ type: "object",
613
+ label: "OAuth Applications",
614
+ objectName: "sys_oauth_application",
615
+ viewName: "mine",
616
+ icon: "app-window",
617
+ requiresObject: "sys_oauth_application"
618
+ }
619
+ ]
620
+ }
621
+ // Note: `sys_user_preference` is intentionally NOT exposed in the
622
+ // Account App. It's an internal key-value store the UI uses for state
623
+ // like `ui.recent`, `ui.favorites`, theme, sidebar collapse — not
624
+ // a user-curatable settings surface. A future
625
+ // `account:preferences_card` React component should provide the
626
+ // curated theme / locale / timezone / notifications toggles when we
627
+ // need them; until then there is no nav entry.
628
+ ]
629
+ };
457
630
  var SystemOverviewDashboard = ui.Dashboard.create({
458
631
  name: "system_overview",
459
632
  label: "System Overview",
@@ -689,6 +862,23 @@ var enObjects = {
689
862
  label: "Impersonate User",
690
863
  confirmText: "Start an impersonation session for this user? Use only for legitimate support cases \u2014 actions will be logged.",
691
864
  successMessage: "Now impersonating user"
865
+ },
866
+ update_my_profile: {
867
+ label: "Update Profile",
868
+ successMessage: "Profile updated"
869
+ },
870
+ change_my_password: {
871
+ label: "Change Password",
872
+ successMessage: "Password changed"
873
+ },
874
+ change_my_email: {
875
+ label: "Change Email",
876
+ successMessage: "Verification email sent \u2014 check the new address to confirm."
877
+ },
878
+ delete_my_account: {
879
+ label: "Delete My Account",
880
+ confirmText: "Permanently delete your account? This cannot be undone \u2014 all your sessions will be terminated and all data you own will be removed per the configured retention policy.",
881
+ successMessage: "Account deleted"
692
882
  }
693
883
  }
694
884
  },
@@ -813,6 +1003,16 @@ var enObjects = {
813
1003
  all_links: {
814
1004
  label: "All"
815
1005
  }
1006
+ },
1007
+ _actions: {
1008
+ link_social: {
1009
+ label: "Link Social Account"
1010
+ },
1011
+ unlink_account: {
1012
+ label: "Unlink Account",
1013
+ confirmText: "Unlink this identity link? The user will no longer be able to sign in with this provider until they re-link it from their account settings.",
1014
+ successMessage: "Identity link removed"
1015
+ }
816
1016
  }
817
1017
  },
818
1018
  sys_verification: {
@@ -941,6 +1141,11 @@ var enObjects = {
941
1141
  label: "Remove Member",
942
1142
  confirmText: "Remove this member from the organization? They will lose access to all org resources.",
943
1143
  successMessage: "Member removed"
1144
+ },
1145
+ transfer_ownership: {
1146
+ label: "Transfer Ownership",
1147
+ confirmText: "Transfer ownership of this organization to the selected member? You will be demoted to admin and lose owner-only privileges.",
1148
+ successMessage: "Ownership transferred"
944
1149
  }
945
1150
  }
946
1151
  },
@@ -1020,6 +1225,15 @@ var enObjects = {
1020
1225
  resend_invitation: {
1021
1226
  label: "Resend Invitation",
1022
1227
  successMessage: "Invitation resent"
1228
+ },
1229
+ accept_invitation: {
1230
+ label: "Accept Invitation",
1231
+ successMessage: "Invitation accepted"
1232
+ },
1233
+ reject_invitation: {
1234
+ label: "Decline Invitation",
1235
+ confirmText: "Decline this invitation? The inviter will be notified and you will need a new invitation to join.",
1236
+ successMessage: "Invitation declined"
1023
1237
  }
1024
1238
  }
1025
1239
  },
@@ -1325,13 +1539,16 @@ var enObjects = {
1325
1539
  },
1326
1540
  _actions: {
1327
1541
  enable_two_factor: {
1328
- label: "Enable 2FA",
1329
- successMessage: "2FA enrollment started \u2014 check response for TOTP URI and backup codes"
1542
+ label: "Enable 2FA"
1330
1543
  },
1331
1544
  disable_two_factor: {
1332
1545
  label: "Disable 2FA",
1333
1546
  confirmText: "Disable two-factor authentication on your account?",
1334
1547
  successMessage: "2FA disabled"
1548
+ },
1549
+ regenerate_backup_codes: {
1550
+ label: "Regenerate Backup Codes",
1551
+ confirmText: "Regenerate backup codes? All previous backup codes will stop working immediately."
1335
1552
  }
1336
1553
  }
1337
1554
  },
@@ -1557,6 +1774,30 @@ var enObjects = {
1557
1774
  all_apps: {
1558
1775
  label: "All"
1559
1776
  }
1777
+ },
1778
+ _actions: {
1779
+ disable_oauth_application: {
1780
+ label: "Disable OAuth Application",
1781
+ confirmText: "Disable this OAuth application? Active access/refresh tokens issued to it will continue to be rejected at the token, authorize, and introspect endpoints. Existing integrations will stop working immediately.",
1782
+ successMessage: "OAuth application disabled"
1783
+ },
1784
+ enable_oauth_application: {
1785
+ label: "Enable OAuth Application",
1786
+ confirmText: "Re-enable this OAuth application? Token issuance, authorization, and introspection will resume immediately.",
1787
+ successMessage: "OAuth application enabled"
1788
+ },
1789
+ create_oauth_application: {
1790
+ label: "Register OAuth Application"
1791
+ },
1792
+ rotate_client_secret: {
1793
+ label: "Rotate Client Secret",
1794
+ confirmText: "Rotate this OAuth client's secret? The previous secret will stop working immediately and any integrations using it will break until they are updated with the new secret. The new secret is shown only once."
1795
+ },
1796
+ delete_oauth_application: {
1797
+ label: "Delete OAuth Application",
1798
+ confirmText: "Permanently delete this OAuth application? All issued tokens and consents will be invalidated and integrations using this client_id will stop working immediately. This cannot be undone.",
1799
+ successMessage: "OAuth application deleted"
1800
+ }
1560
1801
  }
1561
1802
  },
1562
1803
  sys_oauth_access_token: {
@@ -1758,6 +1999,26 @@ var enObjects = {
1758
1999
  all_roles: {
1759
2000
  label: "All"
1760
2001
  }
2002
+ },
2003
+ _actions: {
2004
+ activate_role: {
2005
+ label: "Activate Role",
2006
+ successMessage: "Role activated"
2007
+ },
2008
+ deactivate_role: {
2009
+ label: "Deactivate Role",
2010
+ confirmText: "Deactivate this role? Users with the role keep their assignment but the role stops granting permissions until re-activated.",
2011
+ successMessage: "Role deactivated"
2012
+ },
2013
+ set_default_role: {
2014
+ label: "Set as Default",
2015
+ confirmText: "Make this the default role for new users? Existing users are unaffected.",
2016
+ successMessage: "Default role updated"
2017
+ },
2018
+ clone_role: {
2019
+ label: "Clone Role",
2020
+ successMessage: "Role cloned"
2021
+ }
1761
2022
  }
1762
2023
  },
1763
2024
  sys_permission_set: {
@@ -1783,6 +2044,18 @@ var enObjects = {
1783
2044
  label: "Field Permissions",
1784
2045
  help: "JSON-serialized field-level read/write permissions"
1785
2046
  },
2047
+ system_permissions: {
2048
+ label: "System Permissions",
2049
+ help: 'JSON-serialized array of system capability names (e.g. ["setup.access","studio.access","manage_users"])'
2050
+ },
2051
+ row_level_security: {
2052
+ label: "Row-Level Security",
2053
+ help: "JSON-serialized array of row-level security policies (USING/CHECK clauses)"
2054
+ },
2055
+ tab_permissions: {
2056
+ label: "Tab Permissions",
2057
+ help: "JSON-serialized map of app tab visibility (visible | hidden | default_on | default_off)"
2058
+ },
1786
2059
  active: {
1787
2060
  label: "Active"
1788
2061
  },
@@ -1806,6 +2079,21 @@ var enObjects = {
1806
2079
  all_permsets: {
1807
2080
  label: "All"
1808
2081
  }
2082
+ },
2083
+ _actions: {
2084
+ activate_permission_set: {
2085
+ label: "Activate",
2086
+ successMessage: "Permission set activated"
2087
+ },
2088
+ deactivate_permission_set: {
2089
+ label: "Deactivate",
2090
+ confirmText: "Deactivate this permission set? Existing assignments stay in place but stop granting access until re-activated.",
2091
+ successMessage: "Permission set deactivated"
2092
+ },
2093
+ clone_permission_set: {
2094
+ label: "Clone",
2095
+ successMessage: "Permission set cloned"
2096
+ }
1809
2097
  }
1810
2098
  },
1811
2099
  sys_user_permission_set: {
@@ -2430,6 +2718,16 @@ var enObjects = {
2430
2718
  all_notifications: {
2431
2719
  label: "All"
2432
2720
  }
2721
+ },
2722
+ _actions: {
2723
+ mark_read: {
2724
+ label: "Mark as Read",
2725
+ successMessage: "Notification marked as read"
2726
+ },
2727
+ mark_unread: {
2728
+ label: "Mark as Unread",
2729
+ successMessage: "Notification marked as unread"
2730
+ }
2433
2731
  }
2434
2732
  },
2435
2733
  sys_email: {
@@ -2811,6 +3109,10 @@ var enObjects = {
2811
3109
  label: "Snapshot",
2812
3110
  help: "Record snapshot at submission time"
2813
3111
  },
3112
+ process_hash: {
3113
+ label: "Process Hash",
3114
+ help: "sha256 of the approval process body at submit time (ADR-0009 execution pinning). Resolved through sys_metadata_history so process upgrades do not affect in-flight requests."
3115
+ },
2814
3116
  completed_at: {
2815
3117
  label: "Completed At"
2816
3118
  },
@@ -3253,6 +3555,17 @@ var enObjects = {
3253
3555
  updated_at: {
3254
3556
  label: "Updated At"
3255
3557
  }
3558
+ },
3559
+ _views: {
3560
+ only_objects: {
3561
+ label: "Objects"
3562
+ },
3563
+ only_fields: {
3564
+ label: "Fields"
3565
+ },
3566
+ all_metadata: {
3567
+ label: "All"
3568
+ }
3256
3569
  }
3257
3570
  },
3258
3571
  sys_metadata_history: {
@@ -3263,6 +3576,10 @@ var enObjects = {
3263
3576
  id: {
3264
3577
  label: "ID"
3265
3578
  },
3579
+ event_seq: {
3580
+ label: "Event Seq",
3581
+ help: "Per-organization monotonic event log cursor."
3582
+ },
3266
3583
  name: {
3267
3584
  label: "Name"
3268
3585
  },
@@ -3296,14 +3613,13 @@ var enObjects = {
3296
3613
  label: "Change Note",
3297
3614
  help: "Description of what changed in this version"
3298
3615
  },
3616
+ source: {
3617
+ label: "Source"
3618
+ },
3299
3619
  organization_id: {
3300
3620
  label: "Organization",
3301
3621
  help: "Organization for multi-tenant isolation."
3302
3622
  },
3303
- environment_id: {
3304
- label: "Environment ID",
3305
- help: "Scopes this history entry to a specific environment."
3306
- },
3307
3623
  recorded_by: {
3308
3624
  label: "Recorded By"
3309
3625
  },
@@ -3512,6 +3828,24 @@ var enObjects = {
3512
3828
  var en = {
3513
3829
  objects: enObjects,
3514
3830
  apps: {
3831
+ account: {
3832
+ label: "Account",
3833
+ description: "Personal security and identity settings",
3834
+ navigation: {
3835
+ grp_account_inbox: { label: "Inbox" },
3836
+ grp_account_security: { label: "Security" },
3837
+ grp_account_developer: { label: "Developer" },
3838
+ nav_account_profile: { label: "Profile" },
3839
+ nav_account_notifications: { label: "Notifications" },
3840
+ nav_account_approvals: { label: "Approvals" },
3841
+ nav_account_memberships: { label: "My Organizations" },
3842
+ nav_account_two_factor: { label: "Two-Factor Authentication" },
3843
+ nav_account_linked: { label: "Linked Accounts" },
3844
+ nav_account_sessions: { label: "Active Sessions" },
3845
+ nav_account_api_keys: { label: "API Keys" },
3846
+ nav_account_oauth_apps: { label: "OAuth Applications" }
3847
+ }
3848
+ },
3515
3849
  setup: {
3516
3850
  label: "Setup",
3517
3851
  description: "Platform settings and administration",
@@ -3565,6 +3899,40 @@ var en = {
3565
3899
  nav_user_preferences: { label: "User Preferences" },
3566
3900
  nav_metadata: { label: "All Metadata" }
3567
3901
  }
3902
+ },
3903
+ studio: {
3904
+ label: "Studio",
3905
+ description: "Metadata workbench for developers, analysts, and implementers",
3906
+ navigation: {
3907
+ group_overview: { label: "Overview" },
3908
+ nav_metadata_directory: { label: "All Metadata Types" },
3909
+ group_data_model: { label: "Data Model" },
3910
+ nav_objects: { label: "Objects" },
3911
+ nav_validations: { label: "Validations" },
3912
+ group_ux: { label: "User Experience" },
3913
+ nav_apps: { label: "Apps" },
3914
+ nav_views: { label: "Views" },
3915
+ nav_pages: { label: "Pages" },
3916
+ nav_dashboards: { label: "Dashboards" },
3917
+ nav_reports: { label: "Reports" },
3918
+ group_logic: { label: "Logic" },
3919
+ nav_actions: { label: "Actions" },
3920
+ nav_hooks: { label: "Hooks" },
3921
+ group_automation: { label: "Automation" },
3922
+ nav_flows: { label: "Flows" },
3923
+ nav_workflows: { label: "Workflow Rules" },
3924
+ nav_approvals: { label: "Approval Processes" },
3925
+ group_ai: { label: "AI" },
3926
+ nav_agents: { label: "Agents" },
3927
+ nav_tools: { label: "Tools" },
3928
+ nav_skills: { label: "Skills" },
3929
+ group_developer: { label: "Developer" },
3930
+ nav_api_console: { label: "API Console" },
3931
+ nav_flow_runs: { label: "Flow Runs" },
3932
+ nav_public_forms: { label: "Public Forms" },
3933
+ group_integration: { label: "Integration" },
3934
+ nav_email_templates: { label: "Email Templates" }
3935
+ }
3568
3936
  }
3569
3937
  },
3570
3938
  dashboards: {
@@ -3705,6 +4073,23 @@ var zhCNObjects = {
3705
4073
  label: "\u6A21\u62DF\u7528\u6237",
3706
4074
  confirmText: "\u8981\u4E3A\u8BE5\u7528\u6237\u542F\u52A8\u6A21\u62DF\u4F1A\u8BDD\u5417\uFF1F\u4EC5\u9650\u5408\u6CD5\u652F\u6301\u573A\u666F\u4F7F\u7528\u2014\u2014\u6240\u6709\u64CD\u4F5C\u90FD\u4F1A\u88AB\u8BB0\u5F55\u3002",
3707
4075
  successMessage: "\u5DF2\u5F00\u59CB\u6A21\u62DF\u8BE5\u7528\u6237"
4076
+ },
4077
+ update_my_profile: {
4078
+ label: "\u66F4\u65B0\u8D44\u6599",
4079
+ successMessage: "\u5DF2\u66F4\u65B0\u8D44\u6599"
4080
+ },
4081
+ change_my_password: {
4082
+ label: "\u4FEE\u6539\u5BC6\u7801",
4083
+ successMessage: "\u5DF2\u4FEE\u6539\u5BC6\u7801"
4084
+ },
4085
+ change_my_email: {
4086
+ label: "\u4FEE\u6539\u90AE\u7BB1",
4087
+ successMessage: "\u5DF2\u53D1\u9001\u9A8C\u8BC1\u90AE\u4EF6\uFF0C\u8BF7\u524D\u5F80\u65B0\u90AE\u7BB1\u786E\u8BA4\u3002"
4088
+ },
4089
+ delete_my_account: {
4090
+ label: "\u5220\u9664\u6211\u7684\u8D26\u53F7",
4091
+ confirmText: "Permanently delete your account? This cannot be undone \u2014 all your sessions will be terminated and all data you own will be removed per the configured retention policy.",
4092
+ successMessage: "\u5DF2\u5220\u9664\u8D26\u53F7"
3708
4093
  }
3709
4094
  }
3710
4095
  },
@@ -3829,6 +4214,16 @@ var zhCNObjects = {
3829
4214
  all_links: {
3830
4215
  label: "\u5168\u90E8"
3831
4216
  }
4217
+ },
4218
+ _actions: {
4219
+ link_social: {
4220
+ label: "\u5173\u8054\u793E\u4EA4\u8D26\u53F7"
4221
+ },
4222
+ unlink_account: {
4223
+ label: "\u89E3\u9664\u5173\u8054",
4224
+ confirmText: "Unlink this identity link? The user will no longer be able to sign in with this provider until they re-link it from their account settings.",
4225
+ successMessage: "\u5DF2\u89E3\u9664\u8EAB\u4EFD\u5173\u8054"
4226
+ }
3832
4227
  }
3833
4228
  },
3834
4229
  sys_verification: {
@@ -3957,6 +4352,11 @@ var zhCNObjects = {
3957
4352
  label: "\u79FB\u9664\u6210\u5458",
3958
4353
  confirmText: "\u8981\u5C06\u8BE5\u6210\u5458\u79FB\u51FA\u7EC4\u7EC7\u5417\uFF1F\u79FB\u9664\u540E\u5176\u5C06\u5931\u53BB\u5BF9\u8BE5\u7EC4\u7EC7\u6240\u6709\u8D44\u6E90\u7684\u8BBF\u95EE\u6743\u9650\u3002",
3959
4354
  successMessage: "\u6210\u5458\u5DF2\u79FB\u9664"
4355
+ },
4356
+ transfer_ownership: {
4357
+ label: "\u8F6C\u79FB\u6240\u6709\u6743",
4358
+ confirmText: "Transfer ownership of this organization to the selected member? You will be demoted to admin and lose owner-only privileges.",
4359
+ successMessage: "\u5DF2\u8F6C\u79FB\u6240\u6709\u6743"
3960
4360
  }
3961
4361
  }
3962
4362
  },
@@ -4036,6 +4436,15 @@ var zhCNObjects = {
4036
4436
  resend_invitation: {
4037
4437
  label: "\u91CD\u65B0\u53D1\u9001\u9080\u8BF7",
4038
4438
  successMessage: "\u9080\u8BF7\u5DF2\u91CD\u65B0\u53D1\u9001"
4439
+ },
4440
+ accept_invitation: {
4441
+ label: "\u63A5\u53D7\u9080\u8BF7",
4442
+ successMessage: "\u5DF2\u63A5\u53D7\u9080\u8BF7"
4443
+ },
4444
+ reject_invitation: {
4445
+ label: "\u62D2\u7EDD\u9080\u8BF7",
4446
+ confirmText: "Decline this invitation? The inviter will be notified and you will need a new invitation to join.",
4447
+ successMessage: "\u5DF2\u62D2\u7EDD\u9080\u8BF7"
4039
4448
  }
4040
4449
  }
4041
4450
  },
@@ -4341,13 +4750,16 @@ var zhCNObjects = {
4341
4750
  },
4342
4751
  _actions: {
4343
4752
  enable_two_factor: {
4344
- label: "\u542F\u7528 2FA",
4345
- successMessage: "2FA \u542F\u7528\u6D41\u7A0B\u5DF2\u5F00\u59CB\u2014\u2014\u8BF7\u67E5\u770B\u54CD\u5E94\u4E2D\u7684 TOTP URI \u548C\u5907\u7528\u6062\u590D\u7801"
4753
+ label: "\u542F\u7528 2FA"
4346
4754
  },
4347
4755
  disable_two_factor: {
4348
4756
  label: "\u505C\u7528 2FA",
4349
4757
  confirmText: "\u8981\u505C\u7528\u4F60\u8D26\u53F7\u4E0A\u7684\u53CC\u56E0\u7D20\u8BA4\u8BC1\u5417\uFF1F",
4350
4758
  successMessage: "2FA \u5DF2\u505C\u7528"
4759
+ },
4760
+ regenerate_backup_codes: {
4761
+ label: "\u91CD\u65B0\u751F\u6210\u5907\u7528\u7801",
4762
+ confirmText: "Regenerate backup codes? All previous backup codes will stop working immediately."
4351
4763
  }
4352
4764
  }
4353
4765
  },
@@ -4573,6 +4985,30 @@ var zhCNObjects = {
4573
4985
  all_apps: {
4574
4986
  label: "\u5168\u90E8"
4575
4987
  }
4988
+ },
4989
+ _actions: {
4990
+ disable_oauth_application: {
4991
+ label: "Disable OAuth Application",
4992
+ confirmText: "Disable this OAuth application? Active access/refresh tokens issued to it will continue to be rejected at the token, authorize, and introspect endpoints. Existing integrations will stop working immediately.",
4993
+ successMessage: "OAuth application disabled"
4994
+ },
4995
+ enable_oauth_application: {
4996
+ label: "Enable OAuth Application",
4997
+ confirmText: "Re-enable this OAuth application? Token issuance, authorization, and introspection will resume immediately.",
4998
+ successMessage: "OAuth application enabled"
4999
+ },
5000
+ create_oauth_application: {
5001
+ label: "Register OAuth Application"
5002
+ },
5003
+ rotate_client_secret: {
5004
+ label: "\u8F6E\u6362 Client Secret",
5005
+ confirmText: "Rotate this OAuth client's secret? The previous secret will stop working immediately and any integrations using it will break until they are updated with the new secret. The new secret is shown only once."
5006
+ },
5007
+ delete_oauth_application: {
5008
+ label: "Delete OAuth Application",
5009
+ confirmText: "Permanently delete this OAuth application? All issued tokens and consents will be invalidated and integrations using this client_id will stop working immediately. This cannot be undone.",
5010
+ successMessage: "OAuth application deleted"
5011
+ }
4576
5012
  }
4577
5013
  },
4578
5014
  sys_oauth_access_token: {
@@ -4774,6 +5210,26 @@ var zhCNObjects = {
4774
5210
  all_roles: {
4775
5211
  label: "\u5168\u90E8"
4776
5212
  }
5213
+ },
5214
+ _actions: {
5215
+ activate_role: {
5216
+ label: "\u6FC0\u6D3B\u89D2\u8272",
5217
+ successMessage: "\u89D2\u8272\u5DF2\u6FC0\u6D3B"
5218
+ },
5219
+ deactivate_role: {
5220
+ label: "\u505C\u7528\u89D2\u8272",
5221
+ confirmText: "Deactivate this role? Users with the role keep their assignment but the role stops granting permissions until re-activated.",
5222
+ successMessage: "\u89D2\u8272\u5DF2\u505C\u7528"
5223
+ },
5224
+ set_default_role: {
5225
+ label: "\u8BBE\u4E3A\u9ED8\u8BA4",
5226
+ confirmText: "Make this the default role for new users? Existing users are unaffected.",
5227
+ successMessage: "\u5DF2\u66F4\u65B0\u9ED8\u8BA4\u89D2\u8272"
5228
+ },
5229
+ clone_role: {
5230
+ label: "\u514B\u9686\u89D2\u8272",
5231
+ successMessage: "\u5DF2\u514B\u9686\u89D2\u8272"
5232
+ }
4777
5233
  }
4778
5234
  },
4779
5235
  sys_permission_set: {
@@ -4799,6 +5255,18 @@ var zhCNObjects = {
4799
5255
  label: "\u5B57\u6BB5\u6743\u9650",
4800
5256
  help: "\u5B57\u6BB5\u7EA7\u8BFB\u5199\u6743\u9650\u7684 JSON \u5E8F\u5217\u5316\u5185\u5BB9"
4801
5257
  },
5258
+ system_permissions: {
5259
+ label: "System Permissions",
5260
+ help: 'JSON-serialized array of system capability names (e.g. ["setup.access","studio.access","manage_users"])'
5261
+ },
5262
+ row_level_security: {
5263
+ label: "Row-Level Security",
5264
+ help: "JSON-serialized array of row-level security policies (USING/CHECK clauses)"
5265
+ },
5266
+ tab_permissions: {
5267
+ label: "Tab Permissions",
5268
+ help: "JSON-serialized map of app tab visibility (visible | hidden | default_on | default_off)"
5269
+ },
4802
5270
  active: {
4803
5271
  label: "\u542F\u7528"
4804
5272
  },
@@ -4822,6 +5290,21 @@ var zhCNObjects = {
4822
5290
  all_permsets: {
4823
5291
  label: "\u5168\u90E8"
4824
5292
  }
5293
+ },
5294
+ _actions: {
5295
+ activate_permission_set: {
5296
+ label: "\u6FC0\u6D3B",
5297
+ successMessage: "\u6743\u9650\u96C6\u5DF2\u6FC0\u6D3B"
5298
+ },
5299
+ deactivate_permission_set: {
5300
+ label: "\u505C\u7528",
5301
+ confirmText: "Deactivate this permission set? Existing assignments stay in place but stop granting access until re-activated.",
5302
+ successMessage: "\u6743\u9650\u96C6\u5DF2\u505C\u7528"
5303
+ },
5304
+ clone_permission_set: {
5305
+ label: "\u514B\u9686",
5306
+ successMessage: "\u5DF2\u514B\u9686\u6743\u9650\u96C6"
5307
+ }
4825
5308
  }
4826
5309
  },
4827
5310
  sys_user_permission_set: {
@@ -5446,6 +5929,16 @@ var zhCNObjects = {
5446
5929
  all_notifications: {
5447
5930
  label: "\u5168\u90E8"
5448
5931
  }
5932
+ },
5933
+ _actions: {
5934
+ mark_read: {
5935
+ label: "\u6807\u8BB0\u4E3A\u5DF2\u8BFB",
5936
+ successMessage: "\u5DF2\u6807\u8BB0\u4E3A\u5DF2\u8BFB"
5937
+ },
5938
+ mark_unread: {
5939
+ label: "\u6807\u8BB0\u4E3A\u672A\u8BFB",
5940
+ successMessage: "\u5DF2\u6807\u8BB0\u4E3A\u672A\u8BFB"
5941
+ }
5449
5942
  }
5450
5943
  },
5451
5944
  sys_email: {
@@ -5827,6 +6320,10 @@ var zhCNObjects = {
5827
6320
  label: "\u5FEB\u7167",
5828
6321
  help: "\u63D0\u4EA4\u65F6\u7684\u8BB0\u5F55\u5FEB\u7167"
5829
6322
  },
6323
+ process_hash: {
6324
+ label: "Process Hash",
6325
+ help: "sha256 of the approval process body at submit time (ADR-0009 execution pinning). Resolved through sys_metadata_history so process upgrades do not affect in-flight requests."
6326
+ },
5830
6327
  completed_at: {
5831
6328
  label: "\u5B8C\u6210\u65F6\u95F4"
5832
6329
  },
@@ -5839,11 +6336,7 @@ var zhCNObjects = {
5839
6336
  },
5840
6337
  _views: {
5841
6338
  my_pending: {
5842
- label: "\u6211\u7684\u5F85\u529E",
5843
- emptyState: {
5844
- title: "\u6682\u65E0\u5F85\u5BA1\u6279",
5845
- message: "\u60A8\u5DF2\u5904\u7406\u5B8C\u6240\u6709\u5F85\u529E\u3002"
5846
- }
6339
+ label: "\u6211\u7684\u5F85\u529E"
5847
6340
  },
5848
6341
  submitted_by_me: {
5849
6342
  label: "\u6211\u63D0\u4EA4\u7684"
@@ -6273,6 +6766,17 @@ var zhCNObjects = {
6273
6766
  updated_at: {
6274
6767
  label: "\u66F4\u65B0\u65F6\u95F4"
6275
6768
  }
6769
+ },
6770
+ _views: {
6771
+ only_objects: {
6772
+ label: "Objects"
6773
+ },
6774
+ only_fields: {
6775
+ label: "Fields"
6776
+ },
6777
+ all_metadata: {
6778
+ label: "All"
6779
+ }
6276
6780
  }
6277
6781
  },
6278
6782
  sys_metadata_history: {
@@ -6283,6 +6787,10 @@ var zhCNObjects = {
6283
6787
  id: {
6284
6788
  label: "ID"
6285
6789
  },
6790
+ event_seq: {
6791
+ label: "Event Seq",
6792
+ help: "Per-organization monotonic event log cursor."
6793
+ },
6286
6794
  name: {
6287
6795
  label: "\u540D\u79F0"
6288
6796
  },
@@ -6316,14 +6824,13 @@ var zhCNObjects = {
6316
6824
  label: "\u53D8\u66F4\u8BF4\u660E",
6317
6825
  help: "\u5BF9\u8BE5\u7248\u672C\u53D8\u66F4\u5185\u5BB9\u7684\u8BF4\u660E"
6318
6826
  },
6827
+ source: {
6828
+ label: "Source"
6829
+ },
6319
6830
  organization_id: {
6320
6831
  label: "\u7EC4\u7EC7",
6321
6832
  help: "\u7528\u4E8E\u591A\u79DF\u6237\u9694\u79BB\u7684\u7EC4\u7EC7\u3002"
6322
6833
  },
6323
- environment_id: {
6324
- label: "\u73AF\u5883 ID",
6325
- help: "\u5C06\u8BE5\u5386\u53F2\u8BB0\u5F55\u9650\u5B9A\u5230\u7279\u5B9A\u73AF\u5883\u3002"
6326
- },
6327
6834
  recorded_by: {
6328
6835
  label: "\u8BB0\u5F55\u4EBA"
6329
6836
  },
@@ -6532,6 +7039,24 @@ var zhCNObjects = {
6532
7039
  var zhCN = {
6533
7040
  objects: zhCNObjects,
6534
7041
  apps: {
7042
+ account: {
7043
+ label: "\u8D26\u6237",
7044
+ description: "\u4E2A\u4EBA\u5B89\u5168\u4E0E\u8EAB\u4EFD\u8BBE\u7F6E",
7045
+ navigation: {
7046
+ grp_account_inbox: { label: "\u6536\u4EF6\u7BB1" },
7047
+ grp_account_security: { label: "\u5B89\u5168" },
7048
+ grp_account_developer: { label: "\u5F00\u53D1\u8005" },
7049
+ nav_account_profile: { label: "\u4E2A\u4EBA\u8D44\u6599" },
7050
+ nav_account_notifications: { label: "\u901A\u77E5" },
7051
+ nav_account_approvals: { label: "\u5F85\u6211\u5BA1\u6279" },
7052
+ nav_account_memberships: { label: "\u6211\u7684\u7EC4\u7EC7" },
7053
+ nav_account_two_factor: { label: "\u53CC\u91CD\u8BA4\u8BC1" },
7054
+ nav_account_linked: { label: "\u5DF2\u5173\u8054\u8D26\u6237" },
7055
+ nav_account_sessions: { label: "\u6D3B\u52A8\u4F1A\u8BDD" },
7056
+ nav_account_api_keys: { label: "API \u5BC6\u94A5" },
7057
+ nav_account_oauth_apps: { label: "OAuth \u5E94\u7528" }
7058
+ }
7059
+ },
6535
7060
  setup: {
6536
7061
  label: "\u7CFB\u7EDF\u8BBE\u7F6E",
6537
7062
  description: "\u5E73\u53F0\u8BBE\u7F6E\u4E0E\u7BA1\u7406",
@@ -6576,6 +7101,40 @@ var zhCN = {
6576
7101
  nav_user_preferences: { label: "\u7528\u6237\u504F\u597D" },
6577
7102
  nav_metadata: { label: "\u5168\u90E8\u5143\u6570\u636E" }
6578
7103
  }
7104
+ },
7105
+ studio: {
7106
+ label: "Studio",
7107
+ description: "\u9762\u5411\u5F00\u53D1\u8005\u3001\u5206\u6790\u5E08\u4E0E\u5B9E\u65BD\u8005\u7684\u5143\u6570\u636E\u5DE5\u4F5C\u53F0",
7108
+ navigation: {
7109
+ group_overview: { label: "\u603B\u89C8" },
7110
+ nav_metadata_directory: { label: "\u5168\u90E8\u5143\u6570\u636E\u7C7B\u578B" },
7111
+ group_data_model: { label: "\u6570\u636E\u6A21\u578B" },
7112
+ nav_objects: { label: "\u5BF9\u8C61" },
7113
+ nav_validations: { label: "\u6821\u9A8C\u89C4\u5219" },
7114
+ group_ux: { label: "\u7528\u6237\u4F53\u9A8C" },
7115
+ nav_apps: { label: "\u5E94\u7528" },
7116
+ nav_views: { label: "\u89C6\u56FE" },
7117
+ nav_pages: { label: "\u9875\u9762" },
7118
+ nav_dashboards: { label: "\u4EEA\u8868\u76D8" },
7119
+ nav_reports: { label: "\u62A5\u8868" },
7120
+ group_logic: { label: "\u903B\u8F91" },
7121
+ nav_actions: { label: "\u52A8\u4F5C" },
7122
+ nav_hooks: { label: "\u94A9\u5B50" },
7123
+ group_automation: { label: "\u81EA\u52A8\u5316" },
7124
+ nav_flows: { label: "\u6D41\u7A0B" },
7125
+ nav_workflows: { label: "\u5DE5\u4F5C\u6D41\u89C4\u5219" },
7126
+ nav_approvals: { label: "\u5BA1\u6279\u6D41\u7A0B" },
7127
+ group_ai: { label: "AI" },
7128
+ nav_agents: { label: "\u667A\u80FD\u4F53" },
7129
+ nav_tools: { label: "\u5DE5\u5177" },
7130
+ nav_skills: { label: "\u6280\u80FD" },
7131
+ group_developer: { label: "\u5F00\u53D1\u8005" },
7132
+ nav_api_console: { label: "API \u63A7\u5236\u53F0" },
7133
+ nav_flow_runs: { label: "\u6D41\u7A0B\u8FD0\u884C\u8BB0\u5F55" },
7134
+ nav_public_forms: { label: "\u516C\u5F00\u8868\u5355" },
7135
+ group_integration: { label: "\u96C6\u6210" },
7136
+ nav_email_templates: { label: "\u90AE\u4EF6\u6A21\u677F" }
7137
+ }
6579
7138
  }
6580
7139
  },
6581
7140
  dashboards: {
@@ -6686,6 +7245,23 @@ var jaJPObjects = {
6686
7245
  label: "\u4EE3\u7406\u30ED\u30B0\u30A4\u30F3",
6687
7246
  confirmText: "\u3053\u306E\u30E6\u30FC\u30B6\u30FC\u3068\u3057\u3066\u4EE3\u7406\u30ED\u30B0\u30A4\u30F3\u3092\u958B\u59CB\u3057\u307E\u3059\u304B\uFF1F\u6B63\u5F53\u306A\u30B5\u30DD\u30FC\u30C8\u5BFE\u5FDC\u6642\u306E\u307F\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u64CD\u4F5C\u306F\u76E3\u67FB\u30ED\u30B0\u306B\u8A18\u9332\u3055\u308C\u307E\u3059\u3002",
6688
7247
  successMessage: "\u4EE3\u7406\u30ED\u30B0\u30A4\u30F3\u4E2D"
7248
+ },
7249
+ update_my_profile: {
7250
+ label: "\u30D7\u30ED\u30D5\u30A3\u30FC\u30EB\u66F4\u65B0",
7251
+ successMessage: "\u30D7\u30ED\u30D5\u30A3\u30FC\u30EB\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F"
7252
+ },
7253
+ change_my_password: {
7254
+ label: "\u30D1\u30B9\u30EF\u30FC\u30C9\u5909\u66F4",
7255
+ successMessage: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u5909\u66F4\u3057\u307E\u3057\u305F"
7256
+ },
7257
+ change_my_email: {
7258
+ label: "\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9\u5909\u66F4",
7259
+ successMessage: "\u78BA\u8A8D\u30E1\u30FC\u30EB\u3092\u9001\u4FE1\u3057\u307E\u3057\u305F\u3002\u65B0\u3057\u3044\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9\u3067\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002"
7260
+ },
7261
+ delete_my_account: {
7262
+ label: "\u30A2\u30AB\u30A6\u30F3\u30C8\u524A\u9664",
7263
+ confirmText: "Permanently delete your account? This cannot be undone \u2014 all your sessions will be terminated and all data you own will be removed per the configured retention policy.",
7264
+ successMessage: "\u30A2\u30AB\u30A6\u30F3\u30C8\u3092\u524A\u9664\u3057\u307E\u3057\u305F"
6689
7265
  }
6690
7266
  }
6691
7267
  },
@@ -6810,6 +7386,16 @@ var jaJPObjects = {
6810
7386
  all_links: {
6811
7387
  label: "\u3059\u3079\u3066"
6812
7388
  }
7389
+ },
7390
+ _actions: {
7391
+ link_social: {
7392
+ label: "\u30BD\u30FC\u30B7\u30E3\u30EB\u30A2\u30AB\u30A6\u30F3\u30C8\u9023\u643A"
7393
+ },
7394
+ unlink_account: {
7395
+ label: "\u9023\u643A\u89E3\u9664",
7396
+ confirmText: "Unlink this identity link? The user will no longer be able to sign in with this provider until they re-link it from their account settings.",
7397
+ successMessage: "\u30A2\u30A4\u30C7\u30F3\u30C6\u30A3\u30C6\u30A3\u9023\u643A\u3092\u89E3\u9664\u3057\u307E\u3057\u305F"
7398
+ }
6813
7399
  }
6814
7400
  },
6815
7401
  sys_verification: {
@@ -6938,6 +7524,11 @@ var jaJPObjects = {
6938
7524
  label: "\u30E1\u30F3\u30D0\u30FC\u3092\u524A\u9664",
6939
7525
  confirmText: "\u3053\u306E\u30E1\u30F3\u30D0\u30FC\u3092\u7D44\u7E54\u304B\u3089\u524A\u9664\u3057\u307E\u3059\u304B\uFF1F\u7D44\u7E54\u306E\u3059\u3079\u3066\u306E\u30EA\u30BD\u30FC\u30B9\u3078\u306E\u30A2\u30AF\u30BB\u30B9\u3092\u5931\u3044\u307E\u3059\u3002",
6940
7526
  successMessage: "\u30E1\u30F3\u30D0\u30FC\u3092\u524A\u9664\u3057\u307E\u3057\u305F"
7527
+ },
7528
+ transfer_ownership: {
7529
+ label: "\u6240\u6709\u6A29\u306E\u79FB\u8B72",
7530
+ confirmText: "Transfer ownership of this organization to the selected member? You will be demoted to admin and lose owner-only privileges.",
7531
+ successMessage: "\u6240\u6709\u6A29\u3092\u79FB\u8B72\u3057\u307E\u3057\u305F"
6941
7532
  }
6942
7533
  }
6943
7534
  },
@@ -7017,6 +7608,15 @@ var jaJPObjects = {
7017
7608
  resend_invitation: {
7018
7609
  label: "\u62DB\u5F85\u3092\u518D\u9001",
7019
7610
  successMessage: "\u62DB\u5F85\u3092\u518D\u9001\u3057\u307E\u3057\u305F"
7611
+ },
7612
+ accept_invitation: {
7613
+ label: "\u62DB\u5F85\u3092\u53D7\u8AFE",
7614
+ successMessage: "\u62DB\u5F85\u3092\u53D7\u8AFE\u3057\u307E\u3057\u305F"
7615
+ },
7616
+ reject_invitation: {
7617
+ label: "\u62DB\u5F85\u3092\u8F9E\u9000",
7618
+ confirmText: "Decline this invitation? The inviter will be notified and you will need a new invitation to join.",
7619
+ successMessage: "\u62DB\u5F85\u3092\u8F9E\u9000\u3057\u307E\u3057\u305F"
7020
7620
  }
7021
7621
  }
7022
7622
  },
@@ -7322,13 +7922,16 @@ var jaJPObjects = {
7322
7922
  },
7323
7923
  _actions: {
7324
7924
  enable_two_factor: {
7325
- label: "2FA \u3092\u6709\u52B9\u5316",
7326
- successMessage: "2FA \u767B\u9332\u3092\u958B\u59CB\u3057\u307E\u3057\u305F \u2014 \u30EC\u30B9\u30DD\u30F3\u30B9\u3067 TOTP URI \u3068\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044"
7925
+ label: "2FA \u3092\u6709\u52B9\u5316"
7327
7926
  },
7328
7927
  disable_two_factor: {
7329
7928
  label: "2FA \u3092\u7121\u52B9\u5316",
7330
7929
  confirmText: "\u30A2\u30AB\u30A6\u30F3\u30C8\u306E\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u7121\u52B9\u5316\u3057\u307E\u3059\u304B\uFF1F",
7331
7930
  successMessage: "2FA \u3092\u7121\u52B9\u5316\u3057\u307E\u3057\u305F"
7931
+ },
7932
+ regenerate_backup_codes: {
7933
+ label: "\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u518D\u751F\u6210",
7934
+ confirmText: "Regenerate backup codes? All previous backup codes will stop working immediately."
7332
7935
  }
7333
7936
  }
7334
7937
  },
@@ -7554,6 +8157,30 @@ var jaJPObjects = {
7554
8157
  all_apps: {
7555
8158
  label: "\u3059\u3079\u3066"
7556
8159
  }
8160
+ },
8161
+ _actions: {
8162
+ disable_oauth_application: {
8163
+ label: "Disable OAuth Application",
8164
+ confirmText: "Disable this OAuth application? Active access/refresh tokens issued to it will continue to be rejected at the token, authorize, and introspect endpoints. Existing integrations will stop working immediately.",
8165
+ successMessage: "OAuth application disabled"
8166
+ },
8167
+ enable_oauth_application: {
8168
+ label: "Enable OAuth Application",
8169
+ confirmText: "Re-enable this OAuth application? Token issuance, authorization, and introspection will resume immediately.",
8170
+ successMessage: "OAuth application enabled"
8171
+ },
8172
+ create_oauth_application: {
8173
+ label: "Register OAuth Application"
8174
+ },
8175
+ rotate_client_secret: {
8176
+ label: "\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8\u30B7\u30FC\u30AF\u30EC\u30C3\u30C8\u66F4\u65B0",
8177
+ confirmText: "Rotate this OAuth client's secret? The previous secret will stop working immediately and any integrations using it will break until they are updated with the new secret. The new secret is shown only once."
8178
+ },
8179
+ delete_oauth_application: {
8180
+ label: "Delete OAuth Application",
8181
+ confirmText: "Permanently delete this OAuth application? All issued tokens and consents will be invalidated and integrations using this client_id will stop working immediately. This cannot be undone.",
8182
+ successMessage: "OAuth application deleted"
8183
+ }
7557
8184
  }
7558
8185
  },
7559
8186
  sys_oauth_access_token: {
@@ -7755,6 +8382,26 @@ var jaJPObjects = {
7755
8382
  all_roles: {
7756
8383
  label: "\u3059\u3079\u3066"
7757
8384
  }
8385
+ },
8386
+ _actions: {
8387
+ activate_role: {
8388
+ label: "\u30ED\u30FC\u30EB\u3092\u6709\u52B9\u5316",
8389
+ successMessage: "\u30ED\u30FC\u30EB\u304C\u6709\u52B9\u5316\u3055\u308C\u307E\u3057\u305F"
8390
+ },
8391
+ deactivate_role: {
8392
+ label: "\u30ED\u30FC\u30EB\u3092\u7121\u52B9\u5316",
8393
+ confirmText: "Deactivate this role? Users with the role keep their assignment but the role stops granting permissions until re-activated.",
8394
+ successMessage: "\u30ED\u30FC\u30EB\u304C\u7121\u52B9\u5316\u3055\u308C\u307E\u3057\u305F"
8395
+ },
8396
+ set_default_role: {
8397
+ label: "\u30C7\u30D5\u30A9\u30EB\u30C8\u306B\u8A2D\u5B9A",
8398
+ confirmText: "Make this the default role for new users? Existing users are unaffected.",
8399
+ successMessage: "\u30C7\u30D5\u30A9\u30EB\u30C8\u30ED\u30FC\u30EB\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F"
8400
+ },
8401
+ clone_role: {
8402
+ label: "\u30ED\u30FC\u30EB\u3092\u8907\u88FD",
8403
+ successMessage: "\u30ED\u30FC\u30EB\u3092\u8907\u88FD\u3057\u307E\u3057\u305F"
8404
+ }
7758
8405
  }
7759
8406
  },
7760
8407
  sys_permission_set: {
@@ -7780,6 +8427,18 @@ var jaJPObjects = {
7780
8427
  label: "\u30D5\u30A3\u30FC\u30EB\u30C9\u6A29\u9650",
7781
8428
  help: "JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u3055\u308C\u305F\u30D5\u30A3\u30FC\u30EB\u30C9\u30EC\u30D9\u30EB\u306E\u8AAD\u307F\u53D6\u308A/\u66F8\u304D\u8FBC\u307F\u6A29\u9650"
7782
8429
  },
8430
+ system_permissions: {
8431
+ label: "System Permissions",
8432
+ help: 'JSON-serialized array of system capability names (e.g. ["setup.access","studio.access","manage_users"])'
8433
+ },
8434
+ row_level_security: {
8435
+ label: "Row-Level Security",
8436
+ help: "JSON-serialized array of row-level security policies (USING/CHECK clauses)"
8437
+ },
8438
+ tab_permissions: {
8439
+ label: "Tab Permissions",
8440
+ help: "JSON-serialized map of app tab visibility (visible | hidden | default_on | default_off)"
8441
+ },
7783
8442
  active: {
7784
8443
  label: "\u6709\u52B9"
7785
8444
  },
@@ -7803,6 +8462,21 @@ var jaJPObjects = {
7803
8462
  all_permsets: {
7804
8463
  label: "\u3059\u3079\u3066"
7805
8464
  }
8465
+ },
8466
+ _actions: {
8467
+ activate_permission_set: {
8468
+ label: "\u6709\u52B9\u5316",
8469
+ successMessage: "\u6A29\u9650\u30BB\u30C3\u30C8\u304C\u6709\u52B9\u5316\u3055\u308C\u307E\u3057\u305F"
8470
+ },
8471
+ deactivate_permission_set: {
8472
+ label: "\u7121\u52B9\u5316",
8473
+ confirmText: "Deactivate this permission set? Existing assignments stay in place but stop granting access until re-activated.",
8474
+ successMessage: "\u6A29\u9650\u30BB\u30C3\u30C8\u304C\u7121\u52B9\u5316\u3055\u308C\u307E\u3057\u305F"
8475
+ },
8476
+ clone_permission_set: {
8477
+ label: "\u8907\u88FD",
8478
+ successMessage: "\u6A29\u9650\u30BB\u30C3\u30C8\u3092\u8907\u88FD\u3057\u307E\u3057\u305F"
8479
+ }
7806
8480
  }
7807
8481
  },
7808
8482
  sys_user_permission_set: {
@@ -8427,6 +9101,16 @@ var jaJPObjects = {
8427
9101
  all_notifications: {
8428
9102
  label: "\u3059\u3079\u3066"
8429
9103
  }
9104
+ },
9105
+ _actions: {
9106
+ mark_read: {
9107
+ label: "\u65E2\u8AAD\u306B\u3059\u308B",
9108
+ successMessage: "\u901A\u77E5\u3092\u65E2\u8AAD\u306B\u3057\u307E\u3057\u305F"
9109
+ },
9110
+ mark_unread: {
9111
+ label: "\u672A\u8AAD\u306B\u3059\u308B",
9112
+ successMessage: "\u901A\u77E5\u3092\u672A\u8AAD\u306B\u3057\u307E\u3057\u305F"
9113
+ }
8430
9114
  }
8431
9115
  },
8432
9116
  sys_email: {
@@ -8808,6 +9492,10 @@ var jaJPObjects = {
8808
9492
  label: "\u30B9\u30CA\u30C3\u30D7\u30B7\u30E7\u30C3\u30C8",
8809
9493
  help: "\u9001\u4FE1\u6642\u306E\u30EC\u30B3\u30FC\u30C9\u30B9\u30CA\u30C3\u30D7\u30B7\u30E7\u30C3\u30C8"
8810
9494
  },
9495
+ process_hash: {
9496
+ label: "Process Hash",
9497
+ help: "sha256 of the approval process body at submit time (ADR-0009 execution pinning). Resolved through sys_metadata_history so process upgrades do not affect in-flight requests."
9498
+ },
8811
9499
  completed_at: {
8812
9500
  label: "\u5B8C\u4E86\u65E5\u6642"
8813
9501
  },
@@ -9250,6 +9938,17 @@ var jaJPObjects = {
9250
9938
  updated_at: {
9251
9939
  label: "\u66F4\u65B0\u65E5\u6642"
9252
9940
  }
9941
+ },
9942
+ _views: {
9943
+ only_objects: {
9944
+ label: "Objects"
9945
+ },
9946
+ only_fields: {
9947
+ label: "Fields"
9948
+ },
9949
+ all_metadata: {
9950
+ label: "All"
9951
+ }
9253
9952
  }
9254
9953
  },
9255
9954
  sys_metadata_history: {
@@ -9260,6 +9959,10 @@ var jaJPObjects = {
9260
9959
  id: {
9261
9960
  label: "ID"
9262
9961
  },
9962
+ event_seq: {
9963
+ label: "Event Seq",
9964
+ help: "Per-organization monotonic event log cursor."
9965
+ },
9263
9966
  name: {
9264
9967
  label: "\u540D\u524D"
9265
9968
  },
@@ -9293,14 +9996,13 @@ var jaJPObjects = {
9293
9996
  label: "\u5909\u66F4\u30E1\u30E2",
9294
9997
  help: "\u3053\u306E\u30D0\u30FC\u30B8\u30E7\u30F3\u3067\u5909\u66F4\u3055\u308C\u305F\u5185\u5BB9\u306E\u8AAC\u660E"
9295
9998
  },
9999
+ source: {
10000
+ label: "Source"
10001
+ },
9296
10002
  organization_id: {
9297
10003
  label: "\u7D44\u7E54",
9298
10004
  help: "\u30DE\u30EB\u30C1\u30C6\u30CA\u30F3\u30C8\u5206\u96E2\u306E\u305F\u3081\u306E\u7D44\u7E54\u3002"
9299
10005
  },
9300
- environment_id: {
9301
- label: "\u74B0\u5883 ID",
9302
- help: "\u3053\u306E\u5C65\u6B74\u30A8\u30F3\u30C8\u30EA\u3092\u7279\u5B9A\u306E\u74B0\u5883\u306B\u30B9\u30B3\u30FC\u30D7\u3057\u307E\u3059\u3002"
9303
- },
9304
10006
  recorded_by: {
9305
10007
  label: "\u8A18\u9332\u8005"
9306
10008
  },
@@ -9509,6 +10211,24 @@ var jaJPObjects = {
9509
10211
  var jaJP = {
9510
10212
  objects: jaJPObjects,
9511
10213
  apps: {
10214
+ account: {
10215
+ label: "\u30A2\u30AB\u30A6\u30F3\u30C8",
10216
+ description: "\u500B\u4EBA\u306E\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u3068\u30A2\u30A4\u30C7\u30F3\u30C6\u30A3\u30C6\u30A3\u8A2D\u5B9A",
10217
+ navigation: {
10218
+ grp_account_inbox: { label: "\u53D7\u4FE1\u7BB1" },
10219
+ grp_account_security: { label: "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3" },
10220
+ grp_account_developer: { label: "\u958B\u767A\u8005" },
10221
+ nav_account_profile: { label: "\u30D7\u30ED\u30D5\u30A3\u30FC\u30EB" },
10222
+ nav_account_notifications: { label: "\u901A\u77E5" },
10223
+ nav_account_approvals: { label: "\u627F\u8A8D\u5F85\u3061" },
10224
+ nav_account_memberships: { label: "\u6240\u5C5E\u7D44\u7E54" },
10225
+ nav_account_two_factor: { label: "\u4E8C\u8981\u7D20\u8A8D\u8A3C" },
10226
+ nav_account_linked: { label: "\u9023\u643A\u30A2\u30AB\u30A6\u30F3\u30C8" },
10227
+ nav_account_sessions: { label: "\u30A2\u30AF\u30C6\u30A3\u30D6\u30BB\u30C3\u30B7\u30E7\u30F3" },
10228
+ nav_account_api_keys: { label: "API \u30AD\u30FC" },
10229
+ nav_account_oauth_apps: { label: "OAuth \u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3" }
10230
+ }
10231
+ },
9512
10232
  setup: {
9513
10233
  label: "\u30BB\u30C3\u30C8\u30A2\u30C3\u30D7",
9514
10234
  description: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u8A2D\u5B9A\u3068\u7BA1\u7406",
@@ -9553,6 +10273,40 @@ var jaJP = {
9553
10273
  nav_user_preferences: { label: "\u30E6\u30FC\u30B6\u30FC\u8A2D\u5B9A" },
9554
10274
  nav_metadata: { label: "\u3059\u3079\u3066\u306E\u30E1\u30BF\u30C7\u30FC\u30BF" }
9555
10275
  }
10276
+ },
10277
+ studio: {
10278
+ label: "Studio",
10279
+ description: "\u958B\u767A\u8005\u30FB\u30A2\u30CA\u30EA\u30B9\u30C8\u30FB\u5B9F\u88C5\u62C5\u5F53\u8005\u5411\u3051\u306E\u30E1\u30BF\u30C7\u30FC\u30BF\u30EF\u30FC\u30AF\u30D9\u30F3\u30C1",
10280
+ navigation: {
10281
+ group_overview: { label: "\u6982\u8981" },
10282
+ nav_metadata_directory: { label: "\u3059\u3079\u3066\u306E\u30E1\u30BF\u30C7\u30FC\u30BF\u30BF\u30A4\u30D7" },
10283
+ group_data_model: { label: "\u30C7\u30FC\u30BF\u30E2\u30C7\u30EB" },
10284
+ nav_objects: { label: "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8" },
10285
+ nav_validations: { label: "\u30D0\u30EA\u30C7\u30FC\u30B7\u30E7\u30F3" },
10286
+ group_ux: { label: "\u30E6\u30FC\u30B6\u30FC\u4F53\u9A13" },
10287
+ nav_apps: { label: "\u30A2\u30D7\u30EA" },
10288
+ nav_views: { label: "\u30D3\u30E5\u30FC" },
10289
+ nav_pages: { label: "\u30DA\u30FC\u30B8" },
10290
+ nav_dashboards: { label: "\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9" },
10291
+ nav_reports: { label: "\u30EC\u30DD\u30FC\u30C8" },
10292
+ group_logic: { label: "\u30ED\u30B8\u30C3\u30AF" },
10293
+ nav_actions: { label: "\u30A2\u30AF\u30B7\u30E7\u30F3" },
10294
+ nav_hooks: { label: "\u30D5\u30C3\u30AF" },
10295
+ group_automation: { label: "\u81EA\u52D5\u5316" },
10296
+ nav_flows: { label: "\u30D5\u30ED\u30FC" },
10297
+ nav_workflows: { label: "\u30EF\u30FC\u30AF\u30D5\u30ED\u30FC\u30EB\u30FC\u30EB" },
10298
+ nav_approvals: { label: "\u627F\u8A8D\u30D7\u30ED\u30BB\u30B9" },
10299
+ group_ai: { label: "AI" },
10300
+ nav_agents: { label: "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8" },
10301
+ nav_tools: { label: "\u30C4\u30FC\u30EB" },
10302
+ nav_skills: { label: "\u30B9\u30AD\u30EB" },
10303
+ group_developer: { label: "\u958B\u767A\u8005" },
10304
+ nav_api_console: { label: "API \u30B3\u30F3\u30BD\u30FC\u30EB" },
10305
+ nav_flow_runs: { label: "\u30D5\u30ED\u30FC\u5B9F\u884C\u5C65\u6B74" },
10306
+ nav_public_forms: { label: "\u516C\u958B\u30D5\u30A9\u30FC\u30E0" },
10307
+ group_integration: { label: "\u9023\u643A" },
10308
+ nav_email_templates: { label: "\u30E1\u30FC\u30EB\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8" }
10309
+ }
9556
10310
  }
9557
10311
  },
9558
10312
  dashboards: {
@@ -9663,6 +10417,23 @@ var esESObjects = {
9663
10417
  label: "Suplantar usuario",
9664
10418
  confirmText: "\xBFIniciar una sesi\xF3n de suplantaci\xF3n para este usuario? \xDAsela solo para casos leg\xEDtimos de soporte; las acciones se registrar\xE1n.",
9665
10419
  successMessage: "Ahora est\xE1 suplantando al usuario"
10420
+ },
10421
+ update_my_profile: {
10422
+ label: "Actualizar perfil",
10423
+ successMessage: "Perfil actualizado"
10424
+ },
10425
+ change_my_password: {
10426
+ label: "Cambiar contrase\xF1a",
10427
+ successMessage: "Contrase\xF1a cambiada"
10428
+ },
10429
+ change_my_email: {
10430
+ label: "Cambiar correo",
10431
+ successMessage: "Correo de verificaci\xF3n enviado; revisa la nueva direcci\xF3n para confirmar."
10432
+ },
10433
+ delete_my_account: {
10434
+ label: "Eliminar mi cuenta",
10435
+ confirmText: "Permanently delete your account? This cannot be undone \u2014 all your sessions will be terminated and all data you own will be removed per the configured retention policy.",
10436
+ successMessage: "Cuenta eliminada"
9666
10437
  }
9667
10438
  }
9668
10439
  },
@@ -9787,6 +10558,16 @@ var esESObjects = {
9787
10558
  all_links: {
9788
10559
  label: "Todos"
9789
10560
  }
10561
+ },
10562
+ _actions: {
10563
+ link_social: {
10564
+ label: "Vincular cuenta social"
10565
+ },
10566
+ unlink_account: {
10567
+ label: "Desvincular cuenta",
10568
+ confirmText: "Unlink this identity link? The user will no longer be able to sign in with this provider until they re-link it from their account settings.",
10569
+ successMessage: "V\xEDnculo de identidad eliminado"
10570
+ }
9790
10571
  }
9791
10572
  },
9792
10573
  sys_verification: {
@@ -9915,6 +10696,11 @@ var esESObjects = {
9915
10696
  label: "Eliminar miembro",
9916
10697
  confirmText: "\xBFEliminar a este miembro de la organizaci\xF3n? Perder\xE1 el acceso a todos los recursos de la organizaci\xF3n.",
9917
10698
  successMessage: "Miembro eliminado"
10699
+ },
10700
+ transfer_ownership: {
10701
+ label: "Transferir propiedad",
10702
+ confirmText: "Transfer ownership of this organization to the selected member? You will be demoted to admin and lose owner-only privileges.",
10703
+ successMessage: "Propiedad transferida"
9918
10704
  }
9919
10705
  }
9920
10706
  },
@@ -9994,6 +10780,15 @@ var esESObjects = {
9994
10780
  resend_invitation: {
9995
10781
  label: "Reenviar invitaci\xF3n",
9996
10782
  successMessage: "Invitaci\xF3n reenviada"
10783
+ },
10784
+ accept_invitation: {
10785
+ label: "Aceptar invitaci\xF3n",
10786
+ successMessage: "Invitaci\xF3n aceptada"
10787
+ },
10788
+ reject_invitation: {
10789
+ label: "Rechazar invitaci\xF3n",
10790
+ confirmText: "Decline this invitation? The inviter will be notified and you will need a new invitation to join.",
10791
+ successMessage: "Invitaci\xF3n rechazada"
9997
10792
  }
9998
10793
  }
9999
10794
  },
@@ -10299,13 +11094,16 @@ var esESObjects = {
10299
11094
  },
10300
11095
  _actions: {
10301
11096
  enable_two_factor: {
10302
- label: "Habilitar 2FA",
10303
- successMessage: "Se ha iniciado la configuraci\xF3n de 2FA; consulte la respuesta para ver la URI TOTP y los c\xF3digos de respaldo."
11097
+ label: "Habilitar 2FA"
10304
11098
  },
10305
11099
  disable_two_factor: {
10306
11100
  label: "Deshabilitar 2FA",
10307
11101
  confirmText: "\xBFDeshabilitar la autenticaci\xF3n de doble factor en su cuenta?",
10308
11102
  successMessage: "2FA deshabilitado"
11103
+ },
11104
+ regenerate_backup_codes: {
11105
+ label: "Regenerar c\xF3digos de respaldo",
11106
+ confirmText: "Regenerate backup codes? All previous backup codes will stop working immediately."
10309
11107
  }
10310
11108
  }
10311
11109
  },
@@ -10531,6 +11329,30 @@ var esESObjects = {
10531
11329
  all_apps: {
10532
11330
  label: "Todas"
10533
11331
  }
11332
+ },
11333
+ _actions: {
11334
+ disable_oauth_application: {
11335
+ label: "Disable OAuth Application",
11336
+ confirmText: "Disable this OAuth application? Active access/refresh tokens issued to it will continue to be rejected at the token, authorize, and introspect endpoints. Existing integrations will stop working immediately.",
11337
+ successMessage: "OAuth application disabled"
11338
+ },
11339
+ enable_oauth_application: {
11340
+ label: "Enable OAuth Application",
11341
+ confirmText: "Re-enable this OAuth application? Token issuance, authorization, and introspection will resume immediately.",
11342
+ successMessage: "OAuth application enabled"
11343
+ },
11344
+ create_oauth_application: {
11345
+ label: "Register OAuth Application"
11346
+ },
11347
+ rotate_client_secret: {
11348
+ label: "Rotar Client Secret",
11349
+ confirmText: "Rotate this OAuth client's secret? The previous secret will stop working immediately and any integrations using it will break until they are updated with the new secret. The new secret is shown only once."
11350
+ },
11351
+ delete_oauth_application: {
11352
+ label: "Delete OAuth Application",
11353
+ confirmText: "Permanently delete this OAuth application? All issued tokens and consents will be invalidated and integrations using this client_id will stop working immediately. This cannot be undone.",
11354
+ successMessage: "OAuth application deleted"
11355
+ }
10534
11356
  }
10535
11357
  },
10536
11358
  sys_oauth_access_token: {
@@ -10732,6 +11554,26 @@ var esESObjects = {
10732
11554
  all_roles: {
10733
11555
  label: "Todos"
10734
11556
  }
11557
+ },
11558
+ _actions: {
11559
+ activate_role: {
11560
+ label: "Activar rol",
11561
+ successMessage: "Rol activado"
11562
+ },
11563
+ deactivate_role: {
11564
+ label: "Desactivar rol",
11565
+ confirmText: "Deactivate this role? Users with the role keep their assignment but the role stops granting permissions until re-activated.",
11566
+ successMessage: "Rol desactivado"
11567
+ },
11568
+ set_default_role: {
11569
+ label: "Establecer como predeterminado",
11570
+ confirmText: "Make this the default role for new users? Existing users are unaffected.",
11571
+ successMessage: "Rol predeterminado actualizado"
11572
+ },
11573
+ clone_role: {
11574
+ label: "Clonar rol",
11575
+ successMessage: "Rol clonado"
11576
+ }
10735
11577
  }
10736
11578
  },
10737
11579
  sys_permission_set: {
@@ -10757,6 +11599,18 @@ var esESObjects = {
10757
11599
  label: "Permisos de campo",
10758
11600
  help: "Permisos de lectura/escritura a nivel de campo serializados en JSON."
10759
11601
  },
11602
+ system_permissions: {
11603
+ label: "System Permissions",
11604
+ help: 'JSON-serialized array of system capability names (e.g. ["setup.access","studio.access","manage_users"])'
11605
+ },
11606
+ row_level_security: {
11607
+ label: "Row-Level Security",
11608
+ help: "JSON-serialized array of row-level security policies (USING/CHECK clauses)"
11609
+ },
11610
+ tab_permissions: {
11611
+ label: "Tab Permissions",
11612
+ help: "JSON-serialized map of app tab visibility (visible | hidden | default_on | default_off)"
11613
+ },
10760
11614
  active: {
10761
11615
  label: "Activo"
10762
11616
  },
@@ -10780,6 +11634,21 @@ var esESObjects = {
10780
11634
  all_permsets: {
10781
11635
  label: "Todos"
10782
11636
  }
11637
+ },
11638
+ _actions: {
11639
+ activate_permission_set: {
11640
+ label: "Activar",
11641
+ successMessage: "Conjunto de permisos activado"
11642
+ },
11643
+ deactivate_permission_set: {
11644
+ label: "Desactivar",
11645
+ confirmText: "Deactivate this permission set? Existing assignments stay in place but stop granting access until re-activated.",
11646
+ successMessage: "Conjunto de permisos desactivado"
11647
+ },
11648
+ clone_permission_set: {
11649
+ label: "Clonar",
11650
+ successMessage: "Conjunto de permisos clonado"
11651
+ }
10783
11652
  }
10784
11653
  },
10785
11654
  sys_user_permission_set: {
@@ -11404,6 +12273,16 @@ var esESObjects = {
11404
12273
  all_notifications: {
11405
12274
  label: "Todas"
11406
12275
  }
12276
+ },
12277
+ _actions: {
12278
+ mark_read: {
12279
+ label: "Marcar como le\xEDdo",
12280
+ successMessage: "Notificaci\xF3n marcada como le\xEDda"
12281
+ },
12282
+ mark_unread: {
12283
+ label: "Marcar como no le\xEDdo",
12284
+ successMessage: "Notificaci\xF3n marcada como no le\xEDda"
12285
+ }
11407
12286
  }
11408
12287
  },
11409
12288
  sys_email: {
@@ -11785,6 +12664,10 @@ var esESObjects = {
11785
12664
  label: "Instant\xE1nea",
11786
12665
  help: "Instant\xE1nea del registro en el momento del env\xEDo."
11787
12666
  },
12667
+ process_hash: {
12668
+ label: "Process Hash",
12669
+ help: "sha256 of the approval process body at submit time (ADR-0009 execution pinning). Resolved through sys_metadata_history so process upgrades do not affect in-flight requests."
12670
+ },
11788
12671
  completed_at: {
11789
12672
  label: "Completado el"
11790
12673
  },
@@ -12227,6 +13110,17 @@ var esESObjects = {
12227
13110
  updated_at: {
12228
13111
  label: "Actualizado el"
12229
13112
  }
13113
+ },
13114
+ _views: {
13115
+ only_objects: {
13116
+ label: "Objects"
13117
+ },
13118
+ only_fields: {
13119
+ label: "Fields"
13120
+ },
13121
+ all_metadata: {
13122
+ label: "All"
13123
+ }
12230
13124
  }
12231
13125
  },
12232
13126
  sys_metadata_history: {
@@ -12237,6 +13131,10 @@ var esESObjects = {
12237
13131
  id: {
12238
13132
  label: "ID"
12239
13133
  },
13134
+ event_seq: {
13135
+ label: "Event Seq",
13136
+ help: "Per-organization monotonic event log cursor."
13137
+ },
12240
13138
  name: {
12241
13139
  label: "Nombre"
12242
13140
  },
@@ -12270,14 +13168,13 @@ var esESObjects = {
12270
13168
  label: "Nota de cambio",
12271
13169
  help: "Descripci\xF3n de lo que cambi\xF3 en esta versi\xF3n."
12272
13170
  },
13171
+ source: {
13172
+ label: "Source"
13173
+ },
12273
13174
  organization_id: {
12274
13175
  label: "Organizaci\xF3n",
12275
13176
  help: "Organizaci\xF3n para el aislamiento multi-tenant."
12276
13177
  },
12277
- environment_id: {
12278
- label: "ID del entorno",
12279
- help: "Limita esta entrada de historial a un entorno espec\xEDfico."
12280
- },
12281
13178
  recorded_by: {
12282
13179
  label: "Registrado por"
12283
13180
  },
@@ -12486,6 +13383,24 @@ var esESObjects = {
12486
13383
  var esES = {
12487
13384
  objects: esESObjects,
12488
13385
  apps: {
13386
+ account: {
13387
+ label: "Cuenta",
13388
+ description: "Configuraci\xF3n personal de seguridad e identidad",
13389
+ navigation: {
13390
+ grp_account_inbox: { label: "Bandeja de entrada" },
13391
+ grp_account_security: { label: "Seguridad" },
13392
+ grp_account_developer: { label: "Desarrollador" },
13393
+ nav_account_profile: { label: "Perfil" },
13394
+ nav_account_notifications: { label: "Notificaciones" },
13395
+ nav_account_approvals: { label: "Aprobaciones pendientes" },
13396
+ nav_account_memberships: { label: "Mis organizaciones" },
13397
+ nav_account_two_factor: { label: "Autenticaci\xF3n de dos factores" },
13398
+ nav_account_linked: { label: "Cuentas vinculadas" },
13399
+ nav_account_sessions: { label: "Sesiones activas" },
13400
+ nav_account_api_keys: { label: "Claves API" },
13401
+ nav_account_oauth_apps: { label: "Aplicaciones OAuth" }
13402
+ }
13403
+ },
12489
13404
  setup: {
12490
13405
  label: "Configuraci\xF3n",
12491
13406
  description: "Configuraci\xF3n y administraci\xF3n de la plataforma",
@@ -12530,6 +13445,40 @@ var esES = {
12530
13445
  nav_user_preferences: { label: "Preferencias de Usuario" },
12531
13446
  nav_metadata: { label: "Todos los Metadatos" }
12532
13447
  }
13448
+ },
13449
+ studio: {
13450
+ label: "Studio",
13451
+ description: "Banco de trabajo de metadatos para desarrolladores, analistas e implementadores",
13452
+ navigation: {
13453
+ group_overview: { label: "Resumen" },
13454
+ nav_metadata_directory: { label: "Todos los tipos de metadatos" },
13455
+ group_data_model: { label: "Modelo de datos" },
13456
+ nav_objects: { label: "Objetos" },
13457
+ nav_validations: { label: "Validaciones" },
13458
+ group_ux: { label: "Experiencia de usuario" },
13459
+ nav_apps: { label: "Aplicaciones" },
13460
+ nav_views: { label: "Vistas" },
13461
+ nav_pages: { label: "P\xE1ginas" },
13462
+ nav_dashboards: { label: "Paneles" },
13463
+ nav_reports: { label: "Informes" },
13464
+ group_logic: { label: "L\xF3gica" },
13465
+ nav_actions: { label: "Acciones" },
13466
+ nav_hooks: { label: "Hooks" },
13467
+ group_automation: { label: "Automatizaci\xF3n" },
13468
+ nav_flows: { label: "Flujos" },
13469
+ nav_workflows: { label: "Reglas de flujo de trabajo" },
13470
+ nav_approvals: { label: "Procesos de aprobaci\xF3n" },
13471
+ group_ai: { label: "IA" },
13472
+ nav_agents: { label: "Agentes" },
13473
+ nav_tools: { label: "Herramientas" },
13474
+ nav_skills: { label: "Habilidades" },
13475
+ group_developer: { label: "Desarrollador" },
13476
+ nav_api_console: { label: "Consola de API" },
13477
+ nav_flow_runs: { label: "Ejecuciones de flujo" },
13478
+ nav_public_forms: { label: "Formularios p\xFAblicos" },
13479
+ group_integration: { label: "Integraci\xF3n" },
13480
+ nav_email_templates: { label: "Plantillas de correo" }
13481
+ }
12533
13482
  }
12534
13483
  },
12535
13484
  dashboards: {
@@ -12560,6 +13509,7 @@ var SetupAppTranslations = {
12560
13509
  "es-ES": esES
12561
13510
  };
12562
13511
 
13512
+ exports.ACCOUNT_APP = ACCOUNT_APP;
12563
13513
  exports.SETUP_APP = SETUP_APP;
12564
13514
  exports.STUDIO_APP = STUDIO_APP;
12565
13515
  exports.SetupAppTranslations = SetupAppTranslations;