roboto-js 1.4.30 → 1.4.32

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.
@@ -181,11 +181,12 @@ var RbtObject = exports["default"] = /*#__PURE__*/function () {
181
181
  key: "getMetaData",
182
182
  value: function getMetaData() {
183
183
  var meta = {
184
- timeCreated: this.timeCreated,
185
- timeModified: this.timeModified,
186
- timeDeleted: this.timeDeleted,
187
- revision: this.revision
184
+ timeCreated: this._internalData.timeCreated,
185
+ timeModified: this._internalData.timeModified,
186
+ timeDeleted: this._internalData.timeDeleted,
187
+ revision: this._internalData.revision
188
188
  };
189
+ return meta;
189
190
  }
190
191
  }, {
191
192
  key: "toRecord",
@@ -141,11 +141,12 @@ export default class RbtObject {
141
141
 
142
142
  getMetaData() {
143
143
  let meta = {
144
- timeCreated: this.timeCreated,
145
- timeModified: this.timeModified,
146
- timeDeleted: this.timeDeleted,
147
- revision: this.revision
144
+ timeCreated: this._internalData.timeCreated,
145
+ timeModified: this._internalData.timeModified,
146
+ timeDeleted: this._internalData.timeDeleted,
147
+ revision: this._internalData.revision
148
148
  };
149
+ return meta;
149
150
  }
150
151
  toRecord() {
151
152
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roboto-js",
3
- "version": "1.4.30",
3
+ "version": "1.4.32",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "main": "dist/cjs/index.cjs",
package/src/rbt_object.js CHANGED
@@ -154,11 +154,12 @@ export default class RbtObject {
154
154
  getMetaData() {
155
155
 
156
156
  let meta = {
157
- timeCreated: this.timeCreated,
158
- timeModified: this.timeModified,
159
- timeDeleted: this.timeDeleted,
160
- revision: this.revision
157
+ timeCreated: this._internalData.timeCreated,
158
+ timeModified: this._internalData.timeModified,
159
+ timeDeleted: this._internalData.timeDeleted,
160
+ revision: this._internalData.revision
161
161
  }
162
+ return meta;
162
163
  }
163
164
 
164
165
  toRecord() {