@loomcore/api 0.0.18 → 0.0.19

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.
@@ -326,6 +326,9 @@ export class GenericApiService {
326
326
  return transformedEntity;
327
327
  }
328
328
  stripSenderProvidedSystemProperties(doc) {
329
+ if (doc._id) {
330
+ delete doc._id;
331
+ }
329
332
  if (doc._created) {
330
333
  delete doc._created;
331
334
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loomcore/api",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "private": false,
5
5
  "description": "Loom Core Api - An opinionated Node.js api using Typescript, Express, and MongoDb",
6
6
  "scripts": {