exupery-core-bin 0.3.9 → 0.3.10
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/dist/index.d.ts +4 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import * as d_copy from "exupery-resources/dist/interface/generated/pareto/schem
|
|
|
4
4
|
import * as d_execute_any_procedure_executable from "exupery-resources/dist/interface/generated/pareto/schemas/execute_any_procedure_executable/data_types/target";
|
|
5
5
|
import * as d_execute_any_smelly_procedure_executable from "exupery-resources/dist/interface/generated/pareto/schemas/execute_any_smelly_procedure_executable/data_types/target";
|
|
6
6
|
import * as d_execute_any_query_executable from "exupery-resources/dist/interface/generated/pareto/schemas/execute_any_query_executable/data_types/target";
|
|
7
|
+
import * as d_get_instream_data from "exupery-resources/dist/interface/generated/pareto/schemas/get_instream_data/data_types/target";
|
|
7
8
|
import * as d_log from "exupery-resources/dist/interface/generated/pareto/schemas/log/data_types/target";
|
|
8
9
|
import * as d_log_error from "exupery-resources/dist/interface/generated/pareto/schemas/log_error/data_types/target";
|
|
9
10
|
import * as d_make_directory from "exupery-resources/dist/interface/generated/pareto/schemas/make_directory/data_types/source";
|
|
@@ -20,6 +21,7 @@ export type Parameters = {
|
|
|
20
21
|
export type Error = {
|
|
21
22
|
'exit code': number;
|
|
22
23
|
};
|
|
24
|
+
type temp_instream_parameters = null;
|
|
23
25
|
export type Available_Standard_Resources = {
|
|
24
26
|
'procedures': {
|
|
25
27
|
'copy': _easync.Unguaranteed_Procedure<d_copy.Parameters, d_copy.Error, null>;
|
|
@@ -35,6 +37,7 @@ export type Available_Standard_Resources = {
|
|
|
35
37
|
};
|
|
36
38
|
'queries': {
|
|
37
39
|
'execute any query executable': _easync.Unguaranteed_Query<d_execute_any_query_executable.Parameters, d_execute_any_query_executable.Result, d_execute_any_query_executable.Error, null>;
|
|
40
|
+
'get instream data': _easync.Guaranteed_Query<temp_instream_parameters, d_get_instream_data.Result, null>;
|
|
38
41
|
'read directory': _easync.Unguaranteed_Query<d_read_directory.Parameters, d_read_directory.Result, d_read_directory.Error, null>;
|
|
39
42
|
'read file': _easync.Unguaranteed_Query<d_read_file.Parameters, d_read_file.Result, d_read_file.Error, null>;
|
|
40
43
|
'stat': _easync.Unguaranteed_Query<d_stat.Parameters, d_stat.Result, d_stat.Error, null>;
|
|
@@ -51,3 +54,4 @@ export declare const run_guaranteed_main_procedure: <Main_Resources>(initialize_
|
|
|
51
54
|
* returned value when the async value completes.
|
|
52
55
|
*/
|
|
53
56
|
export declare const run_unguaranteed_main_procedure: <Main_Resources>(initialize_resources: ($r: Available_Standard_Resources) => Main_Resources, main: _easync.Unguaranteed_Procedure<Parameters, Error, Main_Resources>) => void;
|
|
57
|
+
export {};
|
package/dist/index.js
CHANGED
|
@@ -36,6 +36,7 @@ const write_file_1 = require("./algorithms/procedures/unguaranteed/write_file");
|
|
|
36
36
|
const write_to_stderr_1 = require("./algorithms/procedures/guaranteed/write_to_stderr");
|
|
37
37
|
const write_to_stdout_1 = require("./algorithms/procedures/guaranteed/write_to_stdout");
|
|
38
38
|
const execute_any_query_executable_1 = require("./algorithms/queries/unguaranteed/execute_any_query_executable");
|
|
39
|
+
const get_instream_data_1 = require("./algorithms/queries/guaranteed/get_instream_data");
|
|
39
40
|
const read_directory_1 = require("./algorithms/queries/unguaranteed/read_directory");
|
|
40
41
|
const read_file_1 = require("./algorithms/queries/unguaranteed/read_file");
|
|
41
42
|
const stat_1 = require("./algorithms/queries/unguaranteed/stat");
|
|
@@ -55,6 +56,7 @@ const create_available_resources = () => {
|
|
|
55
56
|
},
|
|
56
57
|
'queries': {
|
|
57
58
|
'execute any query executable': execute_any_query_executable_1.$$,
|
|
59
|
+
'get instream data': get_instream_data_1.$$,
|
|
58
60
|
'read directory': read_directory_1.$$,
|
|
59
61
|
'read file': read_file_1.$$,
|
|
60
62
|
'stat': stat_1.$$,
|