optolith-database-schema 0.34.15 → 0.34.17
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 +14 -0
- package/gen/types.d.ts +5 -0
- package/lib/types/Locale.d.ts +5 -0
- package/lib/types/Locale.js +7 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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.34.17](https://github.com/elyukai/optolith-database-schema/compare/v0.34.16...v0.34.17) (2026-03-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add two translations ([4d3b548](https://github.com/elyukai/optolith-database-schema/commit/4d3b548c70f4bb12e0bb6178a0a0426be56c4b97))
|
|
11
|
+
|
|
12
|
+
## [0.34.16](https://github.com/elyukai/optolith-database-schema/compare/v0.34.15...v0.34.16) (2026-03-12)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* add translations for enhancements ([5c11a0f](https://github.com/elyukai/optolith-database-schema/commit/5c11a0f59cbbeb162d67b492be2a3481782535d7))
|
|
18
|
+
|
|
5
19
|
## [0.34.15](https://github.com/elyukai/optolith-database-schema/compare/v0.34.14...v0.34.15) (2026-03-12)
|
|
6
20
|
|
|
7
21
|
|
package/gen/types.d.ts
CHANGED
|
@@ -2508,6 +2508,11 @@ export interface Locale {
|
|
|
2508
2508
|
"The Twelve Blessings": string
|
|
2509
2509
|
"except for {$list :list type=conjunction}": string & { __params: { "list": StringableTranslationParameter } }
|
|
2510
2510
|
"depends on selected tradition": string
|
|
2511
|
+
"Enhancements": string
|
|
2512
|
+
"SR {$value}": string & { __params: { "value": StringableTranslationParameter } }
|
|
2513
|
+
".input {$hiddenCount :number} {{Prerequisites}}": string & { __params: { "hiddenCount": number } }
|
|
2514
|
+
"Profession Package": string
|
|
2515
|
+
"Optional Rule": string
|
|
2511
2516
|
}
|
|
2512
2517
|
}
|
|
2513
2518
|
|
package/lib/types/Locale.d.ts
CHANGED
|
@@ -1552,6 +1552,11 @@ export declare const Locale: DB.Entity<"Locale", {
|
|
|
1552
1552
|
"The Twelve Blessings": null;
|
|
1553
1553
|
"except for {$list :list type=conjunction}": null;
|
|
1554
1554
|
"depends on selected tradition": null;
|
|
1555
|
+
Enhancements: null;
|
|
1556
|
+
"SR {$value}": null;
|
|
1557
|
+
".input {$hiddenCount :number} {{Prerequisites}}": null;
|
|
1558
|
+
"Profession Package": null;
|
|
1559
|
+
"Optional Rule": null;
|
|
1555
1560
|
}>, false>;
|
|
1556
1561
|
}, undefined>;
|
|
1557
1562
|
export declare const NestedTranslationMap: <Name extends string, T extends Record<string, DB.MemberDecl>, R extends boolean>(MemberDeclCreator: <T_1 extends DB.Type>(options: {
|
package/lib/types/Locale.js
CHANGED
|
@@ -1601,6 +1601,13 @@ export const Locale = DB.Entity(import.meta.url, {
|
|
|
1601
1601
|
"The Twelve Blessings": null,
|
|
1602
1602
|
"except for {$list :list type=conjunction}": null,
|
|
1603
1603
|
"depends on selected tradition": null,
|
|
1604
|
+
// Enhancements
|
|
1605
|
+
"Enhancements": null,
|
|
1606
|
+
"SR {$value}": null,
|
|
1607
|
+
".input {$hiddenCount :number} {{Prerequisites}}": null,
|
|
1608
|
+
// Library Entry Subtitles
|
|
1609
|
+
"Profession Package": null,
|
|
1610
|
+
"Optional Rule": null,
|
|
1604
1611
|
}, { allKeysAreRequired: true }),
|
|
1605
1612
|
}),
|
|
1606
1613
|
}),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optolith-database-schema",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.17",
|
|
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",
|