optolith-database-schema 0.23.0 → 0.23.1
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.23.1](https://github.com/elyukai/optolith-database-schema/compare/v0.23.0...v0.23.1) (2025-12-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* restore removed magical artifact translation properties ([d4b8ad3](https://github.com/elyukai/optolith-database-schema/commit/d4b8ad3bd854b32d2a6b05d1e79837c210910d4b))
|
|
11
|
+
|
|
5
12
|
## [0.23.0](https://github.com/elyukai/optolith-database-schema/compare/v0.22.0...v0.23.0) (2025-12-04)
|
|
6
13
|
|
|
7
14
|
|
package/gen/types.d.ts
CHANGED
|
@@ -20358,6 +20358,16 @@ export interface MagicalArtifactTranslation {
|
|
|
20358
20358
|
*/
|
|
20359
20359
|
description?: string
|
|
20360
20360
|
|
|
20361
|
+
/**
|
|
20362
|
+
* A note.
|
|
20363
|
+
*/
|
|
20364
|
+
note?: string
|
|
20365
|
+
|
|
20366
|
+
/**
|
|
20367
|
+
* Rules text.
|
|
20368
|
+
*/
|
|
20369
|
+
rules?: string
|
|
20370
|
+
|
|
20361
20371
|
/**
|
|
20362
20372
|
* Effect text.
|
|
20363
20373
|
*/
|
|
@@ -204,6 +204,8 @@ export declare const MagicalArtifact: Entity<"MagicalArtifact", {
|
|
|
204
204
|
name: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
205
205
|
secondary_name: import("tsondb/schema/def").MemberDecl<String, false>;
|
|
206
206
|
description: import("tsondb/schema/def").MemberDecl<String, false>;
|
|
207
|
+
note: import("tsondb/schema/def").MemberDecl<String, false>;
|
|
208
|
+
rules: import("tsondb/schema/def").MemberDecl<String, false>;
|
|
207
209
|
effect: import("tsondb/schema/def").MemberDecl<String, false>;
|
|
208
210
|
cost: import("tsondb/schema/def").MemberDecl<String, false>;
|
|
209
211
|
errata: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"Errata", import("tsondb/schema/def").ArrayType<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"Erratum", Object<{
|
|
@@ -41,6 +41,14 @@ export const MagicalArtifact = Entity(import.meta.url, {
|
|
|
41
41
|
comment: "Description text.",
|
|
42
42
|
type: String({ minLength: 1, isMarkdown: true }),
|
|
43
43
|
}),
|
|
44
|
+
note: Optional({
|
|
45
|
+
comment: "A note.",
|
|
46
|
+
type: String({ minLength: 1, isMarkdown: true }),
|
|
47
|
+
}),
|
|
48
|
+
rules: Optional({
|
|
49
|
+
comment: "Rules text.",
|
|
50
|
+
type: String({ minLength: 1, isMarkdown: true }),
|
|
51
|
+
}),
|
|
44
52
|
effect: Optional({
|
|
45
53
|
comment: "Effect text.",
|
|
46
54
|
type: String({ minLength: 1, isMarkdown: true }),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optolith-database-schema",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.1",
|
|
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",
|