@blocklet/meta 1.16.33-beta-20241031-073543-49b1ff9b → 1.16.33-beta-20241031-130110-767ce94a

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.
Files changed (2) hide show
  1. package/lib/schema.js +1 -1
  2. package/package.json +4 -4
package/lib/schema.js CHANGED
@@ -704,7 +704,7 @@ const createBlockletSchema = (baseDir, { ensureFiles = false, ensureDist = false
704
704
  avatar: Joi.string().optional(),
705
705
  did: Joi.DID().trim().required(),
706
706
  fullName: Joi.string().trim().required(),
707
- email: Joi.string().email({ tlds: false }).required(),
707
+ email: Joi.string().optional().allow(null).empty('').default(''),
708
708
  }).optional(),
709
709
  logo: ensureFiles ? Joi.file().trim().exists({ baseDir }).optional() : Joi.string().trim().optional(),
710
710
  // Other contents to be included in the bundle
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.33-beta-20241031-073543-49b1ff9b",
6
+ "version": "1.16.33-beta-20241031-130110-767ce94a",
7
7
  "description": "Library to parse/validate/fix blocklet meta",
8
8
  "main": "./lib/index.js",
9
9
  "typings": "./lib/index.d.ts",
@@ -25,12 +25,12 @@
25
25
  "author": "wangshijun <wangshijun2020@gmail.com> (http://github.com/wangshijun)",
26
26
  "license": "Apache-2.0",
27
27
  "dependencies": {
28
- "@abtnode/constant": "1.16.33-beta-20241031-073543-49b1ff9b",
28
+ "@abtnode/constant": "1.16.33-beta-20241031-130110-767ce94a",
29
29
  "@arcblock/did": "1.18.137",
30
30
  "@arcblock/did-ext": "1.18.137",
31
31
  "@arcblock/did-util": "1.18.137",
32
32
  "@arcblock/jwt": "1.18.137",
33
- "@blocklet/constant": "1.16.33-beta-20241031-073543-49b1ff9b",
33
+ "@blocklet/constant": "1.16.33-beta-20241031-130110-767ce94a",
34
34
  "@ocap/asset": "1.18.137",
35
35
  "@ocap/mcrypto": "1.18.137",
36
36
  "@ocap/types": "1.18.137",
@@ -79,5 +79,5 @@
79
79
  "ts-node": "^10.9.1",
80
80
  "typescript": "^5.6.3"
81
81
  },
82
- "gitHead": "5c2659700928afe90cd739b617aababda6593bdc"
82
+ "gitHead": "55d7c7fe2db685a3393306806df8752b671a8e11"
83
83
  }