@budibase/frontend-core 3.27.2 → 3.27.3

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 (2) hide show
  1. package/package.json +2 -2
  2. package/src/constants.ts +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/frontend-core",
3
- "version": "3.27.2",
3
+ "version": "3.27.3",
4
4
  "description": "Budibase frontend core libraries used in builder and client",
5
5
  "author": "Budibase",
6
6
  "license": "MPL-2.0",
@@ -24,5 +24,5 @@
24
24
  "devDependencies": {
25
25
  "vitest": "^3.2.4"
26
26
  },
27
- "gitHead": "63fd980947ecc5adf6fbcd928c73113dac34f7a1"
27
+ "gitHead": "a2ccba6d3b5002fab734abfe9563b7cf2b3a6592"
28
28
  }
package/src/constants.ts CHANGED
@@ -60,13 +60,14 @@ export const BudibaseRoleOptions = [
60
60
  {
61
61
  label: "Creator",
62
62
  value: BudibaseRoles.Creator,
63
- subtitle: "Can create and edit apps they have access to",
63
+ subtitle:
64
+ "Builder access. Can create/edit everything within assigned workspace.",
64
65
  sortOrder: 2,
65
66
  },
66
67
  {
67
- label: "App user",
68
+ label: "End user",
68
69
  value: BudibaseRoles.AppUser,
69
- subtitle: "Can only use published apps they have access to",
70
+ subtitle: "No builder access. Can only access published apps and agents.",
70
71
  sortOrder: 3,
71
72
  },
72
73
  ]