quidproquo-core 0.0.141 → 0.0.142

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.
@@ -182,7 +182,7 @@ const getOwnedItems = (settings, qpqConfig) => {
182
182
  const appEnvironment = (0, exports.getApplicationModuleEnvironment)(qpqConfig);
183
183
  return settings.filter((s) => !s.owner || ((!s.owner.module || s.owner.module === appModuleName) &&
184
184
  (!s.owner.application || s.owner.application === appName) &&
185
- (!s.owner.feature || s.owner.feature === appFeature) &&
185
+ (s.owner.feature === undefined || (!s.owner.feature && !appFeature) || s.owner.feature === appFeature) &&
186
186
  (!s.owner.environment || s.owner.environment === appEnvironment)));
187
187
  };
188
188
  exports.getOwnedItems = getOwnedItems;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quidproquo-core",
3
- "version": "0.0.141",
3
+ "version": "0.0.142",
4
4
  "description": "",
5
5
  "main": "./lib/commonjs/index.js",
6
6
  "types": "./lib/commonjs/index.d.js",