@blocklet/meta 1.16.23-beta-f85576a6 → 1.16.23-beta-aeb9f5bd

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
@@ -643,7 +643,8 @@ const blockletMetaProps = {
643
643
  .optional(),
644
644
  navigation: Joi.boolean().default(true),
645
645
  serverless: Joi.boolean().optional(),
646
- component: Joi.boolean(), // Can blocklet become a component and be composed by other blocklets
646
+ component: Joi.boolean(),
647
+ sitemap: Joi.boolean().optional(), // Does this blocklet supports composable sitemap
647
648
  }).default({}),
648
649
  // Other contents to be included in the bundle
649
650
  files: Joi.array().items(Joi.string().trim()).optional(),
@@ -16,6 +16,7 @@ export interface TBlockletMeta {
16
16
  didSpace?: 'required' | 'optional';
17
17
  navigation?: boolean;
18
18
  serverless?: boolean;
19
+ sitemap?: boolean;
19
20
  };
20
21
  community?: string;
21
22
  components?: {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.23-beta-f85576a6",
6
+ "version": "1.16.23-beta-aeb9f5bd",
7
7
  "description": "Library to parse/validate/fix blocklet meta",
8
8
  "main": "./lib/index.js",
9
9
  "typings": "./lib/index.d.ts",
@@ -24,12 +24,12 @@
24
24
  "author": "wangshijun <wangshijun2020@gmail.com> (http://github.com/wangshijun)",
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@abtnode/constant": "1.16.23-beta-f85576a6",
27
+ "@abtnode/constant": "1.16.23-beta-aeb9f5bd",
28
28
  "@arcblock/did": "1.18.108",
29
29
  "@arcblock/did-ext": "1.18.108",
30
30
  "@arcblock/did-util": "1.18.108",
31
31
  "@arcblock/jwt": "1.18.108",
32
- "@blocklet/constant": "1.16.23-beta-f85576a6",
32
+ "@blocklet/constant": "1.16.23-beta-aeb9f5bd",
33
33
  "@ocap/asset": "1.18.108",
34
34
  "@ocap/mcrypto": "1.18.108",
35
35
  "@ocap/types": "1.18.108",
@@ -60,7 +60,7 @@
60
60
  "devDependencies": {
61
61
  "@arcblock/eslint-config-ts": "^0.2.4",
62
62
  "@types/express": "^4.17.14",
63
- "@types/jest": "^29.2.2",
63
+ "@types/jest": "^29.5.11",
64
64
  "@types/joi": "^17.2.3",
65
65
  "@types/js-yaml": "^4.0.5",
66
66
  "@types/validate-npm-package-name": "^4.0.0",
@@ -71,12 +71,12 @@
71
71
  "eslint": "^8.27.0",
72
72
  "expand-tilde": "^2.0.2",
73
73
  "express": "^4.18.2",
74
- "jest": "^27.5.1",
74
+ "jest": "^29.7.0",
75
75
  "joi-to-typescript": "^4.0.7",
76
76
  "prettier": "^2.7.1",
77
- "ts-jest": "^27.1.5",
77
+ "ts-jest": "^29.1.1",
78
78
  "ts-node": "^10.9.1",
79
79
  "typescript": "^5.0.4"
80
80
  },
81
- "gitHead": "bac83a74944b4cef3ccb386277023caf0e1d5cd4"
81
+ "gitHead": "418cacd970d373aecc8706f8992e57369d394577"
82
82
  }