@did-space/template 0.3.17 → 0.3.19

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.
@@ -139,7 +139,7 @@ class AppTemplate {
139
139
  if (index === -1) {
140
140
  throw new Error(`AppBackup with id(${id}) not found`);
141
141
  }
142
- app.backup[index] = Object.assign(Object.assign({}, app.backup[index]), appBackup);
142
+ app.backup[index] = Object.assign(Object.assign(Object.assign({}, app.backup[index]), appBackup), { updateAt: new Date().toISOString() });
143
143
  yield this.set(app);
144
144
  return app.backup[index];
145
145
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@did-space/template",
3
- "version": "0.3.17",
3
+ "version": "0.3.19",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -38,7 +38,7 @@
38
38
  "dependencies": {
39
39
  "@arcblock/did": "^1.18.95",
40
40
  "@arcblock/validator": "^1.18.95",
41
- "@did-space/core": "0.3.17",
41
+ "@did-space/core": "0.3.19",
42
42
  "axios": "^0.27.2",
43
43
  "is-url": "^1.2.4",
44
44
  "joi": "^17.9.2",
@@ -63,5 +63,5 @@
63
63
  "ts-jest": "^28.0.6",
64
64
  "typescript": "^4.9.5"
65
65
  },
66
- "gitHead": "defe13cc0256e0c3dfe711165c22357f42a3d443"
66
+ "gitHead": "0ecc8bbf4d76f8abe65d664ffe03bfb1cbb5d19d"
67
67
  }