pareto-test 0.13.38 → 0.13.39

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.
@@ -0,0 +1,19 @@
1
+ import { Directory_to_Test_Group_Result_Transformer } from "../../implementation/temp/higher_order_functions/generic_testset/temp";
2
+ export type Package = {
3
+ 'schemas': {
4
+ [key: string]: Schema;
5
+ };
6
+ };
7
+ export type Testset_for_set_of_algorithms = undefined | {
8
+ [key: string]: Directory_to_Test_Group_Result_Transformer;
9
+ };
10
+ export type Schema = {
11
+ 'deserializers'?: Testset_for_set_of_algorithms;
12
+ 'refiners'?: {
13
+ [key: string]: Testset_for_set_of_algorithms;
14
+ };
15
+ 'transformers'?: {
16
+ [key: string]: Testset_for_set_of_algorithms;
17
+ };
18
+ 'serializers'?: Testset_for_set_of_algorithms;
19
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdGVycy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9uZXcvaW50ZXJmYWNlL3Rlc3RlcnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-test",
3
- "version": "0.13.38",
3
+ "version": "0.13.39",
4
4
  "description": "A testing framework for Pareto projects",
5
5
  "main": "./dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -8,8 +8,9 @@
8
8
  "dist"
9
9
  ],
10
10
  "dependencies": {
11
- "astn": "^0.113.19",
11
+ "astn": "^0.113.20",
12
+ "astn-sealed": "^0.1.0",
12
13
  "pareto-fountain-pen": "^0.3.23",
13
- "pareto-resources": "^0.1.1"
14
+ "pareto-resources": "^0.1.2"
14
15
  }
15
16
  }