@rljson/db 0.0.10 → 0.0.11

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.
@@ -72,4 +72,9 @@ export declare class MultiEditProcessor {
72
72
  * @returns Resulting Join
73
73
  */
74
74
  private _process;
75
+ /**
76
+ * Get the list of Edits applied in this MultiEditProcessor
77
+ * @returns Array of Edits
78
+ */
79
+ get edits(): Edit[];
75
80
  }
@@ -0,0 +1,5 @@
1
+ import { Rljson } from '@rljson/rljson';
2
+ export declare const convertMassData: () => {
3
+ written: boolean;
4
+ result: Rljson;
5
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rljson/db",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "A high level interface to read and write RLJSON data from and into a database",
5
5
  "homepage": "https://github.com/rljson/db",
6
6
  "bugs": "https://github.com/rljson/db/issues",
@@ -20,9 +20,10 @@
20
20
  ],
21
21
  "type": "module",
22
22
  "devDependencies": {
23
+ "@rljson/converter": "^0.0.33",
23
24
  "@types/node": "^25.0.3",
24
- "@typescript-eslint/eslint-plugin": "^8.50.1",
25
- "@typescript-eslint/parser": "^8.50.1",
25
+ "@typescript-eslint/eslint-plugin": "^8.51.0",
26
+ "@typescript-eslint/parser": "^8.51.0",
26
27
  "@vitest/coverage-v8": "^4.0.16",
27
28
  "cross-env": "^10.1.0",
28
29
  "eslint": "^9.39.2",
@@ -32,7 +33,7 @@
32
33
  "jsdoc": "^4.0.5",
33
34
  "read-pkg": "^10.0.0",
34
35
  "typescript": "~5.9.3",
35
- "typescript-eslint": "^8.50.1",
36
+ "typescript-eslint": "^8.51.0",
36
37
  "vite": "^7.3.0",
37
38
  "vite-node": "^5.2.0",
38
39
  "vite-plugin-dts": "^4.5.4",