pareto 0.78.1 → 0.78.3
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/bin/compile_temp_schemas.js +17 -3
- package/dist/bin/seal.js +7 -3
- package/dist/bin/serialize_schemas.js +7 -3
- package/dist/globals.d.ts +2 -0
- package/dist/implementation/commands/compile_temp_schemas.d.ts +19 -0
- package/dist/implementation/commands/compile_temp_schemas.js +131 -0
- package/dist/implementation/commands/seal.d.ts +8 -0
- package/dist/{bin/validate.js → implementation/commands/seal.js} +13 -5
- package/dist/implementation/commands/serialize_schemas.d.ts +8 -0
- package/dist/implementation/commands/serialize_schemas.js +61 -0
- package/dist/implementation/generated/pareto/generic/parse/ast.js +21 -21
- package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +1 -1
- package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +1 -1
- package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +2 -2
- package/dist/implementation/generated/pareto/generic/parse/parse.js +4 -3
- package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +1 -1
- package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +4 -4
- package/dist/implementation/generated/pareto/generic/parse/token.js +5 -5
- package/dist/implementation/generated/pareto/generic/resolve.d.ts +4 -4
- package/dist/implementation/generated/pareto/generic/resolve.js +2 -2
- package/dist/implementation/generated/pareto/generic/unmarshall.js +4 -4
- package/dist/implementation/generated/pareto/schemas/module/resolve.js +33 -33
- package/dist/implementation/generated/pareto/schemas/schema/resolve.js +2 -2
- package/dist/implementation/{algorithms/operations → operations}/impure/tbd/path.d.ts +1 -1
- package/dist/implementation/operations/impure/tbd/path.js +63 -0
- package/dist/implementation/queries/load_pareto_document.d.ts +23 -0
- package/dist/implementation/queries/load_pareto_document.js +64 -0
- package/dist/implementation/queries/load_pareto_file.d.ts +14 -0
- package/dist/implementation/queries/load_pareto_file.js +40 -0
- package/dist/implementation/refiners/load_schema.d.ts +6 -0
- package/dist/implementation/refiners/load_schema.js +83 -0
- package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_implementation.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_implementation.js +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_interface.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_interface.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_implementation.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_implementation.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_interface.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_interface.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/deserialize.d.ts +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/deserialize.js +7 -7
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/main.d.ts +3 -3
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/main.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/marshall.d.ts +3 -3
- package/dist/implementation/transformations/schema/exupery_implementation/marshall.js +142 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/migrate_boilerplate.d.ts +2 -2
- package/dist/implementation/transformations/schema/exupery_implementation/migrate_boilerplate.js +105 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/resolve.d.ts +5 -5
- package/dist/implementation/transformations/schema/exupery_implementation/resolve.js +300 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/serialize.d.ts +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/serialize.js +7 -7
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/unmarshall.d.ts +3 -3
- package/dist/implementation/transformations/schema/exupery_implementation/unmarshall.js +158 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/deserialize.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/deserialize.js +1 -1
- package/dist/implementation/transformations/schema/exupery_interface/dummy_resolve.js +13 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/main.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/main.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/marshall.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/marshall.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/migrate_boilerplate.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/migrate_boilerplate.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/resolve.d.ts +2 -2
- package/dist/implementation/transformations/schema/exupery_interface/resolve.js +110 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/serialize.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/serialize.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/types.d.ts +1 -1
- package/dist/implementation/transformations/schema/exupery_interface/types.js +192 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/unmarshall.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/unmarshall.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_deserializers.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_deserializers.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_serializers.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_serializers.js +1 -1
- package/dist/implementation/transformations/temp/astn_schema.d.ts +10 -0
- package/dist/implementation/transformations/temp/astn_schema.js +140 -0
- package/dist/implementation/{algorithms/transformations → transformations}/temp/unmarshall_astn_ast.d.ts +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/temp/unmarshall_astn_ast.js +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_errors/fountain_pen.d.ts +1 -1
- package/dist/implementation/transformations/unmarshall_errors/fountain_pen.js +86 -0
- package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/astn_authoring_target.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/astn_authoring_target.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/unmarshall_errors.d.ts +2 -2
- package/dist/implementation/transformations/unmarshall_result/unmarshall_errors.js +344 -0
- package/dist/interface/algorithms/procedures/{unguaranteed/compile.js → compile.js} +1 -1
- package/dist/interface/algorithms/procedures/{unguaranteed/seal.js → seal.js} +1 -1
- package/dist/interface/algorithms/procedures/{unguaranteed/serialize_schemas.js → serialize_schemas.js} +1 -1
- package/dist/interface/algorithms/procedures/{unguaranteed/validate.js → validate.js} +1 -1
- package/dist/interface/algorithms/queries/load_pareto_document.js +5 -0
- package/dist/interface/algorithms/queries/{unguaranteed/load_pareto_file.js → load_pareto_file.js} +2 -2
- package/dist/interface/generated/pareto/core/astn_source.d.ts +3 -3
- package/dist/interface/generated/pareto/core/astn_target.d.ts +7 -7
- package/dist/interface/generated/pareto/core/parse_result.d.ts +1 -1
- package/dist/interface/generated/pareto/core/resolve.d.ts +2 -2
- package/dist/interface/generated/pareto/core/resolved.d.ts +12 -12
- package/dist/interface/generated/pareto/core/token.d.ts +3 -3
- package/dist/interface/generated/pareto/core/unconstrained.d.ts +3 -3
- package/dist/interface/generated/pareto/core/unresolved.d.ts +10 -10
- package/dist/interface/generated/pareto/schemas/astn_schema/data_types/resolve.d.ts +71 -71
- package/dist/interface/generated/pareto/schemas/parse_tree/data_types/source.d.ts +14 -14
- package/dist/interface/generated/pareto/schemas/parse_tree/data_types/target.d.ts +14 -14
- package/dist/interface/generated/pareto/schemas/schema/data_types/resolve.d.ts +428 -428
- package/dist/interface/generated/pareto/schemas/schema/data_types/source.d.ts +67 -67
- package/dist/interface/generated/pareto/schemas/schema/data_types/target.d.ts +67 -67
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_error.d.ts +12 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_error.js +36 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_log.d.ts +12 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_log.js +36 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_directory.d.ts +12 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_directory.js +56 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_file.d.ts +10 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_file.js +45 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_node.d.ts +12 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_node.js +58 -0
- package/dist/modules/pareto-fountain-pen-directory/interface/temp_types.d.ts +30 -0
- package/dist/modules/pareto-fountain-pen-directory/interface/temp_types.js +3 -0
- package/dist/temp/resolvers/module.js +2 -2
- package/dist/temp/resolvers/schema.js +2 -2
- package/dist/temp/temp_unmashall_result_types.d.ts +4 -4
- package/dist/temp/temporary_schemas/all.d.ts +4 -1
- package/dist/temp/temporary_schemas/all.js +65 -17
- package/dist/temp/temporary_schemas/exupery-resources/schema_tree.astn.js +37 -31
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.globals.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.globals.astn.js +6 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.module.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.module.astn.js +8 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.types.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.types.astn.js +20 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.globals.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.globals.astn.js +6 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.module.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.module.astn.js +8 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.types.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.types.astn.js +23 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.globals.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.globals.astn.js +6 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.module.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.module.astn.js +8 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.types.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.types.astn.js +26 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_procedure_executable/$.types.astn.js +1 -2
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_query_executable/$.types.astn.js +1 -2
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_smelly_procedure_executable/$.types.astn.js +1 -2
- package/dist/temp/temporary_schemas/exupery-resources/schemas/get_instream_data/$.types.astn.js +2 -1
- package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding_oude_model/$.types.astn.js +10 -5
- package/package.json +9 -9
- package/dist/bin/validate.d.ts +0 -2
- package/dist/exceptional/deserializers/load_schema.d.ts +0 -6
- package/dist/exceptional/deserializers/load_schema.js +0 -83
- package/dist/implementation/algorithms/operations/impure/tbd/path.js +0 -16
- package/dist/implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.d.ts +0 -3
- package/dist/implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.js +0 -152
- package/dist/implementation/algorithms/procedures/unguaranteed/seal.d.ts +0 -3
- package/dist/implementation/algorithms/procedures/unguaranteed/seal.js +0 -38
- package/dist/implementation/algorithms/procedures/unguaranteed/serialize_schemas.d.ts +0 -3
- package/dist/implementation/algorithms/procedures/unguaranteed/serialize_schemas.js +0 -62
- package/dist/implementation/algorithms/procedures/unguaranteed/validate.d.ts +0 -3
- package/dist/implementation/algorithms/procedures/unguaranteed/validate.js +0 -45
- package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_document.d.ts +0 -14
- package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_document.js +0 -75
- package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_file.d.ts +0 -8
- package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_file.js +0 -48
- package/dist/implementation/algorithms/transformations/schema/exupery_implementation/marshall.js +0 -142
- package/dist/implementation/algorithms/transformations/schema/exupery_implementation/migrate_boilerplate.js +0 -105
- package/dist/implementation/algorithms/transformations/schema/exupery_implementation/resolve.js +0 -300
- package/dist/implementation/algorithms/transformations/schema/exupery_implementation/unmarshall.js +0 -158
- package/dist/implementation/algorithms/transformations/schema/exupery_interface/dummy_resolve.js +0 -13
- package/dist/implementation/algorithms/transformations/schema/exupery_interface/resolve.js +0 -110
- package/dist/implementation/algorithms/transformations/schema/exupery_interface/types.js +0 -192
- package/dist/implementation/algorithms/transformations/temp/astn_schema.d.ts +0 -10
- package/dist/implementation/algorithms/transformations/temp/astn_schema.js +0 -140
- package/dist/implementation/algorithms/transformations/unmarshall_errors/fountain_pen.js +0 -86
- package/dist/implementation/algorithms/transformations/unmarshall_result/unmarshall_errors.js +0 -344
- package/dist/interface/algorithms/queries/unguaranteed/load_pareto_document.js +0 -5
- /package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/dummy_resolve.d.ts +0 -0
- /package/dist/interface/algorithms/procedures/{unguaranteed/compile.d.ts → compile.d.ts} +0 -0
- /package/dist/interface/algorithms/procedures/{unguaranteed/seal.d.ts → seal.d.ts} +0 -0
- /package/dist/interface/algorithms/procedures/{unguaranteed/serialize_schemas.d.ts → serialize_schemas.d.ts} +0 -0
- /package/dist/interface/algorithms/procedures/{unguaranteed/validate.d.ts → validate.d.ts} +0 -0
- /package/dist/interface/algorithms/queries/{unguaranteed/load_pareto_document.d.ts → load_pareto_document.d.ts} +0 -0
- /package/dist/interface/algorithms/queries/{unguaranteed/load_pareto_file.d.ts → load_pareto_file.d.ts} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _et from 'exupery-core-types';
|
|
2
2
|
import * as _i_core from "../../../core/unconstrained";
|
|
3
3
|
import * as _i_imports_token from "../../token/data_types/target";
|
|
4
4
|
export type _T_Concrete_Value = _i_core._T_State_Group<null, readonly [
|
|
@@ -66,7 +66,7 @@ export type _T_Concrete_Value = _i_core._T_State_Group<null, readonly [
|
|
|
66
66
|
]>;
|
|
67
67
|
export type _T_Document = {
|
|
68
68
|
readonly 'content': _T_Value;
|
|
69
|
-
readonly 'header':
|
|
69
|
+
readonly 'header': _et.Optional_Value<{
|
|
70
70
|
readonly '!': _T_Structural_Token;
|
|
71
71
|
readonly 'value': _T_Value;
|
|
72
72
|
}>;
|
|
@@ -75,9 +75,9 @@ export type _T_Elements = _i_core._T_List<null, {
|
|
|
75
75
|
readonly 'value': _T_Value;
|
|
76
76
|
}>;
|
|
77
77
|
export type _T_Key_Value_Pairs = _i_core._T_List<null, {
|
|
78
|
-
readonly ',':
|
|
78
|
+
readonly ',': _et.Optional_Value<_T_Structural_Token>;
|
|
79
79
|
readonly 'key': _T_String;
|
|
80
|
-
readonly 'value':
|
|
80
|
+
readonly 'value': _et.Optional_Value<{
|
|
81
81
|
readonly ':': _T_Structural_Token;
|
|
82
82
|
readonly 'value': _T_Value;
|
|
83
83
|
}>;
|
|
@@ -421,7 +421,7 @@ export declare namespace _T_Document {
|
|
|
421
421
|
readonly 'value': _T_Value;
|
|
422
422
|
};
|
|
423
423
|
}
|
|
424
|
-
type header =
|
|
424
|
+
type header = _et.Optional_Value<{
|
|
425
425
|
readonly '!': _T_Structural_Token;
|
|
426
426
|
readonly 'value': _T_Value;
|
|
427
427
|
}>;
|
|
@@ -443,7 +443,7 @@ export declare namespace _T_Key_Value_Pairs {
|
|
|
443
443
|
}
|
|
444
444
|
type O = _T_Structural_Token;
|
|
445
445
|
}
|
|
446
|
-
type $cm_ =
|
|
446
|
+
type $cm_ = _et.Optional_Value<_T_Structural_Token>;
|
|
447
447
|
namespace key {
|
|
448
448
|
}
|
|
449
449
|
type key = _T_String;
|
|
@@ -461,15 +461,15 @@ export declare namespace _T_Key_Value_Pairs {
|
|
|
461
461
|
readonly 'value': _T_Value;
|
|
462
462
|
};
|
|
463
463
|
}
|
|
464
|
-
type value =
|
|
464
|
+
type value = _et.Optional_Value<{
|
|
465
465
|
readonly ':': _T_Structural_Token;
|
|
466
466
|
readonly 'value': _T_Value;
|
|
467
467
|
}>;
|
|
468
468
|
}
|
|
469
469
|
type L = {
|
|
470
|
-
readonly ',':
|
|
470
|
+
readonly ',': _et.Optional_Value<_T_Structural_Token>;
|
|
471
471
|
readonly 'key': _T_String;
|
|
472
|
-
readonly 'value':
|
|
472
|
+
readonly 'value': _et.Optional_Value<{
|
|
473
473
|
readonly ':': _T_Structural_Token;
|
|
474
474
|
readonly 'value': _T_Value;
|
|
475
475
|
}>;
|
|
@@ -856,7 +856,7 @@ export declare namespace Document {
|
|
|
856
856
|
readonly 'value': _T_Value;
|
|
857
857
|
};
|
|
858
858
|
}
|
|
859
|
-
type header =
|
|
859
|
+
type header = _et.Optional_Value<{
|
|
860
860
|
readonly '!': _T_Structural_Token;
|
|
861
861
|
readonly 'value': _T_Value;
|
|
862
862
|
}>;
|
|
@@ -878,7 +878,7 @@ export declare namespace Key_Value_Pairs {
|
|
|
878
878
|
}
|
|
879
879
|
type O = _T_Structural_Token;
|
|
880
880
|
}
|
|
881
|
-
type $cm_ =
|
|
881
|
+
type $cm_ = _et.Optional_Value<_T_Structural_Token>;
|
|
882
882
|
namespace key {
|
|
883
883
|
}
|
|
884
884
|
type key = _T_String;
|
|
@@ -896,15 +896,15 @@ export declare namespace Key_Value_Pairs {
|
|
|
896
896
|
readonly 'value': _T_Value;
|
|
897
897
|
};
|
|
898
898
|
}
|
|
899
|
-
type value =
|
|
899
|
+
type value = _et.Optional_Value<{
|
|
900
900
|
readonly ':': _T_Structural_Token;
|
|
901
901
|
readonly 'value': _T_Value;
|
|
902
902
|
}>;
|
|
903
903
|
}
|
|
904
904
|
type L = {
|
|
905
|
-
readonly ',':
|
|
905
|
+
readonly ',': _et.Optional_Value<_T_Structural_Token>;
|
|
906
906
|
readonly 'key': _T_String;
|
|
907
|
-
readonly 'value':
|
|
907
|
+
readonly 'value': _et.Optional_Value<{
|
|
908
908
|
readonly ':': _T_Structural_Token;
|
|
909
909
|
readonly 'value': _T_Value;
|
|
910
910
|
}>;
|