@toa.io/core 1.0.0-alpha.126 → 1.0.0-alpha.136

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": "@toa.io/core",
3
- "version": "1.0.0-alpha.126",
3
+ "version": "1.0.0-alpha.136",
4
4
  "description": "Toa Core",
5
5
  "author": "temich <tema.gurtovoy@gmail.com>",
6
6
  "homepage": "https://github.com/toa-io/toa#readme",
@@ -26,5 +26,5 @@
26
26
  "error-value": "0.3.0",
27
27
  "openspan": "1.0.0-alpha.93"
28
28
  },
29
- "gitHead": "5d350c594b9ad4e0c5956c5ffcb792306b9004ed"
29
+ "gitHead": "73722f06d137283915ca8710ae09e5e53307e1f9"
30
30
  }
@@ -65,7 +65,7 @@ class Entity {
65
65
  value._updated ??= value._created
66
66
  }
67
67
 
68
- if (value._deleted !== null)
68
+ if ('_deleted' in value && value._deleted !== null)
69
69
  this.deleted = true
70
70
 
71
71
  if (this.#state !== undefined) {