@koalarx/nest 3.1.20 → 3.1.21

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.
@@ -163,7 +163,7 @@ class RepositoryBase {
163
163
  relationDeletes.push({
164
164
  modelName: (0, KlString_1.toCamelCase)(modelName),
165
165
  entityInstance,
166
- schema: { id: item._id },
166
+ schema: this.getWhereByIdSchema(item, item),
167
167
  relations: [],
168
168
  });
169
169
  });
@@ -186,7 +186,7 @@ class RepositoryBase {
186
186
  modelName: (0, KlString_1.toCamelCase)(modelName),
187
187
  entityInstance,
188
188
  schema: {
189
- where: { id: item._id },
189
+ where: this.getWhereByIdSchema(item, item),
190
190
  data: this.entityToPrisma(item),
191
191
  select: this.getSelectRootPrismaSchema(item.constructor),
192
192
  },
@@ -382,9 +382,9 @@ class RepositoryBase {
382
382
  return this.persistRelations(transaction, relation);
383
383
  });
384
384
  }));
385
- })),
386
- ...relationUpdates.map((relation) => transaction[relation.modelName].update(relation.schema)),
387
- ...relationDeletes.map((relation) => transaction[relation.modelName].deleteMany({ where: relation.schema })),
385
+ }), ...relationUpdates.map((relation) => transaction[relation.modelName].update(relation.schema)), ...relationDeletes.map((relation) => transaction[relation.modelName].deleteMany({
386
+ where: relation.schema,
387
+ }))),
388
388
  ]);
389
389
  }
390
390
  context(transactionalClient) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koalarx/nest",
3
- "version": "3.1.20",
3
+ "version": "3.1.21",
4
4
  "description": "",
5
5
  "author": "Igor D. Rangel",
6
6
  "license": "MIT",