@blocklet/constant 1.8.33 → 1.8.35
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 +7 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -88,6 +88,7 @@ const BlockletEvents = Object.freeze({
|
|
|
88
88
|
stopped: 'blocklet.stopped',
|
|
89
89
|
reloaded: 'blocklet.reloaded', // Deprecated
|
|
90
90
|
purchaseChange: 'blocklet.purchaseChange',
|
|
91
|
+
domainStatus: 'blocklet.domainStatus',
|
|
91
92
|
});
|
|
92
93
|
|
|
93
94
|
// Blocklet Interface
|
|
@@ -189,6 +190,12 @@ module.exports = Object.freeze({
|
|
|
189
190
|
BLOCKLET_PASSPORT_COLOR: 'BLOCKLET_PASSPORT_COLOR',
|
|
190
191
|
BLOCKLET_WALLET_TYPE: 'BLOCKLET_WALLET_TYPE',
|
|
191
192
|
BLOCKLET_DELETABLE: 'BLOCKLET_DELETABLE',
|
|
193
|
+
BLOCKLET_APP_STORAGE_ENDPOINT: 'BLOCKLET_APP_STORAGE_ENDPOINT',
|
|
194
|
+
},
|
|
195
|
+
|
|
196
|
+
BLOCKLET_APP_STORAGE_ENDPOINTS: {
|
|
197
|
+
REQUIRED: 'required',
|
|
198
|
+
OPTIONAL: 'optional',
|
|
192
199
|
},
|
|
193
200
|
|
|
194
201
|
CHAIN_INFO_CONFIG: {
|
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.35",
|
|
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": "dd89e7a61dc8cff64302608ad5ab6545dd903daa"
|
|
24
24
|
}
|