@blocklet/launcher-util 2.0.15 → 2.0.17
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/lib/constant.js +3 -1
- package/package.json +4 -4
package/lib/constant.js
CHANGED
|
@@ -61,7 +61,8 @@ const planStatusMap = toMap(PLAN_STATUS);
|
|
|
61
61
|
const fromInstanceStatus = fromStatus(statusInstanceMap);
|
|
62
62
|
const fromPlanStatus = fromStatus(planStatusMap);
|
|
63
63
|
|
|
64
|
-
const NFT_TYPE_SERVERLESS = 'BlockletServerServerlessNFT';
|
|
64
|
+
const NFT_TYPE_SERVERLESS = 'BlockletServerServerlessNFT';
|
|
65
|
+
const BLOCKLET_SERVER_OWNERSHIP_NFT = 'BlockletServerOwnershipNFT';
|
|
65
66
|
|
|
66
67
|
module.exports = Object.freeze({
|
|
67
68
|
SKU_STATUS: Object.freeze({
|
|
@@ -105,5 +106,6 @@ module.exports = Object.freeze({
|
|
|
105
106
|
crypto: 'crypto',
|
|
106
107
|
},
|
|
107
108
|
NFT_TYPE_SERVERLESS,
|
|
109
|
+
BLOCKLET_SERVER_OWNERSHIP_NFT,
|
|
108
110
|
SERVERLESS_INSTANCE_STATUS,
|
|
109
111
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/launcher-util",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.17",
|
|
4
4
|
"description": "Common constants",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"constant"
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"url": "https://github.com/blocklet/launcher/issues"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@blocklet/sdk": "^1.16.
|
|
34
|
+
"@blocklet/sdk": "^1.16.1",
|
|
35
35
|
"@ocap/util": "^1.18.65",
|
|
36
36
|
"axios": "^0.26.1",
|
|
37
37
|
"lodash.get": "^4.4.2",
|
|
38
38
|
"lodash.pick": "^4.4.0",
|
|
39
39
|
"moment": "^2.29.4",
|
|
40
|
-
"moment-timezone": "^0.5.
|
|
40
|
+
"moment-timezone": "^0.5.43",
|
|
41
41
|
"nodemailer": "^6.9.1",
|
|
42
42
|
"url-join": "^4.0.1"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "df5c1f0ba96b492a614db424335a0889ce5d0813"
|
|
45
45
|
}
|