@blocklet/constant 1.8.68 → 1.8.69-beta-54faead3
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/index.js +8 -1
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -89,6 +89,10 @@ const BlockletEvents = Object.freeze({
|
|
|
89
89
|
statusChange: 'blocklet.statusChange',
|
|
90
90
|
dataCleaned: 'blocklet.dataCleaned',
|
|
91
91
|
|
|
92
|
+
// 备份还原进度
|
|
93
|
+
backupProgress: 'blocklet.backupProgress',
|
|
94
|
+
restoreProgress: 'blocklet.restoreProgress',
|
|
95
|
+
|
|
92
96
|
// state updated
|
|
93
97
|
updated: 'blocklet.updated',
|
|
94
98
|
domainStatus: 'blocklet.domainStatus',
|
|
@@ -101,6 +105,9 @@ const BlockletEvents = Object.freeze({
|
|
|
101
105
|
// cert
|
|
102
106
|
certError: 'blocklet.certError',
|
|
103
107
|
certIssued: 'blocklet.certIssued',
|
|
108
|
+
|
|
109
|
+
// did-space
|
|
110
|
+
spaceConnected: 'blocklet.spaceConnected',
|
|
104
111
|
});
|
|
105
112
|
|
|
106
113
|
// Blocklet Interface
|
|
@@ -191,7 +198,7 @@ module.exports = Object.freeze({
|
|
|
191
198
|
|
|
192
199
|
BLOCKLET_UPLOADS_DIR: '__uploads',
|
|
193
200
|
|
|
194
|
-
BLOCKLET_LATEST_SPEC_VERSION: '1.2.
|
|
201
|
+
BLOCKLET_LATEST_SPEC_VERSION: '1.2.8',
|
|
195
202
|
BLOCKLET_LATEST_REQUIREMENT_SERVER: '>=1.7.0',
|
|
196
203
|
BLOCKLET_LATEST_REQUIREMENT_ABTNODE: '>=1.5.15', // Deprecated
|
|
197
204
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.8.
|
|
6
|
+
"version": "1.8.69-beta-54faead3",
|
|
7
7
|
"description": "Blocklet constants",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"files": [
|
|
@@ -20,5 +20,5 @@
|
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"jest": "^27.5.1"
|
|
22
22
|
},
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "3dec0c85a77de5ba2d37c19ac769b126bfaafc86"
|
|
24
24
|
}
|