@budibase/backend-core 2.14.3 → 2.14.5
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 -4
- package/dist/index.js.map +2 -2
- package/dist/index.js.meta.json +1 -1
- package/dist/package.json +4 -4
- package/dist/plugins.js.meta.json +1 -1
- package/dist/src/middleware/authenticated.js +0 -3
- package/dist/src/middleware/authenticated.js.map +1 -1
- package/package.json +4 -4
- package/src/middleware/authenticated.ts +0 -3
package/dist/index.js
CHANGED
|
@@ -13036,11 +13036,8 @@ function authenticated_default(noAuthPatterns = [], opts = {
|
|
|
13036
13036
|
import_dd_trace3.default.setUser({
|
|
13037
13037
|
id: user?._id,
|
|
13038
13038
|
tenantId: user?.tenantId,
|
|
13039
|
-
admin: user?.admin,
|
|
13040
|
-
builder: user?.builder,
|
|
13041
13039
|
budibaseAccess: user?.budibaseAccess,
|
|
13042
|
-
status: user?.status
|
|
13043
|
-
roles: user?.roles
|
|
13040
|
+
status: user?.status
|
|
13044
13041
|
});
|
|
13045
13042
|
}
|
|
13046
13043
|
finalise(ctx, { authenticated, user, internal, version, publicEndpoint });
|