@rljson/rljson 0.0.68 → 0.0.69
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/dist/rljson.js +5 -1
- package/dist/typedefs.d.ts +1 -1
- package/package.json +10 -10
package/dist/rljson.js
CHANGED
|
@@ -1662,7 +1662,11 @@ const contentTypes = [
|
|
|
1662
1662
|
"components",
|
|
1663
1663
|
"revisions",
|
|
1664
1664
|
"tableCfgs",
|
|
1665
|
-
"insertHistory"
|
|
1665
|
+
"insertHistory",
|
|
1666
|
+
// Additional types for edits, implemented in DB
|
|
1667
|
+
"edits",
|
|
1668
|
+
"multiEdits",
|
|
1669
|
+
"editsHistory"
|
|
1666
1670
|
];
|
|
1667
1671
|
const exampleTypedefs = () => {
|
|
1668
1672
|
return {
|
package/dist/typedefs.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export type ColumnKey = JsonKey;
|
|
|
26
26
|
* - `ids` Tables containing slice ids
|
|
27
27
|
* - `components` Tables containing slice components
|
|
28
28
|
*/
|
|
29
|
-
export declare const contentTypes: readonly ["buffets", "cakes", "layers", "sliceIds", "components", "revisions", "tableCfgs", "insertHistory"];
|
|
29
|
+
export declare const contentTypes: readonly ["buffets", "cakes", "layers", "sliceIds", "components", "revisions", "tableCfgs", "insertHistory", "edits", "multiEdits", "editsHistory"];
|
|
30
30
|
export type ContentType = (typeof contentTypes)[number];
|
|
31
31
|
/**
|
|
32
32
|
* An example object using the typedefs
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rljson/rljson",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.69",
|
|
4
4
|
"description": "The RLJSON data format specification",
|
|
5
5
|
"homepage": "https://github.com/rljson/rljson",
|
|
6
6
|
"bugs": "https://github.com/rljson/rljson/issues",
|
|
@@ -20,24 +20,24 @@
|
|
|
20
20
|
],
|
|
21
21
|
"type": "module",
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@types/node": "^24.10.
|
|
24
|
-
"@typescript-eslint/eslint-plugin": "^8.46.
|
|
25
|
-
"@typescript-eslint/parser": "^8.46.
|
|
26
|
-
"@vitest/coverage-v8": "^4.0.
|
|
23
|
+
"@types/node": "^24.10.1",
|
|
24
|
+
"@typescript-eslint/eslint-plugin": "^8.46.4",
|
|
25
|
+
"@typescript-eslint/parser": "^8.46.4",
|
|
26
|
+
"@vitest/coverage-v8": "^4.0.8",
|
|
27
27
|
"cross-env": "^10.1.0",
|
|
28
28
|
"eslint": "^9.39.1",
|
|
29
29
|
"eslint-plugin-jsdoc": "^61.1.12",
|
|
30
|
-
"eslint-plugin-tsdoc": "^0.
|
|
30
|
+
"eslint-plugin-tsdoc": "^0.5.0",
|
|
31
31
|
"globals": "^16.5.0",
|
|
32
32
|
"jsdoc": "^4.0.5",
|
|
33
|
-
"read-pkg": "^
|
|
33
|
+
"read-pkg": "^10.0.0",
|
|
34
34
|
"typescript": "~5.9.3",
|
|
35
|
-
"typescript-eslint": "^8.46.
|
|
36
|
-
"vite": "^7.2.
|
|
35
|
+
"typescript-eslint": "^8.46.4",
|
|
36
|
+
"vite": "^7.2.2",
|
|
37
37
|
"vite-node": "^5.0.0",
|
|
38
38
|
"vite-plugin-dts": "^4.5.4",
|
|
39
39
|
"vite-tsconfig-paths": "^5.1.4",
|
|
40
|
-
"vitest": "^4.0.
|
|
40
|
+
"vitest": "^4.0.8",
|
|
41
41
|
"vitest-dom": "^0.1.1"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|