@rljson/db 0.0.13 → 0.0.14
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/README.architecture.md +62 -0
- package/README.public.md +73 -0
- package/dist/README.architecture.md +62 -0
- package/dist/README.public.md +73 -0
- package/dist/connector/connector.d.ts +71 -10
- package/dist/db.d.ts +23 -1
- package/dist/db.js +250 -24
- package/dist/db.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/package.json +17 -17
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { Connector } from './connector/connector.ts';
|
|
2
2
|
export type { ConnectorCallback, ConnectorPayload, } from './connector/connector.ts';
|
|
3
|
+
export type { AckPayload, ClientId, GapFillRequest, GapFillResponse, SyncConfig, SyncEventNames, } from '@rljson/rljson';
|
|
3
4
|
export { Db } from './db.ts';
|
|
4
5
|
export { exampleEditActionColumnSelection, exampleEditActionColumnSelectionOnlySomeColumns, exampleEditActionRowFilter, exampleEditActionRowSort, exampleEditActionSetValue, exampleEditSetValueReferenced, } from './edit/edit-action.ts';
|
|
5
6
|
export { MultiEditManager } from './edit/multi-edit-manager.ts';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rljson/db",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
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",
|
|
@@ -21,41 +21,41 @@
|
|
|
21
21
|
"type": "module",
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@rljson/converter": "^0.0.35",
|
|
24
|
-
"@types/node": "^25.
|
|
25
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
26
|
-
"@typescript-eslint/parser": "^8.
|
|
24
|
+
"@types/node": "^25.2.3",
|
|
25
|
+
"@typescript-eslint/eslint-plugin": "^8.56.0",
|
|
26
|
+
"@typescript-eslint/parser": "^8.56.0",
|
|
27
27
|
"@vitest/coverage-v8": "^4.0.18",
|
|
28
28
|
"cross-env": "^10.1.0",
|
|
29
|
-
"eslint": "
|
|
30
|
-
"eslint-plugin-jsdoc": "^62.5.
|
|
29
|
+
"eslint": "~9.39.2",
|
|
30
|
+
"eslint-plugin-jsdoc": "^62.5.5",
|
|
31
31
|
"eslint-plugin-tsdoc": "^0.5.0",
|
|
32
|
-
"globals": "^17.
|
|
32
|
+
"globals": "^17.3.0",
|
|
33
33
|
"jsdoc": "^4.0.5",
|
|
34
|
-
"read-pkg": "^10.
|
|
34
|
+
"read-pkg": "^10.1.0",
|
|
35
35
|
"typescript": "~5.9.3",
|
|
36
|
-
"typescript-eslint": "^8.
|
|
36
|
+
"typescript-eslint": "^8.56.0",
|
|
37
37
|
"vite": "^7.3.1",
|
|
38
38
|
"vite-node": "^5.3.0",
|
|
39
39
|
"vite-plugin-dts": "^4.5.4",
|
|
40
|
-
"vite-tsconfig-paths": "^6.
|
|
40
|
+
"vite-tsconfig-paths": "^6.1.1",
|
|
41
41
|
"vitest": "^4.0.18",
|
|
42
42
|
"vitest-dom": "^0.1.1"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@rljson/hash": "^0.0.18",
|
|
46
|
-
"@rljson/io": "^0.0.
|
|
46
|
+
"@rljson/io": "^0.0.66",
|
|
47
47
|
"@rljson/json": "^0.0.23",
|
|
48
|
-
"@rljson/rljson": "^0.0.
|
|
48
|
+
"@rljson/rljson": "^0.0.76",
|
|
49
49
|
"@rljson/validate": "^0.0.11",
|
|
50
50
|
"filtrex": "^3.1.0",
|
|
51
51
|
"object-traversal": "^1.0.1",
|
|
52
52
|
"rxjs": "^7.8.2"
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|
|
55
|
-
"build": "
|
|
56
|
-
"test": "
|
|
57
|
-
"prebuild": "
|
|
58
|
-
"lint": "
|
|
59
|
-
"updateGoldens": "cross-env UPDATE_GOLDENS=true
|
|
55
|
+
"build": "pnpm exec vite build && tsc && cp README* dist && mkdir dist/src && cp src/example.ts dist/src",
|
|
56
|
+
"test": "pnpm exec vitest run --coverage && pnpm run lint",
|
|
57
|
+
"prebuild": "pnpm run test",
|
|
58
|
+
"lint": "pnpm exec eslint",
|
|
59
|
+
"updateGoldens": "cross-env UPDATE_GOLDENS=true pnpm test"
|
|
60
60
|
}
|
|
61
61
|
}
|