rez_core 6.5.71 → 6.5.72

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": "6.5.71",
3
+ "version": "6.5.72",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -109,7 +109,7 @@ export class PopulateMetaService {
109
109
  transformRepo = relationRepo;
110
110
  const factoryData = await transformRepo?.find({
111
111
  where: {
112
- organization_id: -1,
112
+ enterprise_id: -1,
113
113
  level_type: 'ORG',
114
114
  level_id: -1,
115
115
  },
@@ -130,7 +130,7 @@ export class PopulateMetaService {
130
130
  transformRepo = viewMasterRepo;
131
131
  const factoryData = await transformRepo?.find({
132
132
  where: {
133
- organization_id: -1,
133
+ enterprise_id: -1,
134
134
  level_type: 'ORG',
135
135
  level_id: -1,
136
136
  },
@@ -138,7 +138,7 @@ export class PopulateMetaService {
138
138
  transformedData = factoryData.map(
139
139
  ({ id, created_date, modified_date, ...rest }) => ({
140
140
  ...rest,
141
- organization_id,
141
+ enterprise_id,
142
142
  level_type: 'ORG',
143
143
  level_id: organization_id,
144
144
  status: status,
@@ -159,7 +159,7 @@ export class PopulateMetaService {
159
159
 
160
160
  const entityTables = await entityTableRepo.find({
161
161
  where: {
162
- organization_id: -1,
162
+ enterprise_id: -1,
163
163
  level_type: 'ORG',
164
164
  level_id: -1,
165
165
  },
@@ -181,7 +181,7 @@ export class PopulateMetaService {
181
181
 
182
182
  const entityTableColumns = await entityTableColumnRepo.find({
183
183
  where: {
184
- organization_id: -1,
184
+ enterprise_id: -1,
185
185
  level_type: 'ORG',
186
186
  level_id: -1,
187
187
  mapped_entity_type: mapped_entity_type,