@keltoi/hydra 2.5.3 → 2.5.4
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/index.js +4 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -337,13 +337,13 @@ class Changeable extends Entity{
|
|
|
337
337
|
this.#active = active;
|
|
338
338
|
}
|
|
339
339
|
|
|
340
|
-
get createdAt(){ return this
|
|
341
|
-
get updatedAt(){ return this
|
|
342
|
-
get active(){ return this
|
|
340
|
+
get createdAt(){ return this.#createdAt }
|
|
341
|
+
get updatedAt(){ return this.#updatedAt}
|
|
342
|
+
get active(){ return this.#active }
|
|
343
343
|
|
|
344
344
|
get change(){
|
|
345
345
|
return {
|
|
346
|
-
updatedAt: this
|
|
346
|
+
updatedAt: this.#updatedAt
|
|
347
347
|
}
|
|
348
348
|
}
|
|
349
349
|
|