optolith-database-schema 0.34.8 → 0.34.9
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
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.9](https://github.com/elyukai/optolith-database-schema/compare/v0.34.8...v0.34.9) (2026-03-09)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add circle of damnation as possible poison duration component ([d519e66](https://github.com/elyukai/optolith-database-schema/commit/d519e662b416a376824a1042bf0f11f7e9033017))
|
|
11
|
+
|
|
5
12
|
## [0.34.8](https://github.com/elyukai/optolith-database-schema/compare/v0.34.7...v0.34.8) (2026-03-09)
|
|
6
13
|
|
|
7
14
|
|
package/gen/types.d.ts
CHANGED
|
@@ -22715,6 +22715,9 @@ export type ExpressionBasedPoisonTimeExpressionValue =
|
|
|
22715
22715
|
kind: "Dice"
|
|
22716
22716
|
Dice: Dice
|
|
22717
22717
|
}
|
|
22718
|
+
| {
|
|
22719
|
+
kind: "CircleOfDamnation"
|
|
22720
|
+
}
|
|
22718
22721
|
|
|
22719
22722
|
export type PoisonCost =
|
|
22720
22723
|
| {
|
|
@@ -361,6 +361,7 @@ export declare const ExpressionBasedPoisonTimeExpressionValue: DB.Enum<"Expressi
|
|
|
361
361
|
number: DB.MemberDecl<DB.Integer, true>;
|
|
362
362
|
sides: DB.MemberDecl<DB.IncludeIdentifier<[], DB.TypeAlias<"DieType", DB.Integer, []>>, true>;
|
|
363
363
|
}>, []>>>;
|
|
364
|
+
CircleOfDamnation: DB.EnumCase<null>;
|
|
364
365
|
}, []>;
|
|
365
366
|
export declare const IndefinitePoisonTime: DB.TypeAlias<"IndefinitePoisonTime", DB.Object<{
|
|
366
367
|
translations: DB.MemberDecl<DB.NestedEntityMap<"IndefinitePoisonTimeTranslation", {
|
|
@@ -183,6 +183,7 @@ export const ExpressionBasedPoisonTimeExpressionValue = DB.Enum(import.meta.url,
|
|
|
183
183
|
values: () => ({
|
|
184
184
|
Constant: DB.EnumCase({ type: DB.Integer({ minimum: 1 }) }),
|
|
185
185
|
Dice: DB.EnumCase({ type: DB.IncludeIdentifier(Dice) }),
|
|
186
|
+
CircleOfDamnation: DB.EnumCase({ type: null }),
|
|
186
187
|
}),
|
|
187
188
|
});
|
|
188
189
|
const PoisonTimeUnit = DB.Enum(import.meta.url, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optolith-database-schema",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.9",
|
|
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",
|