@objectstack/platform-objects 6.9.0 → 7.0.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 +994 -37
  4. package/dist/apps/index.js.map +1 -1
  5. package/dist/apps/index.mjs +994 -38
  6. package/dist/apps/index.mjs.map +1 -1
  7. package/dist/audit/index.d.mts +192 -16
  8. package/dist/audit/index.d.ts +192 -16
  9. package/dist/identity/index.d.mts +840 -22
  10. package/dist/identity/index.d.ts +840 -22
  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 +6815 -104
  18. package/dist/index.js.map +1 -1
  19. package/dist/index.mjs +6810 -105
  20. package/dist/index.mjs.map +1 -1
  21. package/dist/integration/index.d.mts +12 -1
  22. package/dist/integration/index.d.ts +12 -1
  23. package/dist/metadata/index.d.mts +24 -2
  24. package/dist/metadata/index.d.ts +24 -2
  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 +68 -0
  32. package/dist/pages/index.d.ts +68 -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 +17566 -0
  40. package/dist/plugin.js.map +1 -0
  41. package/dist/plugin.mjs +17563 -0
  42. package/dist/plugin.mjs.map +1 -0
  43. package/dist/security/index.d.mts +785 -183
  44. package/dist/security/index.d.ts +785 -183
  45. package/dist/security/index.js +188 -1
  46. package/dist/security/index.js.map +1 -1
  47. package/dist/security/index.mjs +188 -1
  48. package/dist/security/index.mjs.map +1 -1
  49. package/dist/system/index.d.mts +36 -3
  50. package/dist/system/index.d.ts +36 -3
  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,155 @@ 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 — name, email, avatar, verification
504
+ // status. Uses `type: 'object' + recordId: '{current_user_id}'` so it
505
+ // resolves to the sys_user record page; the slotted SysUserDetailPage
506
+ // (kind: 'slotted', isDefault: true) tailors that page into a proper
507
+ // self-service profile (highlight chips, grouped detail sections, no
508
+ // Discussion thread) without losing the record-context features
509
+ // (related lists, header actions, RLS-aware edit).
510
+ {
511
+ id: "nav_account_profile",
512
+ type: "object",
513
+ label: "Profile",
514
+ objectName: "sys_user",
515
+ recordId: "{current_user_id}",
516
+ icon: "user-circle",
517
+ requiresObject: "sys_user"
518
+ },
519
+ // --- Inbox & work assigned to me -----------------------------------
520
+ // Notifications, approvals waiting on me, and the orgs I belong to.
521
+ // All three rely on pre-existing `*.mine` / `*.my_pending` listViews
522
+ // that filter by `{current_user_id}` via RLS — no new objects needed.
523
+ {
524
+ id: "grp_account_inbox",
525
+ type: "group",
526
+ label: "Inbox",
527
+ icon: "inbox",
528
+ defaultOpen: true,
529
+ children: [
530
+ {
531
+ id: "nav_account_notifications",
532
+ type: "object",
533
+ label: "Notifications",
534
+ objectName: "sys_notification",
535
+ viewName: "unread",
536
+ icon: "bell",
537
+ requiresObject: "sys_notification"
538
+ },
539
+ {
540
+ id: "nav_account_approvals",
541
+ type: "object",
542
+ label: "Approvals",
543
+ objectName: "sys_approval_request",
544
+ viewName: "my_pending",
545
+ icon: "check-circle",
546
+ requiresObject: "sys_approval_request"
547
+ },
548
+ {
549
+ id: "nav_account_memberships",
550
+ type: "object",
551
+ label: "My Organizations",
552
+ objectName: "sys_member",
553
+ viewName: "mine",
554
+ icon: "building-2",
555
+ requiresObject: "sys_member"
556
+ }
557
+ ]
558
+ },
559
+ // --- Security -------------------------------------------------------
560
+ {
561
+ id: "grp_account_security",
562
+ type: "group",
563
+ label: "Security",
564
+ icon: "shield",
565
+ defaultOpen: true,
566
+ children: [
567
+ {
568
+ id: "nav_account_two_factor",
569
+ type: "object",
570
+ label: "Two-Factor Authentication",
571
+ objectName: "sys_two_factor",
572
+ icon: "smartphone",
573
+ requiresObject: "sys_two_factor"
574
+ },
575
+ {
576
+ id: "nav_account_linked",
577
+ type: "object",
578
+ label: "Linked Accounts",
579
+ objectName: "sys_account",
580
+ icon: "link-2",
581
+ requiresObject: "sys_account"
582
+ },
583
+ {
584
+ id: "nav_account_sessions",
585
+ type: "object",
586
+ label: "Active Sessions",
587
+ objectName: "sys_session",
588
+ viewName: "mine",
589
+ icon: "monitor-smartphone",
590
+ requiresObject: "sys_session"
591
+ }
592
+ ]
593
+ },
594
+ // --- Developer ------------------------------------------------------
595
+ {
596
+ id: "grp_account_developer",
597
+ type: "group",
598
+ label: "Developer",
599
+ icon: "code",
600
+ defaultOpen: false,
601
+ children: [
602
+ {
603
+ id: "nav_account_api_keys",
604
+ type: "object",
605
+ label: "API Keys",
606
+ objectName: "sys_api_key",
607
+ viewName: "mine",
608
+ icon: "key-round",
609
+ requiresObject: "sys_api_key"
610
+ },
611
+ {
612
+ id: "nav_account_oauth_apps",
613
+ type: "object",
614
+ label: "OAuth Applications",
615
+ objectName: "sys_oauth_application",
616
+ viewName: "mine",
617
+ icon: "app-window",
618
+ requiresObject: "sys_oauth_application"
619
+ }
620
+ ]
621
+ },
622
+ {
623
+ id: "nav_account_preferences",
624
+ type: "object",
625
+ label: "Preferences",
626
+ objectName: "sys_user_preference",
627
+ viewName: "mine",
628
+ icon: "sliders-horizontal",
629
+ requiresObject: "sys_user_preference"
630
+ }
631
+ ]
632
+ };
457
633
  var SystemOverviewDashboard = ui.Dashboard.create({
458
634
  name: "system_overview",
459
635
  label: "System Overview",
@@ -689,6 +865,23 @@ var enObjects = {
689
865
  label: "Impersonate User",
690
866
  confirmText: "Start an impersonation session for this user? Use only for legitimate support cases \u2014 actions will be logged.",
691
867
  successMessage: "Now impersonating user"
868
+ },
869
+ update_my_profile: {
870
+ label: "Update Profile",
871
+ successMessage: "Profile updated"
872
+ },
873
+ change_my_password: {
874
+ label: "Change Password",
875
+ successMessage: "Password changed"
876
+ },
877
+ change_my_email: {
878
+ label: "Change Email",
879
+ successMessage: "Verification email sent \u2014 check the new address to confirm."
880
+ },
881
+ delete_my_account: {
882
+ label: "Delete My Account",
883
+ 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.",
884
+ successMessage: "Account deleted"
692
885
  }
693
886
  }
694
887
  },
@@ -813,6 +1006,16 @@ var enObjects = {
813
1006
  all_links: {
814
1007
  label: "All"
815
1008
  }
1009
+ },
1010
+ _actions: {
1011
+ link_social: {
1012
+ label: "Link Social Account"
1013
+ },
1014
+ unlink_account: {
1015
+ label: "Unlink Account",
1016
+ 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.",
1017
+ successMessage: "Identity link removed"
1018
+ }
816
1019
  }
817
1020
  },
818
1021
  sys_verification: {
@@ -941,6 +1144,11 @@ var enObjects = {
941
1144
  label: "Remove Member",
942
1145
  confirmText: "Remove this member from the organization? They will lose access to all org resources.",
943
1146
  successMessage: "Member removed"
1147
+ },
1148
+ transfer_ownership: {
1149
+ label: "Transfer Ownership",
1150
+ confirmText: "Transfer ownership of this organization to the selected member? You will be demoted to admin and lose owner-only privileges.",
1151
+ successMessage: "Ownership transferred"
944
1152
  }
945
1153
  }
946
1154
  },
@@ -1020,6 +1228,15 @@ var enObjects = {
1020
1228
  resend_invitation: {
1021
1229
  label: "Resend Invitation",
1022
1230
  successMessage: "Invitation resent"
1231
+ },
1232
+ accept_invitation: {
1233
+ label: "Accept Invitation",
1234
+ successMessage: "Invitation accepted"
1235
+ },
1236
+ reject_invitation: {
1237
+ label: "Decline Invitation",
1238
+ confirmText: "Decline this invitation? The inviter will be notified and you will need a new invitation to join.",
1239
+ successMessage: "Invitation declined"
1023
1240
  }
1024
1241
  }
1025
1242
  },
@@ -1325,13 +1542,16 @@ var enObjects = {
1325
1542
  },
1326
1543
  _actions: {
1327
1544
  enable_two_factor: {
1328
- label: "Enable 2FA",
1329
- successMessage: "2FA enrollment started \u2014 check response for TOTP URI and backup codes"
1545
+ label: "Enable 2FA"
1330
1546
  },
1331
1547
  disable_two_factor: {
1332
1548
  label: "Disable 2FA",
1333
1549
  confirmText: "Disable two-factor authentication on your account?",
1334
1550
  successMessage: "2FA disabled"
1551
+ },
1552
+ regenerate_backup_codes: {
1553
+ label: "Regenerate Backup Codes",
1554
+ confirmText: "Regenerate backup codes? All previous backup codes will stop working immediately."
1335
1555
  }
1336
1556
  }
1337
1557
  },
@@ -1557,6 +1777,30 @@ var enObjects = {
1557
1777
  all_apps: {
1558
1778
  label: "All"
1559
1779
  }
1780
+ },
1781
+ _actions: {
1782
+ disable_oauth_application: {
1783
+ label: "Disable OAuth Application",
1784
+ 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.",
1785
+ successMessage: "OAuth application disabled"
1786
+ },
1787
+ enable_oauth_application: {
1788
+ label: "Enable OAuth Application",
1789
+ confirmText: "Re-enable this OAuth application? Token issuance, authorization, and introspection will resume immediately.",
1790
+ successMessage: "OAuth application enabled"
1791
+ },
1792
+ create_oauth_application: {
1793
+ label: "Register OAuth Application"
1794
+ },
1795
+ rotate_client_secret: {
1796
+ label: "Rotate Client Secret",
1797
+ 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."
1798
+ },
1799
+ delete_oauth_application: {
1800
+ label: "Delete OAuth Application",
1801
+ 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.",
1802
+ successMessage: "OAuth application deleted"
1803
+ }
1560
1804
  }
1561
1805
  },
1562
1806
  sys_oauth_access_token: {
@@ -1758,6 +2002,26 @@ var enObjects = {
1758
2002
  all_roles: {
1759
2003
  label: "All"
1760
2004
  }
2005
+ },
2006
+ _actions: {
2007
+ activate_role: {
2008
+ label: "Activate Role",
2009
+ successMessage: "Role activated"
2010
+ },
2011
+ deactivate_role: {
2012
+ label: "Deactivate Role",
2013
+ confirmText: "Deactivate this role? Users with the role keep their assignment but the role stops granting permissions until re-activated.",
2014
+ successMessage: "Role deactivated"
2015
+ },
2016
+ set_default_role: {
2017
+ label: "Set as Default",
2018
+ confirmText: "Make this the default role for new users? Existing users are unaffected.",
2019
+ successMessage: "Default role updated"
2020
+ },
2021
+ clone_role: {
2022
+ label: "Clone Role",
2023
+ successMessage: "Role cloned"
2024
+ }
1761
2025
  }
1762
2026
  },
1763
2027
  sys_permission_set: {
@@ -1783,6 +2047,18 @@ var enObjects = {
1783
2047
  label: "Field Permissions",
1784
2048
  help: "JSON-serialized field-level read/write permissions"
1785
2049
  },
2050
+ system_permissions: {
2051
+ label: "System Permissions",
2052
+ help: 'JSON-serialized array of system capability names (e.g. ["setup.access","studio.access","manage_users"])'
2053
+ },
2054
+ row_level_security: {
2055
+ label: "Row-Level Security",
2056
+ help: "JSON-serialized array of row-level security policies (USING/CHECK clauses)"
2057
+ },
2058
+ tab_permissions: {
2059
+ label: "Tab Permissions",
2060
+ help: "JSON-serialized map of app tab visibility (visible | hidden | default_on | default_off)"
2061
+ },
1786
2062
  active: {
1787
2063
  label: "Active"
1788
2064
  },
@@ -1806,6 +2082,21 @@ var enObjects = {
1806
2082
  all_permsets: {
1807
2083
  label: "All"
1808
2084
  }
2085
+ },
2086
+ _actions: {
2087
+ activate_permission_set: {
2088
+ label: "Activate",
2089
+ successMessage: "Permission set activated"
2090
+ },
2091
+ deactivate_permission_set: {
2092
+ label: "Deactivate",
2093
+ confirmText: "Deactivate this permission set? Existing assignments stay in place but stop granting access until re-activated.",
2094
+ successMessage: "Permission set deactivated"
2095
+ },
2096
+ clone_permission_set: {
2097
+ label: "Clone",
2098
+ successMessage: "Permission set cloned"
2099
+ }
1809
2100
  }
1810
2101
  },
1811
2102
  sys_user_permission_set: {
@@ -2430,6 +2721,16 @@ var enObjects = {
2430
2721
  all_notifications: {
2431
2722
  label: "All"
2432
2723
  }
2724
+ },
2725
+ _actions: {
2726
+ mark_read: {
2727
+ label: "Mark as Read",
2728
+ successMessage: "Notification marked as read"
2729
+ },
2730
+ mark_unread: {
2731
+ label: "Mark as Unread",
2732
+ successMessage: "Notification marked as unread"
2733
+ }
2433
2734
  }
2434
2735
  },
2435
2736
  sys_email: {
@@ -2811,6 +3112,10 @@ var enObjects = {
2811
3112
  label: "Snapshot",
2812
3113
  help: "Record snapshot at submission time"
2813
3114
  },
3115
+ process_hash: {
3116
+ label: "Process Hash",
3117
+ 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."
3118
+ },
2814
3119
  completed_at: {
2815
3120
  label: "Completed At"
2816
3121
  },
@@ -3253,6 +3558,17 @@ var enObjects = {
3253
3558
  updated_at: {
3254
3559
  label: "Updated At"
3255
3560
  }
3561
+ },
3562
+ _views: {
3563
+ only_objects: {
3564
+ label: "Objects"
3565
+ },
3566
+ only_fields: {
3567
+ label: "Fields"
3568
+ },
3569
+ all_metadata: {
3570
+ label: "All"
3571
+ }
3256
3572
  }
3257
3573
  },
3258
3574
  sys_metadata_history: {
@@ -3263,6 +3579,10 @@ var enObjects = {
3263
3579
  id: {
3264
3580
  label: "ID"
3265
3581
  },
3582
+ event_seq: {
3583
+ label: "Event Seq",
3584
+ help: "Per-organization monotonic event log cursor."
3585
+ },
3266
3586
  name: {
3267
3587
  label: "Name"
3268
3588
  },
@@ -3296,14 +3616,13 @@ var enObjects = {
3296
3616
  label: "Change Note",
3297
3617
  help: "Description of what changed in this version"
3298
3618
  },
3619
+ source: {
3620
+ label: "Source"
3621
+ },
3299
3622
  organization_id: {
3300
3623
  label: "Organization",
3301
3624
  help: "Organization for multi-tenant isolation."
3302
3625
  },
3303
- environment_id: {
3304
- label: "Environment ID",
3305
- help: "Scopes this history entry to a specific environment."
3306
- },
3307
3626
  recorded_by: {
3308
3627
  label: "Recorded By"
3309
3628
  },
@@ -3512,6 +3831,25 @@ var enObjects = {
3512
3831
  var en = {
3513
3832
  objects: enObjects,
3514
3833
  apps: {
3834
+ account: {
3835
+ label: "Account",
3836
+ description: "Personal security and identity settings",
3837
+ navigation: {
3838
+ grp_account_inbox: { label: "Inbox" },
3839
+ grp_account_security: { label: "Security" },
3840
+ grp_account_developer: { label: "Developer" },
3841
+ nav_account_profile: { label: "Profile" },
3842
+ nav_account_notifications: { label: "Notifications" },
3843
+ nav_account_approvals: { label: "Approvals" },
3844
+ nav_account_memberships: { label: "My Organizations" },
3845
+ nav_account_two_factor: { label: "Two-Factor Authentication" },
3846
+ nav_account_linked: { label: "Linked Accounts" },
3847
+ nav_account_sessions: { label: "Active Sessions" },
3848
+ nav_account_api_keys: { label: "API Keys" },
3849
+ nav_account_oauth_apps: { label: "OAuth Applications" },
3850
+ nav_account_preferences: { label: "Preferences" }
3851
+ }
3852
+ },
3515
3853
  setup: {
3516
3854
  label: "Setup",
3517
3855
  description: "Platform settings and administration",
@@ -3565,6 +3903,40 @@ var en = {
3565
3903
  nav_user_preferences: { label: "User Preferences" },
3566
3904
  nav_metadata: { label: "All Metadata" }
3567
3905
  }
3906
+ },
3907
+ studio: {
3908
+ label: "Studio",
3909
+ description: "Metadata workbench for developers, analysts, and implementers",
3910
+ navigation: {
3911
+ group_overview: { label: "Overview" },
3912
+ nav_metadata_directory: { label: "All Metadata Types" },
3913
+ group_data_model: { label: "Data Model" },
3914
+ nav_objects: { label: "Objects" },
3915
+ nav_validations: { label: "Validations" },
3916
+ group_ux: { label: "User Experience" },
3917
+ nav_apps: { label: "Apps" },
3918
+ nav_views: { label: "Views" },
3919
+ nav_pages: { label: "Pages" },
3920
+ nav_dashboards: { label: "Dashboards" },
3921
+ nav_reports: { label: "Reports" },
3922
+ group_logic: { label: "Logic" },
3923
+ nav_actions: { label: "Actions" },
3924
+ nav_hooks: { label: "Hooks" },
3925
+ group_automation: { label: "Automation" },
3926
+ nav_flows: { label: "Flows" },
3927
+ nav_workflows: { label: "Workflow Rules" },
3928
+ nav_approvals: { label: "Approval Processes" },
3929
+ group_ai: { label: "AI" },
3930
+ nav_agents: { label: "Agents" },
3931
+ nav_tools: { label: "Tools" },
3932
+ nav_skills: { label: "Skills" },
3933
+ group_developer: { label: "Developer" },
3934
+ nav_api_console: { label: "API Console" },
3935
+ nav_flow_runs: { label: "Flow Runs" },
3936
+ nav_public_forms: { label: "Public Forms" },
3937
+ group_integration: { label: "Integration" },
3938
+ nav_email_templates: { label: "Email Templates" }
3939
+ }
3568
3940
  }
3569
3941
  },
3570
3942
  dashboards: {
@@ -3705,6 +4077,23 @@ var zhCNObjects = {
3705
4077
  label: "\u6A21\u62DF\u7528\u6237",
3706
4078
  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
4079
  successMessage: "\u5DF2\u5F00\u59CB\u6A21\u62DF\u8BE5\u7528\u6237"
4080
+ },
4081
+ update_my_profile: {
4082
+ label: "\u66F4\u65B0\u8D44\u6599",
4083
+ successMessage: "\u5DF2\u66F4\u65B0\u8D44\u6599"
4084
+ },
4085
+ change_my_password: {
4086
+ label: "\u4FEE\u6539\u5BC6\u7801",
4087
+ successMessage: "\u5DF2\u4FEE\u6539\u5BC6\u7801"
4088
+ },
4089
+ change_my_email: {
4090
+ label: "\u4FEE\u6539\u90AE\u7BB1",
4091
+ successMessage: "\u5DF2\u53D1\u9001\u9A8C\u8BC1\u90AE\u4EF6\uFF0C\u8BF7\u524D\u5F80\u65B0\u90AE\u7BB1\u786E\u8BA4\u3002"
4092
+ },
4093
+ delete_my_account: {
4094
+ label: "\u5220\u9664\u6211\u7684\u8D26\u53F7",
4095
+ 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.",
4096
+ successMessage: "\u5DF2\u5220\u9664\u8D26\u53F7"
3708
4097
  }
3709
4098
  }
3710
4099
  },
@@ -3829,6 +4218,16 @@ var zhCNObjects = {
3829
4218
  all_links: {
3830
4219
  label: "\u5168\u90E8"
3831
4220
  }
4221
+ },
4222
+ _actions: {
4223
+ link_social: {
4224
+ label: "\u5173\u8054\u793E\u4EA4\u8D26\u53F7"
4225
+ },
4226
+ unlink_account: {
4227
+ label: "\u89E3\u9664\u5173\u8054",
4228
+ 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.",
4229
+ successMessage: "\u5DF2\u89E3\u9664\u8EAB\u4EFD\u5173\u8054"
4230
+ }
3832
4231
  }
3833
4232
  },
3834
4233
  sys_verification: {
@@ -3957,6 +4356,11 @@ var zhCNObjects = {
3957
4356
  label: "\u79FB\u9664\u6210\u5458",
3958
4357
  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
4358
  successMessage: "\u6210\u5458\u5DF2\u79FB\u9664"
4359
+ },
4360
+ transfer_ownership: {
4361
+ label: "\u8F6C\u79FB\u6240\u6709\u6743",
4362
+ confirmText: "Transfer ownership of this organization to the selected member? You will be demoted to admin and lose owner-only privileges.",
4363
+ successMessage: "\u5DF2\u8F6C\u79FB\u6240\u6709\u6743"
3960
4364
  }
3961
4365
  }
3962
4366
  },
@@ -4036,6 +4440,15 @@ var zhCNObjects = {
4036
4440
  resend_invitation: {
4037
4441
  label: "\u91CD\u65B0\u53D1\u9001\u9080\u8BF7",
4038
4442
  successMessage: "\u9080\u8BF7\u5DF2\u91CD\u65B0\u53D1\u9001"
4443
+ },
4444
+ accept_invitation: {
4445
+ label: "\u63A5\u53D7\u9080\u8BF7",
4446
+ successMessage: "\u5DF2\u63A5\u53D7\u9080\u8BF7"
4447
+ },
4448
+ reject_invitation: {
4449
+ label: "\u62D2\u7EDD\u9080\u8BF7",
4450
+ confirmText: "Decline this invitation? The inviter will be notified and you will need a new invitation to join.",
4451
+ successMessage: "\u5DF2\u62D2\u7EDD\u9080\u8BF7"
4039
4452
  }
4040
4453
  }
4041
4454
  },
@@ -4341,13 +4754,16 @@ var zhCNObjects = {
4341
4754
  },
4342
4755
  _actions: {
4343
4756
  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"
4757
+ label: "\u542F\u7528 2FA"
4346
4758
  },
4347
4759
  disable_two_factor: {
4348
4760
  label: "\u505C\u7528 2FA",
4349
4761
  confirmText: "\u8981\u505C\u7528\u4F60\u8D26\u53F7\u4E0A\u7684\u53CC\u56E0\u7D20\u8BA4\u8BC1\u5417\uFF1F",
4350
4762
  successMessage: "2FA \u5DF2\u505C\u7528"
4763
+ },
4764
+ regenerate_backup_codes: {
4765
+ label: "\u91CD\u65B0\u751F\u6210\u5907\u7528\u7801",
4766
+ confirmText: "Regenerate backup codes? All previous backup codes will stop working immediately."
4351
4767
  }
4352
4768
  }
4353
4769
  },
@@ -4573,6 +4989,30 @@ var zhCNObjects = {
4573
4989
  all_apps: {
4574
4990
  label: "\u5168\u90E8"
4575
4991
  }
4992
+ },
4993
+ _actions: {
4994
+ disable_oauth_application: {
4995
+ label: "Disable OAuth Application",
4996
+ 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.",
4997
+ successMessage: "OAuth application disabled"
4998
+ },
4999
+ enable_oauth_application: {
5000
+ label: "Enable OAuth Application",
5001
+ confirmText: "Re-enable this OAuth application? Token issuance, authorization, and introspection will resume immediately.",
5002
+ successMessage: "OAuth application enabled"
5003
+ },
5004
+ create_oauth_application: {
5005
+ label: "Register OAuth Application"
5006
+ },
5007
+ rotate_client_secret: {
5008
+ label: "\u8F6E\u6362 Client Secret",
5009
+ 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."
5010
+ },
5011
+ delete_oauth_application: {
5012
+ label: "Delete OAuth Application",
5013
+ 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.",
5014
+ successMessage: "OAuth application deleted"
5015
+ }
4576
5016
  }
4577
5017
  },
4578
5018
  sys_oauth_access_token: {
@@ -4774,6 +5214,26 @@ var zhCNObjects = {
4774
5214
  all_roles: {
4775
5215
  label: "\u5168\u90E8"
4776
5216
  }
5217
+ },
5218
+ _actions: {
5219
+ activate_role: {
5220
+ label: "\u6FC0\u6D3B\u89D2\u8272",
5221
+ successMessage: "\u89D2\u8272\u5DF2\u6FC0\u6D3B"
5222
+ },
5223
+ deactivate_role: {
5224
+ label: "\u505C\u7528\u89D2\u8272",
5225
+ confirmText: "Deactivate this role? Users with the role keep their assignment but the role stops granting permissions until re-activated.",
5226
+ successMessage: "\u89D2\u8272\u5DF2\u505C\u7528"
5227
+ },
5228
+ set_default_role: {
5229
+ label: "\u8BBE\u4E3A\u9ED8\u8BA4",
5230
+ confirmText: "Make this the default role for new users? Existing users are unaffected.",
5231
+ successMessage: "\u5DF2\u66F4\u65B0\u9ED8\u8BA4\u89D2\u8272"
5232
+ },
5233
+ clone_role: {
5234
+ label: "\u514B\u9686\u89D2\u8272",
5235
+ successMessage: "\u5DF2\u514B\u9686\u89D2\u8272"
5236
+ }
4777
5237
  }
4778
5238
  },
4779
5239
  sys_permission_set: {
@@ -4799,6 +5259,18 @@ var zhCNObjects = {
4799
5259
  label: "\u5B57\u6BB5\u6743\u9650",
4800
5260
  help: "\u5B57\u6BB5\u7EA7\u8BFB\u5199\u6743\u9650\u7684 JSON \u5E8F\u5217\u5316\u5185\u5BB9"
4801
5261
  },
5262
+ system_permissions: {
5263
+ label: "System Permissions",
5264
+ help: 'JSON-serialized array of system capability names (e.g. ["setup.access","studio.access","manage_users"])'
5265
+ },
5266
+ row_level_security: {
5267
+ label: "Row-Level Security",
5268
+ help: "JSON-serialized array of row-level security policies (USING/CHECK clauses)"
5269
+ },
5270
+ tab_permissions: {
5271
+ label: "Tab Permissions",
5272
+ help: "JSON-serialized map of app tab visibility (visible | hidden | default_on | default_off)"
5273
+ },
4802
5274
  active: {
4803
5275
  label: "\u542F\u7528"
4804
5276
  },
@@ -4822,6 +5294,21 @@ var zhCNObjects = {
4822
5294
  all_permsets: {
4823
5295
  label: "\u5168\u90E8"
4824
5296
  }
5297
+ },
5298
+ _actions: {
5299
+ activate_permission_set: {
5300
+ label: "\u6FC0\u6D3B",
5301
+ successMessage: "\u6743\u9650\u96C6\u5DF2\u6FC0\u6D3B"
5302
+ },
5303
+ deactivate_permission_set: {
5304
+ label: "\u505C\u7528",
5305
+ confirmText: "Deactivate this permission set? Existing assignments stay in place but stop granting access until re-activated.",
5306
+ successMessage: "\u6743\u9650\u96C6\u5DF2\u505C\u7528"
5307
+ },
5308
+ clone_permission_set: {
5309
+ label: "\u514B\u9686",
5310
+ successMessage: "\u5DF2\u514B\u9686\u6743\u9650\u96C6"
5311
+ }
4825
5312
  }
4826
5313
  },
4827
5314
  sys_user_permission_set: {
@@ -5446,6 +5933,16 @@ var zhCNObjects = {
5446
5933
  all_notifications: {
5447
5934
  label: "\u5168\u90E8"
5448
5935
  }
5936
+ },
5937
+ _actions: {
5938
+ mark_read: {
5939
+ label: "\u6807\u8BB0\u4E3A\u5DF2\u8BFB",
5940
+ successMessage: "\u5DF2\u6807\u8BB0\u4E3A\u5DF2\u8BFB"
5941
+ },
5942
+ mark_unread: {
5943
+ label: "\u6807\u8BB0\u4E3A\u672A\u8BFB",
5944
+ successMessage: "\u5DF2\u6807\u8BB0\u4E3A\u672A\u8BFB"
5945
+ }
5449
5946
  }
5450
5947
  },
5451
5948
  sys_email: {
@@ -5827,6 +6324,10 @@ var zhCNObjects = {
5827
6324
  label: "\u5FEB\u7167",
5828
6325
  help: "\u63D0\u4EA4\u65F6\u7684\u8BB0\u5F55\u5FEB\u7167"
5829
6326
  },
6327
+ process_hash: {
6328
+ label: "Process Hash",
6329
+ 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."
6330
+ },
5830
6331
  completed_at: {
5831
6332
  label: "\u5B8C\u6210\u65F6\u95F4"
5832
6333
  },
@@ -5839,11 +6340,7 @@ var zhCNObjects = {
5839
6340
  },
5840
6341
  _views: {
5841
6342
  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
- }
6343
+ label: "\u6211\u7684\u5F85\u529E"
5847
6344
  },
5848
6345
  submitted_by_me: {
5849
6346
  label: "\u6211\u63D0\u4EA4\u7684"
@@ -6273,6 +6770,17 @@ var zhCNObjects = {
6273
6770
  updated_at: {
6274
6771
  label: "\u66F4\u65B0\u65F6\u95F4"
6275
6772
  }
6773
+ },
6774
+ _views: {
6775
+ only_objects: {
6776
+ label: "Objects"
6777
+ },
6778
+ only_fields: {
6779
+ label: "Fields"
6780
+ },
6781
+ all_metadata: {
6782
+ label: "All"
6783
+ }
6276
6784
  }
6277
6785
  },
6278
6786
  sys_metadata_history: {
@@ -6283,6 +6791,10 @@ var zhCNObjects = {
6283
6791
  id: {
6284
6792
  label: "ID"
6285
6793
  },
6794
+ event_seq: {
6795
+ label: "Event Seq",
6796
+ help: "Per-organization monotonic event log cursor."
6797
+ },
6286
6798
  name: {
6287
6799
  label: "\u540D\u79F0"
6288
6800
  },
@@ -6316,14 +6828,13 @@ var zhCNObjects = {
6316
6828
  label: "\u53D8\u66F4\u8BF4\u660E",
6317
6829
  help: "\u5BF9\u8BE5\u7248\u672C\u53D8\u66F4\u5185\u5BB9\u7684\u8BF4\u660E"
6318
6830
  },
6831
+ source: {
6832
+ label: "Source"
6833
+ },
6319
6834
  organization_id: {
6320
6835
  label: "\u7EC4\u7EC7",
6321
6836
  help: "\u7528\u4E8E\u591A\u79DF\u6237\u9694\u79BB\u7684\u7EC4\u7EC7\u3002"
6322
6837
  },
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
6838
  recorded_by: {
6328
6839
  label: "\u8BB0\u5F55\u4EBA"
6329
6840
  },
@@ -6532,6 +7043,25 @@ var zhCNObjects = {
6532
7043
  var zhCN = {
6533
7044
  objects: zhCNObjects,
6534
7045
  apps: {
7046
+ account: {
7047
+ label: "\u8D26\u6237",
7048
+ description: "\u4E2A\u4EBA\u5B89\u5168\u4E0E\u8EAB\u4EFD\u8BBE\u7F6E",
7049
+ navigation: {
7050
+ grp_account_inbox: { label: "\u6536\u4EF6\u7BB1" },
7051
+ grp_account_security: { label: "\u5B89\u5168" },
7052
+ grp_account_developer: { label: "\u5F00\u53D1\u8005" },
7053
+ nav_account_profile: { label: "\u4E2A\u4EBA\u8D44\u6599" },
7054
+ nav_account_notifications: { label: "\u901A\u77E5" },
7055
+ nav_account_approvals: { label: "\u5F85\u6211\u5BA1\u6279" },
7056
+ nav_account_memberships: { label: "\u6211\u7684\u7EC4\u7EC7" },
7057
+ nav_account_two_factor: { label: "\u53CC\u91CD\u8BA4\u8BC1" },
7058
+ nav_account_linked: { label: "\u5DF2\u5173\u8054\u8D26\u6237" },
7059
+ nav_account_sessions: { label: "\u6D3B\u52A8\u4F1A\u8BDD" },
7060
+ nav_account_api_keys: { label: "API \u5BC6\u94A5" },
7061
+ nav_account_oauth_apps: { label: "OAuth \u5E94\u7528" },
7062
+ nav_account_preferences: { label: "\u504F\u597D\u8BBE\u7F6E" }
7063
+ }
7064
+ },
6535
7065
  setup: {
6536
7066
  label: "\u7CFB\u7EDF\u8BBE\u7F6E",
6537
7067
  description: "\u5E73\u53F0\u8BBE\u7F6E\u4E0E\u7BA1\u7406",
@@ -6576,6 +7106,40 @@ var zhCN = {
6576
7106
  nav_user_preferences: { label: "\u7528\u6237\u504F\u597D" },
6577
7107
  nav_metadata: { label: "\u5168\u90E8\u5143\u6570\u636E" }
6578
7108
  }
7109
+ },
7110
+ studio: {
7111
+ label: "Studio",
7112
+ description: "\u9762\u5411\u5F00\u53D1\u8005\u3001\u5206\u6790\u5E08\u4E0E\u5B9E\u65BD\u8005\u7684\u5143\u6570\u636E\u5DE5\u4F5C\u53F0",
7113
+ navigation: {
7114
+ group_overview: { label: "\u603B\u89C8" },
7115
+ nav_metadata_directory: { label: "\u5168\u90E8\u5143\u6570\u636E\u7C7B\u578B" },
7116
+ group_data_model: { label: "\u6570\u636E\u6A21\u578B" },
7117
+ nav_objects: { label: "\u5BF9\u8C61" },
7118
+ nav_validations: { label: "\u6821\u9A8C\u89C4\u5219" },
7119
+ group_ux: { label: "\u7528\u6237\u4F53\u9A8C" },
7120
+ nav_apps: { label: "\u5E94\u7528" },
7121
+ nav_views: { label: "\u89C6\u56FE" },
7122
+ nav_pages: { label: "\u9875\u9762" },
7123
+ nav_dashboards: { label: "\u4EEA\u8868\u76D8" },
7124
+ nav_reports: { label: "\u62A5\u8868" },
7125
+ group_logic: { label: "\u903B\u8F91" },
7126
+ nav_actions: { label: "\u52A8\u4F5C" },
7127
+ nav_hooks: { label: "\u94A9\u5B50" },
7128
+ group_automation: { label: "\u81EA\u52A8\u5316" },
7129
+ nav_flows: { label: "\u6D41\u7A0B" },
7130
+ nav_workflows: { label: "\u5DE5\u4F5C\u6D41\u89C4\u5219" },
7131
+ nav_approvals: { label: "\u5BA1\u6279\u6D41\u7A0B" },
7132
+ group_ai: { label: "AI" },
7133
+ nav_agents: { label: "\u667A\u80FD\u4F53" },
7134
+ nav_tools: { label: "\u5DE5\u5177" },
7135
+ nav_skills: { label: "\u6280\u80FD" },
7136
+ group_developer: { label: "\u5F00\u53D1\u8005" },
7137
+ nav_api_console: { label: "API \u63A7\u5236\u53F0" },
7138
+ nav_flow_runs: { label: "\u6D41\u7A0B\u8FD0\u884C\u8BB0\u5F55" },
7139
+ nav_public_forms: { label: "\u516C\u5F00\u8868\u5355" },
7140
+ group_integration: { label: "\u96C6\u6210" },
7141
+ nav_email_templates: { label: "\u90AE\u4EF6\u6A21\u677F" }
7142
+ }
6579
7143
  }
6580
7144
  },
6581
7145
  dashboards: {
@@ -6686,6 +7250,23 @@ var jaJPObjects = {
6686
7250
  label: "\u4EE3\u7406\u30ED\u30B0\u30A4\u30F3",
6687
7251
  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
7252
  successMessage: "\u4EE3\u7406\u30ED\u30B0\u30A4\u30F3\u4E2D"
7253
+ },
7254
+ update_my_profile: {
7255
+ label: "\u30D7\u30ED\u30D5\u30A3\u30FC\u30EB\u66F4\u65B0",
7256
+ successMessage: "\u30D7\u30ED\u30D5\u30A3\u30FC\u30EB\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F"
7257
+ },
7258
+ change_my_password: {
7259
+ label: "\u30D1\u30B9\u30EF\u30FC\u30C9\u5909\u66F4",
7260
+ successMessage: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u5909\u66F4\u3057\u307E\u3057\u305F"
7261
+ },
7262
+ change_my_email: {
7263
+ label: "\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9\u5909\u66F4",
7264
+ 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"
7265
+ },
7266
+ delete_my_account: {
7267
+ label: "\u30A2\u30AB\u30A6\u30F3\u30C8\u524A\u9664",
7268
+ 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.",
7269
+ successMessage: "\u30A2\u30AB\u30A6\u30F3\u30C8\u3092\u524A\u9664\u3057\u307E\u3057\u305F"
6689
7270
  }
6690
7271
  }
6691
7272
  },
@@ -6810,6 +7391,16 @@ var jaJPObjects = {
6810
7391
  all_links: {
6811
7392
  label: "\u3059\u3079\u3066"
6812
7393
  }
7394
+ },
7395
+ _actions: {
7396
+ link_social: {
7397
+ label: "\u30BD\u30FC\u30B7\u30E3\u30EB\u30A2\u30AB\u30A6\u30F3\u30C8\u9023\u643A"
7398
+ },
7399
+ unlink_account: {
7400
+ label: "\u9023\u643A\u89E3\u9664",
7401
+ 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.",
7402
+ successMessage: "\u30A2\u30A4\u30C7\u30F3\u30C6\u30A3\u30C6\u30A3\u9023\u643A\u3092\u89E3\u9664\u3057\u307E\u3057\u305F"
7403
+ }
6813
7404
  }
6814
7405
  },
6815
7406
  sys_verification: {
@@ -6938,6 +7529,11 @@ var jaJPObjects = {
6938
7529
  label: "\u30E1\u30F3\u30D0\u30FC\u3092\u524A\u9664",
6939
7530
  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
7531
  successMessage: "\u30E1\u30F3\u30D0\u30FC\u3092\u524A\u9664\u3057\u307E\u3057\u305F"
7532
+ },
7533
+ transfer_ownership: {
7534
+ label: "\u6240\u6709\u6A29\u306E\u79FB\u8B72",
7535
+ confirmText: "Transfer ownership of this organization to the selected member? You will be demoted to admin and lose owner-only privileges.",
7536
+ successMessage: "\u6240\u6709\u6A29\u3092\u79FB\u8B72\u3057\u307E\u3057\u305F"
6941
7537
  }
6942
7538
  }
6943
7539
  },
@@ -7017,6 +7613,15 @@ var jaJPObjects = {
7017
7613
  resend_invitation: {
7018
7614
  label: "\u62DB\u5F85\u3092\u518D\u9001",
7019
7615
  successMessage: "\u62DB\u5F85\u3092\u518D\u9001\u3057\u307E\u3057\u305F"
7616
+ },
7617
+ accept_invitation: {
7618
+ label: "\u62DB\u5F85\u3092\u53D7\u8AFE",
7619
+ successMessage: "\u62DB\u5F85\u3092\u53D7\u8AFE\u3057\u307E\u3057\u305F"
7620
+ },
7621
+ reject_invitation: {
7622
+ label: "\u62DB\u5F85\u3092\u8F9E\u9000",
7623
+ confirmText: "Decline this invitation? The inviter will be notified and you will need a new invitation to join.",
7624
+ successMessage: "\u62DB\u5F85\u3092\u8F9E\u9000\u3057\u307E\u3057\u305F"
7020
7625
  }
7021
7626
  }
7022
7627
  },
@@ -7322,13 +7927,16 @@ var jaJPObjects = {
7322
7927
  },
7323
7928
  _actions: {
7324
7929
  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"
7930
+ label: "2FA \u3092\u6709\u52B9\u5316"
7327
7931
  },
7328
7932
  disable_two_factor: {
7329
7933
  label: "2FA \u3092\u7121\u52B9\u5316",
7330
7934
  confirmText: "\u30A2\u30AB\u30A6\u30F3\u30C8\u306E\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u7121\u52B9\u5316\u3057\u307E\u3059\u304B\uFF1F",
7331
7935
  successMessage: "2FA \u3092\u7121\u52B9\u5316\u3057\u307E\u3057\u305F"
7936
+ },
7937
+ regenerate_backup_codes: {
7938
+ label: "\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u518D\u751F\u6210",
7939
+ confirmText: "Regenerate backup codes? All previous backup codes will stop working immediately."
7332
7940
  }
7333
7941
  }
7334
7942
  },
@@ -7554,6 +8162,30 @@ var jaJPObjects = {
7554
8162
  all_apps: {
7555
8163
  label: "\u3059\u3079\u3066"
7556
8164
  }
8165
+ },
8166
+ _actions: {
8167
+ disable_oauth_application: {
8168
+ label: "Disable OAuth Application",
8169
+ 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.",
8170
+ successMessage: "OAuth application disabled"
8171
+ },
8172
+ enable_oauth_application: {
8173
+ label: "Enable OAuth Application",
8174
+ confirmText: "Re-enable this OAuth application? Token issuance, authorization, and introspection will resume immediately.",
8175
+ successMessage: "OAuth application enabled"
8176
+ },
8177
+ create_oauth_application: {
8178
+ label: "Register OAuth Application"
8179
+ },
8180
+ rotate_client_secret: {
8181
+ label: "\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8\u30B7\u30FC\u30AF\u30EC\u30C3\u30C8\u66F4\u65B0",
8182
+ 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."
8183
+ },
8184
+ delete_oauth_application: {
8185
+ label: "Delete OAuth Application",
8186
+ 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.",
8187
+ successMessage: "OAuth application deleted"
8188
+ }
7557
8189
  }
7558
8190
  },
7559
8191
  sys_oauth_access_token: {
@@ -7755,6 +8387,26 @@ var jaJPObjects = {
7755
8387
  all_roles: {
7756
8388
  label: "\u3059\u3079\u3066"
7757
8389
  }
8390
+ },
8391
+ _actions: {
8392
+ activate_role: {
8393
+ label: "\u30ED\u30FC\u30EB\u3092\u6709\u52B9\u5316",
8394
+ successMessage: "\u30ED\u30FC\u30EB\u304C\u6709\u52B9\u5316\u3055\u308C\u307E\u3057\u305F"
8395
+ },
8396
+ deactivate_role: {
8397
+ label: "\u30ED\u30FC\u30EB\u3092\u7121\u52B9\u5316",
8398
+ confirmText: "Deactivate this role? Users with the role keep their assignment but the role stops granting permissions until re-activated.",
8399
+ successMessage: "\u30ED\u30FC\u30EB\u304C\u7121\u52B9\u5316\u3055\u308C\u307E\u3057\u305F"
8400
+ },
8401
+ set_default_role: {
8402
+ label: "\u30C7\u30D5\u30A9\u30EB\u30C8\u306B\u8A2D\u5B9A",
8403
+ confirmText: "Make this the default role for new users? Existing users are unaffected.",
8404
+ successMessage: "\u30C7\u30D5\u30A9\u30EB\u30C8\u30ED\u30FC\u30EB\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F"
8405
+ },
8406
+ clone_role: {
8407
+ label: "\u30ED\u30FC\u30EB\u3092\u8907\u88FD",
8408
+ successMessage: "\u30ED\u30FC\u30EB\u3092\u8907\u88FD\u3057\u307E\u3057\u305F"
8409
+ }
7758
8410
  }
7759
8411
  },
7760
8412
  sys_permission_set: {
@@ -7780,6 +8432,18 @@ var jaJPObjects = {
7780
8432
  label: "\u30D5\u30A3\u30FC\u30EB\u30C9\u6A29\u9650",
7781
8433
  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
8434
  },
8435
+ system_permissions: {
8436
+ label: "System Permissions",
8437
+ help: 'JSON-serialized array of system capability names (e.g. ["setup.access","studio.access","manage_users"])'
8438
+ },
8439
+ row_level_security: {
8440
+ label: "Row-Level Security",
8441
+ help: "JSON-serialized array of row-level security policies (USING/CHECK clauses)"
8442
+ },
8443
+ tab_permissions: {
8444
+ label: "Tab Permissions",
8445
+ help: "JSON-serialized map of app tab visibility (visible | hidden | default_on | default_off)"
8446
+ },
7783
8447
  active: {
7784
8448
  label: "\u6709\u52B9"
7785
8449
  },
@@ -7803,6 +8467,21 @@ var jaJPObjects = {
7803
8467
  all_permsets: {
7804
8468
  label: "\u3059\u3079\u3066"
7805
8469
  }
8470
+ },
8471
+ _actions: {
8472
+ activate_permission_set: {
8473
+ label: "\u6709\u52B9\u5316",
8474
+ successMessage: "\u6A29\u9650\u30BB\u30C3\u30C8\u304C\u6709\u52B9\u5316\u3055\u308C\u307E\u3057\u305F"
8475
+ },
8476
+ deactivate_permission_set: {
8477
+ label: "\u7121\u52B9\u5316",
8478
+ confirmText: "Deactivate this permission set? Existing assignments stay in place but stop granting access until re-activated.",
8479
+ successMessage: "\u6A29\u9650\u30BB\u30C3\u30C8\u304C\u7121\u52B9\u5316\u3055\u308C\u307E\u3057\u305F"
8480
+ },
8481
+ clone_permission_set: {
8482
+ label: "\u8907\u88FD",
8483
+ successMessage: "\u6A29\u9650\u30BB\u30C3\u30C8\u3092\u8907\u88FD\u3057\u307E\u3057\u305F"
8484
+ }
7806
8485
  }
7807
8486
  },
7808
8487
  sys_user_permission_set: {
@@ -8427,6 +9106,16 @@ var jaJPObjects = {
8427
9106
  all_notifications: {
8428
9107
  label: "\u3059\u3079\u3066"
8429
9108
  }
9109
+ },
9110
+ _actions: {
9111
+ mark_read: {
9112
+ label: "\u65E2\u8AAD\u306B\u3059\u308B",
9113
+ successMessage: "\u901A\u77E5\u3092\u65E2\u8AAD\u306B\u3057\u307E\u3057\u305F"
9114
+ },
9115
+ mark_unread: {
9116
+ label: "\u672A\u8AAD\u306B\u3059\u308B",
9117
+ successMessage: "\u901A\u77E5\u3092\u672A\u8AAD\u306B\u3057\u307E\u3057\u305F"
9118
+ }
8430
9119
  }
8431
9120
  },
8432
9121
  sys_email: {
@@ -8808,6 +9497,10 @@ var jaJPObjects = {
8808
9497
  label: "\u30B9\u30CA\u30C3\u30D7\u30B7\u30E7\u30C3\u30C8",
8809
9498
  help: "\u9001\u4FE1\u6642\u306E\u30EC\u30B3\u30FC\u30C9\u30B9\u30CA\u30C3\u30D7\u30B7\u30E7\u30C3\u30C8"
8810
9499
  },
9500
+ process_hash: {
9501
+ label: "Process Hash",
9502
+ 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."
9503
+ },
8811
9504
  completed_at: {
8812
9505
  label: "\u5B8C\u4E86\u65E5\u6642"
8813
9506
  },
@@ -9250,6 +9943,17 @@ var jaJPObjects = {
9250
9943
  updated_at: {
9251
9944
  label: "\u66F4\u65B0\u65E5\u6642"
9252
9945
  }
9946
+ },
9947
+ _views: {
9948
+ only_objects: {
9949
+ label: "Objects"
9950
+ },
9951
+ only_fields: {
9952
+ label: "Fields"
9953
+ },
9954
+ all_metadata: {
9955
+ label: "All"
9956
+ }
9253
9957
  }
9254
9958
  },
9255
9959
  sys_metadata_history: {
@@ -9260,6 +9964,10 @@ var jaJPObjects = {
9260
9964
  id: {
9261
9965
  label: "ID"
9262
9966
  },
9967
+ event_seq: {
9968
+ label: "Event Seq",
9969
+ help: "Per-organization monotonic event log cursor."
9970
+ },
9263
9971
  name: {
9264
9972
  label: "\u540D\u524D"
9265
9973
  },
@@ -9293,14 +10001,13 @@ var jaJPObjects = {
9293
10001
  label: "\u5909\u66F4\u30E1\u30E2",
9294
10002
  help: "\u3053\u306E\u30D0\u30FC\u30B8\u30E7\u30F3\u3067\u5909\u66F4\u3055\u308C\u305F\u5185\u5BB9\u306E\u8AAC\u660E"
9295
10003
  },
10004
+ source: {
10005
+ label: "Source"
10006
+ },
9296
10007
  organization_id: {
9297
10008
  label: "\u7D44\u7E54",
9298
10009
  help: "\u30DE\u30EB\u30C1\u30C6\u30CA\u30F3\u30C8\u5206\u96E2\u306E\u305F\u3081\u306E\u7D44\u7E54\u3002"
9299
10010
  },
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
10011
  recorded_by: {
9305
10012
  label: "\u8A18\u9332\u8005"
9306
10013
  },
@@ -9509,6 +10216,25 @@ var jaJPObjects = {
9509
10216
  var jaJP = {
9510
10217
  objects: jaJPObjects,
9511
10218
  apps: {
10219
+ account: {
10220
+ label: "\u30A2\u30AB\u30A6\u30F3\u30C8",
10221
+ description: "\u500B\u4EBA\u306E\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u3068\u30A2\u30A4\u30C7\u30F3\u30C6\u30A3\u30C6\u30A3\u8A2D\u5B9A",
10222
+ navigation: {
10223
+ grp_account_inbox: { label: "\u53D7\u4FE1\u7BB1" },
10224
+ grp_account_security: { label: "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3" },
10225
+ grp_account_developer: { label: "\u958B\u767A\u8005" },
10226
+ nav_account_profile: { label: "\u30D7\u30ED\u30D5\u30A3\u30FC\u30EB" },
10227
+ nav_account_notifications: { label: "\u901A\u77E5" },
10228
+ nav_account_approvals: { label: "\u627F\u8A8D\u5F85\u3061" },
10229
+ nav_account_memberships: { label: "\u6240\u5C5E\u7D44\u7E54" },
10230
+ nav_account_two_factor: { label: "\u4E8C\u8981\u7D20\u8A8D\u8A3C" },
10231
+ nav_account_linked: { label: "\u9023\u643A\u30A2\u30AB\u30A6\u30F3\u30C8" },
10232
+ nav_account_sessions: { label: "\u30A2\u30AF\u30C6\u30A3\u30D6\u30BB\u30C3\u30B7\u30E7\u30F3" },
10233
+ nav_account_api_keys: { label: "API \u30AD\u30FC" },
10234
+ nav_account_oauth_apps: { label: "OAuth \u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3" },
10235
+ nav_account_preferences: { label: "\u74B0\u5883\u8A2D\u5B9A" }
10236
+ }
10237
+ },
9512
10238
  setup: {
9513
10239
  label: "\u30BB\u30C3\u30C8\u30A2\u30C3\u30D7",
9514
10240
  description: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u8A2D\u5B9A\u3068\u7BA1\u7406",
@@ -9553,6 +10279,40 @@ var jaJP = {
9553
10279
  nav_user_preferences: { label: "\u30E6\u30FC\u30B6\u30FC\u8A2D\u5B9A" },
9554
10280
  nav_metadata: { label: "\u3059\u3079\u3066\u306E\u30E1\u30BF\u30C7\u30FC\u30BF" }
9555
10281
  }
10282
+ },
10283
+ studio: {
10284
+ label: "Studio",
10285
+ 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",
10286
+ navigation: {
10287
+ group_overview: { label: "\u6982\u8981" },
10288
+ nav_metadata_directory: { label: "\u3059\u3079\u3066\u306E\u30E1\u30BF\u30C7\u30FC\u30BF\u30BF\u30A4\u30D7" },
10289
+ group_data_model: { label: "\u30C7\u30FC\u30BF\u30E2\u30C7\u30EB" },
10290
+ nav_objects: { label: "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8" },
10291
+ nav_validations: { label: "\u30D0\u30EA\u30C7\u30FC\u30B7\u30E7\u30F3" },
10292
+ group_ux: { label: "\u30E6\u30FC\u30B6\u30FC\u4F53\u9A13" },
10293
+ nav_apps: { label: "\u30A2\u30D7\u30EA" },
10294
+ nav_views: { label: "\u30D3\u30E5\u30FC" },
10295
+ nav_pages: { label: "\u30DA\u30FC\u30B8" },
10296
+ nav_dashboards: { label: "\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9" },
10297
+ nav_reports: { label: "\u30EC\u30DD\u30FC\u30C8" },
10298
+ group_logic: { label: "\u30ED\u30B8\u30C3\u30AF" },
10299
+ nav_actions: { label: "\u30A2\u30AF\u30B7\u30E7\u30F3" },
10300
+ nav_hooks: { label: "\u30D5\u30C3\u30AF" },
10301
+ group_automation: { label: "\u81EA\u52D5\u5316" },
10302
+ nav_flows: { label: "\u30D5\u30ED\u30FC" },
10303
+ nav_workflows: { label: "\u30EF\u30FC\u30AF\u30D5\u30ED\u30FC\u30EB\u30FC\u30EB" },
10304
+ nav_approvals: { label: "\u627F\u8A8D\u30D7\u30ED\u30BB\u30B9" },
10305
+ group_ai: { label: "AI" },
10306
+ nav_agents: { label: "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8" },
10307
+ nav_tools: { label: "\u30C4\u30FC\u30EB" },
10308
+ nav_skills: { label: "\u30B9\u30AD\u30EB" },
10309
+ group_developer: { label: "\u958B\u767A\u8005" },
10310
+ nav_api_console: { label: "API \u30B3\u30F3\u30BD\u30FC\u30EB" },
10311
+ nav_flow_runs: { label: "\u30D5\u30ED\u30FC\u5B9F\u884C\u5C65\u6B74" },
10312
+ nav_public_forms: { label: "\u516C\u958B\u30D5\u30A9\u30FC\u30E0" },
10313
+ group_integration: { label: "\u9023\u643A" },
10314
+ nav_email_templates: { label: "\u30E1\u30FC\u30EB\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8" }
10315
+ }
9556
10316
  }
9557
10317
  },
9558
10318
  dashboards: {
@@ -9663,6 +10423,23 @@ var esESObjects = {
9663
10423
  label: "Suplantar usuario",
9664
10424
  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
10425
  successMessage: "Ahora est\xE1 suplantando al usuario"
10426
+ },
10427
+ update_my_profile: {
10428
+ label: "Actualizar perfil",
10429
+ successMessage: "Perfil actualizado"
10430
+ },
10431
+ change_my_password: {
10432
+ label: "Cambiar contrase\xF1a",
10433
+ successMessage: "Contrase\xF1a cambiada"
10434
+ },
10435
+ change_my_email: {
10436
+ label: "Cambiar correo",
10437
+ successMessage: "Correo de verificaci\xF3n enviado; revisa la nueva direcci\xF3n para confirmar."
10438
+ },
10439
+ delete_my_account: {
10440
+ label: "Eliminar mi cuenta",
10441
+ 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.",
10442
+ successMessage: "Cuenta eliminada"
9666
10443
  }
9667
10444
  }
9668
10445
  },
@@ -9787,6 +10564,16 @@ var esESObjects = {
9787
10564
  all_links: {
9788
10565
  label: "Todos"
9789
10566
  }
10567
+ },
10568
+ _actions: {
10569
+ link_social: {
10570
+ label: "Vincular cuenta social"
10571
+ },
10572
+ unlink_account: {
10573
+ label: "Desvincular cuenta",
10574
+ 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.",
10575
+ successMessage: "V\xEDnculo de identidad eliminado"
10576
+ }
9790
10577
  }
9791
10578
  },
9792
10579
  sys_verification: {
@@ -9915,6 +10702,11 @@ var esESObjects = {
9915
10702
  label: "Eliminar miembro",
9916
10703
  confirmText: "\xBFEliminar a este miembro de la organizaci\xF3n? Perder\xE1 el acceso a todos los recursos de la organizaci\xF3n.",
9917
10704
  successMessage: "Miembro eliminado"
10705
+ },
10706
+ transfer_ownership: {
10707
+ label: "Transferir propiedad",
10708
+ confirmText: "Transfer ownership of this organization to the selected member? You will be demoted to admin and lose owner-only privileges.",
10709
+ successMessage: "Propiedad transferida"
9918
10710
  }
9919
10711
  }
9920
10712
  },
@@ -9994,6 +10786,15 @@ var esESObjects = {
9994
10786
  resend_invitation: {
9995
10787
  label: "Reenviar invitaci\xF3n",
9996
10788
  successMessage: "Invitaci\xF3n reenviada"
10789
+ },
10790
+ accept_invitation: {
10791
+ label: "Aceptar invitaci\xF3n",
10792
+ successMessage: "Invitaci\xF3n aceptada"
10793
+ },
10794
+ reject_invitation: {
10795
+ label: "Rechazar invitaci\xF3n",
10796
+ confirmText: "Decline this invitation? The inviter will be notified and you will need a new invitation to join.",
10797
+ successMessage: "Invitaci\xF3n rechazada"
9997
10798
  }
9998
10799
  }
9999
10800
  },
@@ -10299,13 +11100,16 @@ var esESObjects = {
10299
11100
  },
10300
11101
  _actions: {
10301
11102
  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."
11103
+ label: "Habilitar 2FA"
10304
11104
  },
10305
11105
  disable_two_factor: {
10306
11106
  label: "Deshabilitar 2FA",
10307
11107
  confirmText: "\xBFDeshabilitar la autenticaci\xF3n de doble factor en su cuenta?",
10308
11108
  successMessage: "2FA deshabilitado"
11109
+ },
11110
+ regenerate_backup_codes: {
11111
+ label: "Regenerar c\xF3digos de respaldo",
11112
+ confirmText: "Regenerate backup codes? All previous backup codes will stop working immediately."
10309
11113
  }
10310
11114
  }
10311
11115
  },
@@ -10531,6 +11335,30 @@ var esESObjects = {
10531
11335
  all_apps: {
10532
11336
  label: "Todas"
10533
11337
  }
11338
+ },
11339
+ _actions: {
11340
+ disable_oauth_application: {
11341
+ label: "Disable OAuth Application",
11342
+ 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.",
11343
+ successMessage: "OAuth application disabled"
11344
+ },
11345
+ enable_oauth_application: {
11346
+ label: "Enable OAuth Application",
11347
+ confirmText: "Re-enable this OAuth application? Token issuance, authorization, and introspection will resume immediately.",
11348
+ successMessage: "OAuth application enabled"
11349
+ },
11350
+ create_oauth_application: {
11351
+ label: "Register OAuth Application"
11352
+ },
11353
+ rotate_client_secret: {
11354
+ label: "Rotar Client Secret",
11355
+ 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."
11356
+ },
11357
+ delete_oauth_application: {
11358
+ label: "Delete OAuth Application",
11359
+ 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.",
11360
+ successMessage: "OAuth application deleted"
11361
+ }
10534
11362
  }
10535
11363
  },
10536
11364
  sys_oauth_access_token: {
@@ -10732,6 +11560,26 @@ var esESObjects = {
10732
11560
  all_roles: {
10733
11561
  label: "Todos"
10734
11562
  }
11563
+ },
11564
+ _actions: {
11565
+ activate_role: {
11566
+ label: "Activar rol",
11567
+ successMessage: "Rol activado"
11568
+ },
11569
+ deactivate_role: {
11570
+ label: "Desactivar rol",
11571
+ confirmText: "Deactivate this role? Users with the role keep their assignment but the role stops granting permissions until re-activated.",
11572
+ successMessage: "Rol desactivado"
11573
+ },
11574
+ set_default_role: {
11575
+ label: "Establecer como predeterminado",
11576
+ confirmText: "Make this the default role for new users? Existing users are unaffected.",
11577
+ successMessage: "Rol predeterminado actualizado"
11578
+ },
11579
+ clone_role: {
11580
+ label: "Clonar rol",
11581
+ successMessage: "Rol clonado"
11582
+ }
10735
11583
  }
10736
11584
  },
10737
11585
  sys_permission_set: {
@@ -10757,6 +11605,18 @@ var esESObjects = {
10757
11605
  label: "Permisos de campo",
10758
11606
  help: "Permisos de lectura/escritura a nivel de campo serializados en JSON."
10759
11607
  },
11608
+ system_permissions: {
11609
+ label: "System Permissions",
11610
+ help: 'JSON-serialized array of system capability names (e.g. ["setup.access","studio.access","manage_users"])'
11611
+ },
11612
+ row_level_security: {
11613
+ label: "Row-Level Security",
11614
+ help: "JSON-serialized array of row-level security policies (USING/CHECK clauses)"
11615
+ },
11616
+ tab_permissions: {
11617
+ label: "Tab Permissions",
11618
+ help: "JSON-serialized map of app tab visibility (visible | hidden | default_on | default_off)"
11619
+ },
10760
11620
  active: {
10761
11621
  label: "Activo"
10762
11622
  },
@@ -10780,6 +11640,21 @@ var esESObjects = {
10780
11640
  all_permsets: {
10781
11641
  label: "Todos"
10782
11642
  }
11643
+ },
11644
+ _actions: {
11645
+ activate_permission_set: {
11646
+ label: "Activar",
11647
+ successMessage: "Conjunto de permisos activado"
11648
+ },
11649
+ deactivate_permission_set: {
11650
+ label: "Desactivar",
11651
+ confirmText: "Deactivate this permission set? Existing assignments stay in place but stop granting access until re-activated.",
11652
+ successMessage: "Conjunto de permisos desactivado"
11653
+ },
11654
+ clone_permission_set: {
11655
+ label: "Clonar",
11656
+ successMessage: "Conjunto de permisos clonado"
11657
+ }
10783
11658
  }
10784
11659
  },
10785
11660
  sys_user_permission_set: {
@@ -11404,6 +12279,16 @@ var esESObjects = {
11404
12279
  all_notifications: {
11405
12280
  label: "Todas"
11406
12281
  }
12282
+ },
12283
+ _actions: {
12284
+ mark_read: {
12285
+ label: "Marcar como le\xEDdo",
12286
+ successMessage: "Notificaci\xF3n marcada como le\xEDda"
12287
+ },
12288
+ mark_unread: {
12289
+ label: "Marcar como no le\xEDdo",
12290
+ successMessage: "Notificaci\xF3n marcada como no le\xEDda"
12291
+ }
11407
12292
  }
11408
12293
  },
11409
12294
  sys_email: {
@@ -11785,6 +12670,10 @@ var esESObjects = {
11785
12670
  label: "Instant\xE1nea",
11786
12671
  help: "Instant\xE1nea del registro en el momento del env\xEDo."
11787
12672
  },
12673
+ process_hash: {
12674
+ label: "Process Hash",
12675
+ 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."
12676
+ },
11788
12677
  completed_at: {
11789
12678
  label: "Completado el"
11790
12679
  },
@@ -12227,6 +13116,17 @@ var esESObjects = {
12227
13116
  updated_at: {
12228
13117
  label: "Actualizado el"
12229
13118
  }
13119
+ },
13120
+ _views: {
13121
+ only_objects: {
13122
+ label: "Objects"
13123
+ },
13124
+ only_fields: {
13125
+ label: "Fields"
13126
+ },
13127
+ all_metadata: {
13128
+ label: "All"
13129
+ }
12230
13130
  }
12231
13131
  },
12232
13132
  sys_metadata_history: {
@@ -12237,6 +13137,10 @@ var esESObjects = {
12237
13137
  id: {
12238
13138
  label: "ID"
12239
13139
  },
13140
+ event_seq: {
13141
+ label: "Event Seq",
13142
+ help: "Per-organization monotonic event log cursor."
13143
+ },
12240
13144
  name: {
12241
13145
  label: "Nombre"
12242
13146
  },
@@ -12270,14 +13174,13 @@ var esESObjects = {
12270
13174
  label: "Nota de cambio",
12271
13175
  help: "Descripci\xF3n de lo que cambi\xF3 en esta versi\xF3n."
12272
13176
  },
13177
+ source: {
13178
+ label: "Source"
13179
+ },
12273
13180
  organization_id: {
12274
13181
  label: "Organizaci\xF3n",
12275
13182
  help: "Organizaci\xF3n para el aislamiento multi-tenant."
12276
13183
  },
12277
- environment_id: {
12278
- label: "ID del entorno",
12279
- help: "Limita esta entrada de historial a un entorno espec\xEDfico."
12280
- },
12281
13184
  recorded_by: {
12282
13185
  label: "Registrado por"
12283
13186
  },
@@ -12486,6 +13389,25 @@ var esESObjects = {
12486
13389
  var esES = {
12487
13390
  objects: esESObjects,
12488
13391
  apps: {
13392
+ account: {
13393
+ label: "Cuenta",
13394
+ description: "Configuraci\xF3n personal de seguridad e identidad",
13395
+ navigation: {
13396
+ grp_account_inbox: { label: "Bandeja de entrada" },
13397
+ grp_account_security: { label: "Seguridad" },
13398
+ grp_account_developer: { label: "Desarrollador" },
13399
+ nav_account_profile: { label: "Perfil" },
13400
+ nav_account_notifications: { label: "Notificaciones" },
13401
+ nav_account_approvals: { label: "Aprobaciones pendientes" },
13402
+ nav_account_memberships: { label: "Mis organizaciones" },
13403
+ nav_account_two_factor: { label: "Autenticaci\xF3n de dos factores" },
13404
+ nav_account_linked: { label: "Cuentas vinculadas" },
13405
+ nav_account_sessions: { label: "Sesiones activas" },
13406
+ nav_account_api_keys: { label: "Claves API" },
13407
+ nav_account_oauth_apps: { label: "Aplicaciones OAuth" },
13408
+ nav_account_preferences: { label: "Preferencias" }
13409
+ }
13410
+ },
12489
13411
  setup: {
12490
13412
  label: "Configuraci\xF3n",
12491
13413
  description: "Configuraci\xF3n y administraci\xF3n de la plataforma",
@@ -12530,6 +13452,40 @@ var esES = {
12530
13452
  nav_user_preferences: { label: "Preferencias de Usuario" },
12531
13453
  nav_metadata: { label: "Todos los Metadatos" }
12532
13454
  }
13455
+ },
13456
+ studio: {
13457
+ label: "Studio",
13458
+ description: "Banco de trabajo de metadatos para desarrolladores, analistas e implementadores",
13459
+ navigation: {
13460
+ group_overview: { label: "Resumen" },
13461
+ nav_metadata_directory: { label: "Todos los tipos de metadatos" },
13462
+ group_data_model: { label: "Modelo de datos" },
13463
+ nav_objects: { label: "Objetos" },
13464
+ nav_validations: { label: "Validaciones" },
13465
+ group_ux: { label: "Experiencia de usuario" },
13466
+ nav_apps: { label: "Aplicaciones" },
13467
+ nav_views: { label: "Vistas" },
13468
+ nav_pages: { label: "P\xE1ginas" },
13469
+ nav_dashboards: { label: "Paneles" },
13470
+ nav_reports: { label: "Informes" },
13471
+ group_logic: { label: "L\xF3gica" },
13472
+ nav_actions: { label: "Acciones" },
13473
+ nav_hooks: { label: "Hooks" },
13474
+ group_automation: { label: "Automatizaci\xF3n" },
13475
+ nav_flows: { label: "Flujos" },
13476
+ nav_workflows: { label: "Reglas de flujo de trabajo" },
13477
+ nav_approvals: { label: "Procesos de aprobaci\xF3n" },
13478
+ group_ai: { label: "IA" },
13479
+ nav_agents: { label: "Agentes" },
13480
+ nav_tools: { label: "Herramientas" },
13481
+ nav_skills: { label: "Habilidades" },
13482
+ group_developer: { label: "Desarrollador" },
13483
+ nav_api_console: { label: "Consola de API" },
13484
+ nav_flow_runs: { label: "Ejecuciones de flujo" },
13485
+ nav_public_forms: { label: "Formularios p\xFAblicos" },
13486
+ group_integration: { label: "Integraci\xF3n" },
13487
+ nav_email_templates: { label: "Plantillas de correo" }
13488
+ }
12533
13489
  }
12534
13490
  },
12535
13491
  dashboards: {
@@ -12560,6 +13516,7 @@ var SetupAppTranslations = {
12560
13516
  "es-ES": esES
12561
13517
  };
12562
13518
 
13519
+ exports.ACCOUNT_APP = ACCOUNT_APP;
12563
13520
  exports.SETUP_APP = SETUP_APP;
12564
13521
  exports.STUDIO_APP = STUDIO_APP;
12565
13522
  exports.SetupAppTranslations = SetupAppTranslations;