@did-space/template 0.3.16 → 0.3.18
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/dist/template/app.js +1 -1
- package/package.json +3 -3
package/dist/template/app.js
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "0.3.18",
|
|
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.
|
|
41
|
+
"@did-space/core": "0.3.18",
|
|
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": "
|
|
66
|
+
"gitHead": "75a281e619c7beb508adb94fc8f954dd0fb43344"
|
|
67
67
|
}
|