@dyrected/core 2.6.1 → 2.6.2

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/server.cjs CHANGED
@@ -6420,7 +6420,8 @@ function registerRoutes(app, config) {
6420
6420
  collections: filteredCollections,
6421
6421
  globals: filteredGlobals,
6422
6422
  admin: requestConfig.admin || {},
6423
- adminAuth: getPublicAdminAuthConfig(requestConfig.adminAuth, collections)
6423
+ adminAuth: getPublicAdminAuthConfig(requestConfig.adminAuth, collections),
6424
+ hasStorage: !!requestConfig.storage
6424
6425
  });
6425
6426
  });
6426
6427
  app.get(
package/dist/server.js CHANGED
@@ -4167,7 +4167,8 @@ function registerRoutes(app, config) {
4167
4167
  collections: filteredCollections,
4168
4168
  globals: filteredGlobals,
4169
4169
  admin: requestConfig.admin || {},
4170
- adminAuth: getPublicAdminAuthConfig(requestConfig.adminAuth, collections)
4170
+ adminAuth: getPublicAdminAuthConfig(requestConfig.adminAuth, collections),
4171
+ hasStorage: !!requestConfig.storage
4171
4172
  });
4172
4173
  });
4173
4174
  app.get(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dyrected/core",
3
- "version": "2.6.1",
3
+ "version": "2.6.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",