@rljson/rljson 0.0.43 → 0.0.44

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.
@@ -38,11 +38,6 @@ export interface TableCfg extends Json {
38
38
  * The previous version of the table
39
39
  */
40
40
  previous?: TableCfgRef;
41
- /**
42
- * The version of the table.
43
- * Needs to be increased when new columns are added.
44
- */
45
- version: number;
46
41
  /**
47
42
  * Head tables serve as versioning entry points.
48
43
  *
package/dist/rljson.js CHANGED
@@ -561,7 +561,6 @@ const exampleTableCfgTable = () => Example.ok.singleRow().tableCfgs;
561
561
  const exampleTableCfg = (tableCfg = void 0) => {
562
562
  return {
563
563
  key: (tableCfg == null ? void 0 : tableCfg.key) ?? "table",
564
- version: 1,
565
564
  columns: (tableCfg == null ? void 0 : tableCfg.columns) ?? [
566
565
  {
567
566
  key: "_hash",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rljson/rljson",
3
- "version": "0.0.43",
3
+ "version": "0.0.44",
4
4
  "packageManager": "pnpm@10.6.3",
5
5
  "description": "The RLJSON data format specification",
6
6
  "homepage": "https://github.com/rljson/rljson",
@@ -29,9 +29,9 @@
29
29
  "updateGoldens": "cross-env UPDATE_GOLDENS=true npm test"
30
30
  },
31
31
  "devDependencies": {
32
- "@types/node": "^22.15.2",
33
- "@typescript-eslint/eslint-plugin": "^8.31.0",
34
- "@typescript-eslint/parser": "^8.31.0",
32
+ "@types/node": "^22.15.3",
33
+ "@typescript-eslint/eslint-plugin": "^8.31.1",
34
+ "@typescript-eslint/parser": "^8.31.1",
35
35
  "@vitest/coverage-v8": "^3.1.2",
36
36
  "cross-env": "^7.0.3",
37
37
  "eslint": "^9.25.1",
@@ -41,7 +41,7 @@
41
41
  "jsdoc": "^4.0.4",
42
42
  "read-pkg": "^9.0.1",
43
43
  "typescript": "~5.8.3",
44
- "typescript-eslint": "^8.31.0",
44
+ "typescript-eslint": "^8.31.1",
45
45
  "vite": "^6.3.3",
46
46
  "vite-node": "^3.1.2",
47
47
  "vite-plugin-dts": "^4.5.3",