@abtnode/core 1.16.33-beta-20241112-122339-e39fa9e7 → 1.16.33
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.
|
@@ -36,6 +36,7 @@ const createPackRelease = async ({
|
|
|
36
36
|
blockletLogo,
|
|
37
37
|
blockletScreenshots,
|
|
38
38
|
blockletComponents,
|
|
39
|
+
blockletResourceType,
|
|
39
40
|
note,
|
|
40
41
|
manager,
|
|
41
42
|
status,
|
|
@@ -55,6 +56,7 @@ const createPackRelease = async ({
|
|
|
55
56
|
blockletIntroduction,
|
|
56
57
|
blockletScreenshots,
|
|
57
58
|
blockletComponents,
|
|
59
|
+
blockletResourceType,
|
|
58
60
|
note,
|
|
59
61
|
};
|
|
60
62
|
|
|
@@ -213,7 +215,7 @@ const createPackRelease = async ({
|
|
|
213
215
|
title: blockletTitle,
|
|
214
216
|
description: blockletDescription,
|
|
215
217
|
version: blockletVersion,
|
|
216
|
-
group: 'pack',
|
|
218
|
+
group: blockletResourceType === 'resource' ? undefined : 'pack',
|
|
217
219
|
logo: logoFileName,
|
|
218
220
|
resource: {
|
|
219
221
|
bundles: resourceList.length ? resourceList : undefined,
|
|
@@ -179,6 +179,7 @@ const createRelease = async ({
|
|
|
179
179
|
blockletScreenshots,
|
|
180
180
|
uploadedResource,
|
|
181
181
|
blockletComponents,
|
|
182
|
+
blockletResourceType,
|
|
182
183
|
note,
|
|
183
184
|
manager,
|
|
184
185
|
status,
|
|
@@ -203,6 +204,7 @@ const createRelease = async ({
|
|
|
203
204
|
blockletIntroduction,
|
|
204
205
|
blockletScreenshots,
|
|
205
206
|
uploadedResource,
|
|
207
|
+
blockletResourceType,
|
|
206
208
|
note,
|
|
207
209
|
};
|
|
208
210
|
|
|
@@ -231,6 +233,7 @@ const createRelease = async ({
|
|
|
231
233
|
blockletLogo,
|
|
232
234
|
blockletScreenshots,
|
|
233
235
|
blockletComponents,
|
|
236
|
+
blockletResourceType,
|
|
234
237
|
note,
|
|
235
238
|
manager,
|
|
236
239
|
status,
|
package/lib/states/release.js
CHANGED
|
@@ -19,6 +19,7 @@ const createReleaseSchema = (status) =>
|
|
|
19
19
|
blockletScreenshots,
|
|
20
20
|
blockletIntroduction,
|
|
21
21
|
blockletLogo,
|
|
22
|
+
blockletResourceType: Joi.string().valid('resource', 'pack', '').optional(),
|
|
22
23
|
blockletComponents: Joi.array().items(
|
|
23
24
|
Joi.object({
|
|
24
25
|
did: Joi.string().min(1).required(),
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.33
|
|
6
|
+
"version": "1.16.33",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -19,19 +19,19 @@
|
|
|
19
19
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
20
20
|
"license": "Apache-2.0",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@abtnode/analytics": "1.16.33
|
|
23
|
-
"@abtnode/auth": "1.16.33
|
|
24
|
-
"@abtnode/certificate-manager": "1.16.33
|
|
25
|
-
"@abtnode/constant": "1.16.33
|
|
26
|
-
"@abtnode/cron": "1.16.33
|
|
27
|
-
"@abtnode/logger": "1.16.33
|
|
28
|
-
"@abtnode/models": "1.16.33
|
|
29
|
-
"@abtnode/queue": "1.16.33
|
|
30
|
-
"@abtnode/rbac": "1.16.33
|
|
31
|
-
"@abtnode/router-provider": "1.16.33
|
|
32
|
-
"@abtnode/static-server": "1.16.33
|
|
33
|
-
"@abtnode/timemachine": "1.16.33
|
|
34
|
-
"@abtnode/util": "1.16.33
|
|
22
|
+
"@abtnode/analytics": "1.16.33",
|
|
23
|
+
"@abtnode/auth": "1.16.33",
|
|
24
|
+
"@abtnode/certificate-manager": "1.16.33",
|
|
25
|
+
"@abtnode/constant": "1.16.33",
|
|
26
|
+
"@abtnode/cron": "1.16.33",
|
|
27
|
+
"@abtnode/logger": "1.16.33",
|
|
28
|
+
"@abtnode/models": "1.16.33",
|
|
29
|
+
"@abtnode/queue": "1.16.33",
|
|
30
|
+
"@abtnode/rbac": "1.16.33",
|
|
31
|
+
"@abtnode/router-provider": "1.16.33",
|
|
32
|
+
"@abtnode/static-server": "1.16.33",
|
|
33
|
+
"@abtnode/timemachine": "1.16.33",
|
|
34
|
+
"@abtnode/util": "1.16.33",
|
|
35
35
|
"@arcblock/did": "1.18.139",
|
|
36
36
|
"@arcblock/did-auth": "1.18.139",
|
|
37
37
|
"@arcblock/did-ext": "^1.18.139",
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
"@arcblock/pm2-events": "^0.0.5",
|
|
43
43
|
"@arcblock/validator": "^1.18.139",
|
|
44
44
|
"@arcblock/vc": "1.18.139",
|
|
45
|
-
"@blocklet/constant": "1.16.33
|
|
45
|
+
"@blocklet/constant": "1.16.33",
|
|
46
46
|
"@blocklet/did-space-js": "^0.5.65",
|
|
47
|
-
"@blocklet/env": "1.16.33
|
|
48
|
-
"@blocklet/meta": "1.16.33
|
|
49
|
-
"@blocklet/resolver": "1.16.33
|
|
50
|
-
"@blocklet/sdk": "1.16.33
|
|
51
|
-
"@blocklet/store": "1.16.33
|
|
47
|
+
"@blocklet/env": "1.16.33",
|
|
48
|
+
"@blocklet/meta": "1.16.33",
|
|
49
|
+
"@blocklet/resolver": "1.16.33",
|
|
50
|
+
"@blocklet/sdk": "1.16.33",
|
|
51
|
+
"@blocklet/store": "1.16.33",
|
|
52
52
|
"@fidm/x509": "^1.2.1",
|
|
53
53
|
"@ocap/mcrypto": "1.18.139",
|
|
54
54
|
"@ocap/util": "1.18.139",
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
"jest": "^29.7.0",
|
|
107
107
|
"unzipper": "^0.10.11"
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "f314706b7a6150adbf6bf700f06d2989981eaf1f"
|
|
110
110
|
}
|