exupery-resources 0.3.48 → 0.3.49

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,6 +1,7 @@
1
1
  import * as _et from 'exupery-core-types';
2
2
  import * as d_copy from "./generated/pareto/schemas/copy/data_types/source";
3
3
  import * as d_execute_any_command_procedure from "./generated/pareto/schemas/execute_any_procedure_executable/data_types/source";
4
+ import * as d_execute_query_executable from "./generated/pareto/schemas/execute_query_executable/data_types/source";
4
5
  import * as d_execute_any_query_executable from "./generated/pareto/schemas/execute_any_query_executable/data_types/source";
5
6
  import * as d_execute_any_smelly_command_procedure from "./generated/pareto/schemas/execute_any_smelly_procedure_executable/data_types/source";
6
7
  import * as d_execute_command_procedure from "./generated/pareto/schemas/execute_procedure_executable/data_types/source";
@@ -20,24 +21,25 @@ import * as d_write_to_stdout from "./generated/pareto/schemas/write_to_stdout/d
20
21
  import * as d_main from "./to_be_generated/temp_main";
21
22
  export declare namespace commands {
22
23
  type copy = _et.Command<d_copy.Error, d_copy.Parameters>;
23
- type execute_command_executable = _et.Command<d_execute_command_procedure.Error, d_execute_command_procedure.Parameters>;
24
24
  type execute_any_command_executable = _et.Command<d_execute_any_command_procedure.Error, d_execute_any_command_procedure.Parameters>;
25
25
  type execute_any_smelly_command_executable = _et.Command<d_execute_any_smelly_command_procedure.Error, d_execute_any_smelly_command_procedure.Parameters>;
26
+ type execute_command_executable = _et.Command<d_execute_command_procedure.Error, d_execute_command_procedure.Parameters>;
26
27
  type log = _et.Command<null, d_log.Parameters>;
27
28
  type log_error = _et.Command<null, d_log_error.Parameters>;
29
+ type main = _et.Command<d_main.Error, d_main.Parameters>;
28
30
  type make_directory = _et.Command<d_make_directory.Error, d_make_directory.Parameters>;
29
31
  type remove = _et.Command<d_remove.Error, d_remove.Parameters>;
30
32
  type write_directory_content = _et.Command<d_write_directory_content.Error, d_write_directory_content.Parameters>;
31
33
  type write_file = _et.Command<d_write_file.Error, d_write_file.Parameters>;
32
- type write_to_stdout = _et.Command<null, d_write_to_stdout.Parameters>;
33
34
  type write_to_stderr = _et.Command<null, d_write_to_stderr.Parameters>;
34
- type main = _et.Command<d_main.Error, d_main.Parameters>;
35
+ type write_to_stdout = _et.Command<null, d_write_to_stdout.Parameters>;
35
36
  }
36
37
  export declare namespace queries {
37
- type read_directory_content = _et.Query<d_read_directory_content.Result, d_read_directory_content.Error, d_read_directory_content.Parameters>;
38
+ type execute_any_query_executable = _et.Query<d_execute_any_query_executable.Result, d_execute_any_query_executable.Error, d_execute_any_query_executable.Parameters>;
39
+ type execute_query_executable = _et.Query<d_execute_query_executable.Result, d_execute_query_executable.Error, d_execute_query_executable.Parameters>;
40
+ type get_instream_data = _et.Query<d_get_instream_data.Result, null, d_get_instream_data.Parameters>;
38
41
  type read_directory = _et.Query<d_read_directory.Result, d_read_directory.Error, d_read_directory.Parameters>;
42
+ type read_directory_content = _et.Query<d_read_directory_content.Result, d_read_directory_content.Error, d_read_directory_content.Parameters>;
39
43
  type read_file = _et.Query<d_read_file.Result, d_read_file.Error, d_read_file.Parameters>;
40
44
  type stat = _et.Query<d_stat.Result, d_stat.Error, d_stat.Parameters>;
41
- type get_instream_data = _et.Query<d_get_instream_data.Result, null, d_get_instream_data.Parameters>;
42
- type execute_any_query_executable = _et.Query<d_execute_any_query_executable.Result, d_execute_any_query_executable.Error, d_execute_any_query_executable.Parameters>;
43
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exupery-resources",
3
- "version": "0.3.48",
3
+ "version": "0.3.49",
4
4
  "description": "A library providing resources forthe Exupery programming Language",
5
5
  "main": "./dist/index.js",
6
6
  "types": "dist/index.d.ts",