@twin.org/logging-models 0.0.2-next.4 → 0.0.3-next.1

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.
Files changed (2) hide show
  1. package/docs/changelog.md +17 -0
  2. package/package.json +1 -29
package/docs/changelog.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @twin.org/logging-models - Changelog
2
2
 
3
+ ## [0.0.3-next.1](https://github.com/twinfoundation/logging/compare/logging-models-v0.0.3-next.0...logging-models-v0.0.3-next.1) (2025-11-10)
4
+
5
+
6
+ ### Features
7
+
8
+ * add context id features ([#33](https://github.com/twinfoundation/logging/issues/33)) ([38e982c](https://github.com/twinfoundation/logging/commit/38e982c9f009019fc02b67d919444b52657c9021))
9
+ * add validate-locales ([df53f13](https://github.com/twinfoundation/logging/commit/df53f1331394f2f9333e91e4995a88dded90e484))
10
+ * eslint migration to flat config ([1f9fdde](https://github.com/twinfoundation/logging/commit/1f9fddedfdcce9942afed431d9460a0f22092744))
11
+ * update dependencies ([976fc06](https://github.com/twinfoundation/logging/commit/976fc06976c4899769486b7cb2e827c407d7fc89))
12
+ * update framework core ([aac823c](https://github.com/twinfoundation/logging/commit/aac823c2ead88843618b8a82b308d5a793411764))
13
+ * use shared store mechanism ([#20](https://github.com/twinfoundation/logging/issues/20)) ([bbacd31](https://github.com/twinfoundation/logging/commit/bbacd31af991d82d84294ad432a40830692880ca))
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * query params force coercion ([71c5329](https://github.com/twinfoundation/logging/commit/71c53292d300acae0369bd7937c5ca3ab5430689))
19
+
3
20
  ## [0.0.2-next.3](https://github.com/twinfoundation/logging/compare/logging-models-v0.0.2-next.2...logging-models-v0.0.2-next.3) (2025-10-09)
4
21
 
5
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/logging-models",
3
- "version": "0.0.2-next.4",
3
+ "version": "0.0.3-next.1",
4
4
  "description": "Models which define the structure of the logging connectors and services",
5
5
  "repository": {
6
6
  "type": "git",
@@ -13,39 +13,11 @@
13
13
  "engines": {
14
14
  "node": ">=20.0.0"
15
15
  },
16
- "scripts": {
17
- "clean": "rimraf dist coverage docs/reference",
18
- "build": "tspc",
19
- "dev": "nodemon --watch src --ext ts --exec \"npm run build\"",
20
- "test": "vitest --run --config ./vitest.config.ts --no-cache",
21
- "test:build": "tspc -p ./tests/tsconfig.json --noEmit",
22
- "validate-locales": "validate-locales",
23
- "test:coverage": "vitest --run --coverage --config ./vitest.config.ts --no-cache",
24
- "docs:clean": "rimraf docs/reference",
25
- "docs:generate": "typedoc",
26
- "docs": "npm run docs:clean && npm run docs:generate",
27
- "dist": "npm run clean && npm run build && npm run validate-locales && npm run test:build && npm run test && npm run docs",
28
- "dist:no-test": "npm run clean && npm run build && npm run test:build && npm run docs"
29
- },
30
16
  "dependencies": {
31
17
  "@twin.org/core": "next",
32
18
  "@twin.org/entity": "next",
33
19
  "@twin.org/nameof": "next"
34
20
  },
35
- "devDependencies": {
36
- "@twin.org/nameof-transformer": "next",
37
- "@twin.org/nameof-vitest-plugin": "next",
38
- "@twin.org/validate-locales": "next",
39
- "@vitest/coverage-v8": "4.0.8",
40
- "copyfiles": "2.4.1",
41
- "nodemon": "3.1.10",
42
- "rimraf": "6.1.0",
43
- "ts-patch": "3.3.0",
44
- "typedoc": "0.28.14",
45
- "typedoc-plugin-markdown": "4.9.0",
46
- "typescript": "5.9.3",
47
- "vitest": "4.0.8"
48
- },
49
21
  "main": "./dist/es/index.js",
50
22
  "types": "./dist/types/index.d.ts",
51
23
  "exports": {