pareto-resources 0.2.137 → 0.2.139
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,11 +1,11 @@
|
|
|
1
1
|
import * as p_ from 'pareto-core/interface/command';
|
|
2
2
|
import * as command_actions from "./command_actions.js";
|
|
3
|
-
export type command_executable = p_.
|
|
3
|
+
export type command_executable = p_.Command<command_actions.execute_sandboxed.command_executable, {
|
|
4
4
|
'program': string;
|
|
5
5
|
}, null, {
|
|
6
6
|
'unrestricted': command_actions.execute_unrestricted.command_executable;
|
|
7
7
|
}>;
|
|
8
|
-
export type smelly_command_executable = p_.
|
|
8
|
+
export type smelly_command_executable = p_.Command<command_actions.execute_sandboxed.smelly_command_executable, {
|
|
9
9
|
'program': string;
|
|
10
10
|
}, null, {
|
|
11
11
|
'unrestricted': command_actions.execute_unrestricted.smelly_command_executable;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as p_ from 'pareto-core/interface/query';
|
|
2
2
|
import * as query_actions from "./query_actions.js";
|
|
3
|
-
export type query_executable = p_.
|
|
3
|
+
export type query_executable = p_.Query<query_actions.execute_sandboxed.query_executable, {
|
|
4
4
|
'program': string;
|
|
5
5
|
}, {
|
|
6
6
|
'unrestricted': query_actions.execute_unrestricted.query_executable;
|