optolith-database-schema 0.11.6 → 0.11.8
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/lib/main.d.ts +1 -1
- package/package.json +2 -2
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 [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.11.8](https://github.com/elyukai/optolith-database-schema/compare/v0.11.7...v0.11.8) (2023-05-31)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **exports:** config exports did not match new folder structure ([dcb95e8](https://github.com/elyukai/optolith-database-schema/commit/dcb95e8ee0bd95006382bc6e62da245cc391986a))
|
|
11
|
+
|
|
12
|
+
### [0.11.7](https://github.com/elyukai/optolith-database-schema/compare/v0.11.6...v0.11.7) (2023-05-30)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* restrict ValidResults types to each entity's type ([62b0eb0](https://github.com/elyukai/optolith-database-schema/commit/62b0eb0fda08b9885a1c8598cf653a168cfa93a8))
|
|
18
|
+
|
|
5
19
|
### [0.11.6](https://github.com/elyukai/optolith-database-schema/compare/v0.11.5...v0.11.6) (2023-05-28)
|
|
6
20
|
|
|
7
21
|
### [0.11.5](https://github.com/elyukai/optolith-database-schema/compare/v0.11.4...v0.11.5) (2023-05-27)
|
package/lib/main.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ export type TypeValidationError = IntegrityError | FileNameError | SchemaError;
|
|
|
25
25
|
* A map of all valid entries, grouped by entity type.
|
|
26
26
|
*/
|
|
27
27
|
export type ValidResults = {
|
|
28
|
-
[K in keyof TypeMap]: [id: TypeId<
|
|
28
|
+
[K in keyof TypeMap]: [id: TypeId<K>, data: TypeMap[K]][];
|
|
29
29
|
};
|
|
30
30
|
/**
|
|
31
31
|
* A dictionary of entity types and their data’s associated locations.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optolith-database-schema",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.8",
|
|
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",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"exports": {
|
|
13
13
|
".": "./lib/main.js",
|
|
14
14
|
"./errors": "./lib/errors.js",
|
|
15
|
-
"./config": "./lib/config
|
|
15
|
+
"./config/*": "./lib/config/*.js",
|
|
16
16
|
"./types/*": "./lib/types/*.js"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|