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.
Files changed (181) hide show
  1. package/dist/bin/compile_temp_schemas.js +17 -3
  2. package/dist/bin/seal.js +7 -3
  3. package/dist/bin/serialize_schemas.js +7 -3
  4. package/dist/globals.d.ts +2 -0
  5. package/dist/implementation/commands/compile_temp_schemas.d.ts +19 -0
  6. package/dist/implementation/commands/compile_temp_schemas.js +131 -0
  7. package/dist/implementation/commands/seal.d.ts +8 -0
  8. package/dist/{bin/validate.js → implementation/commands/seal.js} +13 -5
  9. package/dist/implementation/commands/serialize_schemas.d.ts +8 -0
  10. package/dist/implementation/commands/serialize_schemas.js +61 -0
  11. package/dist/implementation/generated/pareto/generic/parse/ast.js +21 -21
  12. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +1 -1
  13. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +1 -1
  14. package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +2 -2
  15. package/dist/implementation/generated/pareto/generic/parse/parse.js +4 -3
  16. package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +1 -1
  17. package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +4 -4
  18. package/dist/implementation/generated/pareto/generic/parse/token.js +5 -5
  19. package/dist/implementation/generated/pareto/generic/resolve.d.ts +4 -4
  20. package/dist/implementation/generated/pareto/generic/resolve.js +2 -2
  21. package/dist/implementation/generated/pareto/generic/unmarshall.js +4 -4
  22. package/dist/implementation/generated/pareto/schemas/module/resolve.js +33 -33
  23. package/dist/implementation/generated/pareto/schemas/schema/resolve.js +2 -2
  24. package/dist/implementation/{algorithms/operations → operations}/impure/tbd/path.d.ts +1 -1
  25. package/dist/implementation/operations/impure/tbd/path.js +63 -0
  26. package/dist/implementation/queries/load_pareto_document.d.ts +23 -0
  27. package/dist/implementation/queries/load_pareto_document.js +64 -0
  28. package/dist/implementation/queries/load_pareto_file.d.ts +14 -0
  29. package/dist/implementation/queries/load_pareto_file.js +40 -0
  30. package/dist/implementation/refiners/load_schema.d.ts +6 -0
  31. package/dist/implementation/refiners/load_schema.js +83 -0
  32. package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_implementation.d.ts +1 -1
  33. package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_implementation.js +2 -2
  34. package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_interface.d.ts +1 -1
  35. package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_interface.js +1 -1
  36. package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_implementation.d.ts +1 -1
  37. package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_implementation.js +1 -1
  38. package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_interface.d.ts +1 -1
  39. package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_interface.js +1 -1
  40. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/deserialize.d.ts +2 -2
  41. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/deserialize.js +7 -7
  42. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/main.d.ts +3 -3
  43. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/main.js +1 -1
  44. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/marshall.d.ts +3 -3
  45. package/dist/implementation/transformations/schema/exupery_implementation/marshall.js +142 -0
  46. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/migrate_boilerplate.d.ts +2 -2
  47. package/dist/implementation/transformations/schema/exupery_implementation/migrate_boilerplate.js +105 -0
  48. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/resolve.d.ts +5 -5
  49. package/dist/implementation/transformations/schema/exupery_implementation/resolve.js +300 -0
  50. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/serialize.d.ts +2 -2
  51. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/serialize.js +7 -7
  52. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/unmarshall.d.ts +3 -3
  53. package/dist/implementation/transformations/schema/exupery_implementation/unmarshall.js +158 -0
  54. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/deserialize.d.ts +1 -1
  55. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/deserialize.js +1 -1
  56. package/dist/implementation/transformations/schema/exupery_interface/dummy_resolve.js +13 -0
  57. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/main.d.ts +1 -1
  58. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/main.js +1 -1
  59. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/marshall.d.ts +1 -1
  60. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/marshall.js +1 -1
  61. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/migrate_boilerplate.d.ts +1 -1
  62. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/migrate_boilerplate.js +1 -1
  63. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/resolve.d.ts +2 -2
  64. package/dist/implementation/transformations/schema/exupery_interface/resolve.js +110 -0
  65. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/serialize.d.ts +1 -1
  66. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/serialize.js +1 -1
  67. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/types.d.ts +1 -1
  68. package/dist/implementation/transformations/schema/exupery_interface/types.js +192 -0
  69. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/unmarshall.d.ts +1 -1
  70. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/unmarshall.js +1 -1
  71. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_deserializers.d.ts +1 -1
  72. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_deserializers.js +1 -1
  73. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_serializers.d.ts +1 -1
  74. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_serializers.js +1 -1
  75. package/dist/implementation/transformations/temp/astn_schema.d.ts +10 -0
  76. package/dist/implementation/transformations/temp/astn_schema.js +140 -0
  77. package/dist/implementation/{algorithms/transformations → transformations}/temp/unmarshall_astn_ast.d.ts +2 -2
  78. package/dist/implementation/{algorithms/transformations → transformations}/temp/unmarshall_astn_ast.js +2 -2
  79. package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_errors/fountain_pen.d.ts +1 -1
  80. package/dist/implementation/transformations/unmarshall_errors/fountain_pen.js +86 -0
  81. package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/astn_authoring_target.d.ts +1 -1
  82. package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/astn_authoring_target.js +1 -1
  83. package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/unmarshall_errors.d.ts +2 -2
  84. package/dist/implementation/transformations/unmarshall_result/unmarshall_errors.js +344 -0
  85. package/dist/interface/algorithms/procedures/{unguaranteed/compile.js → compile.js} +1 -1
  86. package/dist/interface/algorithms/procedures/{unguaranteed/seal.js → seal.js} +1 -1
  87. package/dist/interface/algorithms/procedures/{unguaranteed/serialize_schemas.js → serialize_schemas.js} +1 -1
  88. package/dist/interface/algorithms/procedures/{unguaranteed/validate.js → validate.js} +1 -1
  89. package/dist/interface/algorithms/queries/load_pareto_document.js +5 -0
  90. package/dist/interface/algorithms/queries/{unguaranteed/load_pareto_file.js → load_pareto_file.js} +2 -2
  91. package/dist/interface/generated/pareto/core/astn_source.d.ts +3 -3
  92. package/dist/interface/generated/pareto/core/astn_target.d.ts +7 -7
  93. package/dist/interface/generated/pareto/core/parse_result.d.ts +1 -1
  94. package/dist/interface/generated/pareto/core/resolve.d.ts +2 -2
  95. package/dist/interface/generated/pareto/core/resolved.d.ts +12 -12
  96. package/dist/interface/generated/pareto/core/token.d.ts +3 -3
  97. package/dist/interface/generated/pareto/core/unconstrained.d.ts +3 -3
  98. package/dist/interface/generated/pareto/core/unresolved.d.ts +10 -10
  99. package/dist/interface/generated/pareto/schemas/astn_schema/data_types/resolve.d.ts +71 -71
  100. package/dist/interface/generated/pareto/schemas/parse_tree/data_types/source.d.ts +14 -14
  101. package/dist/interface/generated/pareto/schemas/parse_tree/data_types/target.d.ts +14 -14
  102. package/dist/interface/generated/pareto/schemas/schema/data_types/resolve.d.ts +428 -428
  103. package/dist/interface/generated/pareto/schemas/schema/data_types/source.d.ts +67 -67
  104. package/dist/interface/generated/pareto/schemas/schema/data_types/target.d.ts +67 -67
  105. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_error.d.ts +12 -0
  106. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_error.js +36 -0
  107. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_log.d.ts +12 -0
  108. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_log.js +36 -0
  109. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_directory.d.ts +12 -0
  110. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_directory.js +56 -0
  111. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_file.d.ts +10 -0
  112. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_file.js +45 -0
  113. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_node.d.ts +12 -0
  114. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_node.js +58 -0
  115. package/dist/modules/pareto-fountain-pen-directory/interface/temp_types.d.ts +30 -0
  116. package/dist/modules/pareto-fountain-pen-directory/interface/temp_types.js +3 -0
  117. package/dist/temp/resolvers/module.js +2 -2
  118. package/dist/temp/resolvers/schema.js +2 -2
  119. package/dist/temp/temp_unmashall_result_types.d.ts +4 -4
  120. package/dist/temp/temporary_schemas/all.d.ts +4 -1
  121. package/dist/temp/temporary_schemas/all.js +65 -17
  122. package/dist/temp/temporary_schemas/exupery-resources/schema_tree.astn.js +37 -31
  123. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.globals.astn.d.ts +3 -0
  124. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.globals.astn.js +6 -0
  125. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.module.astn.d.ts +3 -0
  126. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.module.astn.js +8 -0
  127. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.types.astn.d.ts +3 -0
  128. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.types.astn.js +20 -0
  129. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.globals.astn.d.ts +3 -0
  130. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.globals.astn.js +6 -0
  131. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.module.astn.d.ts +3 -0
  132. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.module.astn.js +8 -0
  133. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.types.astn.d.ts +3 -0
  134. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.types.astn.js +23 -0
  135. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.globals.astn.d.ts +3 -0
  136. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.globals.astn.js +6 -0
  137. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.module.astn.d.ts +3 -0
  138. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.module.astn.js +8 -0
  139. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.types.astn.d.ts +3 -0
  140. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.types.astn.js +26 -0
  141. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_procedure_executable/$.types.astn.js +1 -2
  142. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_query_executable/$.types.astn.js +1 -2
  143. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_smelly_procedure_executable/$.types.astn.js +1 -2
  144. package/dist/temp/temporary_schemas/exupery-resources/schemas/get_instream_data/$.types.astn.js +2 -1
  145. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding_oude_model/$.types.astn.js +10 -5
  146. package/package.json +9 -9
  147. package/dist/bin/validate.d.ts +0 -2
  148. package/dist/exceptional/deserializers/load_schema.d.ts +0 -6
  149. package/dist/exceptional/deserializers/load_schema.js +0 -83
  150. package/dist/implementation/algorithms/operations/impure/tbd/path.js +0 -16
  151. package/dist/implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.d.ts +0 -3
  152. package/dist/implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.js +0 -152
  153. package/dist/implementation/algorithms/procedures/unguaranteed/seal.d.ts +0 -3
  154. package/dist/implementation/algorithms/procedures/unguaranteed/seal.js +0 -38
  155. package/dist/implementation/algorithms/procedures/unguaranteed/serialize_schemas.d.ts +0 -3
  156. package/dist/implementation/algorithms/procedures/unguaranteed/serialize_schemas.js +0 -62
  157. package/dist/implementation/algorithms/procedures/unguaranteed/validate.d.ts +0 -3
  158. package/dist/implementation/algorithms/procedures/unguaranteed/validate.js +0 -45
  159. package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_document.d.ts +0 -14
  160. package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_document.js +0 -75
  161. package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_file.d.ts +0 -8
  162. package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_file.js +0 -48
  163. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/marshall.js +0 -142
  164. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/migrate_boilerplate.js +0 -105
  165. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/resolve.js +0 -300
  166. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/unmarshall.js +0 -158
  167. package/dist/implementation/algorithms/transformations/schema/exupery_interface/dummy_resolve.js +0 -13
  168. package/dist/implementation/algorithms/transformations/schema/exupery_interface/resolve.js +0 -110
  169. package/dist/implementation/algorithms/transformations/schema/exupery_interface/types.js +0 -192
  170. package/dist/implementation/algorithms/transformations/temp/astn_schema.d.ts +0 -10
  171. package/dist/implementation/algorithms/transformations/temp/astn_schema.js +0 -140
  172. package/dist/implementation/algorithms/transformations/unmarshall_errors/fountain_pen.js +0 -86
  173. package/dist/implementation/algorithms/transformations/unmarshall_result/unmarshall_errors.js +0 -344
  174. package/dist/interface/algorithms/queries/unguaranteed/load_pareto_document.js +0 -5
  175. /package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/dummy_resolve.d.ts +0 -0
  176. /package/dist/interface/algorithms/procedures/{unguaranteed/compile.d.ts → compile.d.ts} +0 -0
  177. /package/dist/interface/algorithms/procedures/{unguaranteed/seal.d.ts → seal.d.ts} +0 -0
  178. /package/dist/interface/algorithms/procedures/{unguaranteed/serialize_schemas.d.ts → serialize_schemas.d.ts} +0 -0
  179. /package/dist/interface/algorithms/procedures/{unguaranteed/validate.d.ts → validate.d.ts} +0 -0
  180. /package/dist/interface/algorithms/queries/{unguaranteed/load_pareto_document.d.ts → load_pareto_document.d.ts} +0 -0
  181. /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 _pt from 'exupery-core-types';
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': _pt.Optional_Value<{
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 ',': _pt.Optional_Value<_T_Structural_Token>;
78
+ readonly ',': _et.Optional_Value<_T_Structural_Token>;
79
79
  readonly 'key': _T_String;
80
- readonly 'value': _pt.Optional_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 = _pt.Optional_Value<{
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_ = _pt.Optional_Value<_T_Structural_Token>;
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 = _pt.Optional_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 ',': _pt.Optional_Value<_T_Structural_Token>;
470
+ readonly ',': _et.Optional_Value<_T_Structural_Token>;
471
471
  readonly 'key': _T_String;
472
- readonly 'value': _pt.Optional_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 = _pt.Optional_Value<{
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_ = _pt.Optional_Value<_T_Structural_Token>;
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 = _pt.Optional_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 ',': _pt.Optional_Value<_T_Structural_Token>;
905
+ readonly ',': _et.Optional_Value<_T_Structural_Token>;
906
906
  readonly 'key': _T_String;
907
- readonly 'value': _pt.Optional_Value<{
907
+ readonly 'value': _et.Optional_Value<{
908
908
  readonly ':': _T_Structural_Token;
909
909
  readonly 'value': _T_Value;
910
910
  }>;