pareto-stream 0.1.5 → 0.1.6
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/interface/commands.d.ts +11 -0
- package/dist/interface/commands.js +3 -0
- package/dist/interface/queries.d.ts +5 -0
- package/dist/interface/queries.js +3 -0
- package/dist/interface/to_be_generated/directory_content.d.ts +2 -2
- package/dist/interface/to_be_generated/directory_structure.d.ts +2 -2
- package/dist/interface/to_be_generated/temp_main.d.ts +2 -2
- package/package.json +1 -1
- package/dist/interface/resources.d.ts +0 -16
- package/dist/interface/resources.js +0 -3
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as pci from 'pareto-core/dist/command_interface';
|
|
2
|
+
import * as d_stream_log from "./generated/liana/schemas/log/data";
|
|
3
|
+
import * as d_stream_log_error from "./generated/liana/schemas/log_error/data";
|
|
4
|
+
import * as d_stream_write_to_stderr from "./generated/liana/schemas/write_to_stderr/data";
|
|
5
|
+
import * as d_stream_write_to_stdout from "./generated/liana/schemas/write_to_stdout/data";
|
|
6
|
+
export declare namespace commands {
|
|
7
|
+
type log = pci.Command<null, d_stream_log.Parameters>;
|
|
8
|
+
type log_error = pci.Command<null, d_stream_log_error.Parameters>;
|
|
9
|
+
type write_to_stderr = pci.Command<null, d_stream_write_to_stderr.Parameters>;
|
|
10
|
+
type write_to_stdout = pci.Command<null, d_stream_write_to_stdout.Parameters>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbWFuZHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW50ZXJmYWNlL2NvbW1hbmRzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as pqi from 'pareto-core/dist/query_interface';
|
|
2
|
+
import * as d_stream_get_instream_data from "./generated/liana/schemas/get_indata/data";
|
|
3
|
+
export declare namespace queries {
|
|
4
|
+
type get_instream_data = pqi.Query<d_stream_get_instream_data.Result, null, d_stream_get_instream_data.Parameters>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlcmllcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9pbnRlcmZhY2UvcXVlcmllcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as pi from 'pareto-core/dist/interface';
|
|
2
2
|
export type Node = ['other', null] | ['file', string] | ['directory', Directory];
|
|
3
|
-
export type Directory =
|
|
3
|
+
export type Directory = pi.Dictionary<Node>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as pi from 'pareto-core/dist/interface';
|
|
2
2
|
export type Node = ['other', null] | ['file', null] | ['directory', Directory];
|
|
3
|
-
export type Directory =
|
|
3
|
+
export type Directory = pi.Dictionary<Node>;
|
package/package.json
CHANGED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import * as _pci from 'pareto-core/dist/command_interface';
|
|
2
|
-
import * as _pqi from 'pareto-core/dist/query_interface';
|
|
3
|
-
import * as d_stream_log from "./generated/liana/schemas/log/data";
|
|
4
|
-
import * as d_stream_log_error from "./generated/liana/schemas/log_error/data";
|
|
5
|
-
import * as d_stream_write_to_stderr from "./generated/liana/schemas/write_to_stderr/data";
|
|
6
|
-
import * as d_stream_write_to_stdout from "./generated/liana/schemas/write_to_stdout/data";
|
|
7
|
-
import * as d_stream_get_instream_data from "./generated/liana/schemas/get_indata/data";
|
|
8
|
-
export declare namespace commands {
|
|
9
|
-
type log = _pci.Command<null, d_stream_log.Parameters>;
|
|
10
|
-
type log_error = _pci.Command<null, d_stream_log_error.Parameters>;
|
|
11
|
-
type write_to_stderr = _pci.Command<null, d_stream_write_to_stderr.Parameters>;
|
|
12
|
-
type write_to_stdout = _pci.Command<null, d_stream_write_to_stdout.Parameters>;
|
|
13
|
-
}
|
|
14
|
-
export declare namespace queries {
|
|
15
|
-
type get_instream_data = _pqi.Query<d_stream_get_instream_data.Result, null, d_stream_get_instream_data.Parameters>;
|
|
16
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb3VyY2VzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2ludGVyZmFjZS9yZXNvdXJjZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|