@budibase/shared-core 2.22.5 → 2.22.8
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.
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/dist/index.js.meta.json +1 -1
- package/dist/sdk/documents/users.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -28
package/dist/index.js
CHANGED
|
@@ -5436,7 +5436,7 @@ function isAdmin(user) {
|
|
|
5436
5436
|
function isAdminOrBuilder(user, appId) {
|
|
5437
5437
|
return isBuilder(user, appId) || isAdmin(user);
|
|
5438
5438
|
}
|
|
5439
|
-
function isAdminOrGlobalBuilder(user
|
|
5439
|
+
function isAdminOrGlobalBuilder(user) {
|
|
5440
5440
|
return isGlobalBuilder(user) || isAdmin(user);
|
|
5441
5441
|
}
|
|
5442
5442
|
function hasAppBuilderPermissions(user) {
|