@optolith/database-schema 0.44.1 → 0.46.0
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 +29 -0
- package/gen/types.d.ts +679 -240
- package/lib/main.js +3 -0
- package/lib/types/Advantage.js +2 -1
- package/lib/types/AnimalDisease.d.ts +1 -0
- package/lib/types/Culture.js +1 -0
- package/lib/types/Disadvantage.js +2 -1
- package/lib/types/Disease.d.ts +1 -0
- package/lib/types/Locale.d.ts +1 -0
- package/lib/types/Locale.js +1 -0
- package/lib/types/_ActivatableNames.d.ts +14 -0
- package/lib/types/_ActivatableNames.js +12 -0
- package/lib/types/_AlternativeNames.d.ts +1 -0
- package/lib/types/_AlternativeNames.js +5 -0
- package/lib/types/_DiseasePoison.d.ts +1 -0
- package/lib/types/_Identifier.d.ts +3 -0
- package/lib/types/_Identifier.js +6 -0
- package/lib/types/_ResponsiveText.d.ts +17 -0
- package/lib/types/_ResponsiveText.js +17 -0
- package/lib/types/equipment/item/Elixir.d.ts +1 -0
- package/lib/types/equipment/item/HerbalAid.d.ts +64 -0
- package/lib/types/equipment/item/HerbalAid.js +56 -0
- package/lib/types/equipment/item/Plant.d.ts +183 -0
- package/lib/types/equipment/item/Plant.js +222 -0
- package/lib/types/equipment/item/Poison.d.ts +1 -0
- package/lib/types/equipment/item/_Herbary.d.ts +7 -0
- package/lib/types/equipment/item/_Herbary.js +11 -0
- package/lib/types/equipment/item/sub/Biome.d.ts +6 -0
- package/lib/types/equipment/item/sub/Biome.js +21 -0
- package/lib/types/index.d.ts +4 -1
- package/lib/types/index.js +3 -0
- package/lib/types/specialAbility/AdvancedCombatSpecialAbility.js +2 -1
- package/lib/types/specialAbility/AdvancedKarmaSpecialAbility.js +2 -1
- package/lib/types/specialAbility/AdvancedMagicalSpecialAbility.js +2 -1
- package/lib/types/specialAbility/AdvancedSkillSpecialAbility.js +2 -1
- package/lib/types/specialAbility/AncestorGlyph.js +2 -1
- package/lib/types/specialAbility/BlessedTradition.js +2 -0
- package/lib/types/specialAbility/BrawlingSpecialAbility.js +2 -1
- package/lib/types/specialAbility/CeremonialItemSpecialAbility.js +2 -1
- package/lib/types/specialAbility/CombatSpecialAbility.js +2 -1
- package/lib/types/specialAbility/CombatStyleSpecialAbility.js +2 -1
- package/lib/types/specialAbility/CommandSpecialAbility.js +2 -1
- package/lib/types/specialAbility/FamiliarSpecialAbility.js +2 -1
- package/lib/types/specialAbility/FatePointSexSpecialAbility.js +2 -1
- package/lib/types/specialAbility/FatePointSpecialAbility.js +2 -1
- package/lib/types/specialAbility/GeneralSpecialAbility.js +2 -1
- package/lib/types/specialAbility/KarmaSpecialAbility.js +2 -1
- package/lib/types/specialAbility/LiturgicalStyleSpecialAbility.js +2 -1
- package/lib/types/specialAbility/LycantropicGift.js +2 -1
- package/lib/types/specialAbility/MagicStyleSpecialAbility.js +2 -1
- package/lib/types/specialAbility/MagicalSign.js +2 -0
- package/lib/types/specialAbility/MagicalSpecialAbility.js +2 -1
- package/lib/types/specialAbility/MagicalTradition.js +2 -1
- package/lib/types/specialAbility/PactGift.js +2 -1
- package/lib/types/specialAbility/ProtectiveWardingCircleSpecialAbility.js +2 -1
- package/lib/types/specialAbility/Sermon.js +2 -1
- package/lib/types/specialAbility/SexSpecialAbility.js +2 -1
- package/lib/types/specialAbility/SikaryanDrainSpecialAbility.js +2 -1
- package/lib/types/specialAbility/SkillStyleSpecialAbility.js +2 -1
- package/lib/types/specialAbility/VampiricGift.js +2 -1
- package/lib/types/specialAbility/Vision.js +2 -1
- package/lib/types/specialAbility/sub/Language.d.ts +2 -1
- package/lib/types/specialAbility/sub/Language.js +1 -1
- package/lib/types/specialAbility/sub/Script.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as DB from "tsondb/schema/dsl";
|
|
2
2
|
import { levels, maximum, name, name_in_library, rules } from "../_Activatable.js";
|
|
3
3
|
import { ap_value, ap_value_append, ap_value_l10n } from "../_ActivatableAdventurePointsValue.js";
|
|
4
|
-
import { nameBuilderRules } from "../_ActivatableNames.js";
|
|
4
|
+
import { activatableDisplayNameCustomizer, nameBuilderRules } from "../_ActivatableNames.js";
|
|
5
5
|
import { explicit_select_options, select_options } from "../_ActivatableSelectOptions.js";
|
|
6
6
|
import { GeneralPrerequisites } from "../_Prerequisite.js";
|
|
7
7
|
import { NestedTranslationMap } from "../Locale.js";
|
|
@@ -33,6 +33,7 @@ export const LycantropicGift = DB.Entity(import.meta.url, {
|
|
|
33
33
|
})),
|
|
34
34
|
}),
|
|
35
35
|
instanceDisplayName: {},
|
|
36
|
+
instanceDisplayNameCustomizer: activatableDisplayNameCustomizer,
|
|
36
37
|
uniqueConstraints: [
|
|
37
38
|
{
|
|
38
39
|
entityMapKeyPath: "translations",
|
|
@@ -2,7 +2,7 @@ import * as DB from "tsondb/schema/dsl";
|
|
|
2
2
|
import { levels, maximum, name, name_in_library, rules } from "../_Activatable.js";
|
|
3
3
|
import { advanced } from "../_ActivatableAdvanced.js";
|
|
4
4
|
import { ap_value, ap_value_append, ap_value_l10n } from "../_ActivatableAdventurePointsValue.js";
|
|
5
|
-
import { nameBuilderRules } from "../_ActivatableNames.js";
|
|
5
|
+
import { activatableDisplayNameCustomizer, nameBuilderRules } from "../_ActivatableNames.js";
|
|
6
6
|
import { explicit_select_options, select_options } from "../_ActivatableSelectOptions.js";
|
|
7
7
|
import { skill_applications, skill_uses } from "../_ActivatableSkillApplicationsAndUses.js";
|
|
8
8
|
import { AdvancedMagicalSpecialAbilityIdentifier } from "../_Identifier.js";
|
|
@@ -39,6 +39,7 @@ export const MagicStyleSpecialAbility = DB.Entity(import.meta.url, {
|
|
|
39
39
|
})),
|
|
40
40
|
}),
|
|
41
41
|
instanceDisplayName: {},
|
|
42
|
+
instanceDisplayNameCustomizer: activatableDisplayNameCustomizer,
|
|
42
43
|
uniqueConstraints: [
|
|
43
44
|
{
|
|
44
45
|
entityMapKeyPath: "translations",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as DB from "tsondb/schema/dsl";
|
|
2
2
|
import { effect, name, name_in_library } from "../_Activatable.js";
|
|
3
3
|
import { ap_value_append, ap_value_l10n } from "../_ActivatableAdventurePointsValue.js";
|
|
4
|
+
import { activatableDisplayNameCustomizer } from "../_ActivatableNames.js";
|
|
4
5
|
import { propertyOptional } from "../_ActivatableNonMundane.js";
|
|
5
6
|
import { OneTimeCostMap } from "../_ActivatableSkillCost.js";
|
|
6
7
|
import { GeneralPrerequisites } from "../_Prerequisite.js";
|
|
@@ -36,6 +37,7 @@ export const MagicalSign = DB.Entity(import.meta.url, {
|
|
|
36
37
|
})),
|
|
37
38
|
}),
|
|
38
39
|
instanceDisplayName: {},
|
|
40
|
+
instanceDisplayNameCustomizer: activatableDisplayNameCustomizer,
|
|
39
41
|
uniqueConstraints: [
|
|
40
42
|
{
|
|
41
43
|
entityMapKeyPath: "translations",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as DB from "tsondb/schema/dsl";
|
|
2
2
|
import { input, levels, maximum, name, name_in_library, rules } from "../_Activatable.js";
|
|
3
3
|
import { ap_value, ap_value_append, ap_value_l10n } from "../_ActivatableAdventurePointsValue.js";
|
|
4
|
-
import { nameBuilderRules } from "../_ActivatableNames.js";
|
|
4
|
+
import { activatableDisplayNameCustomizer, nameBuilderRules } from "../_ActivatableNames.js";
|
|
5
5
|
import { explicit_select_options, select_options } from "../_ActivatableSelectOptions.js";
|
|
6
6
|
import { skill_applications, skill_uses } from "../_ActivatableSkillApplicationsAndUses.js";
|
|
7
7
|
import { GeneralPrerequisites } from "../_Prerequisite.js";
|
|
@@ -37,6 +37,7 @@ export const MagicalSpecialAbility = DB.Entity(import.meta.url, {
|
|
|
37
37
|
})),
|
|
38
38
|
}),
|
|
39
39
|
instanceDisplayName: {},
|
|
40
|
+
instanceDisplayNameCustomizer: activatableDisplayNameCustomizer,
|
|
40
41
|
uniqueConstraints: [
|
|
41
42
|
{
|
|
42
43
|
entityMapKeyPath: "translations",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as DB from "tsondb/schema/dsl";
|
|
2
2
|
import { levels, name, name_in_library } from "../_Activatable.js";
|
|
3
3
|
import { ap_value, ap_value_append, ap_value_l10n } from "../_ActivatableAdventurePointsValue.js";
|
|
4
|
-
import { nameBuilderRules } from "../_ActivatableNames.js";
|
|
4
|
+
import { activatableDisplayNameCustomizer, nameBuilderRules } from "../_ActivatableNames.js";
|
|
5
5
|
import { explicit_select_options, select_options } from "../_ActivatableSelectOptions.js";
|
|
6
6
|
import { skill_applications, skill_uses } from "../_ActivatableSkillApplicationsAndUses.js";
|
|
7
7
|
import { AttributeIdentifier, InfluenceIdentifier, MagicalTraditionIdentifier, } from "../_Identifier.js";
|
|
@@ -96,6 +96,7 @@ export const MagicalTradition = DB.Entity(import.meta.url, {
|
|
|
96
96
|
})),
|
|
97
97
|
}),
|
|
98
98
|
instanceDisplayName: {},
|
|
99
|
+
instanceDisplayNameCustomizer: activatableDisplayNameCustomizer,
|
|
99
100
|
uniqueConstraints: [
|
|
100
101
|
{
|
|
101
102
|
entityMapKeyPath: "translations",
|
|
@@ -2,7 +2,7 @@ import * as DB from "tsondb/schema/dsl";
|
|
|
2
2
|
import { effect, levels, maximum, name, name_in_library } from "../_Activatable.js";
|
|
3
3
|
import { ap_value, ap_value_append, ap_value_l10n } from "../_ActivatableAdventurePointsValue.js";
|
|
4
4
|
import { automatic_entries } from "../_ActivatableAutomatic.js";
|
|
5
|
-
import { nameBuilderRules } from "../_ActivatableNames.js";
|
|
5
|
+
import { activatableDisplayNameCustomizer, nameBuilderRules } from "../_ActivatableNames.js";
|
|
6
6
|
import { explicit_select_options, select_options } from "../_ActivatableSelectOptions.js";
|
|
7
7
|
import { GeneralPrerequisites } from "../_Prerequisite.js";
|
|
8
8
|
import { NestedTranslationMap } from "../Locale.js";
|
|
@@ -39,6 +39,7 @@ export const PactGift = DB.Entity(import.meta.url, {
|
|
|
39
39
|
})),
|
|
40
40
|
}),
|
|
41
41
|
instanceDisplayName: {},
|
|
42
|
+
instanceDisplayNameCustomizer: activatableDisplayNameCustomizer,
|
|
42
43
|
uniqueConstraints: [
|
|
43
44
|
{
|
|
44
45
|
entityMapKeyPath: "translations",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as DB from "tsondb/schema/dsl";
|
|
2
2
|
import { levels, maximum, name, name_in_library } from "../_Activatable.js";
|
|
3
3
|
import { ap_value, ap_value_append, ap_value_l10n } from "../_ActivatableAdventurePointsValue.js";
|
|
4
|
-
import { nameBuilderRules } from "../_ActivatableNames.js";
|
|
4
|
+
import { activatableDisplayNameCustomizer, nameBuilderRules } from "../_ActivatableNames.js";
|
|
5
5
|
import { explicit_select_options, select_options } from "../_ActivatableSelectOptions.js";
|
|
6
6
|
import { GeneralPrerequisites } from "../_Prerequisite.js";
|
|
7
7
|
import { NestedTranslationMap } from "../Locale.js";
|
|
@@ -44,6 +44,7 @@ export const ProtectiveWardingCircleSpecialAbility = DB.Entity(import.meta.url,
|
|
|
44
44
|
})),
|
|
45
45
|
}),
|
|
46
46
|
instanceDisplayName: {},
|
|
47
|
+
instanceDisplayNameCustomizer: activatableDisplayNameCustomizer,
|
|
47
48
|
uniqueConstraints: [
|
|
48
49
|
{
|
|
49
50
|
entityMapKeyPath: "translations",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as DB from "tsondb/schema/dsl";
|
|
2
2
|
import { levels, maximum, name, name_in_library, rules } from "../_Activatable.js";
|
|
3
3
|
import { ap_value, ap_value_append, ap_value_l10n } from "../_ActivatableAdventurePointsValue.js";
|
|
4
|
-
import { nameBuilderRules } from "../_ActivatableNames.js";
|
|
4
|
+
import { activatableDisplayNameCustomizer, nameBuilderRules } from "../_ActivatableNames.js";
|
|
5
5
|
import { explicit_select_options, select_options } from "../_ActivatableSelectOptions.js";
|
|
6
6
|
import { GeneralPrerequisites } from "../_Prerequisite.js";
|
|
7
7
|
import { NestedTranslationMap } from "../Locale.js";
|
|
@@ -33,6 +33,7 @@ export const Sermon = DB.Entity(import.meta.url, {
|
|
|
33
33
|
})),
|
|
34
34
|
}),
|
|
35
35
|
instanceDisplayName: {},
|
|
36
|
+
instanceDisplayNameCustomizer: activatableDisplayNameCustomizer,
|
|
36
37
|
uniqueConstraints: [
|
|
37
38
|
{
|
|
38
39
|
entityMapKeyPath: "translations",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as DB from "tsondb/schema/dsl";
|
|
2
2
|
import { levels, maximum, name, name_in_library, rules } from "../_Activatable.js";
|
|
3
3
|
import { ap_value, ap_value_append, ap_value_l10n } from "../_ActivatableAdventurePointsValue.js";
|
|
4
|
-
import { nameBuilderRules } from "../_ActivatableNames.js";
|
|
4
|
+
import { activatableDisplayNameCustomizer, nameBuilderRules } from "../_ActivatableNames.js";
|
|
5
5
|
import { explicit_select_options, select_options } from "../_ActivatableSelectOptions.js";
|
|
6
6
|
import { skill_applications, skill_uses } from "../_ActivatableSkillApplicationsAndUses.js";
|
|
7
7
|
import { GeneralPrerequisites } from "../_Prerequisite.js";
|
|
@@ -36,6 +36,7 @@ export const SexSpecialAbility = DB.Entity(import.meta.url, {
|
|
|
36
36
|
})),
|
|
37
37
|
}),
|
|
38
38
|
instanceDisplayName: {},
|
|
39
|
+
instanceDisplayNameCustomizer: activatableDisplayNameCustomizer,
|
|
39
40
|
uniqueConstraints: [
|
|
40
41
|
{
|
|
41
42
|
entityMapKeyPath: "translations",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as DB from "tsondb/schema/dsl";
|
|
2
2
|
import { levels, maximum, name, name_in_library, rules } from "../_Activatable.js";
|
|
3
3
|
import { ap_value, ap_value_append, ap_value_l10n } from "../_ActivatableAdventurePointsValue.js";
|
|
4
|
-
import { nameBuilderRules } from "../_ActivatableNames.js";
|
|
4
|
+
import { activatableDisplayNameCustomizer, nameBuilderRules } from "../_ActivatableNames.js";
|
|
5
5
|
import { explicit_select_options, select_options } from "../_ActivatableSelectOptions.js";
|
|
6
6
|
import { GeneralPrerequisites } from "../_Prerequisite.js";
|
|
7
7
|
import { NestedTranslationMap } from "../Locale.js";
|
|
@@ -33,6 +33,7 @@ export const SikaryanDrainSpecialAbility = DB.Entity(import.meta.url, {
|
|
|
33
33
|
})),
|
|
34
34
|
}),
|
|
35
35
|
instanceDisplayName: {},
|
|
36
|
+
instanceDisplayNameCustomizer: activatableDisplayNameCustomizer,
|
|
36
37
|
uniqueConstraints: [
|
|
37
38
|
{
|
|
38
39
|
entityMapKeyPath: "translations",
|
|
@@ -2,7 +2,7 @@ import * as DB from "tsondb/schema/dsl";
|
|
|
2
2
|
import { levels, maximum, name, name_in_library, rules } from "../_Activatable.js";
|
|
3
3
|
import { advanced } from "../_ActivatableAdvanced.js";
|
|
4
4
|
import { ap_value, ap_value_append, ap_value_l10n } from "../_ActivatableAdventurePointsValue.js";
|
|
5
|
-
import { nameBuilderRules } from "../_ActivatableNames.js";
|
|
5
|
+
import { activatableDisplayNameCustomizer, nameBuilderRules } from "../_ActivatableNames.js";
|
|
6
6
|
import { explicit_select_options, select_options } from "../_ActivatableSelectOptions.js";
|
|
7
7
|
import { AdvancedSkillStyleSpecialAbilityIdentifier } from "../_IdentifierGroup.js";
|
|
8
8
|
import { GeneralPrerequisites } from "../_Prerequisite.js";
|
|
@@ -36,6 +36,7 @@ export const SkillStyleSpecialAbility = DB.Entity(import.meta.url, {
|
|
|
36
36
|
})),
|
|
37
37
|
}),
|
|
38
38
|
instanceDisplayName: {},
|
|
39
|
+
instanceDisplayNameCustomizer: activatableDisplayNameCustomizer,
|
|
39
40
|
uniqueConstraints: [
|
|
40
41
|
{
|
|
41
42
|
entityMapKeyPath: "translations",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as DB from "tsondb/schema/dsl";
|
|
2
2
|
import { levels, maximum, name, name_in_library, rules } from "../_Activatable.js";
|
|
3
3
|
import { ap_value, ap_value_append, ap_value_l10n } from "../_ActivatableAdventurePointsValue.js";
|
|
4
|
-
import { nameBuilderRules } from "../_ActivatableNames.js";
|
|
4
|
+
import { activatableDisplayNameCustomizer, nameBuilderRules } from "../_ActivatableNames.js";
|
|
5
5
|
import { explicit_select_options, select_options } from "../_ActivatableSelectOptions.js";
|
|
6
6
|
import { GeneralPrerequisites } from "../_Prerequisite.js";
|
|
7
7
|
import { NestedTranslationMap } from "../Locale.js";
|
|
@@ -33,6 +33,7 @@ export const VampiricGift = DB.Entity(import.meta.url, {
|
|
|
33
33
|
})),
|
|
34
34
|
}),
|
|
35
35
|
instanceDisplayName: {},
|
|
36
|
+
instanceDisplayNameCustomizer: activatableDisplayNameCustomizer,
|
|
36
37
|
uniqueConstraints: [
|
|
37
38
|
{
|
|
38
39
|
entityMapKeyPath: "translations",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as DB from "tsondb/schema/dsl";
|
|
2
2
|
import { levels, maximum, name, name_in_library, rules } from "../_Activatable.js";
|
|
3
3
|
import { ap_value, ap_value_append, ap_value_l10n } from "../_ActivatableAdventurePointsValue.js";
|
|
4
|
-
import { nameBuilderRules } from "../_ActivatableNames.js";
|
|
4
|
+
import { activatableDisplayNameCustomizer, nameBuilderRules } from "../_ActivatableNames.js";
|
|
5
5
|
import { explicit_select_options, select_options } from "../_ActivatableSelectOptions.js";
|
|
6
6
|
import { GeneralPrerequisites } from "../_Prerequisite.js";
|
|
7
7
|
import { NestedTranslationMap } from "../Locale.js";
|
|
@@ -33,6 +33,7 @@ export const Vision = DB.Entity(import.meta.url, {
|
|
|
33
33
|
})),
|
|
34
34
|
}),
|
|
35
35
|
instanceDisplayName: {},
|
|
36
|
+
instanceDisplayNameCustomizer: activatableDisplayNameCustomizer,
|
|
36
37
|
uniqueConstraints: [
|
|
37
38
|
{
|
|
38
39
|
entityMapKeyPath: "translations",
|
|
@@ -10,7 +10,7 @@ export declare const Language: DB.Entity<"Language", {
|
|
|
10
10
|
name: DB.MemberDecl<DB.String, true>;
|
|
11
11
|
description: DB.MemberDecl<DB.String, false>;
|
|
12
12
|
}>, true>;
|
|
13
|
-
}, "parent">>,
|
|
13
|
+
}, "parent">>, true>;
|
|
14
14
|
customSpecializations: DB.MemberDecl<DB.IncludeIdentifier<[], DB.TypeAlias<"IndefiniteSpecializations", DB.Object<{
|
|
15
15
|
translations: DB.MemberDecl<DB.NestedEntityMap<"IndefiniteSpecializationsTranslation", {
|
|
16
16
|
description: DB.MemberDecl<DB.String, true>;
|
|
@@ -91,6 +91,7 @@ export declare const Language: DB.Entity<"Language", {
|
|
|
91
91
|
alternative_names: DB.MemberDecl<DB.Array<DB.IncludeIdentifier<[], DB.TypeAlias<"AlternativeName", DB.Object<{
|
|
92
92
|
name: DB.MemberDecl<DB.String, true>;
|
|
93
93
|
region: DB.MemberDecl<DB.String, false>;
|
|
94
|
+
language: DB.MemberDecl<DB.ReferenceIdentifier, false>;
|
|
94
95
|
}>, []>>>, false>;
|
|
95
96
|
description: DB.MemberDecl<DB.String, false>;
|
|
96
97
|
errata: DB.MemberDecl<DB.IncludeIdentifier<[], DB.TypeAlias<"Errata", DB.Array<DB.IncludeIdentifier<[], DB.TypeAlias<"Erratum", DB.Object<{
|
|
@@ -14,7 +14,7 @@ export const Language = DB.Entity(import.meta.url, {
|
|
|
14
14
|
comment: "The continents this language is present on.",
|
|
15
15
|
type: DB.Array(DB.IncludeIdentifier(AssociatedContinent), { minItems: 1 }),
|
|
16
16
|
}),
|
|
17
|
-
specializations: DB.
|
|
17
|
+
specializations: DB.Required({
|
|
18
18
|
type: DB.ChildEntities(LanguageSpecialization),
|
|
19
19
|
}),
|
|
20
20
|
customSpecializations: DB.Optional({
|
|
@@ -52,6 +52,7 @@ export declare const Script: DB.Entity<"Script", {
|
|
|
52
52
|
alternative_names: DB.MemberDecl<DB.Array<DB.IncludeIdentifier<[], DB.TypeAlias<"AlternativeName", DB.Object<{
|
|
53
53
|
name: DB.MemberDecl<DB.String, true>;
|
|
54
54
|
region: DB.MemberDecl<DB.String, false>;
|
|
55
|
+
language: DB.MemberDecl<DB.ReferenceIdentifier, false>;
|
|
55
56
|
}>, []>>>, false>;
|
|
56
57
|
alphabet: DB.MemberDecl<DB.String, false>;
|
|
57
58
|
errata: DB.MemberDecl<DB.IncludeIdentifier<[], DB.TypeAlias<"Errata", DB.Array<DB.IncludeIdentifier<[], DB.TypeAlias<"Erratum", DB.Object<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@optolith/database-schema",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.46.0",
|
|
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",
|