@blocklet/meta 1.17.0-beta-20251101-021648-3f521a7e → 1.17.0-beta-20251104-112713-e947b159
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/schema.js +1 -1
- package/package.json +15 -15
package/lib/schema.js
CHANGED
|
@@ -658,7 +658,7 @@ const blockletMetaProps = {
|
|
|
658
658
|
component: Joi.boolean(), // Can blocklet become a component and be composed by other blocklets
|
|
659
659
|
sitemap: Joi.boolean().optional(), // Does this blocklet supports composable sitemap
|
|
660
660
|
mcp: Joi.boolean().optional(), // Does this blocklet supports mcp server sitemap
|
|
661
|
-
singleton: Joi.boolean().optional(), // Does this blocklet supports only single instance
|
|
661
|
+
singleton: Joi.boolean().optional(), // Does this blocklet supports only single instance, if true, the blocklet cannot be updated or restarted using blue-green deployment
|
|
662
662
|
}).default({}),
|
|
663
663
|
// Other contents to be included in the bundle
|
|
664
664
|
files: Joi.array().items(Joi.string().trim()).optional(),
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.17.0-beta-
|
|
6
|
+
"version": "1.17.0-beta-20251104-112713-e947b159",
|
|
7
7
|
"description": "Library to parse/validate/fix blocklet meta",
|
|
8
8
|
"homepage": "https://www.arcblock.io/docs/blocklet-spec",
|
|
9
9
|
"main": "./lib/index.js",
|
|
@@ -24,19 +24,19 @@
|
|
|
24
24
|
"author": "wangshijun <wangshijun2020@gmail.com> (http://github.com/wangshijun)",
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@abtnode/constant": "1.17.0-beta-
|
|
28
|
-
"@abtnode/db-cache": "1.17.0-beta-
|
|
29
|
-
"@abtnode/docker-utils": "1.17.0-beta-
|
|
30
|
-
"@arcblock/did": "^1.27.
|
|
31
|
-
"@arcblock/did-ext": "^1.27.
|
|
32
|
-
"@arcblock/did-util": "^1.27.
|
|
33
|
-
"@arcblock/jwt": "^1.27.
|
|
34
|
-
"@blocklet/constant": "1.17.0-beta-
|
|
35
|
-
"@ocap/asset": "^1.27.
|
|
36
|
-
"@ocap/mcrypto": "^1.27.
|
|
37
|
-
"@ocap/types": "^1.27.
|
|
38
|
-
"@ocap/util": "^1.27.
|
|
39
|
-
"@ocap/wallet": "^1.27.
|
|
27
|
+
"@abtnode/constant": "1.17.0-beta-20251104-112713-e947b159",
|
|
28
|
+
"@abtnode/db-cache": "1.17.0-beta-20251104-112713-e947b159",
|
|
29
|
+
"@abtnode/docker-utils": "1.17.0-beta-20251104-112713-e947b159",
|
|
30
|
+
"@arcblock/did": "^1.27.1",
|
|
31
|
+
"@arcblock/did-ext": "^1.27.1",
|
|
32
|
+
"@arcblock/did-util": "^1.27.1",
|
|
33
|
+
"@arcblock/jwt": "^1.27.1",
|
|
34
|
+
"@blocklet/constant": "1.17.0-beta-20251104-112713-e947b159",
|
|
35
|
+
"@ocap/asset": "^1.27.1",
|
|
36
|
+
"@ocap/mcrypto": "^1.27.1",
|
|
37
|
+
"@ocap/types": "^1.27.1",
|
|
38
|
+
"@ocap/util": "^1.27.1",
|
|
39
|
+
"@ocap/wallet": "^1.27.1",
|
|
40
40
|
"ajv": "^8.11.0",
|
|
41
41
|
"axios": "^1.7.9",
|
|
42
42
|
"cjk-length": "^1.0.0",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"ts-node": "^10.9.1",
|
|
80
80
|
"typescript": "^5.6.3"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "66c9180952f1dab415ff16b3ccd8eafd61baabf9"
|
|
83
83
|
}
|