@onivoro/server-process 1.23.0 → 1.24.0
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/lib/docker.d.ts +1 -1
- package/lib/exec-rx-as-json.d.ts +1 -1
- package/lib/exec-rx-as-lines.d.ts +1 -1
- package/lib/listen.d.ts +2 -3
- package/lib/psql.d.ts +1 -1
- package/package.json +2 -2
package/lib/docker.d.ts
CHANGED
|
@@ -5,5 +5,5 @@ export declare class Docker {
|
|
|
5
5
|
readonly containerName: string;
|
|
6
6
|
readonly binaryName: string;
|
|
7
7
|
constructor(containerName: string, binaryName: string);
|
|
8
|
-
execRx(cmd: string, options?: BaseEncodingOptions & ExecOptions, emitStdErr?: boolean):
|
|
8
|
+
execRx(cmd: string, options?: BaseEncodingOptions & ExecOptions, emitStdErr?: boolean): any;
|
|
9
9
|
}
|
package/lib/exec-rx-as-json.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ExecOptions } from 'child_process';
|
|
2
|
-
export declare const execRxAsJson: (cmd: string, options?: ExecOptions, emitStdErr?: boolean) =>
|
|
2
|
+
export declare const execRxAsJson: (cmd: string, options?: ExecOptions, emitStdErr?: boolean) => any;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ExecOptions } from 'child_process';
|
|
2
|
-
export declare const execRxAsLines: (cmd: string, options?: ExecOptions, emitStdErr?: boolean) =>
|
|
2
|
+
export declare const execRxAsLines: (cmd: string, options?: ExecOptions, emitStdErr?: boolean) => any;
|
package/lib/listen.d.ts
CHANGED
package/lib/psql.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onivoro/server-process",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.24.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "https://github.com/onivoro/server-process.git"
|
|
6
6
|
},
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
"typescript": "^4.0.3"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"rxjs": "^
|
|
21
|
+
"rxjs": "^7.4.0"
|
|
22
22
|
}
|
|
23
23
|
}
|