@uniformdev/context 20.27.1 → 20.30.0

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.
@@ -961,6 +961,8 @@ interface components$3 {
961
961
  subcategory?: string;
962
962
  /** @description The dimension's name (without category) */
963
963
  name: string;
964
+ /** @description Optional description of the dimension */
965
+ description?: string;
964
966
  /** @description The minimum score possible for the dimension */
965
967
  min: number;
966
968
  /** @description The maximum score possible for the dimension */
package/dist/api/api.d.ts CHANGED
@@ -961,6 +961,8 @@ interface components$3 {
961
961
  subcategory?: string;
962
962
  /** @description The dimension's name (without category) */
963
963
  name: string;
964
+ /** @description Optional description of the dimension */
965
+ description?: string;
964
966
  /** @description The minimum score possible for the dimension */
965
967
  min: number;
966
968
  /** @description The maximum score possible for the dimension */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/context",
3
- "version": "20.27.1",
3
+ "version": "20.30.0",
4
4
  "description": "Uniform Context core package",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -41,7 +41,8 @@
41
41
  "dev": "run-s update-openapi dev:ts",
42
42
  "dev:ts": "tsup --watch",
43
43
  "clean": "rimraf dist",
44
- "test": "jest --maxWorkers=1",
44
+ "test": "vitest",
45
+ "test:coverage": "vitest run --coverage",
45
46
  "lint": "eslint \"src/**/*.{js,ts,tsx}\"",
46
47
  "format": "prettier --write \"src/**/*.{js,ts,tsx}\"",
47
48
  "update-openapi": "tsx ./scripts/update-openapi.cts",
@@ -52,7 +53,11 @@
52
53
  "devDependencies": {
53
54
  "@types/js-cookie": "3.0.6",
54
55
  "@types/uuid": "9.0.4",
55
- "benny": "3.7.1"
56
+ "@vitest/coverage-v8": "3.2.4",
57
+ "benny": "3.7.1",
58
+ "vite": "^7.0.6",
59
+ "vite-tsconfig-paths": "^5.1.4",
60
+ "vitest": "3.2.4"
56
61
  },
57
62
  "dependencies": {
58
63
  "dequal": "^2.0.2",
@@ -67,5 +72,5 @@
67
72
  "publishConfig": {
68
73
  "access": "public"
69
74
  },
70
- "gitHead": "b9f3e377c61ae30c4bcd3db5636faf07631de2e1"
75
+ "gitHead": "933c8162daf230a896cc8962f63fbb35efd03653"
71
76
  }