rez_core 2.1.69 → 2.1.70

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "2.1.69",
3
+ "version": "2.1.70",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -139,7 +139,7 @@ export class FilterService {
139
139
  const baseWhere = this.buildWhereClauses(baseFilters, attributeMetaMap);
140
140
 
141
141
  // check level_id and level_type
142
- if (entity_type != 'ORGP' && level_type && level_id && organization_id) {
142
+ if (entity_type != 'ORG' && level_type && level_id && organization_id) {
143
143
  baseWhere.push({
144
144
  query:
145
145
  'e.organization_id = :organization_id AND e.level_type = :level_type AND e.level_id = :level_id',