rez_core 3.1.98 → 3.1.99

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": "3.1.98",
3
+ "version": "3.1.99",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -187,8 +187,9 @@ export class EntityDynamicService {
187
187
  );
188
188
 
189
189
  await this.dataSource.query(
190
- `INSERT INTO cr_entity_relation_data (source_entity_id, source_entity_type, target_entity_id, target_entity_type, relation_type) VALUES (?, ?, ?, ?, ?)`,
190
+ `INSERT INTO cr_entity_relation_data (organization_id, source_entity_id, source_entity_type, target_entity_id, target_entity_type, relation_type) VALUES (?, ?, ?, ?, ?)`,
191
191
  [
192
+ organizationId,
192
193
  mainID,
193
194
  entityType,
194
195
  createdRelatedEntity.insertId,
@@ -155,7 +155,7 @@ export class WorkflowMetaService extends EntityServiceImpl {
155
155
  status: firstStage.status,
156
156
  current_user_id: loggedInUser.id,
157
157
  stage_action_mapping_id: firstStage.id,
158
- orgnization_id: loggedInUser.organization_id,
158
+ organization_id: loggedInUser.organization_id,
159
159
  stage_group_id: stageGroup.id,
160
160
  stage_id: firstStage.id,
161
161
  start_date: new Date(),