vtb-appit 0.0.43 → 0.0.44

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.
Files changed (2) hide show
  1. package/appit.js +3 -0
  2. package/package.json +1 -1
package/appit.js CHANGED
@@ -102,6 +102,9 @@ class Appit {
102
102
  let model = await this.createExcursion({...excursion, ...images, workspace_id: this.transformer.workspace_id});
103
103
  this.history.excursionId = model.data.id;
104
104
  } else {
105
+ if(excursion.hasOwnProperty('code'))
106
+ delete excursion.code;
107
+
105
108
  await this.updateExcursion(this.history.excursionId, {...excursion, ...images, workspace_id: this.transformer.workspace_id});
106
109
  }
107
110
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vtb-appit",
3
- "version": "0.0.43",
3
+ "version": "0.0.44",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {