@blocklet/meta 1.16.53-beta-20251013-005429-ca3b05de → 1.16.53-beta-20251014-110009-8220e324

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 CHANGED
@@ -689,6 +689,7 @@ const blockletMetaProps = {
689
689
  component: Joi.boolean(), // Can blocklet become a component and be composed by other blocklets
690
690
  sitemap: Joi.boolean().optional(), // Does this blocklet supports composable sitemap
691
691
  mcp: Joi.boolean().optional(), // Does this blocklet supports mcp server sitemap
692
+ singleton: Joi.boolean().optional(), // Does this blocklet supports only single instance
692
693
  }).default({}),
693
694
  // Other contents to be included in the bundle
694
695
  files: Joi.array().items(Joi.string().trim()).optional(),
@@ -17,6 +17,7 @@ export interface TBlockletMeta {
17
17
  mcp?: boolean;
18
18
  navigation?: boolean;
19
19
  serverless?: boolean;
20
+ singleton?: boolean;
20
21
  sitemap?: boolean;
21
22
  };
22
23
  community?: string;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.53-beta-20251013-005429-ca3b05de",
6
+ "version": "1.16.53-beta-20251014-110009-8220e324",
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",
@@ -26,14 +26,14 @@
26
26
  "author": "wangshijun <wangshijun2020@gmail.com> (http://github.com/wangshijun)",
27
27
  "license": "Apache-2.0",
28
28
  "dependencies": {
29
- "@abtnode/constant": "1.16.53-beta-20251013-005429-ca3b05de",
30
- "@abtnode/db-cache": "1.16.53-beta-20251013-005429-ca3b05de",
31
- "@abtnode/docker-utils": "1.16.53-beta-20251013-005429-ca3b05de",
29
+ "@abtnode/constant": "1.16.53-beta-20251014-110009-8220e324",
30
+ "@abtnode/db-cache": "1.16.53-beta-20251014-110009-8220e324",
31
+ "@abtnode/docker-utils": "1.16.53-beta-20251014-110009-8220e324",
32
32
  "@arcblock/did": "1.25.6",
33
33
  "@arcblock/did-ext": "1.25.6",
34
34
  "@arcblock/did-util": "1.25.6",
35
35
  "@arcblock/jwt": "1.25.6",
36
- "@blocklet/constant": "1.16.53-beta-20251013-005429-ca3b05de",
36
+ "@blocklet/constant": "1.16.53-beta-20251014-110009-8220e324",
37
37
  "@ocap/asset": "1.25.6",
38
38
  "@ocap/mcrypto": "1.25.6",
39
39
  "@ocap/types": "1.25.6",
@@ -83,5 +83,5 @@
83
83
  "ts-node": "^10.9.1",
84
84
  "typescript": "^5.6.3"
85
85
  },
86
- "gitHead": "fa6cf9ee72911e51fb53cfbee9dfc0e781c60bd4"
86
+ "gitHead": "e3cc422d4f1fb565f74d77e02d847d4461e94436"
87
87
  }