optolith-database-schema 0.34.14 → 0.34.15
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 +7 -0
- package/gen/types.d.ts +5 -0
- package/lib/types/Locale.d.ts +5 -0
- package/lib/types/Locale.js +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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.15](https://github.com/elyukai/optolith-database-schema/compare/v0.34.14...v0.34.15) (2026-03-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add translations for recent additions ([8f59744](https://github.com/elyukai/optolith-database-schema/commit/8f59744409c12894525e18b880296cefc9e90aa1))
|
|
11
|
+
|
|
5
12
|
## [0.34.14](https://github.com/elyukai/optolith-database-schema/compare/v0.34.13...v0.34.14) (2026-03-11)
|
|
6
13
|
|
|
7
14
|
## [0.34.13](https://github.com/elyukai/optolith-database-schema/compare/v0.34.12...v0.34.13) (2026-03-11)
|
package/gen/types.d.ts
CHANGED
|
@@ -2377,6 +2377,10 @@ export interface Locale {
|
|
|
2377
2377
|
"Structure Points": string
|
|
2378
2378
|
".input {$value :number} {{{$value} Structure Points}}": string & { __params: { "value": number } }
|
|
2379
2379
|
"{$value} Structure Points": string & { __params: { "value": StringableTranslationParameter } }
|
|
2380
|
+
"Components": string
|
|
2381
|
+
"Use": string
|
|
2382
|
+
"purchase": string
|
|
2383
|
+
"sale": string
|
|
2380
2384
|
"{$types} poison": string & { __params: { "types": StringableTranslationParameter } }
|
|
2381
2385
|
"Weapon (poison)": string
|
|
2382
2386
|
"Ingestion (poison)": string
|
|
@@ -2419,6 +2423,7 @@ export interface Locale {
|
|
|
2419
2423
|
".input {$count :number} {{check required every {$count}. application}}": string & { __params: { "count": number } }
|
|
2420
2424
|
".input {$count :number} {{check required every {$count}. application in the same month}}": string & { __params: { "count": number } }
|
|
2421
2425
|
"see {$link}": string & { __params: { "link": StringableTranslationParameter } }
|
|
2426
|
+
"CoD": string
|
|
2422
2427
|
"Failed": string
|
|
2423
2428
|
"Progress": string
|
|
2424
2429
|
"Incubation Time": string
|
package/lib/types/Locale.d.ts
CHANGED
|
@@ -1421,6 +1421,10 @@ export declare const Locale: DB.Entity<"Locale", {
|
|
|
1421
1421
|
"Structure Points": null;
|
|
1422
1422
|
".input {$value :number} {{{$value} Structure Points}}": null;
|
|
1423
1423
|
"{$value} Structure Points": null;
|
|
1424
|
+
Components: null;
|
|
1425
|
+
Use: null;
|
|
1426
|
+
purchase: null;
|
|
1427
|
+
sale: null;
|
|
1424
1428
|
"{$types} poison": null;
|
|
1425
1429
|
"Weapon (poison)": null;
|
|
1426
1430
|
"Ingestion (poison)": null;
|
|
@@ -1463,6 +1467,7 @@ export declare const Locale: DB.Entity<"Locale", {
|
|
|
1463
1467
|
".input {$count :number} {{check required every {$count}. application}}": null;
|
|
1464
1468
|
".input {$count :number} {{check required every {$count}. application in the same month}}": null;
|
|
1465
1469
|
"see {$link}": null;
|
|
1470
|
+
CoD: null;
|
|
1466
1471
|
Failed: null;
|
|
1467
1472
|
Progress: null;
|
|
1468
1473
|
"Incubation Time": null;
|
package/lib/types/Locale.js
CHANGED
|
@@ -1461,6 +1461,10 @@ export const Locale = DB.Entity(import.meta.url, {
|
|
|
1461
1461
|
"Structure Points": null,
|
|
1462
1462
|
".input {$value :number} {{{$value} Structure Points}}": null,
|
|
1463
1463
|
"{$value} Structure Points": null,
|
|
1464
|
+
"Components": null,
|
|
1465
|
+
"Use": null,
|
|
1466
|
+
"purchase": null,
|
|
1467
|
+
"sale": null,
|
|
1464
1468
|
// poisons/elixirs
|
|
1465
1469
|
"{$types} poison": null,
|
|
1466
1470
|
"Weapon (poison)": null,
|
|
@@ -1504,6 +1508,7 @@ export const Locale = DB.Entity(import.meta.url, {
|
|
|
1504
1508
|
".input {$count :number} {{check required every {$count}. application}}": null,
|
|
1505
1509
|
".input {$count :number} {{check required every {$count}. application in the same month}}": null,
|
|
1506
1510
|
"see {$link}": null,
|
|
1511
|
+
"CoD": null,
|
|
1507
1512
|
// sex practices
|
|
1508
1513
|
"Failed": null,
|
|
1509
1514
|
// diseases
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optolith-database-schema",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.15",
|
|
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",
|