@blocklet/meta 1.16.17-beta-4f13d99d → 1.16.17-beta-5d4664f8

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
@@ -628,8 +628,7 @@ const blockletMetaProps = {
628
628
  .optional(),
629
629
  navigation: Joi.boolean().default(true),
630
630
  serverless: Joi.boolean().optional(),
631
- resourceExportPage: Joi.string().trim(),
632
- // @deprecated
631
+ resourceExportApi: Joi.string().trim(),
633
632
  component: Joi.boolean(), // Can blocklet become a component and be composed by other blocklets
634
633
  }).default({}),
635
634
  // Other contents to be included in the bundle
@@ -15,7 +15,7 @@ export interface TBlockletMeta {
15
15
  component?: boolean;
16
16
  didSpace?: 'required' | 'optional';
17
17
  navigation?: boolean;
18
- resourceExportPage?: string;
18
+ resourceExportApi?: string;
19
19
  serverless?: boolean;
20
20
  };
21
21
  community?: string;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.17-beta-4f13d99d",
6
+ "version": "1.16.17-beta-5d4664f8",
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.17-beta-4f13d99d",
27
+ "@abtnode/constant": "1.16.17-beta-5d4664f8",
28
28
  "@arcblock/did": "1.18.92",
29
29
  "@arcblock/did-ext": "1.18.92",
30
30
  "@arcblock/did-util": "1.18.92",
31
31
  "@arcblock/jwt": "1.18.92",
32
- "@blocklet/constant": "1.16.17-beta-4f13d99d",
32
+ "@blocklet/constant": "1.16.17-beta-5d4664f8",
33
33
  "@ocap/asset": "1.18.92",
34
34
  "@ocap/mcrypto": "1.18.92",
35
35
  "@ocap/types": "1.18.92",
@@ -78,5 +78,5 @@
78
78
  "ts-node": "^10.9.1",
79
79
  "typescript": "^5.0.4"
80
80
  },
81
- "gitHead": "005478c4b14448f2ae896ae363972afbde1d7e7b"
81
+ "gitHead": "e03febafae50406a3fb12706a2349e87ef2c1caa"
82
82
  }