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