exupery-resources 0.3.14 → 0.3.15

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/globals.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  interface Array<T> {
2
2
  [n: number]: T;
3
+ length: number;
4
+ readonly __isArray: true;
3
5
  }
4
6
  interface Boolean {
5
7
  }
@@ -1,5 +1,5 @@
1
1
  import * as _et from 'exupery-core-types';
2
2
  import * as d_in from "../../../interface/generated/pareto/schemas/execute_procedure_executable/data_types/source";
3
3
  import * as d_out from "pareto-fountain-pen/dist/interface/generated/pareto/schemas/block/data_types/target";
4
- export type Error = _et.Transformer_Without_Parameters<d_out.Block_Part, d_in.Error>;
4
+ export type Error = _et.Transformer<d_out.Block_Part, d_in.Error>;
5
5
  export declare const Error: Error;
@@ -1,5 +1,5 @@
1
1
  import * as _et from 'exupery-core-types';
2
2
  import * as d_in from "../../../interface/generated/pareto/schemas/execute_query_executable/data_types/source";
3
3
  import * as d_out from "pareto-fountain-pen/dist/interface/generated/pareto/schemas/block/data_types/target";
4
- export type Error = _et.Transformer_Without_Parameters<d_out.Block_Part, d_in.Error>;
4
+ export type Error = _et.Transformer<d_out.Block_Part, d_in.Error>;
5
5
  export declare const Error: Error;
@@ -1,5 +1,5 @@
1
1
  import * as _et from 'exupery-core-types';
2
2
  import * as d_in from "../../../interface/generated/pareto/schemas/execute_smelly_procedure_executable/data_types/source";
3
3
  import * as d_out from "pareto-fountain-pen/dist/interface/generated/pareto/schemas/block/data_types/target";
4
- export type Error = _et.Transformer_Without_Parameters<d_out.Block_Part, d_in.Error>;
4
+ export type Error = _et.Transformer<d_out.Block_Part, d_in.Error>;
5
5
  export declare const Error: Error;
@@ -1,5 +1,5 @@
1
1
  import * as _et from 'exupery-core-types';
2
2
  import * as d_in from "../../../interface/generated/pareto/schemas/make_directory/data_types/source";
3
3
  import * as d_out from "pareto-fountain-pen/dist/interface/generated/pareto/schemas/block/data_types/target";
4
- export type Error = _et.Transformer_Without_Parameters<d_out.Block_Part, d_in.Error>;
4
+ export type Error = _et.Transformer<d_out.Block_Part, d_in.Error>;
5
5
  export declare const Error: Error;
@@ -1,5 +1,5 @@
1
1
  import * as _et from 'exupery-core-types';
2
2
  import * as d_in from "../../../interface/generated/pareto/schemas/read_directory/data_types/source";
3
3
  import * as d_out from "pareto-fountain-pen/dist/interface/generated/pareto/schemas/block/data_types/target";
4
- export type Error = _et.Transformer_Without_Parameters<d_out.Block_Part, d_in.Error>;
4
+ export type Error = _et.Transformer<d_out.Block_Part, d_in.Error>;
5
5
  export declare const Error: Error;
@@ -1,5 +1,5 @@
1
1
  import * as _et from 'exupery-core-types';
2
2
  import * as d_in from "../../../interface/generated/pareto/schemas/read_file/data_types/source";
3
3
  import * as d_out from "pareto-fountain-pen/dist/interface/generated/pareto/schemas/block/data_types/target";
4
- export type Error = _et.Transformer_Without_Parameters<d_out.Block_Part, d_in.Error>;
4
+ export type Error = _et.Transformer<d_out.Block_Part, d_in.Error>;
5
5
  export declare const Error: Error;
@@ -1,5 +1,5 @@
1
1
  import * as _et from 'exupery-core-types';
2
2
  import * as d_in from "../../../interface/generated/pareto/schemas/write_file/data_types/source";
3
3
  import * as d_out from "pareto-fountain-pen/dist/interface/generated/pareto/schemas/block/data_types/target";
4
- export type Error = _et.Transformer_Without_Parameters<d_out.Block_Part, d_in.Error>;
4
+ export type Error = _et.Transformer<d_out.Block_Part, d_in.Error>;
5
5
  export declare const Error: Error;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exupery-resources",
3
- "version": "0.3.14",
3
+ "version": "0.3.15",
4
4
  "description": "A library providing resources forthe Exupery programming Language",
5
5
  "main": "./dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -8,9 +8,9 @@
8
8
  "dist"
9
9
  ],
10
10
  "dependencies": {
11
- "exupery-core-alg": "^0.5.10",
12
- "exupery-core-async": "^0.3.58",
13
- "exupery-core-dev": "^0.3.1",
14
- "pareto-fountain-pen": "^0.3.10"
11
+ "exupery-core-alg": "^0.5.11",
12
+ "exupery-core-async": "^0.3.64",
13
+ "exupery-core-dev": "^0.3.2",
14
+ "pareto-fountain-pen": "^0.3.11"
15
15
  }
16
16
  }