exupery-core-bin 0.3.29 → 0.3.31
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/algorithms/queries/execute_any_query_executable.d.ts +1 -1
- package/dist/algorithms/queries/get_instream_data.d.ts +1 -1
- package/dist/algorithms/queries/read_directory.d.ts +1 -1
- package/dist/algorithms/queries/read_directory.js +4 -1
- package/dist/algorithms/queries/read_file.d.ts +1 -1
- package/dist/algorithms/queries/stat.d.ts +1 -1
- package/dist/index.d.ts +4 -4
- package/package.json +4 -4
|
@@ -5,4 +5,4 @@ import * as d from "exupery-resources/dist/interface/generated/pareto/schemas/ex
|
|
|
5
5
|
* The executable being executed is assumed to be side effect free
|
|
6
6
|
* There is no way to give guarantees about that though
|
|
7
7
|
*/
|
|
8
|
-
export declare const $$: _et.
|
|
8
|
+
export declare const $$: _et.Query<d.Result, d.Error, d.Parameters>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as _et from 'exupery-core-types';
|
|
2
2
|
import * as d from "exupery-resources/dist/interface/generated/pareto/schemas/get_instream_data/data_types/target";
|
|
3
|
-
export declare const $$: _et.
|
|
3
|
+
export declare const $$: _et.Query<d.Result, null, null>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as _et from 'exupery-core-types';
|
|
2
2
|
import * as d from "exupery-resources/dist/interface/generated/pareto/schemas/read_directory/data_types/target";
|
|
3
|
-
export declare const $$: _et.
|
|
3
|
+
export declare const $$: _et.Query<d.Result, d.Error, d.Parameters>;
|
|
@@ -53,7 +53,10 @@ exports.$$ = _easync.__create_query(($p) => {
|
|
|
53
53
|
else {
|
|
54
54
|
const out = {};
|
|
55
55
|
files.forEach((file) => {
|
|
56
|
-
out[
|
|
56
|
+
out[file.name] = {
|
|
57
|
+
'node type': file.isFile() ? ['file', null] : ['directory', null],
|
|
58
|
+
'concatenated path': $p.path.path + "/" + file.name
|
|
59
|
+
};
|
|
57
60
|
});
|
|
58
61
|
on_value(_ei.dictionary_literal(out));
|
|
59
62
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as _et from 'exupery-core-types';
|
|
2
2
|
import * as d from "exupery-resources/dist/interface/generated/pareto/schemas/read_file/data_types/target";
|
|
3
|
-
export declare const $$: _et.
|
|
3
|
+
export declare const $$: _et.Query<d.Result, d.Error, d.Parameters>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as _et from 'exupery-core-types';
|
|
2
2
|
import * as d from "exupery-resources/dist/interface/generated/pareto/schemas/stat/data_types/target";
|
|
3
|
-
export declare const $$: _et.
|
|
3
|
+
export declare const $$: _et.Query<d.Result, d.Error, d.Parameters>;
|
package/dist/index.d.ts
CHANGED
|
@@ -29,10 +29,10 @@ export type Available_Standard_Resources = {
|
|
|
29
29
|
'write to stdout': _et.Command<null, d_write_to_stdout.Parameters>;
|
|
30
30
|
};
|
|
31
31
|
'queries': {
|
|
32
|
-
'execute any query executable': _et.
|
|
33
|
-
'get instream data': _et.
|
|
34
|
-
'read directory': _et.
|
|
35
|
-
'read file': _et.
|
|
32
|
+
'execute any query executable': _et.Query<d_execute_any_query_executable.Result, d_execute_any_query_executable.Error, d_execute_any_query_executable.Parameters>;
|
|
33
|
+
'get instream data': _et.Query<d_get_instream_data.Result, null, temp_instream_parameters>;
|
|
34
|
+
'read directory': _et.Query<d_read_directory.Result, d_read_directory.Error, d_read_directory.Parameters>;
|
|
35
|
+
'read file': _et.Query<d_read_file.Result, d_read_file.Error, d_read_file.Parameters>;
|
|
36
36
|
};
|
|
37
37
|
};
|
|
38
38
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exupery-core-bin",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.31",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"description": "this is one of the core packages for Exupery. it provides functionality to create executables",
|
|
6
6
|
"author": "Corno",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"url": "git+https://github.com/corno/exupery-core.git"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"exupery-core-async": "^0.3.
|
|
31
|
-
"exupery-core-internals": "^0.3.
|
|
32
|
-
"exupery-resources": "^0.3.
|
|
30
|
+
"exupery-core-async": "^0.3.71",
|
|
31
|
+
"exupery-core-internals": "^0.3.13",
|
|
32
|
+
"exupery-resources": "^0.3.16"
|
|
33
33
|
}
|
|
34
34
|
}
|