pareto-host-nodejs 0.2.63 → 0.2.65

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,4 +1,4 @@
1
- import * as _pi from 'pareto-core/dist/interface';
1
+ import * as _pci from 'pareto-core/dist/command_interface';
2
2
  import * as d_filesystem_unrestricted from "./file_system_unrestricted/signatures";
3
3
  import * as d_filesystem_stream from "./stream/signatures";
4
4
  import * as d_execute_unrestricted from "./execute_unrestricted/signatures";
@@ -8,4 +8,4 @@ export type Available_Standard_Resources = {
8
8
  'stream': d_filesystem_stream.Resources;
9
9
  'execute unrestricted': d_execute_unrestricted.Resources;
10
10
  };
11
- export type main = (get_main: ($r: Available_Standard_Resources) => _pi.Command<d_main.Error, d_main.Parameters>) => void;
11
+ export type main = (get_main: ($r: Available_Standard_Resources) => _pci.Command<d_main.Error, d_main.Parameters>) => void;
@@ -1,2 +1,2 @@
1
- import * as resources from "pareto-stream/dist/interface/resources";
1
+ import * as resources from "pareto-stream/dist/interface/commands";
2
2
  export declare const $$: resources.commands.log;
@@ -1,2 +1,2 @@
1
- import * as resources from "pareto-stream/dist/interface/resources";
1
+ import * as resources from "pareto-stream/dist/interface/commands";
2
2
  export declare const $$: resources.commands.log_error;
@@ -1,2 +1,2 @@
1
- import * as resources from "pareto-stream/dist/interface/resources";
1
+ import * as resources from "pareto-stream/dist/interface/commands";
2
2
  export declare const $$: resources.commands.write_to_stderr;
@@ -1,2 +1,2 @@
1
- import * as resources from "pareto-stream/dist/interface/resources";
1
+ import * as resources from "pareto-stream/dist/interface/commands";
2
2
  export declare const $$: resources.commands.write_to_stdout;
@@ -1,2 +1,2 @@
1
- import * as resources from "pareto-stream/dist/interface/resources";
1
+ import * as resources from "pareto-stream/dist/interface/queries";
2
2
  export declare const $$: resources.queries.get_instream_data;
@@ -1,10 +1,11 @@
1
1
  import * as _pi_temp from '../temp_core';
2
- import * as resources from "pareto-stream/dist/interface/resources";
2
+ import * as commands from "pareto-stream/dist/interface/commands";
3
+ import * as queries from "pareto-stream/dist/interface/queries";
3
4
  export type Resources = _pi_temp.Resource_Collection<{
4
- 'log error': resources.commands.log_error;
5
- 'log': resources.commands.log;
6
- 'write to stderr': resources.commands.write_to_stderr;
7
- 'write to stdout': resources.commands.write_to_stdout;
5
+ 'log error': commands.commands.log_error;
6
+ 'log': commands.commands.log;
7
+ 'write to stderr': commands.commands.write_to_stderr;
8
+ 'write to stdout': commands.commands.write_to_stdout;
8
9
  }, {
9
- 'get instream data': resources.queries.get_instream_data;
10
+ 'get instream data': queries.queries.get_instream_data;
10
11
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-host-nodejs",
3
- "version": "0.2.63",
3
+ "version": "0.2.65",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Corno",
6
6
  "description": "the exupery core package for creating a main function in a nodejs host environment",