@aztec/wsdb 0.0.1-commit.189eedb3 → 0.0.1-commit.5b8bb843
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/dest/index.d.ts +0 -1
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +0 -8
- package/package.json +6 -6
package/dest/index.d.ts
CHANGED
|
@@ -19,6 +19,5 @@ export declare class WsdbService extends AsyncApi {
|
|
|
19
19
|
private constructor();
|
|
20
20
|
static spawn(options?: WsdbServiceOptions): Promise<WsdbService>;
|
|
21
21
|
getIpcPath(): string;
|
|
22
|
-
sendProcessSignal(signal: NodeJS.Signals): void;
|
|
23
22
|
}
|
|
24
23
|
//# sourceMappingURL=index.d.ts.map
|
package/dest/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,QAAQ,EAAE,KAAK,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAGtE,cAAc,0BAA0B,CAAC;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAE9C,MAAM,MAAM,aAAa,GAAG,KAAK,GAAG,KAAK,CAAC;AAE1C,MAAM,WAAW,kBAAkB;IACjC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,aAAa,CAAC;IAC1B,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,CAAC,EAAE,eAAe,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,QAAQ,EAAE,KAAK,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAGtE,cAAc,0BAA0B,CAAC;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAE9C,MAAM,MAAM,aAAa,GAAG,KAAK,GAAG,KAAK,CAAC;AAE1C,MAAM,WAAW,kBAAkB;IACjC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,aAAa,CAAC;IAC1B,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,CAAC,EAAE,eAAe,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AA4KD,qBAAa,WAAY,SAAQ,QAAQ;IACnB,OAAO,CAAC,cAAc;IAA1C,OAAO;WAIM,KAAK,CAAC,OAAO,GAAE,kBAAuB,GAAG,OAAO,CAAC,WAAW,CAAC;IAK1E,UAAU,IAAI,MAAM;CAGrB"}
|
package/dest/index.js
CHANGED
|
@@ -97,11 +97,6 @@ class SpawnedBackend {
|
|
|
97
97
|
}
|
|
98
98
|
return this.client.call(input);
|
|
99
99
|
}
|
|
100
|
-
sendProcessSignal(signal) {
|
|
101
|
-
if (this.child.exitCode === null) {
|
|
102
|
-
this.child.kill(signal);
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
100
|
async destroy() {
|
|
106
101
|
// Mark intentional teardown so the exit handler doesn't report it as an
|
|
107
102
|
// unexpected death.
|
|
@@ -176,7 +171,4 @@ export class WsdbService extends AsyncApi {
|
|
|
176
171
|
getIpcPath() {
|
|
177
172
|
return this.spawnedBackend.getIpcPath();
|
|
178
173
|
}
|
|
179
|
-
sendProcessSignal(signal) {
|
|
180
|
-
this.spawnedBackend.sendProcessSignal(signal);
|
|
181
|
-
}
|
|
182
174
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/wsdb",
|
|
3
|
-
"version": "0.0.1-commit.
|
|
3
|
+
"version": "0.0.1-commit.5b8bb843",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"aztec-wsdb": "./dest/bin.js"
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"prepare_arch_packages": "./scripts/prepare_arch_packages.sh"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@aztec/ipc-runtime": "0.0.1-commit.
|
|
24
|
+
"@aztec/ipc-runtime": "0.0.1-commit.5b8bb843",
|
|
25
25
|
"msgpackr": "^1.11.2",
|
|
26
26
|
"tslib": "^2.4.0"
|
|
27
27
|
},
|
|
28
28
|
"optionalDependencies": {
|
|
29
|
-
"@aztec/wsdb-linux-x64": "0.0.1-commit.
|
|
30
|
-
"@aztec/wsdb-darwin-x64": "0.0.1-commit.
|
|
31
|
-
"@aztec/wsdb-linux-arm64": "0.0.1-commit.
|
|
32
|
-
"@aztec/wsdb-darwin-arm64": "0.0.1-commit.
|
|
29
|
+
"@aztec/wsdb-linux-x64": "0.0.1-commit.5b8bb843",
|
|
30
|
+
"@aztec/wsdb-darwin-x64": "0.0.1-commit.5b8bb843",
|
|
31
|
+
"@aztec/wsdb-linux-arm64": "0.0.1-commit.5b8bb843",
|
|
32
|
+
"@aztec/wsdb-darwin-arm64": "0.0.1-commit.5b8bb843"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/node": "^22.15.17",
|