rads-db 0.1.89 → 0.1.90

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.
@@ -98,6 +98,9 @@ function getRadsTunnelHandler(options) {
98
98
  if (method === "_schema") {
99
99
  return db._schema;
100
100
  }
101
+ if (method === "getProcessInfo") {
102
+ return {};
103
+ }
101
104
  if (exposeFilesystem && method.startsWith("fs:")) {
102
105
  const fsMethod = method.slice(3);
103
106
  const devHandler = _restEndpointsDev.default[fsMethod];
@@ -65,6 +65,9 @@ export function getRadsTunnelHandler(options) {
65
65
  if (method === "_schema") {
66
66
  return db._schema;
67
67
  }
68
+ if (method === "getProcessInfo") {
69
+ return {};
70
+ }
68
71
  if (exposeFilesystem && method.startsWith("fs:")) {
69
72
  const fsMethod = method.slice(3);
70
73
  const devHandler = restEndpointsDev[fsMethod];
package/package.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "name": "rads-db",
3
+ "version": "0.1.90",
3
4
  "files": [
4
5
  "dist",
5
6
  "drivers",
@@ -40,7 +41,6 @@
40
41
  "require": "./features/*.cjs"
41
42
  }
42
43
  },
43
- "version": "0.1.89",
44
44
  "description": "Say goodbye to boilerplate code and hello to efficient and elegant syntax.",
45
45
  "keywords": [],
46
46
  "author": "",