@blocklet/meta 1.16.13-beta-55b3e93d → 1.16.13-beta-423a40b1

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
@@ -268,6 +268,7 @@ const interfaceSchema = Joi.object({
268
268
  cacheable: Joi.array().items(cacheableSchema).unique(),
269
269
  services: Joi.array().items(serviceSchema).unique('name'),
270
270
  endpoints: Joi.array().items(endpointSchema).unique('type'),
271
+ pageGroups: Joi.array().items(Joi.string().min(1).max(255).trim()).unique(),
271
272
  }).meta({
272
273
  className: 'TInterface',
273
274
  unknownType: 'any',
@@ -178,6 +178,7 @@ export interface TInterface {
178
178
  cacheable?: TPathPrefix[];
179
179
  endpoints?: TEndpoint[];
180
180
  name: string;
181
+ pageGroups?: string[];
181
182
  path?: string;
182
183
  port?: string | {
183
184
  external: number;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.13-beta-55b3e93d",
6
+ "version": "1.16.13-beta-423a40b1",
7
7
  "description": "Library to parse/validate/fix blocklet meta",
8
8
  "main": "./lib/index.js",
9
9
  "typings": "./lib/index.d.ts",
@@ -24,13 +24,13 @@
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.13-beta-55b3e93d",
28
- "@abtnode/util": "1.16.13-beta-55b3e93d",
27
+ "@abtnode/constant": "1.16.13-beta-423a40b1",
28
+ "@abtnode/util": "1.16.13-beta-423a40b1",
29
29
  "@arcblock/did": "1.18.84",
30
30
  "@arcblock/did-ext": "1.18.84",
31
31
  "@arcblock/did-util": "1.18.84",
32
32
  "@arcblock/jwt": "1.18.84",
33
- "@blocklet/constant": "1.16.13-beta-55b3e93d",
33
+ "@blocklet/constant": "1.16.13-beta-423a40b1",
34
34
  "@ocap/asset": "1.18.84",
35
35
  "@ocap/mcrypto": "1.18.84",
36
36
  "@ocap/types": "1.18.84",
@@ -79,5 +79,5 @@
79
79
  "ts-node": "^10.9.1",
80
80
  "typescript": "^5.0.4"
81
81
  },
82
- "gitHead": "1c734de99ff70fad99e9cc3fb55834e0bb6f5bfd"
82
+ "gitHead": "1aee04f45042bd4784ca72f9f8b93918980be4d4"
83
83
  }