roboto-js 1.6.6 → 1.6.7

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.
@@ -315,6 +315,7 @@ var RbtObject = exports["default"] = /*#__PURE__*/function () {
315
315
  // Reset unique identifiers to ensure a new ID is generated upon saving
316
316
  delete clonedData.id;
317
317
  delete clonedData.id_revision;
318
+ delete clonedData.rpcMeta;
318
319
 
319
320
  // Create a new instance of RbtObject with the cloned data
320
321
  var clonedObject = new RbtObject(clonedData, this._axios, {
@@ -227,6 +227,7 @@ export default class RbtObject {
227
227
  // Reset unique identifiers to ensure a new ID is generated upon saving
228
228
  delete clonedData.id;
229
229
  delete clonedData.id_revision;
230
+ delete clonedData.rpcMeta;
230
231
 
231
232
  // Create a new instance of RbtObject with the cloned data
232
233
  const clonedObject = new RbtObject(clonedData, this._axios, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roboto-js",
3
- "version": "1.6.6",
3
+ "version": "1.6.7",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "main": "dist/cjs/index.cjs",
package/src/rbt_object.js CHANGED
@@ -250,6 +250,7 @@ export default class RbtObject {
250
250
  // Reset unique identifiers to ensure a new ID is generated upon saving
251
251
  delete clonedData.id;
252
252
  delete clonedData.id_revision;
253
+ delete clonedData.rpcMeta;
253
254
 
254
255
  // Create a new instance of RbtObject with the cloned data
255
256
  const clonedObject = new RbtObject(clonedData, this._axios, { isNew: true });