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.
@@ -1,2 +1,4 @@
1
- export type Parameters_ = string;
1
+ export type Parameters_ = {
2
+ 'data': string;
3
+ };
2
4
  export { Parameters_ as Parameters, };
@@ -1,2 +1,4 @@
1
- export type Parameters_ = string;
1
+ export type Parameters_ = {
2
+ 'data': string;
3
+ };
2
4
  export { Parameters_ as Parameters, };
@@ -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 stream {
8
- namespace commands {
9
- type log = _pi.Command<null, d_stream_log.Parameters>;
10
- type log_error = _pi.Command<null, d_stream_log_error.Parameters>;
11
- type write_to_stderr = _pi.Command<null, d_stream_write_to_stderr.Parameters>;
12
- type write_to_stdout = _pi.Command<null, d_stream_write_to_stdout.Parameters>;
13
- }
14
- namespace queries {
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-stream",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "author": "Corno",
5
5
  "license": "Apache-2.0",
6
6
  "description": "A library providing stream resources for the Pareto programming Language",