@blocklet/meta 1.16.29-next-680cf137 → 1.16.29

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
@@ -568,7 +568,8 @@ const blockletMetaProps = {
568
568
  }))
569
569
  .optional(),
570
570
  timeout: Joi.object({
571
- start: Joi.number().min(10).max(600), // start check timeout, 10 seconds ~ 10 minutes
571
+ start: Joi.number().min(10).max(600),
572
+ script: Joi.number().min(1).max(1800), // hook/migration timeout, 1 seconds ~ 30 minutes
572
573
  }).default({ start: 60 }),
573
574
  requirements: Joi.object({
574
575
  abtnode: Joi.semverRange().valid(),
@@ -114,6 +114,7 @@ export interface TBlockletMeta {
114
114
  tags?: string | string[];
115
115
  theme?: TTheme;
116
116
  timeout?: {
117
+ script?: number;
117
118
  start?: number;
118
119
  };
119
120
  title?: TTitle | '';
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.29-next-680cf137",
6
+ "version": "1.16.29",
7
7
  "description": "Library to parse/validate/fix blocklet meta",
8
8
  "main": "./lib/index.js",
9
9
  "typings": "./lib/index.d.ts",
@@ -25,17 +25,17 @@
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.29-next-680cf137",
29
- "@arcblock/did": "1.18.126",
30
- "@arcblock/did-ext": "1.18.126",
31
- "@arcblock/did-util": "1.18.126",
32
- "@arcblock/jwt": "1.18.126",
33
- "@blocklet/constant": "1.16.29-next-680cf137",
34
- "@ocap/asset": "1.18.126",
35
- "@ocap/mcrypto": "1.18.126",
36
- "@ocap/types": "1.18.126",
37
- "@ocap/util": "1.18.126",
38
- "@ocap/wallet": "1.18.126",
28
+ "@abtnode/constant": "1.16.29",
29
+ "@arcblock/did": "1.18.128",
30
+ "@arcblock/did-ext": "1.18.128",
31
+ "@arcblock/did-util": "1.18.128",
32
+ "@arcblock/jwt": "1.18.128",
33
+ "@blocklet/constant": "1.16.29",
34
+ "@ocap/asset": "1.18.128",
35
+ "@ocap/mcrypto": "1.18.128",
36
+ "@ocap/types": "1.18.128",
37
+ "@ocap/util": "1.18.128",
38
+ "@ocap/wallet": "1.18.128",
39
39
  "ajv": "^8.11.0",
40
40
  "axios": "^1.7.2",
41
41
  "cjk-length": "^1.0.0",
@@ -79,5 +79,5 @@
79
79
  "ts-node": "^10.9.1",
80
80
  "typescript": "^5.0.4"
81
81
  },
82
- "gitHead": "17b7e7c5e43c497980d4fe6b5bb20609328041bd"
82
+ "gitHead": "6c49cffcab4fd0dffc6bed261a5eddf733280ae7"
83
83
  }