optolith-database-schema 0.18.2 → 0.18.4
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 +9 -0
- package/lib/main.js +3 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [0.18.4](https://github.com/elyukai/optolith-database-schema/compare/v0.18.3...v0.18.4) (2025-10-05)
|
|
6
|
+
|
|
7
|
+
## [0.18.3](https://github.com/elyukai/optolith-database-schema/compare/v0.18.2...v0.18.3) (2025-10-04)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* include new equipment entities top-level in schema ([b3f7344](https://github.com/elyukai/optolith-database-schema/commit/b3f734484bbc52bea1f0a3542f3fccb1edfe66cf))
|
|
13
|
+
|
|
5
14
|
## [0.18.2](https://github.com/elyukai/optolith-database-schema/compare/v0.18.1...v0.18.2) (2025-10-04)
|
|
6
15
|
|
|
7
16
|
|
package/lib/main.js
CHANGED
|
@@ -76,6 +76,7 @@ import { Weapon } from "./types/equipment/item/Weapon.js";
|
|
|
76
76
|
import { WeaponAccessory } from "./types/equipment/item/WeaponAccessory.js";
|
|
77
77
|
import { ArmorType } from "./types/equipment/item/sub/ArmorType.js";
|
|
78
78
|
import { Reach } from "./types/equipment/item/sub/Reach.js";
|
|
79
|
+
import { ClothingPackage, Laboratory } from "./types/index.js";
|
|
79
80
|
import { AnimistPower } from "./types/magicalActions/AnimistPower.js";
|
|
80
81
|
import { Tribe } from "./types/magicalActions/AnimistPower_Tribe.js";
|
|
81
82
|
import { Curse } from "./types/magicalActions/Curse.js";
|
|
@@ -187,6 +188,7 @@ export const schema = Schema([
|
|
|
187
188
|
ChronicleEnchantment,
|
|
188
189
|
CloseCombatTechnique,
|
|
189
190
|
Clothes,
|
|
191
|
+
ClothingPackage,
|
|
190
192
|
CombatSpecialAbility,
|
|
191
193
|
CombatStyleSpecialAbility,
|
|
192
194
|
CommandSpecialAbility,
|
|
@@ -229,6 +231,7 @@ export const schema = Schema([
|
|
|
229
231
|
Language,
|
|
230
232
|
Curriculum,
|
|
231
233
|
Guideline,
|
|
234
|
+
Laboratory,
|
|
232
235
|
Liebesspielzeug,
|
|
233
236
|
LiturgicalChant,
|
|
234
237
|
LiturgicalStyleSpecialAbility,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optolith-database-schema",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.4",
|
|
4
4
|
"description": "Definitions and utilities for the flat-file database of Optolith, a character creation tool for the Pen and Paper RPG “The Dark Eye 5”, and its external integrations into other software.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tde",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"license": "MPL-2.0",
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@optolith/helpers": "^0.2.2",
|
|
38
|
-
"tsondb": "^0.7.
|
|
38
|
+
"tsondb": "^0.7.5",
|
|
39
39
|
"yaml": "^2.8.1"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|