pareto-stream 0.1.1 → 0.1.3
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.
|
@@ -4,14 +4,12 @@ import * as d_stream_log_error from "./generated/liana/schemas/log_error/data";
|
|
|
4
4
|
import * as d_stream_write_to_stderr from "./generated/liana/schemas/write_to_stderr/data";
|
|
5
5
|
import * as d_stream_write_to_stdout from "./generated/liana/schemas/write_to_stdout/data";
|
|
6
6
|
import * as d_stream_get_instream_data from "./generated/liana/schemas/get_indata/data";
|
|
7
|
-
export declare namespace
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
type get_instream_data = _pi.Query<d_stream_get_instream_data.Result, null, d_stream_get_instream_data.Parameters>;
|
|
16
|
-
}
|
|
7
|
+
export declare namespace commands {
|
|
8
|
+
type log = _pi.Command<null, d_stream_log.Parameters>;
|
|
9
|
+
type log_error = _pi.Command<null, d_stream_log_error.Parameters>;
|
|
10
|
+
type write_to_stderr = _pi.Command<null, d_stream_write_to_stderr.Parameters>;
|
|
11
|
+
type write_to_stdout = _pi.Command<null, d_stream_write_to_stdout.Parameters>;
|
|
12
|
+
}
|
|
13
|
+
export declare namespace queries {
|
|
14
|
+
type get_instream_data = _pi.Query<d_stream_get_instream_data.Result, null, d_stream_get_instream_data.Parameters>;
|
|
17
15
|
}
|