@ocap/config 1.29.4 → 1.29.6

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/esm/schema.d.mts CHANGED
@@ -1,4 +1,6 @@
1
+ import * as joi0 from "joi";
2
+
1
3
  //#region src/schema.d.ts
2
- declare const configSchema: any;
4
+ declare const configSchema: joi0.ObjectSchema<any>;
3
5
  //#endregion
4
6
  export { configSchema as default };
package/lib/schema.d.cts CHANGED
@@ -1,4 +1,6 @@
1
+ import * as joi0 from "joi";
2
+
1
3
  //#region src/schema.d.ts
2
- declare const configSchema: any;
4
+ declare const configSchema: joi0.ObjectSchema<any>;
3
5
  //#endregion
4
6
  export { configSchema as default };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.29.4",
6
+ "version": "1.29.6",
7
7
  "description": "OCAP config parsing/validation and default",
8
8
  "type": "module",
9
9
  "main": "./lib/index.cjs",
@@ -36,7 +36,8 @@
36
36
  "lint": "biome check",
37
37
  "lint:fix": "biome check --write",
38
38
  "test": "bun test",
39
- "coverage": "npm run test -- --coverage"
39
+ "coverage": "npm run test -- --coverage",
40
+ "clean": "rm -rf lib esm"
40
41
  },
41
42
  "keywords": [],
42
43
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
@@ -46,11 +47,11 @@
46
47
  "license": "MIT",
47
48
  "devDependencies": {},
48
49
  "dependencies": {
49
- "@arcblock/did": "1.29.4",
50
- "@arcblock/did-util": "1.29.4",
51
- "@arcblock/validator": "1.29.4",
52
- "@ocap/types": "1.29.4",
53
- "@ocap/util": "1.29.4",
50
+ "@arcblock/did": "1.29.6",
51
+ "@arcblock/did-util": "1.29.6",
52
+ "@arcblock/validator": "1.29.6",
53
+ "@ocap/types": "1.29.6",
54
+ "@ocap/util": "1.29.6",
54
55
  "lodash": "^4.17.23"
55
56
  }
56
57
  }