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