pareto-common 0.1.42 → 0.1.43

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.
@@ -5,21 +5,21 @@ import * as command_actions_pareto_stream_api from "pareto-stream-api/interface/
5
5
  import * as query_actions_pareto_stream_api from "pareto-stream-api/interface/query_actions";
6
6
  import * as query_actions from "./query_actions.js";
7
7
  import * as query_actions_pareto_filesystem_unrestricted_api from "pareto-filesystem-unrestricted-api/interface/query_actions";
8
- export type file_to_file = p_.Command_Procedure<command_actions_pareto_application_api.main, null, {
8
+ export type file_to_file = p_.Command<command_actions_pareto_application_api.main, null, {
9
9
  'read file': query_actions_pareto_filesystem_unrestricted_api.read_file;
10
10
  'process data': query_actions.process_file_data;
11
11
  }, {
12
12
  'write file': command_actions_pareto_filesystem_unrestricted_api.write_file;
13
13
  'log error': command_actions_pareto_stream_api.log_error;
14
14
  }>;
15
- export type file_to_stream = p_.Command_Procedure<command_actions_pareto_application_api.main, null, {
15
+ export type file_to_stream = p_.Command<command_actions_pareto_application_api.main, null, {
16
16
  'read file': query_actions_pareto_filesystem_unrestricted_api.read_file;
17
17
  'process data': query_actions.process_file_data;
18
18
  }, {
19
19
  'write to stdout': command_actions_pareto_stream_api.write_to_stdout;
20
20
  'log error': command_actions_pareto_stream_api.log_error;
21
21
  }>;
22
- export type stream_to_stream = p_.Command_Procedure<command_actions_pareto_application_api.main, null, {
22
+ export type stream_to_stream = p_.Command<command_actions_pareto_application_api.main, null, {
23
23
  'get instream data': query_actions_pareto_stream_api.get_instream_data;
24
24
  'process data': query_actions.process_stream_data;
25
25
  }, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-common",
3
- "version": "0.1.42",
3
+ "version": "0.1.43",
4
4
  "author": "Corno",
5
5
  "license": "Apache-2.0",
6
6
  "description": "A TypeScript library for common commands and queries",