pareto 0.76.67 → 0.77.0

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 (678) hide show
  1. package/dist/bin/{compile.js → compile_temp_schemas.js} +3 -3
  2. package/dist/bin/seal.js +2 -2
  3. package/dist/bin/serialize_schemas.js +2 -2
  4. package/dist/bin/validate.js +2 -2
  5. package/dist/exceptional/deserializers/load_schema.d.ts +5 -5
  6. package/dist/exceptional/deserializers/load_schema.js +11 -10
  7. package/dist/{operations → implementation/algorithms/operations}/impure/tbd/path.d.ts +1 -1
  8. package/dist/implementation/algorithms/operations/impure/tbd/path.js +16 -0
  9. package/dist/implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.js +152 -0
  10. package/dist/{procedures → implementation/algorithms/procedures}/unguaranteed/seal.js +2 -2
  11. package/dist/implementation/algorithms/procedures/unguaranteed/serialize_schemas.js +62 -0
  12. package/dist/{procedures → implementation/algorithms/procedures}/unguaranteed/validate.js +4 -4
  13. package/dist/{queries → implementation/algorithms/queries}/unguaranteed/load_pareto_document.d.ts +2 -2
  14. package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_document.js +75 -0
  15. package/dist/{queries → implementation/algorithms/queries}/unguaranteed/load_pareto_file.d.ts +1 -1
  16. package/dist/{queries → implementation/algorithms/queries}/unguaranteed/load_pareto_file.js +4 -4
  17. package/dist/implementation/algorithms/transformations/module/exupery_implementation.d.ts +4 -0
  18. package/dist/{transformations → implementation/algorithms/transformations}/module/exupery_implementation.js +1 -1
  19. package/dist/implementation/algorithms/transformations/module/exupery_interface.d.ts +5 -0
  20. package/dist/{transformations → implementation/algorithms/transformations}/module/exupery_interface.js +6 -6
  21. package/dist/implementation/algorithms/transformations/module/temp_typescript_implementation.d.ts +3 -0
  22. package/dist/implementation/algorithms/transformations/module/temp_typescript_implementation.js +45 -0
  23. package/dist/implementation/algorithms/transformations/module/temp_typescript_interface.d.ts +3 -0
  24. package/dist/implementation/algorithms/transformations/module/temp_typescript_interface.js +43 -0
  25. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/deserialize.d.ts +8 -0
  26. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/deserialize.js +52 -0
  27. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_implementation/main.d.ts +2 -2
  28. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/main.js +92 -0
  29. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_implementation/marshall.d.ts +3 -3
  30. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/marshall.js +142 -0
  31. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/migrate_boilerplate.d.ts +14 -0
  32. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/migrate_boilerplate.js +105 -0
  33. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_implementation/resolve.d.ts +3 -3
  34. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/resolve.js +300 -0
  35. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/serialize.d.ts +9 -0
  36. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/serialize.js +53 -0
  37. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_implementation/unmarshall.d.ts +3 -3
  38. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/unmarshall.js +158 -0
  39. package/dist/implementation/algorithms/transformations/schema/exupery_interface/deserialize.d.ts +6 -0
  40. package/dist/implementation/algorithms/transformations/schema/exupery_interface/deserialize.js +39 -0
  41. package/dist/implementation/algorithms/transformations/schema/exupery_interface/dummy_resolve.d.ts +3 -0
  42. package/dist/implementation/algorithms/transformations/schema/exupery_interface/dummy_resolve.js +13 -0
  43. package/dist/implementation/algorithms/transformations/schema/exupery_interface/main.d.ts +6 -0
  44. package/dist/implementation/algorithms/transformations/schema/exupery_interface/main.js +116 -0
  45. package/dist/implementation/algorithms/transformations/schema/exupery_interface/marshall.d.ts +6 -0
  46. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_interface/marshall.js +1 -1
  47. package/dist/implementation/algorithms/transformations/schema/exupery_interface/migrate_boilerplate.d.ts +7 -0
  48. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_interface/migrate_boilerplate.js +1 -1
  49. package/dist/implementation/algorithms/transformations/schema/exupery_interface/resolve.d.ts +12 -0
  50. package/dist/implementation/algorithms/transformations/schema/exupery_interface/resolve.js +110 -0
  51. package/dist/implementation/algorithms/transformations/schema/exupery_interface/serialize.d.ts +6 -0
  52. package/dist/implementation/algorithms/transformations/schema/exupery_interface/serialize.js +39 -0
  53. package/dist/implementation/algorithms/transformations/schema/exupery_interface/types.d.ts +12 -0
  54. package/dist/implementation/algorithms/transformations/schema/exupery_interface/types.js +192 -0
  55. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_interface/unmarshall.d.ts +2 -2
  56. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_interface/unmarshall.js +1 -1
  57. package/dist/implementation/algorithms/transformations/schema/exupery_interface/value_deserializers.d.ts +6 -0
  58. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_interface/value_deserializers.js +1 -1
  59. package/dist/implementation/algorithms/transformations/schema/exupery_interface/value_serializers.d.ts +6 -0
  60. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_interface/value_serializers.js +1 -1
  61. package/dist/implementation/algorithms/transformations/temp/astn_schema.d.ts +10 -0
  62. package/dist/implementation/algorithms/transformations/temp/astn_schema.js +140 -0
  63. package/dist/{transformations → implementation/algorithms/transformations}/temp/unmarshall_astn_ast.d.ts +4 -4
  64. package/dist/{transformations → implementation/algorithms/transformations}/temp/unmarshall_astn_ast.js +6 -23
  65. package/dist/{transformations → implementation/algorithms/transformations}/unmarshall_errors/fountain_pen.d.ts +4 -4
  66. package/dist/implementation/algorithms/transformations/unmarshall_errors/fountain_pen.js +86 -0
  67. package/dist/implementation/algorithms/transformations/unmarshall_result/astn_authoring_target.d.ts +3 -0
  68. package/dist/{transformations → implementation/algorithms/transformations}/unmarshall_result/astn_authoring_target.js +1 -1
  69. package/dist/implementation/algorithms/transformations/unmarshall_result/unmarshall_errors.d.ts +8 -0
  70. package/dist/implementation/algorithms/transformations/unmarshall_result/unmarshall_errors.js +344 -0
  71. package/dist/implementation/generated/pareto/generic/parse/ast.d.ts +10 -0
  72. package/dist/implementation/generated/pareto/generic/parse/ast.js +245 -0
  73. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +13 -0
  74. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +50 -0
  75. package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +6 -0
  76. package/dist/implementation/generated/pareto/generic/parse/parse.js +65 -0
  77. package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +41 -0
  78. package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +113 -0
  79. package/dist/implementation/generated/pareto/generic/parse/token.d.ts +9 -0
  80. package/dist/implementation/generated/pareto/generic/parse/token.js +519 -0
  81. package/dist/{generated/implementation → implementation/generated/pareto}/generic/resolve.d.ts +3 -3
  82. package/dist/implementation/generated/pareto/generic/resolve.js +276 -0
  83. package/dist/implementation/generated/pareto/generic/serialize.d.ts +4 -0
  84. package/dist/implementation/generated/pareto/generic/serialize.js +93 -0
  85. package/dist/implementation/generated/pareto/generic/unmarshall.d.ts +42 -0
  86. package/dist/implementation/generated/pareto/generic/unmarshall.js +247 -0
  87. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/astn_schema/marshall.d.ts +1 -1
  88. package/dist/implementation/generated/pareto/schemas/astn_schema/marshall.js +232 -0
  89. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/astn_schema/resolve.d.ts +1 -1
  90. package/dist/implementation/generated/pareto/schemas/astn_schema/resolve.js +446 -0
  91. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/astn_schema/unmarshall.d.ts +1 -1
  92. package/dist/implementation/generated/pareto/schemas/astn_schema/unmarshall.js +206 -0
  93. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/module/marshall.d.ts +1 -1
  94. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/module/marshall.js +1 -1
  95. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/module/resolve.d.ts +1 -1
  96. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/module/resolve.js +1 -1
  97. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/module/unmarshall.d.ts +1 -1
  98. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/module/unmarshall.js +1 -1
  99. package/dist/{generated/implementation/schemas/ast → implementation/generated/pareto/schemas/parse_tree}/marshall.d.ts +1 -1
  100. package/dist/{generated/implementation/schemas/ast → implementation/generated/pareto/schemas/parse_tree}/marshall.js +1 -1
  101. package/dist/{generated/implementation/schemas/ast → implementation/generated/pareto/schemas/parse_tree}/unmarshall.d.ts +1 -1
  102. package/dist/{generated/implementation/schemas/ast → implementation/generated/pareto/schemas/parse_tree}/unmarshall.js +1 -1
  103. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/schema/marshall.d.ts +1 -1
  104. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/schema/marshall.js +1 -1
  105. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/schema/resolve.d.ts +1 -1
  106. package/dist/implementation/generated/pareto/schemas/schema/resolve.js +2025 -0
  107. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/schema/unmarshall.d.ts +1 -1
  108. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/schema/unmarshall.js +1 -1
  109. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/token/marshall.d.ts +1 -1
  110. package/dist/implementation/generated/pareto/schemas/token/marshall.js +230 -0
  111. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/token/unmarshall.d.ts +1 -1
  112. package/dist/implementation/generated/pareto/schemas/token/unmarshall.js +218 -0
  113. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/unmarshall_errors/marshall.d.ts +1 -1
  114. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/unmarshall_errors/marshall.js +1 -1
  115. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/unmarshall_errors/unmarshall.d.ts +1 -1
  116. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/unmarshall_errors/unmarshall.js +1 -1
  117. package/dist/implementation/generated/pareto/schemas/unmarshall_result/marshall.js +3 -0
  118. package/dist/implementation/generated/pareto/schemas/unmarshall_result/unmarshall.js +3 -0
  119. package/dist/interface/algorithms/operations/impure/tbd/path.d.ts +1 -0
  120. package/dist/interface/algorithms/operations/impure/tbd/path.js +5 -0
  121. package/dist/interface/algorithms/procedures/unguaranteed/compile.d.ts +1 -0
  122. package/dist/interface/algorithms/procedures/unguaranteed/compile.js +5 -0
  123. package/dist/interface/algorithms/procedures/unguaranteed/seal.d.ts +1 -0
  124. package/dist/interface/algorithms/procedures/unguaranteed/seal.js +5 -0
  125. package/dist/interface/algorithms/procedures/unguaranteed/serialize_schemas.d.ts +1 -0
  126. package/dist/interface/algorithms/procedures/unguaranteed/serialize_schemas.js +5 -0
  127. package/dist/interface/algorithms/procedures/unguaranteed/validate.d.ts +1 -0
  128. package/dist/interface/algorithms/procedures/unguaranteed/validate.js +5 -0
  129. package/dist/interface/algorithms/queries/unguaranteed/load_pareto_document.d.ts +1 -0
  130. package/dist/interface/algorithms/queries/unguaranteed/load_pareto_document.js +5 -0
  131. package/dist/interface/algorithms/queries/unguaranteed/load_pareto_file.d.ts +1 -0
  132. package/dist/interface/algorithms/queries/unguaranteed/load_pareto_file.js +5 -0
  133. package/dist/interface/algorithms/transformations/module/exupery_implementation.d.ts +1 -0
  134. package/dist/interface/algorithms/transformations/module/exupery_implementation.js +5 -0
  135. package/dist/interface/algorithms/transformations/module/exupery_interface.d.ts +1 -0
  136. package/dist/interface/algorithms/transformations/module/exupery_interface.js +5 -0
  137. package/dist/interface/algorithms/transformations/module/temp_typescript.d.ts +1 -0
  138. package/dist/interface/algorithms/transformations/module/temp_typescript.js +5 -0
  139. package/dist/interface/algorithms/transformations/schema/exupery_implementation/main.d.ts +1 -0
  140. package/dist/interface/algorithms/transformations/schema/exupery_implementation/main.js +5 -0
  141. package/dist/interface/algorithms/transformations/schema/exupery_implementation/marshall.d.ts +1 -0
  142. package/dist/interface/algorithms/transformations/schema/exupery_implementation/marshall.js +5 -0
  143. package/dist/interface/algorithms/transformations/schema/exupery_implementation/migrate_boilerplate.d.ts +1 -0
  144. package/dist/interface/algorithms/transformations/schema/exupery_implementation/migrate_boilerplate.js +5 -0
  145. package/dist/interface/algorithms/transformations/schema/exupery_implementation/resolve.d.ts +1 -0
  146. package/dist/interface/algorithms/transformations/schema/exupery_implementation/resolve.js +5 -0
  147. package/dist/interface/algorithms/transformations/schema/exupery_implementation/unmarshall.d.ts +1 -0
  148. package/dist/interface/algorithms/transformations/schema/exupery_implementation/unmarshall.js +5 -0
  149. package/dist/interface/algorithms/transformations/schema/exupery_interface/dummy_resolve.d.ts +1 -0
  150. package/dist/interface/algorithms/transformations/schema/exupery_interface/dummy_resolve.js +5 -0
  151. package/dist/interface/algorithms/transformations/schema/exupery_interface/main.d.ts +1 -0
  152. package/dist/interface/algorithms/transformations/schema/exupery_interface/main.js +5 -0
  153. package/dist/interface/algorithms/transformations/schema/exupery_interface/marshall.d.ts +1 -0
  154. package/dist/interface/algorithms/transformations/schema/exupery_interface/marshall.js +5 -0
  155. package/dist/interface/algorithms/transformations/schema/exupery_interface/migrate_boilerplate.d.ts +1 -0
  156. package/dist/interface/algorithms/transformations/schema/exupery_interface/migrate_boilerplate.js +5 -0
  157. package/dist/interface/algorithms/transformations/schema/exupery_interface/resolve.d.ts +1 -0
  158. package/dist/interface/algorithms/transformations/schema/exupery_interface/resolve.js +5 -0
  159. package/dist/interface/algorithms/transformations/schema/exupery_interface/types.d.ts +1 -0
  160. package/dist/interface/algorithms/transformations/schema/exupery_interface/types.js +5 -0
  161. package/dist/interface/algorithms/transformations/schema/exupery_interface/unmarshall.d.ts +1 -0
  162. package/dist/interface/algorithms/transformations/schema/exupery_interface/unmarshall.js +5 -0
  163. package/dist/interface/algorithms/transformations/schema/exupery_interface/value_deserializers.d.ts +1 -0
  164. package/dist/interface/algorithms/transformations/schema/exupery_interface/value_deserializers.js +5 -0
  165. package/dist/interface/algorithms/transformations/schema/exupery_interface/value_serializers.d.ts +1 -0
  166. package/dist/interface/algorithms/transformations/schema/exupery_interface/value_serializers.js +5 -0
  167. package/dist/interface/algorithms/transformations/temp/astn_schema.d.ts +1 -0
  168. package/dist/interface/algorithms/transformations/temp/astn_schema.js +5 -0
  169. package/dist/interface/algorithms/transformations/temp/unmarshall_astn_ast.d.ts +1 -0
  170. package/dist/interface/algorithms/transformations/temp/unmarshall_astn_ast.js +5 -0
  171. package/dist/interface/algorithms/transformations/unmarshall_errors/fountain_pen.d.ts +1 -0
  172. package/dist/interface/algorithms/transformations/unmarshall_errors/fountain_pen.js +5 -0
  173. package/dist/interface/algorithms/transformations/unmarshall_result/astn_authoring_target.d.ts +1 -0
  174. package/dist/interface/algorithms/transformations/unmarshall_result/astn_authoring_target.js +5 -0
  175. package/dist/interface/algorithms/transformations/unmarshall_result/unmarshall_errors.d.ts +1 -0
  176. package/dist/interface/algorithms/transformations/unmarshall_result/unmarshall_errors.js +5 -0
  177. package/dist/{generated/interface → interface/generated/pareto}/core/astn_source.d.ts +15 -0
  178. package/dist/{generated/interface → interface/generated/pareto}/core/astn_source.js +1 -1
  179. package/dist/{generated/interface → interface/generated/pareto}/core/astn_target.js +1 -1
  180. package/dist/interface/generated/pareto/core/parse_result.d.ts +25 -0
  181. package/dist/interface/generated/pareto/core/parse_result.js +3 -0
  182. package/dist/{generated/interface → interface/generated/pareto}/core/resolve.js +1 -1
  183. package/dist/{generated/interface → interface/generated/pareto}/core/resolved.js +1 -1
  184. package/dist/interface/generated/pareto/core/token.d.ts +49 -0
  185. package/dist/interface/generated/pareto/core/token.js +3 -0
  186. package/dist/{generated/interface → interface/generated/pareto}/core/unconstrained.js +1 -1
  187. package/dist/{generated/interface → interface/generated/pareto}/core/unresolved.js +1 -1
  188. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/astn_schema}/data_types/resolve.js +1 -1
  189. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/astn_schema}/data_types/source.js +1 -1
  190. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/astn_schema}/data_types/target.js +1 -1
  191. package/dist/{generated/implementation/schemas/unmarshall_result → interface/generated/pareto/schemas/astn_schema}/marshall.js +1 -1
  192. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/astn_schema}/migrate_boilerplate.js +1 -1
  193. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/astn_schema}/unmarshall.js +1 -1
  194. package/dist/interface/generated/pareto/schemas/astn_schema/value_deserializers.js +3 -0
  195. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/astn_schema}/value_serializers.js +1 -1
  196. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/module}/data_types/resolve.js +1 -1
  197. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/module}/data_types/source.js +1 -1
  198. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/module}/data_types/target.js +1 -1
  199. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/module}/marshall.js +1 -1
  200. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/module}/migrate_boilerplate.js +1 -1
  201. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/module}/unmarshall.js +1 -1
  202. package/dist/{generated/interface → interface/generated/pareto}/schemas/module/value_deserializers.js +1 -1
  203. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/module}/value_serializers.js +1 -1
  204. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/data_types/resolve.js +1 -1
  205. package/dist/interface/generated/pareto/schemas/parse_tree/data_types/source.js +3 -0
  206. package/dist/interface/generated/pareto/schemas/parse_tree/data_types/target.js +3 -0
  207. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/parse_tree}/marshall.js +1 -1
  208. package/dist/interface/generated/pareto/schemas/parse_tree/migrate_boilerplate.js +3 -0
  209. package/dist/interface/generated/pareto/schemas/parse_tree/unmarshall.js +3 -0
  210. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/parse_tree}/value_deserializers.js +1 -1
  211. package/dist/interface/generated/pareto/schemas/parse_tree/value_serializers.js +3 -0
  212. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/schema}/data_types/resolve.js +1 -1
  213. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/schema}/data_types/source.js +1 -1
  214. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/schema}/data_types/target.js +1 -1
  215. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/schema}/marshall.js +1 -1
  216. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/schema}/migrate_boilerplate.js +1 -1
  217. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/schema}/unmarshall.js +1 -1
  218. package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/value_deserializers.js +1 -1
  219. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/schema}/value_serializers.js +1 -1
  220. package/dist/{generated/interface → interface/generated/pareto}/schemas/token/data_types/resolve.js +1 -1
  221. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/token}/data_types/source.js +1 -1
  222. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/token}/data_types/target.js +1 -1
  223. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/token}/marshall.js +1 -1
  224. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/token}/migrate_boilerplate.js +1 -1
  225. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/token}/unmarshall.js +1 -1
  226. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/token}/value_deserializers.js +1 -1
  227. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/token}/value_serializers.js +1 -1
  228. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/data_types/resolve.js +1 -1
  229. package/dist/interface/generated/pareto/schemas/unmarshall_errors/data_types/source.js +3 -0
  230. package/dist/interface/generated/pareto/schemas/unmarshall_errors/data_types/target.js +3 -0
  231. package/dist/interface/generated/pareto/schemas/unmarshall_errors/marshall.js +3 -0
  232. package/dist/interface/generated/pareto/schemas/unmarshall_errors/migrate_boilerplate.js +3 -0
  233. package/dist/{generated/implementation/schemas/unmarshall_result → interface/generated/pareto/schemas/unmarshall_errors}/unmarshall.js +1 -1
  234. package/dist/interface/generated/pareto/schemas/unmarshall_errors/value_deserializers.js +3 -0
  235. package/dist/interface/generated/pareto/schemas/unmarshall_errors/value_serializers.js +3 -0
  236. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/data_types/resolve.js +1 -1
  237. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/data_types/source.js +1 -1
  238. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/data_types/target.js +1 -1
  239. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/marshall.js +1 -1
  240. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/migrate_boilerplate.js +1 -1
  241. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/unmarshall.js +1 -1
  242. package/dist/interface/generated/pareto/schemas/unmarshall_result/value_deserializers.js +3 -0
  243. package/dist/interface/generated/pareto/schemas/unmarshall_result/value_serializers.js +3 -0
  244. package/dist/shorthands/module.d.ts +2 -2
  245. package/dist/shorthands/schema.d.ts +1 -1
  246. package/dist/temp/resolvers/module.d.ts +1 -1
  247. package/dist/temp/resolvers/module.js +31 -31
  248. package/dist/temp/resolvers/schema.d.ts +1 -1
  249. package/dist/temp/resolvers/schema.js +66 -66
  250. package/dist/temp/temp_unmashall_result_types.d.ts +3 -3
  251. package/dist/temp/temporary_schemas/accounting_ruwe_data/module.astn.d.ts +1 -1
  252. package/dist/temp/temporary_schemas/accounting_ruwe_data/operations.astn.d.ts +1 -1
  253. package/dist/temp/temporary_schemas/accounting_ruwe_data/schema_tree.astn.d.ts +1 -1
  254. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/alan_light_oldstyle/$.globals.astn.d.ts +1 -1
  255. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/alan_light_oldstyle/$.module.astn.d.ts +1 -1
  256. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/alan_light_oldstyle/$.types.astn.d.ts +1 -1
  257. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/builder_configuration/$.globals.astn.d.ts +1 -1
  258. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/builder_configuration/$.module.astn.d.ts +1 -1
  259. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/builder_configuration/$.types.astn.d.ts +1 -1
  260. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/csv/$.globals.astn.d.ts +1 -1
  261. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/csv/$.module.astn.d.ts +1 -1
  262. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/csv/$.types.astn.d.ts +1 -1
  263. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/html/$.globals.astn.d.ts +1 -1
  264. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/html/$.module.astn.d.ts +1 -1
  265. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/html/$.types.astn.d.ts +1 -1
  266. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/json_schema/$.globals.astn.d.ts +1 -1
  267. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/json_schema/$.module.astn.d.ts +1 -1
  268. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/json_schema/$.types.astn.d.ts +1 -1
  269. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/legacy_schema/$.globals.astn.d.ts +1 -1
  270. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/legacy_schema/$.module.astn.d.ts +1 -1
  271. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/legacy_schema/$.types.astn.d.ts +1 -1
  272. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/railroad_diagram/$.globals.astn.d.ts +1 -1
  273. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/railroad_diagram/$.module.astn.d.ts +1 -1
  274. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/railroad_diagram/$.types.astn.d.ts +1 -1
  275. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/regular_expression/$.globals.astn.d.ts +1 -1
  276. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/regular_expression/$.module.astn.d.ts +1 -1
  277. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/regular_expression/$.types.astn.d.ts +1 -1
  278. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/semantic_versioning/$.globals.astn.d.ts +1 -1
  279. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/semantic_versioning/$.module.astn.d.ts +1 -1
  280. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/semantic_versioning/$.types.astn.d.ts +1 -1
  281. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/xml/parse_result/$.globals.astn.d.ts +1 -1
  282. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/xml/parse_result/$.module.astn.d.ts +1 -1
  283. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/xml/parse_result/$.types.astn.d.ts +1 -1
  284. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/xml/simple/$.globals.astn.d.ts +1 -1
  285. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/xml/simple/$.module.astn.d.ts +1 -1
  286. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/xml/simple/$.types.astn.d.ts +1 -1
  287. package/dist/temp/temporary_schemas/all.d.ts +1 -1
  288. package/dist/temp/temporary_schemas/all.js +19 -17
  289. package/dist/temp/temporary_schemas/antlr/module.astn.d.ts +1 -1
  290. package/dist/temp/temporary_schemas/antlr/operations.astn.d.ts +1 -1
  291. package/dist/temp/temporary_schemas/antlr/schema_tree.astn.d.ts +1 -1
  292. package/dist/temp/temporary_schemas/antlr/schemas/ast/$.globals.astn.d.ts +1 -1
  293. package/dist/temp/temporary_schemas/antlr/schemas/ast/$.module.astn.d.ts +1 -1
  294. package/dist/temp/temporary_schemas/antlr/schemas/ast/$.types.astn.d.ts +1 -1
  295. package/dist/temp/temporary_schemas/antlr/schemas/atn/$.globals.astn.d.ts +1 -1
  296. package/dist/temp/temporary_schemas/antlr/schemas/atn/$.module.astn.d.ts +1 -1
  297. package/dist/temp/temporary_schemas/antlr/schemas/atn/$.types.astn.d.ts +1 -1
  298. package/dist/temp/temporary_schemas/antlr/schemas/dfa/$.globals.astn.d.ts +1 -1
  299. package/dist/temp/temporary_schemas/antlr/schemas/dfa/$.module.astn.d.ts +1 -1
  300. package/dist/temp/temporary_schemas/antlr/schemas/dfa/$.types.astn.d.ts +1 -1
  301. package/dist/temp/temporary_schemas/antlr/schemas/lookahead/$.globals.astn.d.ts +1 -1
  302. package/dist/temp/temporary_schemas/antlr/schemas/lookahead/$.module.astn.d.ts +1 -1
  303. package/dist/temp/temporary_schemas/antlr/schemas/lookahead/$.types.astn.d.ts +1 -1
  304. package/dist/temp/temporary_schemas/astn/module.astn.d.ts +1 -1
  305. package/dist/temp/temporary_schemas/astn/operations.astn.d.ts +1 -1
  306. package/dist/temp/temporary_schemas/astn/schema_tree.astn.d.ts +1 -1
  307. package/dist/temp/temporary_schemas/astn/schema_tree.astn.js +5 -9
  308. package/dist/temp/temporary_schemas/astn/schemas/astn_schema/$.globals.astn.d.ts +1 -1
  309. package/dist/temp/temporary_schemas/astn/schemas/astn_schema/$.module.astn.d.ts +1 -1
  310. package/dist/temp/temporary_schemas/astn/schemas/astn_schema/$.resolvers.astn.d.ts +1 -1
  311. package/dist/temp/temporary_schemas/astn/schemas/astn_schema/$.signatures.astn.d.ts +1 -1
  312. package/dist/temp/temporary_schemas/astn/schemas/astn_schema/$.types.astn.d.ts +1 -1
  313. package/dist/temp/temporary_schemas/astn/schemas/authoring_parse_result/$.globals.astn.d.ts +1 -1
  314. package/dist/temp/temporary_schemas/astn/schemas/authoring_parse_result/$.module.astn.d.ts +1 -1
  315. package/dist/temp/temporary_schemas/astn/schemas/authoring_parse_result/$.types.astn.d.ts +1 -1
  316. package/dist/temp/temporary_schemas/astn/schemas/authoring_parse_tree/$.globals.astn.d.ts +1 -1
  317. package/dist/temp/temporary_schemas/astn/schemas/authoring_parse_tree/$.module.astn.d.ts +1 -1
  318. package/dist/temp/temporary_schemas/astn/schemas/authoring_parse_tree/$.types.astn.d.ts +1 -1
  319. package/dist/temp/temporary_schemas/astn/schemas/authoring_target/$.globals.astn.d.ts +1 -1
  320. package/dist/temp/temporary_schemas/astn/schemas/authoring_target/$.module.astn.d.ts +1 -1
  321. package/dist/temp/temporary_schemas/astn/schemas/authoring_target/$.types.astn.d.ts +1 -1
  322. package/dist/temp/temporary_schemas/astn/schemas/ide/$.globals.astn.d.ts +1 -1
  323. package/dist/temp/temporary_schemas/astn/schemas/ide/$.module.astn.d.ts +1 -1
  324. package/dist/temp/temporary_schemas/astn/schemas/ide/$.types.astn.d.ts +1 -1
  325. package/dist/temp/temporary_schemas/astn/schemas/sealed_target/$.globals.astn.d.ts +1 -1
  326. package/dist/temp/temporary_schemas/astn/schemas/sealed_target/$.module.astn.d.ts +1 -1
  327. package/dist/temp/temporary_schemas/astn/schemas/sealed_target/$.types.astn.d.ts +1 -1
  328. package/dist/temp/temporary_schemas/astn/schemas/token/$.globals.astn.d.ts +1 -1
  329. package/dist/temp/temporary_schemas/astn/schemas/token/$.module.astn.d.ts +1 -1
  330. package/dist/temp/temporary_schemas/astn/schemas/token/$.types.astn.d.ts +1 -1
  331. package/dist/temp/temporary_schemas/astn-to-xml/module.astn.d.ts +1 -1
  332. package/dist/temp/temporary_schemas/astn-to-xml/operations.astn.d.ts +1 -1
  333. package/dist/temp/temporary_schemas/astn-to-xml/schema_tree.astn.d.ts +1 -1
  334. package/dist/temp/temporary_schemas/astn-to-xml/schemas/xml/$.globals.astn.d.ts +1 -1
  335. package/dist/temp/temporary_schemas/astn-to-xml/schemas/xml/$.module.astn.d.ts +1 -1
  336. package/dist/temp/temporary_schemas/astn-to-xml/schemas/xml/$.types.astn.d.ts +1 -1
  337. package/dist/temp/temporary_schemas/exupery/module.astn.d.ts +1 -1
  338. package/dist/temp/temporary_schemas/exupery/operations.astn.d.ts +1 -1
  339. package/dist/temp/temporary_schemas/exupery/schema_tree.astn.d.ts +1 -1
  340. package/dist/temp/temporary_schemas/exupery/schemas/implementation/$.globals.astn.d.ts +1 -1
  341. package/dist/temp/temporary_schemas/exupery/schemas/implementation/$.module.astn.d.ts +1 -1
  342. package/dist/temp/temporary_schemas/exupery/schemas/implementation/$.resolvers.astn.d.ts +1 -1
  343. package/dist/temp/temporary_schemas/exupery/schemas/implementation/$.signatures.astn.d.ts +1 -1
  344. package/dist/temp/temporary_schemas/exupery/schemas/implementation/$.types.astn.d.ts +1 -1
  345. package/dist/temp/temporary_schemas/exupery/schemas/interface/$.globals.astn.d.ts +1 -1
  346. package/dist/temp/temporary_schemas/exupery/schemas/interface/$.module.astn.d.ts +1 -1
  347. package/dist/temp/temporary_schemas/exupery/schemas/interface/$.resolvers.astn.d.ts +1 -1
  348. package/dist/temp/temporary_schemas/exupery/schemas/interface/$.signatures.astn.d.ts +1 -1
  349. package/dist/temp/temporary_schemas/exupery/schemas/interface/$.types.astn.d.ts +1 -1
  350. package/dist/temp/temporary_schemas/exupery/schemas/typescript_light/$.globals.astn.d.ts +1 -1
  351. package/dist/temp/temporary_schemas/exupery/schemas/typescript_light/$.module.astn.d.ts +1 -1
  352. package/dist/temp/temporary_schemas/exupery/schemas/typescript_light/$.types.astn.d.ts +1 -1
  353. package/dist/temp/temporary_schemas/exupery/schemas/typescript_light/$.types.astn.js +8 -8
  354. package/dist/temp/temporary_schemas/exupery-resources/module.astn.d.ts +1 -1
  355. package/dist/temp/temporary_schemas/exupery-resources/operations.astn.d.ts +1 -1
  356. package/dist/temp/temporary_schemas/exupery-resources/schema_tree.astn.d.ts +1 -1
  357. package/dist/temp/temporary_schemas/exupery-resources/schema_tree.astn.js +15 -13
  358. package/dist/temp/temporary_schemas/exupery-resources/schemas/copy/$.globals.astn.d.ts +1 -1
  359. package/dist/temp/temporary_schemas/exupery-resources/schemas/copy/$.module.astn.d.ts +1 -1
  360. package/dist/temp/temporary_schemas/exupery-resources/schemas/copy/$.types.astn.d.ts +1 -1
  361. package/dist/temp/temporary_schemas/exupery-resources/schemas/copy/$.types.astn.js +2 -2
  362. package/dist/temp/temporary_schemas/{pareto-lionweb/schemas/m3_normalized → exupery-resources/schemas/execute_procedure_executable}/$.globals.astn.d.ts +1 -1
  363. package/dist/temp/temporary_schemas/{astn/schemas/sealed_parse_result → exupery-resources/schemas/execute_procedure_executable}/$.globals.astn.js +1 -1
  364. package/dist/temp/temporary_schemas/{astn/schemas/sealed_parse_result → exupery-resources/schemas/execute_procedure_executable}/$.module.astn.d.ts +1 -1
  365. package/dist/temp/temporary_schemas/exupery-resources/schemas/{run_query_executable_and_catch → execute_procedure_executable}/$.module.astn.js +1 -1
  366. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_procedure_executable/$.types.astn.d.ts +3 -0
  367. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_procedure_executable/$.types.astn.js +20 -0
  368. package/dist/temp/temporary_schemas/exupery-resources/schemas/{run_query_executable → execute_query_executable}/$.globals.astn.d.ts +1 -1
  369. package/dist/temp/temporary_schemas/{astn/schemas/sealed_ast → exupery-resources/schemas/execute_query_executable}/$.globals.astn.js +1 -1
  370. package/dist/temp/temporary_schemas/{astn/schemas/sealed_ast → exupery-resources/schemas/execute_query_executable}/$.module.astn.d.ts +1 -1
  371. package/dist/temp/temporary_schemas/{astn/schemas/sealed_ast → exupery-resources/schemas/execute_query_executable}/$.module.astn.js +2 -4
  372. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_query_executable/$.types.astn.d.ts +3 -0
  373. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_query_executable/$.types.astn.js +23 -0
  374. package/dist/temp/temporary_schemas/exupery-resources/schemas/{run_query_executable_and_catch → execute_query_executable_and_catch}/$.globals.astn.d.ts +1 -1
  375. package/dist/temp/temporary_schemas/exupery-resources/schemas/{run_query_executable_and_catch → execute_query_executable_and_catch}/$.globals.astn.js +1 -1
  376. package/dist/temp/temporary_schemas/exupery-resources/schemas/{run_query_executable → execute_query_executable_and_catch}/$.module.astn.d.ts +1 -1
  377. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_query_executable_and_catch/$.module.astn.js +8 -0
  378. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_query_executable_and_catch/$.types.astn.d.ts +3 -0
  379. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_query_executable_and_catch/$.types.astn.js +26 -0
  380. package/dist/temp/temporary_schemas/exupery-resources/schemas/get_instream_data/$.globals.astn.d.ts +1 -1
  381. package/dist/temp/temporary_schemas/exupery-resources/schemas/get_instream_data/$.module.astn.d.ts +1 -1
  382. package/dist/temp/temporary_schemas/exupery-resources/schemas/get_instream_data/$.types.astn.d.ts +1 -1
  383. package/dist/temp/temporary_schemas/exupery-resources/schemas/log/$.globals.astn.d.ts +1 -1
  384. package/dist/temp/temporary_schemas/exupery-resources/schemas/log/$.module.astn.d.ts +1 -1
  385. package/dist/temp/temporary_schemas/exupery-resources/schemas/log/$.types.astn.d.ts +1 -1
  386. package/dist/temp/temporary_schemas/exupery-resources/schemas/log_error/$.globals.astn.d.ts +1 -1
  387. package/dist/temp/temporary_schemas/exupery-resources/schemas/log_error/$.module.astn.d.ts +1 -1
  388. package/dist/temp/temporary_schemas/exupery-resources/schemas/log_error/$.types.astn.d.ts +1 -1
  389. package/dist/temp/temporary_schemas/exupery-resources/schemas/make_directory/$.globals.astn.d.ts +1 -1
  390. package/dist/temp/temporary_schemas/exupery-resources/schemas/make_directory/$.module.astn.d.ts +1 -1
  391. package/dist/temp/temporary_schemas/exupery-resources/schemas/make_directory/$.types.astn.d.ts +1 -1
  392. package/dist/temp/temporary_schemas/exupery-resources/schemas/make_directory/$.types.astn.js +2 -2
  393. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_directory/$.globals.astn.d.ts +1 -1
  394. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_directory/$.module.astn.d.ts +1 -1
  395. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_directory/$.types.astn.d.ts +1 -1
  396. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_directory/$.types.astn.js +2 -2
  397. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_file/$.globals.astn.d.ts +1 -1
  398. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_file/$.module.astn.d.ts +1 -1
  399. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_file/$.types.astn.d.ts +1 -1
  400. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_file/$.types.astn.js +2 -2
  401. package/dist/temp/temporary_schemas/exupery-resources/schemas/remove/$.globals.astn.d.ts +1 -1
  402. package/dist/temp/temporary_schemas/exupery-resources/schemas/remove/$.module.astn.d.ts +1 -1
  403. package/dist/temp/temporary_schemas/exupery-resources/schemas/remove/$.types.astn.d.ts +1 -1
  404. package/dist/temp/temporary_schemas/exupery-resources/schemas/remove/$.types.astn.js +2 -2
  405. package/dist/temp/temporary_schemas/exupery-resources/schemas/stat/$.globals.astn.d.ts +1 -1
  406. package/dist/temp/temporary_schemas/exupery-resources/schemas/stat/$.module.astn.d.ts +1 -1
  407. package/dist/temp/temporary_schemas/exupery-resources/schemas/stat/$.types.astn.d.ts +1 -1
  408. package/dist/temp/temporary_schemas/exupery-resources/schemas/stat/$.types.astn.js +2 -2
  409. package/dist/temp/temporary_schemas/exupery-resources/schemas/write_file/$.globals.astn.d.ts +1 -1
  410. package/dist/temp/temporary_schemas/exupery-resources/schemas/write_file/$.module.astn.d.ts +1 -1
  411. package/dist/temp/temporary_schemas/exupery-resources/schemas/write_file/$.types.astn.d.ts +1 -1
  412. package/dist/temp/temporary_schemas/exupery-resources/schemas/write_file/$.types.astn.js +2 -2
  413. package/dist/temp/temporary_schemas/git/module.astn.d.ts +1 -1
  414. package/dist/temp/temporary_schemas/git/operations.astn.d.ts +1 -1
  415. package/dist/temp/temporary_schemas/git/schema_tree.astn.d.ts +1 -1
  416. package/dist/temp/temporary_schemas/git/schemas/git/$.globals.astn.d.ts +1 -1
  417. package/dist/temp/temporary_schemas/git/schemas/git/$.module.astn.d.ts +1 -1
  418. package/dist/temp/temporary_schemas/git/schemas/git/$.types.astn.d.ts +1 -1
  419. package/dist/temp/temporary_schemas/json-to-astn/module.astn.d.ts +1 -1
  420. package/dist/temp/temporary_schemas/json-to-astn/operations.astn.d.ts +1 -1
  421. package/dist/temp/temporary_schemas/json-to-astn/schema_tree.astn.d.ts +1 -1
  422. package/dist/temp/temporary_schemas/json-to-astn/schemas/legacy_json_schema/$.globals.astn.d.ts +1 -1
  423. package/dist/temp/temporary_schemas/json-to-astn/schemas/legacy_json_schema/$.module.astn.d.ts +1 -1
  424. package/dist/temp/temporary_schemas/json-to-astn/schemas/legacy_json_schema/$.types.astn.d.ts +1 -1
  425. package/dist/temp/temporary_schemas/pareto/module.astn.d.ts +1 -1
  426. package/dist/temp/temporary_schemas/pareto/operations.astn.d.ts +1 -1
  427. package/dist/temp/temporary_schemas/pareto/schema_tree.astn.d.ts +1 -1
  428. package/dist/temp/temporary_schemas/pareto/schemas/module/$.globals.astn.d.ts +1 -1
  429. package/dist/temp/temporary_schemas/pareto/schemas/module/$.module.astn.d.ts +1 -1
  430. package/dist/temp/temporary_schemas/pareto/schemas/module/$.resolvers.astn.d.ts +1 -1
  431. package/dist/temp/temporary_schemas/pareto/schemas/module/$.signatures.astn.d.ts +1 -1
  432. package/dist/temp/temporary_schemas/pareto/schemas/module/$.types.astn.d.ts +1 -1
  433. package/dist/temp/temporary_schemas/pareto/schemas/schema/$.globals.astn.d.ts +1 -1
  434. package/dist/temp/temporary_schemas/pareto/schemas/schema/$.module.astn.d.ts +1 -1
  435. package/dist/temp/temporary_schemas/pareto/schemas/schema/$.resolvers.astn.d.ts +1 -1
  436. package/dist/temp/temporary_schemas/pareto/schemas/schema/$.signatures.astn.d.ts +1 -1
  437. package/dist/temp/temporary_schemas/pareto/schemas/schema/$.types.astn.d.ts +1 -1
  438. package/dist/temp/temporary_schemas/pareto/schemas/unmarshall_errors/$.globals.astn.d.ts +1 -1
  439. package/dist/temp/temporary_schemas/pareto/schemas/unmarshall_errors/$.module.astn.d.ts +1 -1
  440. package/dist/temp/temporary_schemas/pareto/schemas/unmarshall_errors/$.types.astn.d.ts +1 -1
  441. package/dist/temp/temporary_schemas/pareto/schemas/unmarshall_result/$.globals.astn.d.ts +1 -1
  442. package/dist/temp/temporary_schemas/pareto/schemas/unmarshall_result/$.module.astn.d.ts +1 -1
  443. package/dist/temp/temporary_schemas/pareto/schemas/unmarshall_result/$.types.astn.d.ts +1 -1
  444. package/dist/temp/temporary_schemas/pareto-boekhouding/module.astn.d.ts +1 -1
  445. package/dist/temp/temporary_schemas/pareto-boekhouding/operations.astn.d.ts +1 -1
  446. package/dist/temp/temporary_schemas/pareto-boekhouding/schema_tree.astn.d.ts +1 -1
  447. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding/$.globals.astn.d.ts +1 -1
  448. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding/$.module.astn.d.ts +1 -1
  449. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding/$.resolvers.astn.d.ts +1 -1
  450. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding/$.signatures.astn.d.ts +1 -1
  451. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding/$.types.astn.d.ts +1 -1
  452. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding_oude_model/$.globals.astn.d.ts +1 -1
  453. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding_oude_model/$.module.astn.d.ts +1 -1
  454. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding_oude_model/$.types.astn.d.ts +1 -1
  455. package/dist/temp/temporary_schemas/pareto-fountain-pen/module.astn.d.ts +1 -1
  456. package/dist/temp/temporary_schemas/pareto-fountain-pen/operations.astn.d.ts +1 -1
  457. package/dist/temp/temporary_schemas/pareto-fountain-pen/schema_tree.astn.d.ts +1 -1
  458. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/block/$.globals.astn.d.ts +1 -1
  459. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/block/$.module.astn.d.ts +1 -1
  460. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/block/$.types.astn.d.ts +1 -1
  461. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/block/$.types.astn.js +7 -7
  462. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/lines/$.globals.astn.d.ts +1 -1
  463. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/lines/$.module.astn.d.ts +1 -1
  464. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/lines/$.types.astn.d.ts +1 -1
  465. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/semi_lines/$.globals.astn.d.ts +1 -1
  466. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/semi_lines/$.module.astn.d.ts +1 -1
  467. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/semi_lines/$.types.astn.d.ts +1 -1
  468. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/text/$.globals.astn.d.ts +1 -1
  469. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/text/$.module.astn.d.ts +1 -1
  470. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/text/$.types.astn.d.ts +1 -1
  471. package/dist/temp/temporary_schemas/pareto-json/module.astn.d.ts +1 -1
  472. package/dist/temp/temporary_schemas/pareto-json/operations.astn.d.ts +1 -1
  473. package/dist/temp/temporary_schemas/pareto-json/schema_tree.astn.d.ts +1 -1
  474. package/dist/temp/temporary_schemas/pareto-json/schemas/json/$.globals.astn.d.ts +1 -1
  475. package/dist/temp/temporary_schemas/pareto-json/schemas/json/$.module.astn.d.ts +1 -1
  476. package/dist/temp/temporary_schemas/pareto-json/schemas/json/$.types.astn.d.ts +1 -1
  477. package/dist/temp/temporary_schemas/pareto-lionweb/module.astn.d.ts +1 -1
  478. package/dist/temp/temporary_schemas/pareto-lionweb/operations.astn.d.ts +1 -1
  479. package/dist/temp/temporary_schemas/pareto-lionweb/schema_tree.astn.d.ts +1 -1
  480. package/dist/temp/temporary_schemas/pareto-lionweb/schema_tree.astn.js +5 -3
  481. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/lioncore/$.globals.astn.d.ts +1 -1
  482. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/lioncore/$.module.astn.d.ts +1 -1
  483. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/lioncore/$.types.astn.d.ts +1 -1
  484. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/lioncore/$.types.astn.js +13 -9
  485. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_chunk/$.globals.astn.d.ts +3 -0
  486. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/{m3_normalized → serialization_chunk}/$.globals.astn.js +1 -1
  487. package/dist/temp/temporary_schemas/{exupery-resources/schemas/run_query_executable_and_catch → pareto-lionweb/schemas/serialization_chunk}/$.module.astn.d.ts +1 -1
  488. package/dist/temp/temporary_schemas/{exupery-resources/schemas/run_query_executable → pareto-lionweb/schemas/serialization_chunk}/$.module.astn.js +1 -1
  489. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_chunk/$.types.astn.d.ts +3 -0
  490. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_chunk/$.types.astn.js +41 -0
  491. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_tree/$.globals.astn.d.ts +3 -0
  492. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_tree/$.globals.astn.js +10 -0
  493. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_tree/$.module.astn.d.ts +3 -0
  494. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_tree/$.module.astn.js +8 -0
  495. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_tree/$.types.astn.d.ts +3 -0
  496. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_tree/$.types.astn.js +27 -0
  497. package/dist/temp/temporary_schemas/pareto-static-html/module.astn.d.ts +3 -0
  498. package/dist/temp/temporary_schemas/pareto-static-html/module.astn.js +8 -0
  499. package/dist/temp/temporary_schemas/pareto-static-html/operations.astn.d.ts +3 -0
  500. package/dist/temp/temporary_schemas/pareto-static-html/operations.astn.js +6 -0
  501. package/dist/temp/temporary_schemas/pareto-static-html/schema_tree.astn.d.ts +3 -0
  502. package/dist/temp/temporary_schemas/pareto-static-html/schema_tree.astn.js +9 -0
  503. package/dist/temp/temporary_schemas/pareto-static-html/schemas/html-print/$.globals.astn.d.ts +3 -0
  504. package/dist/temp/temporary_schemas/pareto-static-html/schemas/html-print/$.globals.astn.js +10 -0
  505. package/dist/temp/temporary_schemas/pareto-static-html/schemas/html-print/$.module.astn.d.ts +3 -0
  506. package/dist/temp/temporary_schemas/{pareto-lionweb/schemas/m3_normalized → pareto-static-html/schemas/html-print}/$.module.astn.js +1 -1
  507. package/dist/temp/temporary_schemas/pareto-static-html/schemas/html-print/$.types.astn.d.ts +3 -0
  508. package/dist/temp/temporary_schemas/pareto-static-html/schemas/html-print/$.types.astn.js +81 -0
  509. package/dist/temp/temporary_schemas/pareto-targets/module.astn.d.ts +1 -1
  510. package/dist/temp/temporary_schemas/pareto-targets/operations.astn.d.ts +1 -1
  511. package/dist/temp/temporary_schemas/pareto-targets/schema_tree.astn.d.ts +1 -1
  512. package/dist/temp/temporary_schemas/pareto-targets/schemas/alan_light/$.globals.astn.d.ts +1 -1
  513. package/dist/temp/temporary_schemas/pareto-targets/schemas/alan_light/$.module.astn.d.ts +1 -1
  514. package/dist/temp/temporary_schemas/pareto-targets/schemas/alan_light/$.types.astn.d.ts +1 -1
  515. package/dist/temp/temporary_schemas/pareto-targets/schemas/graphviz/high_level/$.globals.astn.d.ts +1 -1
  516. package/dist/temp/temporary_schemas/pareto-targets/schemas/graphviz/high_level/$.module.astn.d.ts +1 -1
  517. package/dist/temp/temporary_schemas/pareto-targets/schemas/graphviz/high_level/$.types.astn.d.ts +1 -1
  518. package/dist/temp/temporary_schemas/pareto-targets/schemas/graphviz/low_level/$.globals.astn.d.ts +1 -1
  519. package/dist/temp/temporary_schemas/pareto-targets/schemas/graphviz/low_level/$.module.astn.d.ts +1 -1
  520. package/dist/temp/temporary_schemas/pareto-targets/schemas/graphviz/low_level/$.types.astn.d.ts +1 -1
  521. package/dist/temp/temporary_schemas/pareto-targets/schemas/lionweb/$.globals.astn.d.ts +1 -1
  522. package/dist/temp/temporary_schemas/pareto-targets/schemas/lionweb/$.module.astn.d.ts +1 -1
  523. package/dist/temp/temporary_schemas/pareto-targets/schemas/lionweb/$.types.astn.d.ts +1 -1
  524. package/dist/temp/temporary_schemas/pareto-targets/schemas/pareto_documentation/$.globals.astn.d.ts +1 -1
  525. package/dist/temp/temporary_schemas/pareto-targets/schemas/pareto_documentation/$.module.astn.d.ts +1 -1
  526. package/dist/temp/temporary_schemas/pareto-targets/schemas/pareto_documentation/$.types.astn.d.ts +1 -1
  527. package/dist/temp/temporary_schemas/pareto-vscode-backend/module.astn.d.ts +1 -1
  528. package/dist/temp/temporary_schemas/pareto-vscode-backend/operations.astn.d.ts +1 -1
  529. package/dist/temp/temporary_schemas/pareto-vscode-backend/schema_tree.astn.d.ts +1 -1
  530. package/dist/temp/temporary_schemas/pareto-vscode-backend/schemas/client/$.globals.astn.d.ts +1 -1
  531. package/dist/temp/temporary_schemas/pareto-vscode-backend/schemas/client/$.module.astn.d.ts +1 -1
  532. package/dist/temp/temporary_schemas/pareto-vscode-backend/schemas/client/$.types.astn.d.ts +1 -1
  533. package/dist/temp/temporary_schemas/pareto-vscode-backend/schemas/server/$.globals.astn.d.ts +1 -1
  534. package/dist/temp/temporary_schemas/pareto-vscode-backend/schemas/server/$.module.astn.d.ts +1 -1
  535. package/dist/temp/temporary_schemas/pareto-vscode-backend/schemas/server/$.types.astn.d.ts +1 -1
  536. package/package.json +9 -9
  537. package/dist/generated/implementation/generic/resolve.js +0 -276
  538. package/dist/generated/implementation/generic/unmarshall.d.ts +0 -42
  539. package/dist/generated/implementation/generic/unmarshall.js +0 -238
  540. package/dist/generated/implementation/schemas/astn_schema/marshall.js +0 -232
  541. package/dist/generated/implementation/schemas/astn_schema/resolve.js +0 -446
  542. package/dist/generated/implementation/schemas/astn_schema/unmarshall.js +0 -206
  543. package/dist/generated/implementation/schemas/schema/resolve.js +0 -2025
  544. package/dist/generated/implementation/schemas/token/marshall.js +0 -230
  545. package/dist/generated/implementation/schemas/token/unmarshall.js +0 -218
  546. package/dist/generated/interface/schemas/token/data_types/source.js +0 -3
  547. package/dist/generated/interface/schemas/token/data_types/target.js +0 -3
  548. package/dist/generated/interface/schemas/token/marshall.js +0 -3
  549. package/dist/generated/interface/schemas/token/migrate_boilerplate.js +0 -3
  550. package/dist/generated/interface/schemas/token/unmarshall.js +0 -3
  551. package/dist/generated/interface/schemas/token/value_deserializers.js +0 -3
  552. package/dist/generated/interface/schemas/token/value_serializers.js +0 -3
  553. package/dist/generated/interface/schemas/unmarshall_errors/data_types/source.js +0 -3
  554. package/dist/generated/interface/schemas/unmarshall_errors/data_types/target.js +0 -3
  555. package/dist/generated/interface/schemas/unmarshall_errors/marshall.js +0 -3
  556. package/dist/generated/interface/schemas/unmarshall_errors/migrate_boilerplate.js +0 -3
  557. package/dist/generated/interface/schemas/unmarshall_errors/unmarshall.js +0 -3
  558. package/dist/generated/interface/schemas/unmarshall_errors/value_deserializers.js +0 -3
  559. package/dist/generated/interface/schemas/unmarshall_errors/value_serializers.js +0 -3
  560. package/dist/generated/interface/schemas/unmarshall_result/data_types/unconstrained.d.ts +0 -1
  561. package/dist/generated/interface/schemas/unmarshall_result/data_types/unconstrained.js +0 -7
  562. package/dist/generated/interface/schemas/unmarshall_result/value_deserializers.js +0 -3
  563. package/dist/generated/interface/schemas/unmarshall_result/value_serializers.js +0 -3
  564. package/dist/operations/impure/tbd/path.js +0 -16
  565. package/dist/procedures/unguaranteed/compile.js +0 -140
  566. package/dist/procedures/unguaranteed/serialize_schemas.js +0 -69
  567. package/dist/queries/unguaranteed/load_pareto_document.js +0 -79
  568. package/dist/temp/temporary_schemas/astn/schemas/sealed_ast/$.globals.astn.d.ts +0 -3
  569. package/dist/temp/temporary_schemas/astn/schemas/sealed_ast/$.types.astn.d.ts +0 -3
  570. package/dist/temp/temporary_schemas/astn/schemas/sealed_ast/$.types.astn.js +0 -74
  571. package/dist/temp/temporary_schemas/astn/schemas/sealed_parse_result/$.globals.astn.d.ts +0 -3
  572. package/dist/temp/temporary_schemas/astn/schemas/sealed_parse_result/$.module.astn.js +0 -11
  573. package/dist/temp/temporary_schemas/astn/schemas/sealed_parse_result/$.types.astn.d.ts +0 -3
  574. package/dist/temp/temporary_schemas/astn/schemas/sealed_parse_result/$.types.astn.js +0 -50
  575. package/dist/temp/temporary_schemas/exupery-resources/schemas/run_query_executable/$.globals.astn.js +0 -6
  576. package/dist/temp/temporary_schemas/exupery-resources/schemas/run_query_executable/$.types.astn.d.ts +0 -3
  577. package/dist/temp/temporary_schemas/exupery-resources/schemas/run_query_executable/$.types.astn.js +0 -23
  578. package/dist/temp/temporary_schemas/exupery-resources/schemas/run_query_executable_and_catch/$.types.astn.d.ts +0 -3
  579. package/dist/temp/temporary_schemas/exupery-resources/schemas/run_query_executable_and_catch/$.types.astn.js +0 -26
  580. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/m3_normalized/$.module.astn.d.ts +0 -3
  581. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/m3_normalized/$.types.astn.d.ts +0 -3
  582. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/m3_normalized/$.types.astn.js +0 -38
  583. package/dist/transformations/module/exupery_implementation.d.ts +0 -4
  584. package/dist/transformations/module/exupery_interface.d.ts +0 -5
  585. package/dist/transformations/module/temp_typescript.d.ts +0 -3
  586. package/dist/transformations/module/temp_typescript.js +0 -56
  587. package/dist/transformations/schema/exupery_implementation/main.js +0 -81
  588. package/dist/transformations/schema/exupery_implementation/marshall.js +0 -142
  589. package/dist/transformations/schema/exupery_implementation/migrate_boilerplate.d.ts +0 -14
  590. package/dist/transformations/schema/exupery_implementation/migrate_boilerplate.js +0 -105
  591. package/dist/transformations/schema/exupery_implementation/resolve.js +0 -300
  592. package/dist/transformations/schema/exupery_implementation/unmarshall.js +0 -158
  593. package/dist/transformations/schema/exupery_interface/dummy_resolve.d.ts +0 -3
  594. package/dist/transformations/schema/exupery_interface/dummy_resolve.js +0 -13
  595. package/dist/transformations/schema/exupery_interface/main.d.ts +0 -6
  596. package/dist/transformations/schema/exupery_interface/main.js +0 -108
  597. package/dist/transformations/schema/exupery_interface/marshall.d.ts +0 -6
  598. package/dist/transformations/schema/exupery_interface/migrate_boilerplate.d.ts +0 -7
  599. package/dist/transformations/schema/exupery_interface/resolve.d.ts +0 -12
  600. package/dist/transformations/schema/exupery_interface/resolve.js +0 -110
  601. package/dist/transformations/schema/exupery_interface/types.d.ts +0 -12
  602. package/dist/transformations/schema/exupery_interface/types.js +0 -192
  603. package/dist/transformations/schema/exupery_interface/value_deserializers.d.ts +0 -6
  604. package/dist/transformations/schema/exupery_interface/value_serializers.d.ts +0 -6
  605. package/dist/transformations/temp/astn_schema.d.ts +0 -10
  606. package/dist/transformations/temp/astn_schema.js +0 -140
  607. package/dist/transformations/unmarshall_errors/fountain_pen.js +0 -86
  608. package/dist/transformations/unmarshall_result/astn_authoring_target.d.ts +0 -3
  609. package/dist/transformations/unmarshall_result/unmarshall_errors.d.ts +0 -8
  610. package/dist/transformations/unmarshall_result/unmarshall_errors.js +0 -344
  611. /package/dist/bin/{compile.d.ts → compile_temp_schemas.d.ts} +0 -0
  612. /package/dist/{procedures/unguaranteed/compile.d.ts → implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.d.ts} +0 -0
  613. /package/dist/{procedures → implementation/algorithms/procedures}/unguaranteed/seal.d.ts +0 -0
  614. /package/dist/{procedures → implementation/algorithms/procedures}/unguaranteed/serialize_schemas.d.ts +0 -0
  615. /package/dist/{procedures → implementation/algorithms/procedures}/unguaranteed/validate.d.ts +0 -0
  616. /package/dist/{generated/implementation → implementation/generated/pareto}/schemas/unmarshall_result/marshall.d.ts +0 -0
  617. /package/dist/{generated/implementation → implementation/generated/pareto}/schemas/unmarshall_result/unmarshall.d.ts +0 -0
  618. /package/dist/{generated/interface → interface/generated/pareto}/core/astn_target.d.ts +0 -0
  619. /package/dist/{generated/interface → interface/generated/pareto}/core/resolve.d.ts +0 -0
  620. /package/dist/{generated/interface → interface/generated/pareto}/core/resolved.d.ts +0 -0
  621. /package/dist/{generated/interface → interface/generated/pareto}/core/unconstrained.d.ts +0 -0
  622. /package/dist/{generated/interface → interface/generated/pareto}/core/unresolved.d.ts +0 -0
  623. /package/dist/{generated/interface → interface/generated/pareto}/schemas/astn_schema/data_types/resolve.d.ts +0 -0
  624. /package/dist/{generated/interface → interface/generated/pareto}/schemas/astn_schema/data_types/source.d.ts +0 -0
  625. /package/dist/{generated/interface → interface/generated/pareto}/schemas/astn_schema/data_types/target.d.ts +0 -0
  626. /package/dist/{generated/interface → interface/generated/pareto}/schemas/astn_schema/marshall.d.ts +0 -0
  627. /package/dist/{generated/interface → interface/generated/pareto}/schemas/astn_schema/migrate_boilerplate.d.ts +0 -0
  628. /package/dist/{generated/interface → interface/generated/pareto}/schemas/astn_schema/unmarshall.d.ts +0 -0
  629. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/astn_schema}/value_deserializers.d.ts +0 -0
  630. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/astn_schema}/value_serializers.d.ts +0 -0
  631. /package/dist/{generated/interface → interface/generated/pareto}/schemas/module/data_types/resolve.d.ts +0 -0
  632. /package/dist/{generated/interface → interface/generated/pareto}/schemas/module/data_types/source.d.ts +0 -0
  633. /package/dist/{generated/interface → interface/generated/pareto}/schemas/module/data_types/target.d.ts +0 -0
  634. /package/dist/{generated/interface → interface/generated/pareto}/schemas/module/marshall.d.ts +0 -0
  635. /package/dist/{generated/interface → interface/generated/pareto}/schemas/module/migrate_boilerplate.d.ts +0 -0
  636. /package/dist/{generated/interface → interface/generated/pareto}/schemas/module/unmarshall.d.ts +0 -0
  637. /package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/module}/value_deserializers.d.ts +0 -0
  638. /package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/module}/value_serializers.d.ts +0 -0
  639. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/data_types/resolve.d.ts +0 -0
  640. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/data_types/source.d.ts +0 -0
  641. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/data_types/target.d.ts +0 -0
  642. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/marshall.d.ts +0 -0
  643. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/migrate_boilerplate.d.ts +0 -0
  644. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/unmarshall.d.ts +0 -0
  645. /package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/parse_tree}/value_deserializers.d.ts +0 -0
  646. /package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/parse_tree}/value_serializers.d.ts +0 -0
  647. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/data_types/resolve.d.ts +0 -0
  648. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/data_types/source.d.ts +0 -0
  649. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/data_types/target.d.ts +0 -0
  650. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/marshall.d.ts +0 -0
  651. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/migrate_boilerplate.d.ts +0 -0
  652. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/unmarshall.d.ts +0 -0
  653. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/value_deserializers.d.ts +0 -0
  654. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/value_serializers.d.ts +0 -0
  655. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/data_types/resolve.d.ts +0 -0
  656. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/data_types/source.d.ts +0 -0
  657. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/data_types/target.d.ts +0 -0
  658. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/marshall.d.ts +0 -0
  659. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/migrate_boilerplate.d.ts +0 -0
  660. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/unmarshall.d.ts +0 -0
  661. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/value_deserializers.d.ts +0 -0
  662. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/value_serializers.d.ts +0 -0
  663. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/data_types/resolve.d.ts +0 -0
  664. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/data_types/source.d.ts +0 -0
  665. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/data_types/target.d.ts +0 -0
  666. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/marshall.d.ts +0 -0
  667. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/migrate_boilerplate.d.ts +0 -0
  668. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/unmarshall.d.ts +0 -0
  669. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/value_deserializers.d.ts +0 -0
  670. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/value_serializers.d.ts +0 -0
  671. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/data_types/resolve.d.ts +0 -0
  672. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/data_types/source.d.ts +0 -0
  673. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/data_types/target.d.ts +0 -0
  674. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/marshall.d.ts +0 -0
  675. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/migrate_boilerplate.d.ts +0 -0
  676. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/unmarshall.d.ts +0 -0
  677. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/value_deserializers.d.ts +0 -0
  678. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/value_serializers.d.ts +0 -0
@@ -25,6 +25,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  };
26
26
  Object.defineProperty(exports, "__esModule", { value: true });
27
27
  const _eb = __importStar(require("exupery-core-bin"));
28
- const compile_1 = require("../procedures/unguaranteed/compile");
29
- _eb.run_unguaranteed_main_procedure(compile_1.$$);
30
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tcGlsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9iaW4vY29tcGlsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUVBLHNEQUF1QztBQUV2QyxnRUFBdUQ7QUFFdkQsR0FBRyxDQUFDLCtCQUErQixDQUFDLFlBQUUsQ0FBQyxDQUFBIn0=
28
+ const compile_temp_schemas_1 = require("../implementation/algorithms/procedures/unguaranteed/compile_temp_schemas");
29
+ _eb.run_unguaranteed_main_procedure(compile_temp_schemas_1.$$);
30
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tcGlsZV90ZW1wX3NjaGVtYXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvYmluL2NvbXBpbGVfdGVtcF9zY2hlbWFzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRUEsc0RBQXVDO0FBRXZDLG9IQUE4RjtBQUU5RixHQUFHLENBQUMsK0JBQStCLENBQUMseUJBQUUsQ0FBQyxDQUFBIn0=
package/dist/bin/seal.js CHANGED
@@ -25,6 +25,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  };
26
26
  Object.defineProperty(exports, "__esModule", { value: true });
27
27
  const _eb = __importStar(require("exupery-core-bin"));
28
- const seal_1 = require("../procedures/unguaranteed/seal");
28
+ const seal_1 = require("../implementation/algorithms/procedures/unguaranteed/seal");
29
29
  _eb.run_unguaranteed_main_procedure(seal_1.$$);
30
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9iaW4vc2VhbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUVBLHNEQUF1QztBQUV2QywwREFBb0Q7QUFFcEQsR0FBRyxDQUFDLCtCQUErQixDQUFDLFNBQUUsQ0FBQyxDQUFBIn0=
30
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9iaW4vc2VhbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUVBLHNEQUF1QztBQUV2QyxvRkFBOEU7QUFFOUUsR0FBRyxDQUFDLCtCQUErQixDQUFDLFNBQUUsQ0FBQyxDQUFBIn0=
@@ -25,6 +25,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  };
26
26
  Object.defineProperty(exports, "__esModule", { value: true });
27
27
  const _eb = __importStar(require("exupery-core-bin"));
28
- const serialize_schemas_1 = require("../procedures/unguaranteed/serialize_schemas");
28
+ const serialize_schemas_1 = require("../implementation/algorithms/procedures/unguaranteed/serialize_schemas");
29
29
  _eb.run_unguaranteed_main_procedure(serialize_schemas_1.$$);
30
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplX3NjaGVtYXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvYmluL3NlcmlhbGl6ZV9zY2hlbWFzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRUEsc0RBQXVDO0FBRXZDLG9GQUFpRTtBQUVqRSxHQUFHLENBQUMsK0JBQStCLENBQUMsc0JBQUUsQ0FBQyxDQUFBIn0=
30
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplX3NjaGVtYXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvYmluL3NlcmlhbGl6ZV9zY2hlbWFzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRUEsc0RBQXVDO0FBRXZDLDhHQUEyRjtBQUUzRixHQUFHLENBQUMsK0JBQStCLENBQUMsc0JBQUUsQ0FBQyxDQUFBIn0=
@@ -25,6 +25,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  };
26
26
  Object.defineProperty(exports, "__esModule", { value: true });
27
27
  const _eb = __importStar(require("exupery-core-bin"));
28
- const validate_1 = require("../procedures/unguaranteed/validate");
28
+ const validate_1 = require("../implementation/algorithms/procedures/unguaranteed/validate");
29
29
  _eb.run_unguaranteed_main_procedure(validate_1.$$);
30
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsaWRhdGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvYmluL3ZhbGlkYXRlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBR0Esc0RBQXVDO0FBR3ZDLGtFQUF3RDtBQUV4RCxHQUFHLENBQUMsK0JBQStCLENBQUMsYUFBRSxDQUFDLENBQUEifQ==
30
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsaWRhdGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvYmluL3ZhbGlkYXRlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBR0Esc0RBQXVDO0FBR3ZDLDRGQUFrRjtBQUVsRixHQUFHLENBQUMsK0JBQStCLENBQUMsYUFBRSxDQUFDLENBQUEifQ==
@@ -1,6 +1,6 @@
1
- import * as d_schema from "../../generated/interface/schemas/schema/data_types/source";
2
- import * as d_parse_result from "astn/dist/generated/interface/schemas/sealed_parse_result/data_types/target";
3
- type Error = ['parse error', d_parse_result.Parse_Error];
4
- type Unsafe_Transformation_Result<T, E> = ['success', T] | ['error', E];
5
- export declare const $: ($: string) => Unsafe_Transformation_Result<d_schema.Type, Error>;
1
+ import * as _ea from 'exupery-core-alg';
2
+ import * as d_schema from "../../interface/generated/pareto/schemas/schema/data_types/source";
3
+ import * as d_parse_result from "../../interface/generated/pareto/core/parse_result";
4
+ type Error = ['parse error', d_parse_result._T_Parse_Error];
5
+ export declare const $: ($: string) => _ea.Refinement_Result<d_schema.Type, Error>;
6
6
  export {};
@@ -28,9 +28,10 @@ exports.$ = void 0;
28
28
  const _ea = __importStar(require("exupery-core-alg"));
29
29
  const _ed = __importStar(require("exupery-core-dev"));
30
30
  const r_pareto_schema = __importStar(require("../../temp/resolvers/schema"));
31
- const u_pareto_schema = __importStar(require("../../generated/implementation/schemas/schema/unmarshall"));
32
- const parse = __importStar(require("astn/dist/exceptional/sealed_parse/parse"));
33
- const remove_first_element_1 = require("pareto-standard-operations/dist/operations/impure/list/remove_first_element");
31
+ const u_pareto_schema = __importStar(require("../../implementation/generated/pareto/schemas/schema/unmarshall"));
32
+ const parse = __importStar(require("../../implementation/generated/pareto/generic/parse/parse"));
33
+ const remove_first_element_1 = require("pareto-standard-operations/dist/implementation/algorithms/operations/impure/list/remove_first_element");
34
+ // ['resolve error', FIXME resolve errors will now deprecated_panic!
34
35
  const $ = ($) => {
35
36
  return parse.parse($, {
36
37
  'tab size': 4,
@@ -55,15 +56,15 @@ const $ = ($) => {
55
56
  const split = $;
56
57
  return _ea.cc(st, ($) => {
57
58
  switch ($[0]) {
58
- case 'schema': return _ea.ss($, ($) => _ea.panic(`(FIXME: make this a reference) the selected tree is a schema, not a set, can't do this step: ${split.element} `));
59
- case 'set': return _ea.ss($, ($) => $.dictionary.__get_entry(split.element).transform(($) => temp_find_schema($, split.array), () => _ea.panic(`(FIXME: make this a reference) schema not found: ${split.element}`)));
59
+ case 'schema': return _ea.ss($, ($) => _ea.deprecated_panic(`(FIXME: make this a reference) the selected tree is a schema, not a set, can't do this step: ${split.element} `));
60
+ case 'set': return _ea.ss($, ($) => $.dictionary.__get_entry(split.element).transform(($) => temp_find_schema($, split.array), () => _ea.deprecated_panic(`(FIXME: make this a reference) schema not found: ${split.element}`)));
60
61
  default: return _ea.au($[0]);
61
62
  }
62
63
  });
63
64
  }, () => _ea.cc($, ($) => {
64
65
  switch ($[0]) {
65
66
  case 'schema': return _ea.ss($, ($) => $);
66
- case 'set': return _ea.ss($, ($) => _ea.panic(`(FIXME: make this a reference) the selected tree is a set, not a schema`));
67
+ case 'set': return _ea.ss($, ($) => _ea.deprecated_panic(`(FIXME: make this a reference) the selected tree is a set, not a schema`));
67
68
  default: return _ea.au($[0]);
68
69
  }
69
70
  }));
@@ -73,10 +74,10 @@ const $ = ($) => {
73
74
  schema.types.dictionary.map(($, key) => {
74
75
  _ed.log_debug_message(`available type: ${key}`, () => { });
75
76
  });
76
- _ea.panic(`(FIXME: make this a reference) root type ${resolved_schema_schema.type} not found`);
77
+ _ea.deprecated_panic(`(FIXME: make this a reference) root type ${resolved_schema_schema.type} not found`);
77
78
  });
78
- return ['success', type];
79
- }, ($) => ['error', ['parse error', $]]);
79
+ return _ea.refinement.successful(type);
80
+ }, ($) => _ea.refinement.failed(['parse error', $]));
80
81
  };
81
82
  exports.$ = $;
82
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZF9zY2hlbWEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvZXhjZXB0aW9uYWwvZGVzZXJpYWxpemVycy9sb2FkX3NjaGVtYS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE1BQU07QUFDTixzREFBdUM7QUFHdkMsc0RBQXVDO0FBT3ZDLDZFQUE4RDtBQUU5RCwwR0FBMkY7QUFFM0YsZ0ZBQWlFO0FBSWpFLHNIQUEySDtBQVVwSCxNQUFNLENBQUMsR0FBRyxDQUNiLENBQVMsRUFDeUMsRUFBRTtJQUVwRCxPQUFPLEtBQUssQ0FBQyxLQUFLLENBQ2QsQ0FBQyxFQUNEO1FBQ0ksVUFBVSxFQUFFLENBQUM7S0FDaEIsQ0FDSixDQUFDLFNBQVMsQ0FDUCxDQUFDLENBQUMsRUFBc0QsRUFBRTtRQUV0RCxNQUFNLHNCQUFzQixHQUFHLGVBQWUsQ0FBQyxrQkFBa0IsQ0FDN0QsZUFBZSxDQUFDLGtCQUFrQixDQUM5QixDQUFDLENBQUMsT0FBTyxFQUFFLHVHQUF1RztRQUNsSDtZQUNJLHFCQUFxQixFQUFFO2dCQUNuQixTQUFTLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsS0FBSyxNQUFNO2dCQUM5QixnQkFBZ0IsRUFBRSxHQUFHLEVBQUUsQ0FBQyxDQUFDO2dCQUN6QixnQkFBZ0IsRUFBRSxJQUFJO2FBQ3pCO1NBQ0osQ0FDSixFQUNEO1lBQ0ksbUJBQW1CLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLEdBQUcsQ0FBQyxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMsSUFBSSxJQUFJLENBQUMsQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUFDLE1BQU0sRUFBRTtZQUNqRixZQUFZLEVBQUU7Z0JBQ1YsU0FBUyxFQUFFLElBQUk7Z0JBQ2YsUUFBUSxFQUFFLElBQUk7YUFDakI7U0FDSixDQUNKLENBQUE7UUFDRCxNQUFNLGdCQUFnQixHQUFHLENBQ3JC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
83
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZF9zY2hlbWEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvZXhjZXB0aW9uYWwvZGVzZXJpYWxpemVycy9sb2FkX3NjaGVtYS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE1BQU07QUFDTixzREFBdUM7QUFHdkMsc0RBQXVDO0FBT3ZDLDZFQUE4RDtBQUU5RCxpSEFBa0c7QUFFbEcsaUdBQWtGO0FBSWxGLGdKQUFxSjtBQUlySixvRUFBb0U7QUFHN0QsTUFBTSxDQUFDLEdBQUcsQ0FDYixDQUFTLEVBQ2tDLEVBQUU7SUFFN0MsT0FBTyxLQUFLLENBQUMsS0FBSyxDQUNkLENBQUMsRUFDRDtRQUNJLFVBQVUsRUFBRSxDQUFDO0tBQ2hCLENBQ0osQ0FBQyxTQUFTLENBQ1AsQ0FBQyxDQUFDLEVBQStDLEVBQUU7UUFFL0MsTUFBTSxzQkFBc0IsR0FBRyxlQUFlLENBQUMsa0JBQWtCLENBQzdELGVBQWUsQ0FBQyxrQkFBa0IsQ0FDOUIsQ0FBQyxDQUFDLE9BQU8sRUFBRSx1R0FBdUc7UUFDbEg7WUFDSSxxQkFBcUIsRUFBRTtnQkFDbkIsU0FBUyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssTUFBTTtnQkFDOUIsZ0JBQWdCLEVBQUUsR0FBRyxFQUFFLENBQUMsQ0FBQztnQkFDekIsZ0JBQWdCLEVBQUUsSUFBSTthQUN6QjtTQUNKLENBQ0osRUFDRDtZQUNJLG1CQUFtQixFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUFDLElBQUksSUFBSSxDQUFDLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FBQyxNQUFNLEVBQUU7WUFDakYsWUFBWSxFQUFFO2dCQUNWLFNBQVMsRUFBRSxJQUFJO2dCQUNmLFFBQVEsRUFBRSxJQUFJO2FBQ2pCO1NBQ0osQ0FDSixDQUFBO1FBQ0QsTUFBTSxnQkFB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
@@ -1,3 +1,3 @@
1
- import * as _et from "exupery-core-types";
1
+ import * as _et from 'exupery-core-types';
2
2
  export declare const get_base_name: (path: string) => _et.Optional_Value<string>;
3
3
  export declare const get_directory_path: (path: string) => _et.Optional_Value<_et.Array<string>>;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.get_directory_path = exports.get_base_name = void 0;
4
+ const remove_last_element_1 = require("pareto-standard-operations/dist/implementation/algorithms/operations/impure/list/remove_last_element");
5
+ const split_1 = require("exupery-standard-library/dist/implementation/algorithms/operations/impure/text/split");
6
+ const get_base_name = (path) => {
7
+ const temp = (0, split_1.$$)(path, "/");
8
+ return temp.__get_element_at(temp.__get_length() - 1);
9
+ };
10
+ exports.get_base_name = get_base_name;
11
+ const get_directory_path = (path) => {
12
+ const temp = (0, split_1.$$)(path, "/");
13
+ return (0, remove_last_element_1.$$)(temp).map(($) => $.array);
14
+ };
15
+ exports.get_directory_path = get_directory_path;
16
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGF0aC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbXBsZW1lbnRhdGlvbi9hbGdvcml0aG1zL29wZXJhdGlvbnMvaW1wdXJlL3RiZC9wYXRoLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUdBLDhJQUFtSjtBQUNuSixnSEFBcUg7QUFJOUcsTUFBTSxhQUFhLEdBQUcsQ0FBQyxJQUFZLEVBQThCLEVBQUU7SUFDdEUsTUFBTSxJQUFJLEdBQUcsSUFBQSxVQUFRLEVBQUMsSUFBSSxFQUFFLEdBQUcsQ0FBQyxDQUFBO0lBRWhDLE9BQU8sSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxZQUFZLEVBQUUsR0FBRyxDQUFDLENBQUMsQ0FBQTtBQUN6RCxDQUFDLENBQUE7QUFKWSxRQUFBLGFBQWEsaUJBSXpCO0FBRU0sTUFBTSxrQkFBa0IsR0FBRyxDQUFDLElBQVksRUFBeUMsRUFBRTtJQUN0RixNQUFNLElBQUksR0FBRyxJQUFBLFVBQVEsRUFBQyxJQUFJLEVBQUUsR0FBRyxDQUFDLENBQUE7SUFFaEMsT0FBTyxJQUFBLHdCQUFzQixFQUFDLElBQUksQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFBO0FBRTNELENBQUMsQ0FBQTtBQUxZLFFBQUEsa0JBQWtCLHNCQUs5QiJ9
@@ -0,0 +1,152 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.$$ = void 0;
27
+ //core
28
+ const _ea = __importStar(require("exupery-core-alg"));
29
+ const _ed = __importStar(require("exupery-core-data"));
30
+ const _easync = __importStar(require("exupery-core-async"));
31
+ //data
32
+ const all_1 = require("../../../../temp/temporary_schemas/all");
33
+ const r_pareto_module = __importStar(require("../../../../temp/resolvers/module"));
34
+ const t_pareto_module_to_fountain_pen_block__implementation = __importStar(require("../../transformations/module/temp_typescript_implementation"));
35
+ const t_pareto_module_to_fountain_pen_block__interface = __importStar(require("../../transformations/module/temp_typescript_interface"));
36
+ const write_to_directory_1 = require("pareto-fountain-pen/dist/implementation/algorithms/procedures/unguaranteed/write_to_directory");
37
+ const log_1 = require("exupery-resources/dist/implementation/algorithms/procedures/guaranteed/log");
38
+ const log_error_1 = require("exupery-resources/dist/implementation/algorithms/procedures/guaranteed/log_error");
39
+ const copy_1 = require("exupery-resources/dist/implementation/algorithms/procedures/unguaranteed/copy");
40
+ const remove_1 = require("exupery-resources/dist/implementation/algorithms/procedures/unguaranteed/remove");
41
+ const $$ = ($) => {
42
+ $.arguments;
43
+ return _easync.up.sequence([
44
+ _easync.upi.g(log_1.$$)({
45
+ 'lines': _ea.array_literal([`generating...`])
46
+ }),
47
+ _easync.up.dictionary(all_1.$.map(($, key) => {
48
+ const interface_module_path = `./out/source_code/${key}/interface/`;
49
+ const implementation_module_path = `./out/source_code/${key}/implementation/`;
50
+ return _easync.up.sequence([
51
+ _easync.upi.g(log_1.$$)({
52
+ 'lines': _ea.array_literal([`generating: ${key}`])
53
+ }),
54
+ //FIX do this in parallel
55
+ _easync.up.sequence([
56
+ _easync.upi.u(remove_1.$$, ($) => null, _easync.eh(log_error_1.$$, ($) => {
57
+ return ({
58
+ 'lines': _ea.array_literal([`Could not remove old generated implementation files, ${$[0]}`])
59
+ });
60
+ }))({
61
+ 'path': {
62
+ 'path': `${implementation_module_path}`,
63
+ 'escape spaces in path': true,
64
+ },
65
+ 'error if not exists': false,
66
+ }),
67
+ _easync.upi.u(remove_1.$$, ($) => null, _easync.eh(log_error_1.$$, ($) => {
68
+ return ({
69
+ 'lines': _ea.array_literal([`Could not remove old generated ihterface files`])
70
+ });
71
+ }))({
72
+ 'path': {
73
+ 'path': `${interface_module_path}`,
74
+ 'escape spaces in path': true,
75
+ },
76
+ 'error if not exists': false,
77
+ }),
78
+ ]),
79
+ //FIX do this in parallel!
80
+ _easync.up.sequence([
81
+ //WARNING! first write the generated source files,
82
+ //then copy the static files,
83
+ //otherwise the static files will be deleted again!
84
+ _easync.upi.u(write_to_directory_1.$$, ($) => null)({
85
+ 'directory': t_pareto_module_to_fountain_pen_block__interface.Module(r_pareto_module.Module($, {
86
+ 'parameters': {
87
+ 'lookups': null,
88
+ 'values': null,
89
+ },
90
+ 'location 2 string': _ed.location_to_string
91
+ })),
92
+ 'path': interface_module_path,
93
+ 'indentation': " ",
94
+ 'newline': "\n",
95
+ 'remove before creating': true,
96
+ }),
97
+ _easync.upi.u(write_to_directory_1.$$, ($) => null)({
98
+ 'directory': t_pareto_module_to_fountain_pen_block__implementation.Module(r_pareto_module.Module($, {
99
+ 'parameters': {
100
+ 'lookups': null,
101
+ 'values': null,
102
+ },
103
+ 'location 2 string': _ed.location_to_string
104
+ })),
105
+ 'path': implementation_module_path,
106
+ 'indentation': " ",
107
+ 'newline': "\n",
108
+ 'remove before creating': true,
109
+ }),
110
+ _easync.upi.u(copy_1.$$, () => null, _easync.eh(log_error_1.$$, ($) => ({
111
+ 'lines': _ea.array_literal([`Could not copy generic implementation directory`])
112
+ })))({
113
+ 'source': {
114
+ 'path': "./pub/src/implementation/generated/pareto/generic",
115
+ 'escape spaces in path': true,
116
+ },
117
+ 'target': {
118
+ 'path': implementation_module_path + "/generic",
119
+ 'escape spaces in path': true,
120
+ },
121
+ 'options': {
122
+ 'recursive': _ea.set(true),
123
+ 'force': _ea.not_set(),
124
+ 'errorOnExist': _ea.not_set(),
125
+ }
126
+ }),
127
+ _easync.upi.u(copy_1.$$, () => null, _easync.eh(log_error_1.$$, ($) => ({
128
+ 'lines': _ea.array_literal([`Could not copy core interface directory`])
129
+ })))({
130
+ 'source': {
131
+ 'path': "./pub/src/interface/generated/pareto/core",
132
+ 'escape spaces in path': true,
133
+ },
134
+ 'target': {
135
+ 'path': interface_module_path + "/core",
136
+ 'escape spaces in path': true,
137
+ },
138
+ 'options': {
139
+ 'recursive': _ea.set(true),
140
+ 'force': _ea.not_set(),
141
+ 'errorOnExist': _ea.not_set(),
142
+ }
143
+ }),
144
+ ]),
145
+ ]);
146
+ }), ($) => ({
147
+ 'exit code': 1
148
+ }))
149
+ ]);
150
+ };
151
+ exports.$$ = $$;
152
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tcGlsZV90ZW1wX3NjaGVtYXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvaW1wbGVtZW50YXRpb24vYWxnb3JpdGhtcy9wcm9jZWR1cmVzL3VuZ3VhcmFudGVlZC9jb21waWxlX3RlbXBfc2NoZW1hcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE1BQU07QUFDTixzREFBdUM7QUFDdkMsdURBQXdDO0FBQ3hDLDREQUE2QztBQUc3QyxNQUFNO0FBQ04sZ0VBQThFO0FBSTlFLG1GQUFvRTtBQUVwRSxtSkFBb0k7QUFDcEkseUlBQTBIO0FBSTFILHNJQUE2STtBQUM3SSxvR0FBd0c7QUFDeEcsZ0hBQW9IO0FBQ3BILHdHQUFpSDtBQUNqSCw0R0FBcUg7QUFNOUcsTUFBTSxFQUFFLEdBQXNDLENBQUMsQ0FBQyxFQUFFLEVBQUU7SUFDdkQsQ0FBQyxDQUFDLFNBQVMsQ0FBQTtJQUNYLE9BQU8sT0FBTyxDQUFDLEVBQUUsQ0FBQyxRQUFRLENBQUM7UUFFdkIsT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQ1QsUUFBSyxDQUNSLENBQUM7WUFDRSxPQUFPLEVBQUUsR0FBRyxDQUFDLGFBQWEsQ0FBQyxDQUFDLGVBQWUsQ0FBQyxDQUFDO1NBQ2hELENBQUM7UUFFRixPQUFPLENBQUMsRUFBRSxDQUFDLFVBQVUsQ0FDakIsT0FBZ0IsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsR0FBRyxFQUFFLEVBQUU7WUFFNUIsTUFBTSxxQkFBcUIsR0FBRyxxQkFBcUIsR0FBRyxhQUFhLENBQUE7WUFDbkUsTUFBTSwwQkFBMEIsR0FBRyxxQkFBcUIsR0FBRyxrQkFBa0IsQ0FBQTtZQUU3RSxPQUFPLE9BQU8sQ0FBQyxFQUFFLENBQUMsUUFBUSxDQUFPO2dCQUU3QixPQUFPLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FDVCxRQUFLLENBQ1IsQ0FBQztvQkFDRSxPQUFP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
@@ -26,7 +26,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.$$ = void 0;
27
27
  const _ea = __importStar(require("exupery-core-alg"));
28
28
  const _easync = __importStar(require("exupery-core-async"));
29
- const log_error_1 = require("exupery-resources/dist/procedures/guaranteed/log_error");
29
+ const log_error_1 = require("exupery-resources/dist/implementation/algorithms/procedures/guaranteed/log_error");
30
30
  const $$ = () => _easync.up.action(_easync.upi.u(() => {
31
31
  return _easync.command.unguaranteed['raise exception'](null);
32
32
  }, () => ({
@@ -35,4 +35,4 @@ const $$ = () => _easync.up.action(_easync.upi.u(() => {
35
35
  'lines': _ea.array_literal(["The seal procedure is not implemented yet"])
36
36
  }))), _easync.uq.fixed(null));
37
37
  exports.$$ = $$;
38
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9wcm9jZWR1cmVzL3VuZ3VhcmFudGVlZC9zZWFsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsc0RBQXVDO0FBRXZDLDREQUE2QztBQUU3QyxzRkFBMEY7QUFFbkYsTUFBTSxFQUFFLEdBQXNDLEdBQUcsRUFBRSxDQUFDLE9BQU8sQ0FBQyxFQUFFLENBQUMsTUFBTSxDQUN4RSxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FDVCxHQUFHLEVBQUU7SUFDRCxPQUFPLE9BQU8sQ0FBQyxPQUFPLENBQUMsWUFBWSxDQUFDLGlCQUFpQixDQUFDLENBQUMsSUFBSSxDQUFDLENBQUE7QUFDaEUsQ0FBQyxFQUNELEdBQUcsRUFBRSxDQUFDLENBQUM7SUFDSCxXQUFXLEVBQUUsQ0FBQztDQUNqQixDQUFDLEVBQ0YsT0FBTyxDQUFDLEVBQUUsQ0FDTixjQUFXLEVBQ1gsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUM7SUFDSixPQUFPLEVBQUUsR0FBRyxDQUFDLGFBQWEsQ0FBQyxDQUFDLDJDQUEyQyxDQUFDLENBQUM7Q0FDNUUsQ0FBQyxDQUNMLENBQ0osRUFDRCxPQUFPLENBQUMsRUFBRSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FDekIsQ0FBQTtBQWhCWSxRQUFBLEVBQUUsTUFnQmQifQ==
38
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9pbXBsZW1lbnRhdGlvbi9hbGdvcml0aG1zL3Byb2NlZHVyZXMvdW5ndWFyYW50ZWVkL3NlYWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxzREFBdUM7QUFFdkMsNERBQTZDO0FBRTdDLGdIQUFvSDtBQUk3RyxNQUFNLEVBQUUsR0FBc0MsR0FBRyxFQUFFLENBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQyxNQUFNLENBQ3hFLE9BQU8sQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUNULEdBQUcsRUFBRTtJQUNELE9BQU8sT0FBTyxDQUFDLE9BQU8sQ0FBQyxZQUFZLENBQUMsaUJBQWlCLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQTtBQUNoRSxDQUFDLEVBQ0QsR0FBRyxFQUFFLENBQUMsQ0FBQztJQUNILFdBQVcsRUFBRSxDQUFDO0NBQ2pCLENBQUMsRUFDRixPQUFPLENBQUMsRUFBRSxDQUNOLGNBQVcsRUFDWCxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQztJQUNKLE9BQU8sRUFBRSxHQUFHLENBQUMsYUFBYSxDQUFDLENBQUMsMkNBQTJDLENBQUMsQ0FBQztDQUM1RSxDQUFDLENBQ0wsQ0FDSixFQUNELE9BQU8sQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxDQUN6QixDQUFBO0FBaEJZLFFBQUEsRUFBRSxNQWdCZCJ9
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.$$ = void 0;
27
+ const _ed = __importStar(require("exupery-core-data"));
28
+ const _easync = __importStar(require("exupery-core-async"));
29
+ const write_file_1 = require("exupery-resources/dist/implementation/algorithms/procedures/unguaranteed/write_file");
30
+ const serialize = __importStar(require("../../../generated/pareto/generic/serialize"));
31
+ //data
32
+ const all_1 = require("../../../../temp/temporary_schemas/all");
33
+ //resolvers
34
+ const r_module = __importStar(require("../../../../temp/resolvers/module"));
35
+ //marshall
36
+ const m_module = __importStar(require("../../../../implementation/generated/pareto/schemas/module/marshall"));
37
+ const path = "./out/serialized";
38
+ const $$ = ($) => {
39
+ return _easync.up.dictionary(all_1.$.map(($, key) => (0, write_file_1.$$)({
40
+ 'path': {
41
+ 'escape spaces in path': true,
42
+ 'path': `${path}/${key}.astn`
43
+ },
44
+ 'data': serialize.Document(m_module.Module(r_module.Module($, {
45
+ 'parameters': {
46
+ 'lookups': null,
47
+ 'values': null,
48
+ },
49
+ 'location 2 string': _ed.location_to_string
50
+ }), {
51
+ 'value serializers': {
52
+ 'boolean': ($) => $ ? "true" : "false",
53
+ 'default number': () => "FIXME NUMBER",
54
+ 'custom numbers': null
55
+ }
56
+ })),
57
+ })), ($) => ({
58
+ 'exit code': 1
59
+ }));
60
+ };
61
+ exports.$$ = $$;
62
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplX3NjaGVtYXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvaW1wbGVtZW50YXRpb24vYWxnb3JpdGhtcy9wcm9jZWR1cmVzL3VuZ3VhcmFudGVlZC9zZXJpYWxpemVfc2NoZW1hcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUdBLHVEQUF3QztBQUN4Qyw0REFBNkM7QUFFN0Msb0hBQXdIO0FBQ3hILHVGQUF3RTtBQUN4RSxNQUFNO0FBQ04sZ0VBQThFO0FBSzlFLFdBQVc7QUFDWCw0RUFBNkQ7QUFFN0QsVUFBVTtBQUNWLDhHQUErRjtBQUkvRixNQUFNLElBQUksR0FBRyxrQkFBa0IsQ0FBQTtBQUV4QixNQUFNLEVBQUUsR0FBc0MsQ0FBQyxDQUFDLEVBQUUsRUFBRTtJQUN2RCxPQUFPLE9BQU8sQ0FBQyxFQUFFLENBQUMsVUFBVSxDQUN4QixPQUFnQixDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxHQUFHLEVBQUUsRUFBRSxDQUFDLElBQUEsZUFBWSxFQUN6QztRQUNJLE1BQU0sRUFBRTtZQUNKLHVCQUF1QixFQUFFLElBQUk7WUFDN0IsTUFBTSxFQUFFLEdBQUcsSUFBSSxJQUFJLEdBQUcsT0FBTztTQUNoQztRQUNELE1BQU0sRUFBRSxTQUFTLENBQUMsUUFBUSxDQUN0QixRQUFRLENBQUMsTUFBTSxDQUNYLFFBQVEsQ0FBQyxNQUFNLENBQ1gsQ0FBQyxFQUNEO1lBQ0ksWUFBWSxFQUFFO2dCQUNWLFNBQVMsRUFBRSxJQUFJO2dCQUNmLFFBQVEsRUFBRSxJQUFJO2FBQ2pCO1lBQ0QsbUJBQW1CLEVBQUUsR0FBRyxDQUFDLGtCQUFrQjtTQUM5QyxDQUNKLEVBQ0Q7WUFDSSxtQkFBbUIsRUFBRTtnQkFDakIsU0FBUyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsT0FBTztnQkFDdEMsZ0JBQWdCLEVBQUUsR0FBRyxFQUFFLENBQUMsY0FBYztnQkFDdEMsZ0JBQWdCLEVBQUUsSUFBSTthQUN6QjtTQUNKLENBQ0osQ0FDSjtLQUNKLENBQ0osQ0FBQyxFQUNGLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBQ0osV0FBVyxFQUFFLENBQUM7S0FDakIsQ0FBQyxDQUVMLENBQUE7QUFHTCxDQUFDLENBQUE7QUF0Q1ksUUFBQSxFQUFFLE1Bc0NkIn0=
@@ -28,10 +28,10 @@ exports.$$ = void 0;
28
28
  const _ea = __importStar(require("exupery-core-alg"));
29
29
  const _easync = __importStar(require("exupery-core-async"));
30
30
  //data
31
- const all_1 = require("../../temp/temporary_schemas/all");
32
- const log_error_1 = require("exupery-resources/dist/procedures/guaranteed/log_error");
31
+ const all_1 = require("../../../../temp/temporary_schemas/all");
32
+ const log_error_1 = require("exupery-resources/dist/implementation/algorithms/procedures/guaranteed/log_error");
33
33
  const $$ = ($p) => _easync.up.dictionary(all_1.$.map(($, key) => {
34
- const path = "../out/source_code/src/generated";
34
+ const path = "../../out/source_code/src/generated";
35
35
  const module_path = `${path}/${key}`;
36
36
  return _easync.up.sequence([
37
37
  (0, log_error_1.$$)({
@@ -42,4 +42,4 @@ const $$ = ($p) => _easync.up.dictionary(all_1.$.map(($, key) => {
42
42
  'exit code': 1
43
43
  }));
44
44
  exports.$$ = $$;
45
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsaWRhdGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcHJvY2VkdXJlcy91bmd1YXJhbnRlZWQvdmFsaWRhdGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxNQUFNO0FBQ04sc0RBQXVDO0FBRXZDLDREQUE2QztBQUc3QyxNQUFNO0FBQ04sMERBQXdFO0FBUXhFLHNGQUEwRjtBQUduRixNQUFNLEVBQUUsR0FBc0MsQ0FDakQsRUFBRSxFQUNKLEVBQUUsQ0FBQyxPQUFPLENBQUMsRUFBRSxDQUFDLFVBQVUsQ0FDdEIsT0FBZ0IsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsR0FBRyxFQUFFLEVBQUU7SUFDNUIsTUFBTSxJQUFJLEdBQUcsa0NBQWtDLENBQUE7SUFFL0MsTUFBTSxXQUFXLEdBQUcsR0FBRyxJQUFJLElBQUksR0FBRyxFQUFFLENBQUE7SUFDcEMsT0FBTyxPQUFPLENBQUMsRUFBRSxDQUFDLFFBQVEsQ0FBQztRQUN2QixJQUFBLGNBQVcsRUFBQztZQUNSLE9BQU8sRUFBRSxHQUFHLENBQUMsYUFBYSxDQUFDLENBQUMsY0FBYyxDQUFDLENBQUM7U0FDL0MsQ0FBQztLQUNMLENBQUMsQ0FBQTtBQUdOLENBQUMsQ0FBQyxFQUNGLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDO0lBQ0osV0FBVyxFQUFFLENBQUM7Q0FDakIsQ0FBQyxDQUNMLENBQUE7QUFsQlksUUFBQSxFQUFFLE1Ba0JkIn0=
45
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsaWRhdGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvaW1wbGVtZW50YXRpb24vYWxnb3JpdGhtcy9wcm9jZWR1cmVzL3VuZ3VhcmFudGVlZC92YWxpZGF0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE1BQU07QUFDTixzREFBdUM7QUFFdkMsNERBQTZDO0FBRzdDLE1BQU07QUFDTixnRUFBOEU7QUFROUUsZ0hBQW9IO0FBSzdHLE1BQU0sRUFBRSxHQUFzQyxDQUNqRCxFQUFFLEVBQ0osRUFBRSxDQUFDLE9BQU8sQ0FBQyxFQUFFLENBQUMsVUFBVSxDQUN0QixPQUFnQixDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxHQUFHLEVBQUUsRUFBRTtJQUM1QixNQUFNLElBQUksR0FBRyxxQ0FBcUMsQ0FBQTtJQUVsRCxNQUFNLFdBQVcsR0FBRyxHQUFHLElBQUksSUFBSSxHQUFHLEVBQUUsQ0FBQTtJQUNwQyxPQUFPLE9BQU8sQ0FBQyxFQUFFLENBQUMsUUFBUSxDQUFDO1FBQ3ZCLElBQUEsY0FBVyxFQUFDO1lBQ1IsT0FBTyxFQUFFLEdBQUcsQ0FBQyxhQUFhLENBQUMsQ0FBQyxjQUFjLENBQUMsQ0FBQztTQUMvQyxDQUFDO0tBQ0wsQ0FBQyxDQUFBO0FBR04sQ0FBQyxDQUFDLEVBQ0YsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUM7SUFDSixXQUFXLEVBQUUsQ0FBQztDQUNqQixDQUFDLENBQ0wsQ0FBQTtBQWxCWSxRQUFBLEVBQUUsTUFrQmQifQ==
@@ -1,6 +1,6 @@
1
1
  import * as _easync from 'exupery-core-async';
2
- import * as d_parse_result from "astn/dist/generated/interface/schemas/authoring_parse_result/data_types/target";
3
- import * as _out from "../../temp/temp_unmashall_result_types";
2
+ import * as d_parse_result from "astn/dist/interface/generated/pareto/schemas/authoring_parse_result/data_types/target";
3
+ import * as _out from "../../../../temp/temp_unmashall_result_types";
4
4
  export type Error = ['parse error', d_parse_result.Parse_Error] | ['no schema file', null] | [
5
5
  'schema error',
6
6
  {
@@ -0,0 +1,75 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.$$ = void 0;
27
+ //core
28
+ const _ea = __importStar(require("exupery-core-alg"));
29
+ const _easync = __importStar(require("exupery-core-async"));
30
+ const tu_dynamic_unmarshall = __importStar(require("../../transformations/temp/unmarshall_astn_ast"));
31
+ const parse = __importStar(require("astn/dist/exceptional/authoring_parse/parse"));
32
+ const join_list_of_texts_with_separator_1 = require("pareto-standard-operations/dist/implementation/algorithms/operations/impure/text/join_list_of_texts_with_separator");
33
+ const read_file_1 = require("exupery-resources/dist/implementation/algorithms/queries/unguaranteed/read_file");
34
+ const path_1 = require("../../operations/impure/tbd/path");
35
+ const load_schema_1 = require("../../../../exceptional/deserializers/load_schema");
36
+ const $$ = ($p) => {
37
+ const instance_path = $p['file path'];
38
+ const schema_path = (0, join_list_of_texts_with_separator_1.$$)((0, path_1.get_directory_path)($p['file path']).transform(($) => $, () => _ea.deprecated_panic("could not get directory path")), {
39
+ 'separator': "/",
40
+ }) + "/astn-schema";
41
+ return parse.parse($p.content, {
42
+ 'tab size': 4,
43
+ }).transform(($) => {
44
+ //the instance was parsed successfully
45
+ const content = $.content;
46
+ //now first, get the schema
47
+ return (0, read_file_1.$$)({
48
+ 'path': schema_path,
49
+ 'escape spaces in path': true,
50
+ }).map_exception_(() => ['no schema file', null]).then_unguaranteed(($) => {
51
+ //the schema file was read successfully
52
+ return _ea.cc((0, load_schema_1.$)($), ($) => {
53
+ return $.transform(($) => {
54
+ //the schema was loaded successfully
55
+ const type = $;
56
+ return _easync.query.unguaranteed['create result'](tu_dynamic_unmarshall.Node(content, {
57
+ 'definition': type.node,
58
+ }));
59
+ }, ($) => _ea.cc($, ($) => {
60
+ switch ($[0]) {
61
+ case 'parse error': return _ea.ss($, ($) => {
62
+ return _easync.query.unguaranteed['raise exception'](['schema error', {
63
+ // 'message': $.,
64
+ 'file location': schema_path,
65
+ }]);
66
+ });
67
+ default: return _ea.au($[0]);
68
+ }
69
+ }));
70
+ });
71
+ });
72
+ }, ($) => _easync.query.unguaranteed['raise exception'](['parse error', $]));
73
+ };
74
+ exports.$$ = $$;
75
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZF9wYXJldG9fZG9jdW1lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvaW1wbGVtZW50YXRpb24vYWxnb3JpdGhtcy9xdWVyaWVzL3VuZ3VhcmFudGVlZC9sb2FkX3BhcmV0b19kb2N1bWVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE1BQU07QUFDTixzREFBdUM7QUFJdkMsNERBQTZDO0FBTTdDLHNHQUF1RjtBQUV2RixtRkFBb0U7QUFJcEUsMEtBQWlLO0FBRWpLLCtHQUFtSDtBQUduSCwyREFBcUU7QUFFckUsbUZBQXVGO0FBaUJoRixNQUFNLEVBQUUsR0FBeUUsQ0FDcEYsRUFBRSxFQUNKLEVBQUU7SUFDQSxNQUFNLGFBQWEsR0FBRyxFQUFFLENBQUMsV0FBVyxDQUFDLENBQUE7SUFDckMsTUFBTSxXQUFXLEdBQUcsSUFBQSxzQ0FBc0IsRUFDdEMsSUFBQSx5QkFBa0IsRUFBQyxFQUFFLENBQUMsV0FBVyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQ3pDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEVBQ1IsR0FBRyxFQUFFLENBQUMsR0FBRyxDQUFDLGdCQUFnQixDQUFDLDhCQUE4QixDQUFDLENBQzdELEVBQ0Q7UUFDSSxXQUFXLEVBQUUsR0FBRztLQUNuQixDQUNKLEdBQUcsY0FBYyxDQUFBO0lBQ2xCLE9BQU8sS0FBSyxDQUFDLEtBQUssQ0FDZCxFQUFFLENBQUMsT0FBTyxFQUNWO1FBQ0ksVUFBVSxFQUFFLENBQUM7S0FDaEIsQ0FDSixDQUFDLFNBQVMsQ0FDUCxDQUFDLENBQUMsRUFBRSxFQUFFO1FBQ0Ysc0NBQXNDO1FBRXRDLE1BQU0sT0FBTyxHQUFHLENBQUMsQ0FBQyxPQUFPLENBQUE7UUFFekIsMkJBQTJCO1FBRTNCLE9BQU8sSUFBQSxjQUFXLEVBQUM7WUFDZixNQUFNLEVBQUUsV0FBVztZQUNuQix1QkFBdUIsRUFBRSxJQUFJO1NBQ2hDLENBQUMsQ0FBQyxjQUFjLENBQ2IsR0FBRyxFQUFFLENBQUMsQ0FBQyxnQkFBZ0IsRUFBRSxJQUFJLENBQVUsQ0FDMUMsQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFO1lBQ3RCLHVDQUF1QztZQUN2QyxPQUFPLEdBQUcsQ0FBQyxFQUFFLENBQ1QsSUFBQSxlQUFXLEVBQ1AsQ0FBQyxDQUNKLEVBQ0QsQ0FBQyxDQUFDLEVBQWlELEVBQUU7Z0JBQ2pELE9BQU8sQ0FBQyxDQUFDLFNBQVMsQ0FDZCxDQUFDLENBQUMsRUFBRSxFQUFFO29CQUNGLG9DQUFvQztvQkFFcEMsTUFBTSxJQUFJLEdBQUcsQ0FBQyxDQUFBO29CQUVkLE9BQU8sT0FBTyxDQUFDLEtBQUssQ0FBQyxZQUFZLENBQUMsZUFBZSxDQUFDLENBQUMscUJBQXFCLENBQUMsSUFBSSxDQUN6RSxPQUFPLEVBQ1A7d0JBQ0ksWUFBWSxFQUFFLElBQUksQ0FBQyxJQUFJO3FCQUMxQixDQUNKLENBQUMsQ0FBQTtnQkFDTixDQUFDLEVBQ0QsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUU7b0JBQ25CLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUM7d0JBQ1gsS0FBSyxhQUFhLENBQUMsQ0FBQyxPQUFPLEdBQUcsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUU7NEJBRXZDLE9BQU8sT0FBTyxDQUFDLEtBQUssQ0FBQyxZQUFZLENBQUMsaUJBQWlCLENBQUMsQ0FBQyxDQUFDLGNBQWMsRUFBRTtvQ0FDbEUsaUJBQWlCO29DQUNqQixlQUFlLEVBQUUsV0FBVztpQ0FDL0IsQ0FBQyxDQUFDLENBQUE7d0JBQ1AsQ0FBQyxDQUFDLENBQUE7d0JBQ0YsT0FBTyxDQUFDLENBQUMsT0FBTyxHQUFHLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFBO29CQUNoQyxDQUFDO2dCQUNMLENBQUMsQ0FBQyxDQUNMLENBQUE7WUFDTCxDQUFDLENBQ0osQ0FBQTtRQUNMLENBQUMsQ0FBQyxDQUFBO0lBR04sQ0FBQyxFQUNELENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLFlBQVksQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDLENBQUMsYUFBYSxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQzNFLENBQUE7QUFDTCxDQUFDLENBQUE7QUF4RVksUUFBQSxFQUFFLE1Bd0VkIn0=
@@ -1,5 +1,5 @@
1
1
  import * as _easync from 'exupery-core-async';
2
- import * as _out from "../../temp/temp_unmashall_result_types";
2
+ import * as _out from "../../../../temp/temp_unmashall_result_types";
3
3
  import { Error as Document_Error } from "./load_pareto_document";
4
4
  export type Error = ['no file', null] | ['document', Document_Error];
5
5
  export type Parameters = {
@@ -26,13 +26,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.$$ = void 0;
27
27
  //core
28
28
  const _ea = __importStar(require("exupery-core-alg"));
29
- const join_list_of_texts_with_separator_1 = require("pareto-standard-operations/dist/operations/impure/text/join_list_of_texts_with_separator");
30
- const read_file_1 = require("exupery-resources/dist/queries/unguaranteed/read_file");
29
+ const join_list_of_texts_with_separator_1 = require("pareto-standard-operations/dist/implementation/algorithms/operations/impure/text/join_list_of_texts_with_separator");
30
+ const read_file_1 = require("exupery-resources/dist/implementation/algorithms/queries/unguaranteed/read_file");
31
31
  const path_1 = require("../../operations/impure/tbd/path");
32
32
  const load_pareto_document_1 = require("./load_pareto_document");
33
33
  const $$ = ($p) => {
34
34
  const instance_path = $p['file path'];
35
- const schema_path = (0, join_list_of_texts_with_separator_1.$$)((0, path_1.get_directory_path)($p['file path']).transform(($) => $, () => _ea.panic("could not get directory path")), {
35
+ const schema_path = (0, join_list_of_texts_with_separator_1.$$)((0, path_1.get_directory_path)($p['file path']).transform(($) => $, () => _ea.deprecated_panic("could not get directory path")), {
36
36
  'separator': "/",
37
37
  }) + "/astn-schema";
38
38
  return (0, read_file_1.$$)({
@@ -45,4 +45,4 @@ const $$ = ($p) => {
45
45
  }).map_exception_(($) => ['document', $]));
46
46
  };
47
47
  exports.$$ = $$;
48
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZF9wYXJldG9fZmlsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9xdWVyaWVzL3VuZ3VhcmFudGVlZC9sb2FkX3BhcmV0b19maWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsTUFBTTtBQUNOLHNEQUF1QztBQVV2QyxnSkFBdUk7QUFFdkkscUZBQXlGO0FBRXpGLDJEQUFxRTtBQUlyRSxpRUFBNEY7QUFVckYsTUFBTSxFQUFFLEdBQXlFLENBQ3BGLEVBQUUsRUFDSixFQUFFO0lBQ0EsTUFBTSxhQUFhLEdBQUcsRUFBRSxDQUFDLFdBQVcsQ0FBQyxDQUFBO0lBQ3JDLE1BQU0sV0FBVyxHQUFHLElBQUEsc0NBQXNCLEVBQ3RDLElBQUEseUJBQWtCLEVBQUMsRUFBRSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUN6QyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxFQUNSLEdBQUcsRUFBRSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsOEJBQThCLENBQUMsQ0FDbEQsRUFDRDtRQUNJLFdBQVcsRUFBRSxHQUFHO0tBQ25CLENBQ0osR0FBRyxjQUFjLENBQUE7SUFDbEIsT0FBTyxJQUFBLGNBQVcsRUFBQztRQUNmLE1BQU0sRUFBRSxhQUFhO1FBQ3JCLHVCQUF1QixFQUFFLElBQUk7S0FDaEMsQ0FDQSxDQUFDLGNBQWMsQ0FBQyxDQUFDLENBQUMsRUFBUyxFQUFFLENBQUMsQ0FBQyxTQUFTLEVBQUUsSUFBSSxDQUFDLENBQUM7U0FDNUMsaUJBQWlCLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLElBQUEseUJBQW9CLEVBQUM7UUFDM0MsU0FBUyxFQUFFLENBQUM7UUFDWixXQUFXLEVBQUUsYUFBYTtLQUM3QixDQUFDLENBQUMsY0FBYyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLFVBQVUsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUE7QUFDbEQsQ0FBQyxDQUFBO0FBdEJZLFFBQUEsRUFBRSxNQXNCZCJ9
48
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZF9wYXJldG9fZmlsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9pbXBsZW1lbnRhdGlvbi9hbGdvcml0aG1zL3F1ZXJpZXMvdW5ndWFyYW50ZWVkL2xvYWRfcGFyZXRvX2ZpbGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxNQUFNO0FBQ04sc0RBQXVDO0FBVXZDLDBLQUFpSztBQUVqSywrR0FBbUg7QUFFbkgsMkRBQXFFO0FBSXJFLGlFQUE0RjtBQVlyRixNQUFNLEVBQUUsR0FBeUUsQ0FDcEYsRUFBRSxFQUNKLEVBQUU7SUFDQSxNQUFNLGFBQWEsR0FBRyxFQUFFLENBQUMsV0FBVyxDQUFDLENBQUE7SUFDckMsTUFBTSxXQUFXLEdBQUcsSUFBQSxzQ0FBc0IsRUFDdEMsSUFBQSx5QkFBa0IsRUFBQyxFQUFFLENBQUMsV0FBVyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQ3pDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEVBQ1IsR0FBRyxFQUFFLENBQUMsR0FBRyxDQUFDLGdCQUFnQixDQUFDLDhCQUE4QixDQUFDLENBQzdELEVBQ0Q7UUFDSSxXQUFXLEVBQUUsR0FBRztLQUNuQixDQUNKLEdBQUcsY0FBYyxDQUFBO0lBQ2xCLE9BQU8sSUFBQSxjQUFXLEVBQUM7UUFDZixNQUFNLEVBQUUsYUFBYTtRQUNyQix1QkFBdUIsRUFBRSxJQUFJO0tBQ2hDLENBQ0EsQ0FBQyxjQUFjLENBQUMsQ0FBQyxDQUFDLEVBQVMsRUFBRSxDQUFDLENBQUMsU0FBUyxFQUFFLElBQUksQ0FBQyxDQUFDO1NBQzVDLGlCQUFpQixDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxJQUFBLHlCQUFvQixFQUFDO1FBQzNDLFNBQVMsRUFBRSxDQUFDO1FBQ1osV0FBVyxFQUFFLGFBQWE7S0FDN0IsQ0FBQyxDQUFDLGNBQWMsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxVQUFVLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFBO0FBQ2xELENBQUMsQ0FBQTtBQXRCWSxRQUFBLEVBQUUsTUFzQmQifQ==
@@ -0,0 +1,4 @@
1
+ import * as _edata from 'exupery-core-data';
2
+ import * as _in from "../../../../interface/generated/pareto/schemas/module/data_types/source";
3
+ import * as _out from "exupery/dist/interface/generated/pareto/schemas/implementation/data_types/target";
4
+ export declare const Module: ($: _in.Module) => _out.Module_Set<_edata.Source_Location>;
@@ -41,4 +41,4 @@ const Module = ($) => {
41
41
  };
42
42
  };
43
43
  exports.Module = Module;
44
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXh1cGVyeV9pbXBsZW1lbnRhdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy90cmFuc2Zvcm1hdGlvbnMvbW9kdWxlL2V4dXBlcnlfaW1wbGVtZW50YXRpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSwwREFBMkM7QUFDM0Msc0RBQXVDO0FBT3ZDLHFHQUFzRjtBQUUvRSxNQUFNLE1BQU0sR0FBRyxDQUFDLENBQWEsRUFBMkMsRUFBRTtJQUM3RSxPQUFPO1FBQ0gsVUFBVSxFQUFFLE1BQU0sQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDLENBQUM7UUFDdkMsWUFBWSxFQUFFLEdBQUcsQ0FBQyxrQkFBa0IsQ0FBNEM7WUFDNUUsU0FBUyxFQUFFLDZCQUE2QixDQUFDLFdBQVcsQ0FDaEQsQ0FBQyxDQUFDLGFBQWEsQ0FBQyxFQUNoQjtnQkFDSSxNQUFNLEVBQUUsR0FBRyxDQUFDLGFBQWEsQ0FBQyxFQUFFLENBQUM7YUFDaEMsQ0FDSjtTQUNKLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUM7WUFDWCxVQUFVLEVBQUUsTUFBTSxDQUFDLGlCQUFpQixDQUFDLENBQUMsQ0FBQztZQUN2QyxPQUFPLEVBQUUsQ0FBQztTQUNiLENBQUMsQ0FBQztLQUNOLENBQUE7QUFDTCxDQUFDLENBQUE7QUFmWSxRQUFBLE1BQU0sVUFlbEIifQ==
44
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXh1cGVyeV9pbXBsZW1lbnRhdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9pbXBsZW1lbnRhdGlvbi9hbGdvcml0aG1zL3RyYW5zZm9ybWF0aW9ucy9tb2R1bGUvZXh1cGVyeV9pbXBsZW1lbnRhdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLDBEQUEyQztBQUMzQyxzREFBdUM7QUFPdkMscUdBQXNGO0FBSS9FLE1BQU0sTUFBTSxHQUFHLENBQUMsQ0FBYSxFQUEyQyxFQUFFO0lBQzdFLE9BQU87UUFDSCxVQUFVLEVBQUUsTUFBTSxDQUFDLGlCQUFpQixDQUFDLENBQUMsQ0FBQztRQUN2QyxZQUFZLEVBQUUsR0FBRyxDQUFDLGtCQUFrQixDQUE0QztZQUM1RSxTQUFTLEVBQUUsNkJBQTZCLENBQUMsV0FBVyxDQUNoRCxDQUFDLENBQUMsYUFBYSxDQUFDLEVBQ2hCO2dCQUNJLE1BQU0sRUFBRSxHQUFHLENBQUMsYUFBYSxDQUFDLEVBQUUsQ0FBQzthQUNoQyxDQUNKO1NBQ0osQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQztZQUNYLFVBQVUsRUFBRSxNQUFNLENBQUMsaUJBQWlCLENBQUMsQ0FBQyxDQUFDO1lBQ3ZDLE9BQU8sRUFBRSxDQUFDO1NBQ2IsQ0FBQyxDQUFDO0tBQ04sQ0FBQTtBQUNMLENBQUMsQ0FBQTtBQWZZLFFBQUEsTUFBTSxVQWVsQiJ9
@@ -0,0 +1,5 @@
1
+ import * as _ed from 'exupery-core-data';
2
+ import * as _in from "../../../../interface/generated/pareto/schemas/module/data_types/source";
3
+ import * as _out from "exupery/dist/interface/generated/pareto/schemas/interface/data_types/target";
4
+ export declare const Operations: ($: _in.Operations) => _out.Type<_ed.Source_Location>;
5
+ export declare const Module: ($: _in.Module) => _out.Module_Set<_ed.Source_Location>;