raain-model 3.0.2 → 3.0.3
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/CHANGELOG.md +16 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.0.3] - 2025-04-17
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Enhanced support for string IDs in team parameters
|
|
15
|
+
- Improved error handling in getMapData() methods
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Modified parameter types from `any` to `string` for configurationAsJSON
|
|
20
|
+
- Enhanced node creation with proper link handling
|
|
21
|
+
- Improved type safety and error handling across components
|
|
22
|
+
|
|
10
23
|
## [3.0.2] - 2025-04-17
|
|
11
24
|
|
|
12
25
|
### Added
|
|
@@ -225,7 +238,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
225
238
|
- Initial release
|
|
226
239
|
- First extracts from RAAIN services
|
|
227
240
|
|
|
228
|
-
[Unreleased]: https://github.com/raainio/raain-model/compare/v3.0.
|
|
241
|
+
[Unreleased]: https://github.com/raainio/raain-model/compare/v3.0.3...HEAD
|
|
242
|
+
|
|
243
|
+
[3.0.3]: https://github.com/raainio/raain-model/compare/v3.0.2...v3.0.3
|
|
229
244
|
|
|
230
245
|
[3.0.2]: https://github.com/raainio/raain-model/compare/v3.0.1...v3.0.2
|
|
231
246
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "raain-model",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"author": "contact@radartorain.com",
|
|
5
5
|
"homepage": "https://github.com/raainio/raain-model",
|
|
6
6
|
"description": "radartorain.com api model",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "npm run build-dist",
|
|
32
|
-
"build-version": "VERSION=\"$(npm version patch --no-git-tag-version)\"",
|
|
32
|
+
"build-version": "VERSION=\"$(npm version patch --no-git-tag-version)\" && npm i",
|
|
33
33
|
"build-dist": "rm -rf dist/ && npx tsc && cp package.json dist/ && cp *.md dist/",
|
|
34
34
|
"test": "mocha --require ts-node/register 'specs/**/**.spec.ts'",
|
|
35
35
|
"docs": "typedoc --out docs src/",
|