@nfdi4plants/arctrl 3.0.0-beta.5 → 3.0.0-beta.6

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 (306) hide show
  1. package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +894 -4
  2. package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +121 -3
  3. package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +279 -1
  4. package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +101 -2
  5. package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +187 -0
  6. package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +156 -2
  7. package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +183 -7
  8. package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +217 -5
  9. package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +154 -5
  10. package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +20 -1
  11. package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +30 -0
  12. package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +68 -1
  13. package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +6 -1
  14. package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +98 -1
  15. package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +18 -1
  16. package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +601 -5
  17. package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +10 -1
  18. package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +760 -16
  19. package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +26 -1
  20. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +18 -8
  21. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +36 -4
  22. package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +35 -1
  23. package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +26 -1
  24. package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +355 -1
  25. package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +21 -2
  26. package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +133 -1
  27. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +543 -8
  28. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +53 -4
  29. package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +673 -41
  30. package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +197 -4
  31. package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +128 -3
  32. package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +8 -0
  33. package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +180 -0
  34. package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +20 -2
  35. package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +406 -2
  36. package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +2 -2
  37. package/dist/ts/ts/ARC.d.ts +12 -5
  38. package/dist/ts/ts/ARC.d.ts.map +1 -1
  39. package/dist/ts/ts/ARC.js +172 -93
  40. package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
  41. package/dist/ts/ts/Contract/ARC.js +8 -1
  42. package/dist/ts/ts/Contract/ArcAssay.js +14 -5
  43. package/dist/ts/ts/Contract/ArcInvestigation.js +10 -1
  44. package/dist/ts/ts/Contract/ArcRun.js +19 -6
  45. package/dist/ts/ts/Contract/ArcStudy.js +19 -6
  46. package/dist/ts/ts/Contract/ArcWorkflow.js +19 -6
  47. package/dist/ts/ts/Contract/Contract.js +42 -1
  48. package/dist/ts/ts/Contract/Datamap.js +61 -17
  49. package/dist/ts/ts/Contract/Git.d.ts.map +1 -1
  50. package/dist/ts/ts/Contract/Git.js +22 -6
  51. package/dist/ts/ts/Contract/License.d.ts +5 -0
  52. package/dist/ts/ts/Contract/License.d.ts.map +1 -0
  53. package/dist/ts/ts/Contract/License.js +34 -0
  54. package/dist/ts/ts/Contract/ValidationPackagesConfig.js +31 -6
  55. package/dist/ts/ts/ContractIO/ContractIO.js +5 -5
  56. package/dist/ts/ts/ContractIO/FileSystemHelper.js +16 -4
  57. package/dist/ts/ts/Conversion.js +321 -48
  58. package/dist/ts/ts/Core/ArcTypes.js +216 -15
  59. package/dist/ts/ts/Core/Comment.js +11 -1
  60. package/dist/ts/ts/Core/CommentList.js +77 -2
  61. package/dist/ts/ts/Core/Conversion.js +123 -43
  62. package/dist/ts/ts/Core/Data.js +9 -2
  63. package/dist/ts/ts/Core/DataContext.js +19 -4
  64. package/dist/ts/ts/Core/DataFile.js +38 -1
  65. package/dist/ts/ts/Core/DataMap.js +111 -5
  66. package/dist/ts/ts/Core/Helper/Collections.js +106 -5
  67. package/dist/ts/ts/Core/Helper/HashCodes.js +4 -4
  68. package/dist/ts/ts/Core/Helper/Identifier.js +100 -2
  69. package/dist/ts/ts/Core/Helper/Regex.js +134 -2
  70. package/dist/ts/ts/Core/Helper/SemVer.js +23 -2
  71. package/dist/ts/ts/Core/IdentifierSetters.js +27 -3
  72. package/dist/ts/ts/Core/OntologyAnnotation.js +4 -1
  73. package/dist/ts/ts/Core/OntologySourceReference.js +8 -1
  74. package/dist/ts/ts/Core/Person.js +8 -1
  75. package/dist/ts/ts/Core/Process/ColumnIndex.js +121 -4
  76. package/dist/ts/ts/Core/Process/Component.js +37 -4
  77. package/dist/ts/ts/Core/Process/Factor.js +9 -4
  78. package/dist/ts/ts/Core/Process/FactorValue.js +61 -4
  79. package/dist/ts/ts/Core/Process/Material.js +14 -4
  80. package/dist/ts/ts/Core/Process/MaterialAttribute.js +41 -3
  81. package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +67 -4
  82. package/dist/ts/ts/Core/Process/MaterialType.js +15 -1
  83. package/dist/ts/ts/Core/Process/Process.js +150 -7
  84. package/dist/ts/ts/Core/Process/ProcessInput.js +48 -8
  85. package/dist/ts/ts/Core/Process/ProcessOutput.js +44 -7
  86. package/dist/ts/ts/Core/Process/ProcessParameterValue.js +10 -5
  87. package/dist/ts/ts/Core/Process/ProcessSequence.js +127 -6
  88. package/dist/ts/ts/Core/Process/Protocol.js +78 -4
  89. package/dist/ts/ts/Core/Process/ProtocolParameter.js +6 -2
  90. package/dist/ts/ts/Core/Process/Sample.js +21 -3
  91. package/dist/ts/ts/Core/Process/Source.js +13 -3
  92. package/dist/ts/ts/Core/Publication.js +8 -1
  93. package/dist/ts/ts/Core/Table/ArcTable.js +34 -25
  94. package/dist/ts/ts/Core/Table/ArcTableAux.js +150 -23
  95. package/dist/ts/ts/Core/Table/ArcTables.js +24 -15
  96. package/dist/ts/ts/Core/Table/CompositeCell.js +7 -3
  97. package/dist/ts/ts/Core/Table/CompositeColumn.js +8 -4
  98. package/dist/ts/ts/Core/Table/CompositeHeader.js +18 -15
  99. package/dist/ts/ts/Core/Template.js +12 -2
  100. package/dist/ts/ts/Core/Templates.js +8 -4
  101. package/dist/ts/ts/Core/Value.js +7 -3
  102. package/dist/ts/ts/CrossAsync.js +11 -1
  103. package/dist/ts/ts/FileSystem/Commit.js +18 -0
  104. package/dist/ts/ts/FileSystem/FileSystem.js +8 -3
  105. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +1 -0
  106. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
  107. package/dist/ts/ts/FileSystem/FileSystemTree.js +20 -13
  108. package/dist/ts/ts/FileSystem/Path.d.ts +2 -0
  109. package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
  110. package/dist/ts/ts/FileSystem/Path.js +17 -3
  111. package/dist/ts/ts/Json/Assay.js +26 -26
  112. package/dist/ts/ts/Json/Comment.js +10 -10
  113. package/dist/ts/ts/Json/Data.js +6 -6
  114. package/dist/ts/ts/Json/DataMap/DataContext.js +4 -4
  115. package/dist/ts/ts/Json/DataMap/DataMap.js +2 -2
  116. package/dist/ts/ts/Json/Decode.js +14 -9
  117. package/dist/ts/ts/Json/Encode.js +43 -11
  118. package/dist/ts/ts/Json/Investigation.js +40 -22
  119. package/dist/ts/ts/Json/OntologyAnnotation.js +5 -5
  120. package/dist/ts/ts/Json/OntologySourceReference.js +2 -2
  121. package/dist/ts/ts/Json/Person.js +26 -26
  122. package/dist/ts/ts/Json/Process/Component.js +9 -6
  123. package/dist/ts/ts/Json/Process/Factor.js +3 -3
  124. package/dist/ts/ts/Json/Process/FactorValue.js +8 -8
  125. package/dist/ts/ts/Json/Process/Material.js +9 -9
  126. package/dist/ts/ts/Json/Process/MaterialAttribute.js +1 -1
  127. package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +8 -8
  128. package/dist/ts/ts/Json/Process/Process.js +12 -12
  129. package/dist/ts/ts/Json/Process/ProcessInput.js +4 -4
  130. package/dist/ts/ts/Json/Process/ProcessOutput.js +3 -3
  131. package/dist/ts/ts/Json/Process/ProcessParameterValue.js +10 -7
  132. package/dist/ts/ts/Json/Process/Protocol.js +12 -12
  133. package/dist/ts/ts/Json/Process/ProtocolParameter.js +3 -3
  134. package/dist/ts/ts/Json/Process/Sample.js +14 -14
  135. package/dist/ts/ts/Json/Process/Source.js +9 -9
  136. package/dist/ts/ts/Json/Process/Value.js +1 -1
  137. package/dist/ts/ts/Json/PropertyValue.js +1 -1
  138. package/dist/ts/ts/Json/Publication.js +6 -6
  139. package/dist/ts/ts/Json/ROCrate/LDContext.js +1 -0
  140. package/dist/ts/ts/Json/ROCrate/LDGraph.js +3 -3
  141. package/dist/ts/ts/Json/ROCrate/LDNode.js +19 -19
  142. package/dist/ts/ts/Json/Run.js +7 -7
  143. package/dist/ts/ts/Json/StringTable.js +1 -1
  144. package/dist/ts/ts/Json/Study.js +32 -32
  145. package/dist/ts/ts/Json/Table/ArcTable.js +29 -29
  146. package/dist/ts/ts/Json/Table/CellTable.js +6 -6
  147. package/dist/ts/ts/Json/Table/CompositeCell.js +4 -4
  148. package/dist/ts/ts/Json/Table/CompositeHeader.js +2 -2
  149. package/dist/ts/ts/Json/Table/IOType.js +1 -1
  150. package/dist/ts/ts/Json/Table/OATable.js +7 -7
  151. package/dist/ts/ts/Json/Table/Templates.js +92 -6
  152. package/dist/ts/ts/Json/Workflow.js +11 -11
  153. package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +27 -1
  154. package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +17 -1
  155. package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +19 -1
  156. package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +27 -1
  157. package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +20 -1
  158. package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +18 -1
  159. package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +20 -1
  160. package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +16 -1
  161. package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +25 -1
  162. package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +24 -1
  163. package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +23 -1
  164. package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +20 -1
  165. package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +19 -1
  166. package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +19 -1
  167. package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +35 -1
  168. package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +61 -0
  169. package/dist/ts/ts/Json.d.ts +13 -1
  170. package/dist/ts/ts/Json.d.ts.map +1 -1
  171. package/dist/ts/ts/Json.js +89 -2
  172. package/dist/ts/ts/JsonIO/Assay.js +15 -3
  173. package/dist/ts/ts/JsonIO/Investigation.js +15 -3
  174. package/dist/ts/ts/JsonIO/LDObject.js +17 -3
  175. package/dist/ts/ts/JsonIO/OntologyAnnotation.js +12 -2
  176. package/dist/ts/ts/JsonIO/Person.d.ts +16 -0
  177. package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -0
  178. package/dist/ts/ts/JsonIO/Person.js +67 -0
  179. package/dist/ts/ts/JsonIO/Run.js +9 -3
  180. package/dist/ts/ts/JsonIO/Study.js +15 -3
  181. package/dist/ts/ts/JsonIO/Table/Compression.js +3 -3
  182. package/dist/ts/ts/JsonIO/Table/Templates.js +60 -5
  183. package/dist/ts/ts/JsonIO/Workflow.js +9 -3
  184. package/dist/ts/ts/License.d.ts +39 -0
  185. package/dist/ts/ts/License.d.ts.map +1 -0
  186. package/dist/ts/ts/License.js +123 -0
  187. package/dist/ts/ts/ROCrate/Generic/Comment.js +5 -1
  188. package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts +69 -0
  189. package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts.map +1 -0
  190. package/dist/ts/ts/ROCrate/Generic/CreativeWork.js +450 -0
  191. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts +1 -0
  192. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +1 -1
  193. package/dist/ts/ts/ROCrate/Generic/Dataset.js +27 -1
  194. package/dist/ts/ts/ROCrate/Generic/DefinedTerm.js +5 -1
  195. package/dist/ts/ts/ROCrate/Generic/File.js +5 -1
  196. package/dist/ts/ts/ROCrate/Generic/LabProcess.js +5 -1
  197. package/dist/ts/ts/ROCrate/Generic/LabProtocol.js +5 -1
  198. package/dist/ts/ts/ROCrate/Generic/Organization.js +5 -1
  199. package/dist/ts/ts/ROCrate/Generic/Person.js +7 -2
  200. package/dist/ts/ts/ROCrate/Generic/PostalAddress.js +5 -1
  201. package/dist/ts/ts/ROCrate/Generic/PropertyValue.js +19 -15
  202. package/dist/ts/ts/ROCrate/Generic/Sample.js +5 -1
  203. package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.js +5 -1
  204. package/dist/ts/ts/ROCrate/LDContext.js +15 -6
  205. package/dist/ts/ts/ROCrate/LDObject.js +53 -17
  206. package/dist/ts/ts/ROCrateIO.d.ts +9 -3
  207. package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
  208. package/dist/ts/ts/ROCrateIO.js +67 -14
  209. package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +18 -15
  210. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +5 -4
  211. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +40 -17
  212. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +4 -4
  213. package/dist/ts/ts/Spreadsheet/ArcAssay.js +30 -15
  214. package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +32 -18
  215. package/dist/ts/ts/Spreadsheet/ArcRun.js +23 -8
  216. package/dist/ts/ts/Spreadsheet/ArcStudy.js +22 -7
  217. package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +23 -8
  218. package/dist/ts/ts/Spreadsheet/CollectionAux.js +75 -5
  219. package/dist/ts/ts/Spreadsheet/DataMap.js +1 -1
  220. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.js +4 -4
  221. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.js +8 -8
  222. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.js +4 -4
  223. package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +6 -6
  224. package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +1 -1
  225. package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +2 -2
  226. package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +6 -3
  227. package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +9 -3
  228. package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +6 -4
  229. package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +7 -5
  230. package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +1 -1
  231. package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +10 -8
  232. package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +5 -5
  233. package/dist/ts/ts/Spreadsheet/Metadata/Run.js +6 -6
  234. package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +246 -10
  235. package/dist/ts/ts/Spreadsheet/Metadata/Study.js +19 -13
  236. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +5 -5
  237. package/dist/ts/ts/Template.Web.js +5 -1
  238. package/dist/ts/ts/ValidationPackages/ValidationPackage.js +8 -1
  239. package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +10 -3
  240. package/dist/ts/ts/WebRequest/WebRequest.Node.js +1 -0
  241. package/dist/ts/ts/Xlsx.js +41 -1
  242. package/dist/ts/ts/Yaml/ValidationPackage.js +18 -2
  243. package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +5 -2
  244. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +27 -4
  245. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +14 -3
  246. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +30 -4
  247. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +5 -1
  248. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +65 -2
  249. package/dist/ts/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +257 -1
  250. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +71 -1
  251. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +11 -1
  252. package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +188 -11
  253. package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +80 -2
  254. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCell.fs.js +63 -4
  255. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCellsCollection.fs.js +17 -7
  256. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/CellBuilder.fs.js +198 -0
  257. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Expression.fs.js +46 -0
  258. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/RowBuilder.fs.js +131 -0
  259. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Types.fs.js +307 -0
  260. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js +38 -2
  261. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsColumn.fs.js +11 -4
  262. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsRow.fs.js +12 -5
  263. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorkbook.fs.js +9 -2
  264. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorksheet.fs.js +14 -7
  265. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/HashCodes.fs.js +31 -1
  266. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Cell.fs.js +65 -0
  267. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Column.fs.js +38 -0
  268. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Row.fs.js +38 -0
  269. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Table.fs.js +34 -0
  270. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Value.fs.js +49 -3
  271. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Workbook.fs.js +44 -0
  272. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Worksheet.fs.js +129 -0
  273. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRange.fs.js +9 -2
  274. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeAddress.fs.js +82 -3
  275. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeBase.fs.js +12 -3
  276. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeColumn.fs.js +17 -2
  277. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeRow.fs.js +9 -2
  278. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTable.fs.js +12 -5
  279. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTableField.fs.js +12 -3
  280. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +2 -2
  281. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/FsExtensions.fs.js +42 -3
  282. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Json.fs.js +53 -0
  283. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Table.fs.js +9 -9
  284. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Workbook.fs.js +1 -1
  285. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Worksheet.fs.js +2 -2
  286. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Xlsx.fs.js +5 -1
  287. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Decode.fs.js +730 -23
  288. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Encode.fs.js +192 -7
  289. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Types.fs.js +45 -1
  290. package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js +15 -2
  291. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +1383 -15
  292. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +45 -4
  293. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +10 -0
  294. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +5 -5
  295. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +16 -6
  296. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +26 -23
  297. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +1 -1
  298. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +8 -8
  299. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +18 -2
  300. package/package.json +1 -1
  301. package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts +0 -2
  302. package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts.map +0 -1
  303. package/dist/ts/ts/FileSystem/DefaultGitattributes.js +0 -3
  304. package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts +0 -2
  305. package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts.map +0 -1
  306. package/dist/ts/ts/FileSystem/DefaultGitignore.js +0 -3
@@ -1,20 +1,40 @@
1
- import { iterate, indexed, choose, tryPick, map, tryItem, isEmpty, maxBy, length, delay, append as append$1 } from '../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
- import { value, map as map$1, defaultArg } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
3
- import { equals, comparePrimitives } from '../../../node_modules/@fable-org/fable-library-js/Util.js';
4
- import { Record } from '../../../node_modules/@fable-org/fable-library-js/Types.js';
5
- import { FsAddress } from '../../fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js';
6
- import { exists, find, cons, empty, append, singleton, map as map$2, initialize } from '../../../node_modules/@fable-org/fable-library-js/List.js';
7
- import { toFail, printf } from '../../../node_modules/@fable-org/fable-library-js/String.js';
1
+ import { indexed, map, choose, initialize, maxBy, tryPick, fold, iterate, isEmpty, length, tryItem, delay, append as append$1 } from '../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
+ import { map as map$1, value, defaultArg } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
3
+ import { ofSeq, tryFind } from '../../../node_modules/@fable-org/fable-library-js/Map.js';
4
+ import { comparePrimitives, equals } from '../../../node_modules/@fable-org/fable-library-js/Util.js';
5
+ import { DataType_String } from '../../fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCell.fs.js';
6
+ import { RowBuilder_$ctor, RowBuilder__Combine_19F30600, RowBuilder_get_Empty } from '../../fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/RowBuilder.fs.js';
7
+ import { SheetEntity$1_some_2B595, Messages_format, RowElement_UnindexedCell, RowElement_IndexedCell, ColumnIndex } from '../../fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Types.fs.js';
8
+ import { singleton, empty, append, exists, find, cons, initialize as initialize$1, map as map$2 } from '../../../node_modules/@fable-org/fable-library-js/List.js';
9
+ import { CellBuilder__AsCellElement_6F87C2ED, CellBuilder_$ctor } from '../../fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/CellBuilder.fs.js';
8
10
  import { FsRangeAddress } from '../../fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeAddress.fs.js';
9
- import { Seq_trySkip, Dictionary_tryGetValue } from '../CollectionAux.js';
11
+ import { FsAddress } from '../../fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js';
12
+ import { Record } from '../../../node_modules/@fable-org/fable-library-js/Types.js';
13
+ import { record_type, class_type, list_type, int32_type, tuple_type, string_type } from '../../../node_modules/@fable-org/fable-library-js/Reflection.js';
14
+ import { Dictionary_tryGetValue, Seq_trySkip } from '../CollectionAux.js';
10
15
  import { getItemFromDict, addToDict } from '../../../node_modules/@fable-org/fable-library-js/MapUtil.js';
11
16
  import { Dictionary_init } from '../../Core/Helper/Collections.js';
17
+ import { toFail, printf } from '../../../node_modules/@fable-org/fable-library-js/String.js';
12
18
  import { Remark, Comment$ } from '../../Core/Comment.js';
13
19
  import { Comment_$007CComment$007C_$007C, Remark_$007CRemark$007C_$007C, Comment_wrapCommentKey } from './Comment.js';
14
20
 
15
21
  function SparseRowModule_fromValues(v) {
16
22
  return indexed(v);
17
23
  }
24
+ function SparseRowModule_getValues(i) {
25
+ return map((tuple) => tuple[1], i);
26
+ }
27
+ function SparseRowModule_fromAllValues(v) {
28
+ return choose((tupledArg) => map$1((v_1) => [tupledArg[0], v_1], tupledArg[1]), indexed(v));
29
+ }
30
+ function SparseRowModule_getAllValues(i) {
31
+ const m = ofSeq(i, {
32
+ Compare: comparePrimitives
33
+ });
34
+ return initialize(maxBy((tuple) => tuple[0], i, {
35
+ Compare: comparePrimitives
36
+ })[0] + 1, (i_1) => tryFind(i_1, m));
37
+ }
18
38
  function SparseRowModule_fromFsRow(r) {
19
39
  return choose((c) => {
20
40
  if (equals(c.Value, "")) {
@@ -33,6 +53,219 @@ function SparseRowModule_tryGetValueAt(i, vs) {
33
53
  }
34
54
  }, vs);
35
55
  }
56
+ function SparseRowModule_toDSLRow(vs) {
57
+ const builder$0040 = RowBuilder_$ctor();
58
+ let this$_9;
59
+ const ns = map((_arg) => {
60
+ const v = _arg;
61
+ if (v == null) {
62
+ let c_1;
63
+ const this$_5 = CellBuilder__AsCellElement_6F87C2ED(CellBuilder_$ctor(), SheetEntity$1_some_2B595(singleton([DataType_String(), ""])));
64
+ let matchResult, errs_1, f_1, ms_2_1;
65
+ switch (this$_5.tag) {
66
+ case /* NoneOptional */
67
+ 1: {
68
+ if (equals(this$_5.fields[0], empty())) {
69
+ matchResult = 1;
70
+ ms_2_1 = this$_5.fields[0];
71
+ } else {
72
+ matchResult = 2;
73
+ }
74
+ break;
75
+ }
76
+ case /* NoneRequired */
77
+ 2: {
78
+ if (equals(this$_5.fields[0], empty())) {
79
+ matchResult = 1;
80
+ ms_2_1 = this$_5.fields[0];
81
+ } else {
82
+ matchResult = 2;
83
+ }
84
+ break;
85
+ }
86
+ default: {
87
+ matchResult = 0;
88
+ errs_1 = this$_5.fields[1];
89
+ f_1 = this$_5.fields[0];
90
+ }
91
+ }
92
+ switch (matchResult) {
93
+ case 0: {
94
+ c_1 = f_1;
95
+ break;
96
+ }
97
+ case 1: {
98
+ throw new Error("SheetEntity does not contain Value.");
99
+ break;
100
+ }
101
+ default: {
102
+ let matchResult_1, ms_3_1;
103
+ switch (this$_5.tag) {
104
+ case /* NoneOptional */
105
+ 1: {
106
+ matchResult_1 = 0;
107
+ ms_3_1 = this$_5.fields[0];
108
+ break;
109
+ }
110
+ case /* NoneRequired */
111
+ 2: {
112
+ matchResult_1 = 0;
113
+ ms_3_1 = this$_5.fields[0];
114
+ break;
115
+ }
116
+ default:
117
+ matchResult_1 = 1;
118
+ }
119
+ switch (matchResult_1) {
120
+ case 0: {
121
+ throw new Error(`SheetEntity does not contain Value:
122
+ ${Messages_format(ms_3_1)}`);
123
+ break;
124
+ }
125
+ default:
126
+ throw new Error("Match failure: FsSpreadsheet.DSL.SheetEntity`1");
127
+ }
128
+ }
129
+ }
130
+ return SheetEntity$1_some_2B595(singleton(c_1[1] == null ? RowElement_UnindexedCell(c_1[0]) : RowElement_IndexedCell(new ColumnIndex(value(c_1[1])), c_1[0])));
131
+ } else {
132
+ const v_1 = value(v);
133
+ let c;
134
+ const this$_2 = CellBuilder__AsCellElement_6F87C2ED(CellBuilder_$ctor(), SheetEntity$1_some_2B595(singleton([DataType_String(), v_1])));
135
+ let matchResult_2, errs, f, ms_2;
136
+ switch (this$_2.tag) {
137
+ case /* NoneOptional */
138
+ 1: {
139
+ if (equals(this$_2.fields[0], empty())) {
140
+ matchResult_2 = 1;
141
+ ms_2 = this$_2.fields[0];
142
+ } else {
143
+ matchResult_2 = 2;
144
+ }
145
+ break;
146
+ }
147
+ case /* NoneRequired */
148
+ 2: {
149
+ if (equals(this$_2.fields[0], empty())) {
150
+ matchResult_2 = 1;
151
+ ms_2 = this$_2.fields[0];
152
+ } else {
153
+ matchResult_2 = 2;
154
+ }
155
+ break;
156
+ }
157
+ default: {
158
+ matchResult_2 = 0;
159
+ errs = this$_2.fields[1];
160
+ f = this$_2.fields[0];
161
+ }
162
+ }
163
+ switch (matchResult_2) {
164
+ case 0: {
165
+ c = f;
166
+ break;
167
+ }
168
+ case 1: {
169
+ throw new Error("SheetEntity does not contain Value.");
170
+ break;
171
+ }
172
+ default: {
173
+ let matchResult_3, ms_3;
174
+ switch (this$_2.tag) {
175
+ case /* NoneOptional */
176
+ 1: {
177
+ matchResult_3 = 0;
178
+ ms_3 = this$_2.fields[0];
179
+ break;
180
+ }
181
+ case /* NoneRequired */
182
+ 2: {
183
+ matchResult_3 = 0;
184
+ ms_3 = this$_2.fields[0];
185
+ break;
186
+ }
187
+ default:
188
+ matchResult_3 = 1;
189
+ }
190
+ switch (matchResult_3) {
191
+ case 0: {
192
+ throw new Error(`SheetEntity does not contain Value:
193
+ ${Messages_format(ms_3)}`);
194
+ break;
195
+ }
196
+ default:
197
+ throw new Error("Match failure: FsSpreadsheet.DSL.SheetEntity`1");
198
+ }
199
+ }
200
+ }
201
+ return SheetEntity$1_some_2B595(singleton(c[1] == null ? RowElement_UnindexedCell(c[0]) : RowElement_IndexedCell(new ColumnIndex(value(c[1])), c[0])));
202
+ }
203
+ }, SparseRowModule_getAllValues(vs));
204
+ this$_9 = fold((state, we) => RowBuilder__Combine_19F30600(builder$0040, state, we), RowBuilder_get_Empty(), ns);
205
+ let matchResult_4, errs_2, f_3, ms_2_2;
206
+ switch (this$_9.tag) {
207
+ case /* NoneOptional */
208
+ 1: {
209
+ if (equals(this$_9.fields[0], empty())) {
210
+ matchResult_4 = 1;
211
+ ms_2_2 = this$_9.fields[0];
212
+ } else {
213
+ matchResult_4 = 2;
214
+ }
215
+ break;
216
+ }
217
+ case /* NoneRequired */
218
+ 2: {
219
+ if (equals(this$_9.fields[0], empty())) {
220
+ matchResult_4 = 1;
221
+ ms_2_2 = this$_9.fields[0];
222
+ } else {
223
+ matchResult_4 = 2;
224
+ }
225
+ break;
226
+ }
227
+ default: {
228
+ matchResult_4 = 0;
229
+ errs_2 = this$_9.fields[1];
230
+ f_3 = this$_9.fields[0];
231
+ }
232
+ }
233
+ switch (matchResult_4) {
234
+ case 0:
235
+ return f_3;
236
+ case 1:
237
+ throw new Error("SheetEntity does not contain Value.");
238
+ default: {
239
+ let matchResult_5, ms_3_2;
240
+ switch (this$_9.tag) {
241
+ case /* NoneOptional */
242
+ 1: {
243
+ matchResult_5 = 0;
244
+ ms_3_2 = this$_9.fields[0];
245
+ break;
246
+ }
247
+ case /* NoneRequired */
248
+ 2: {
249
+ matchResult_5 = 0;
250
+ ms_3_2 = this$_9.fields[0];
251
+ break;
252
+ }
253
+ default:
254
+ matchResult_5 = 1;
255
+ }
256
+ switch (matchResult_5) {
257
+ case 0:
258
+ throw new Error(`SheetEntity does not contain Value:
259
+ ${Messages_format(ms_3_2)}`);
260
+ default:
261
+ throw new Error("Match failure: FsSpreadsheet.DSL.SheetEntity`1");
262
+ }
263
+ }
264
+ }
265
+ }
266
+ function SparseRowModule_readFromSheet(sheet) {
267
+ return map(SparseRowModule_fromFsRow, sheet.Rows);
268
+ }
36
269
  function SparseRowModule_writeToSheet(rowI, row, sheet) {
37
270
  const fsRow = sheet.RowWithRange(new FsRangeAddress(new FsAddress(rowI, 1), new FsAddress(rowI, 1)), true);
38
271
  iterate((tupledArg) => {
@@ -51,6 +284,9 @@ class SparseTable extends Record {
51
284
  this.ColumnCount = ColumnCount | 0;
52
285
  }
53
286
  }
287
+ function SparseTable_$reflection() {
288
+ return record_type("ARCtrl.Spreadsheet.SparseTable", [], SparseTable, () => [["Matrix", class_type("System.Collections.Generic.Dictionary`2", [tuple_type(string_type, int32_type), string_type])], ["Keys", list_type(string_type)], ["CommentKeys", list_type(string_type)], ["ColumnCount", int32_type]]);
289
+ }
54
290
  function SparseTable__TryGetValue_11FD62A8(this$, key) {
55
291
  return Dictionary_tryGetValue(key, this$.Matrix);
56
292
  }
@@ -183,11 +419,11 @@ function SparseTable_FromRows_Z5579EC29(en, labels, lineNumber, prefix) {
183
419
  }
184
420
  function SparseTable_ToRows_759CAFC1(matrix, prefix) {
185
421
  const prefix_1 = prefix == null ? "" : value(prefix) + " ";
186
- return delay(() => append$1(map((key) => SparseRowModule_fromValues(cons(prefix_1 + key, initialize(matrix.ColumnCount - 1, (i) => SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [key, i + 1])))), matrix.Keys), delay(() => map((key_1) => SparseRowModule_fromValues(cons(Comment_wrapCommentKey(key_1), initialize(matrix.ColumnCount - 1, (i_1) => SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [key_1, i_1 + 1])))), matrix.CommentKeys))));
422
+ return delay(() => append$1(map((key) => SparseRowModule_fromValues(cons(prefix_1 + key, initialize$1(matrix.ColumnCount - 1, (i) => SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [key, i + 1])))), matrix.Keys), delay(() => map((key_1) => SparseRowModule_fromValues(cons(Comment_wrapCommentKey(key_1), initialize$1(matrix.ColumnCount - 1, (i_1) => SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [key_1, i_1 + 1])))), matrix.CommentKeys))));
187
423
  }
188
424
  function SparseTable_GetEmptyComments_3ECCA699(matrix) {
189
425
  const collection = map$2((key) => Comment$.create(key), matrix.CommentKeys);
190
426
  return Array.from(collection);
191
427
  }
192
428
 
193
- export { SparseRowModule_fromFsRow, SparseRowModule_fromValues, SparseRowModule_tryGetValueAt, SparseRowModule_writeToSheet, SparseTable, SparseTable_AddComment, SparseTable_AddEmptyComment, SparseTable_AddRow, SparseTable_Create_Z2192E64B, SparseTable_FromRows_Z5579EC29, SparseTable_GetEmptyComments_3ECCA699, SparseTable_ToRows_759CAFC1, SparseTable__TryGetValueDefault_5BAE6133, SparseTable__TryGetValue_11FD62A8 };
429
+ export { SparseRowModule_fromAllValues, SparseRowModule_fromFsRow, SparseRowModule_fromValues, SparseRowModule_getAllValues, SparseRowModule_getValues, SparseRowModule_readFromSheet, SparseRowModule_toDSLRow, SparseRowModule_tryGetValueAt, SparseRowModule_writeToSheet, SparseTable, SparseTable_$reflection, SparseTable_AddComment, SparseTable_AddEmptyComment, SparseTable_AddRow, SparseTable_Create_Z2192E64B, SparseTable_FromRows_Z5579EC29, SparseTable_GetEmptyComments_3ECCA699, SparseTable_ToRows_759CAFC1, SparseTable__TryGetValueDefault_5BAE6133, SparseTable__TryGetValue_11FD62A8 };
@@ -1,13 +1,14 @@
1
1
  import { Record } from '../../../node_modules/@fable-org/fable-library-js/Types.js';
2
- import { ofSeq, empty, append, ofArray, map, cons, reverse } from '../../../node_modules/@fable-org/fable-library-js/List.js';
3
- import { defaultArg, value } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
2
+ import { ofArray, map, empty, cons, reverse, append, ofSeq } from '../../../node_modules/@fable-org/fable-library-js/List.js';
3
+ import { Comment$_$reflection } from '../../Core/Comment.js';
4
4
  import { stringHash } from '../../../node_modules/@fable-org/fable-library-js/Util.js';
5
- import { collect, delay, append as append$1, singleton } from '../../../node_modules/@fable-org/fable-library-js/Seq.js';
5
+ import { record_type, string_type, list_type } from '../../../node_modules/@fable-org/fable-library-js/Reflection.js';
6
6
  import { Comment_fromString, Comment_toString } from './Comment.js';
7
- import { SparseTable_FromRows_Z5579EC29, SparseTable__TryGetValueDefault_5BAE6133, SparseTable_ToRows_759CAFC1, SparseTable_Create_Z2192E64B, SparseTable, SparseRowModule_fromValues } from './SparseTable.js';
7
+ import { SparseTable__TryGetValueDefault_5BAE6133, SparseTable_Create_Z2192E64B, SparseTable, SparseTable_FromRows_Z5579EC29, SparseTable_ToRows_759CAFC1, SparseRowModule_fromValues } from './SparseTable.js';
8
8
  import { createMissingIdentifier, Study_fileNameFromIdentifier } from '../../Core/Helper/Identifier.js';
9
9
  import { addToDict } from '../../../node_modules/@fable-org/fable-library-js/MapUtil.js';
10
- import { Option_fromValueWithDefault, ResizeArray_iter } from '../../Core/Helper/Collections.js';
10
+ import { defaultArg, value } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
11
+ import { ResizeArray_iter, Option_fromValueWithDefault } from '../../Core/Helper/Collections.js';
11
12
  import { List_distinct } from '../../../node_modules/@fable-org/fable-library-js/Seq2.js';
12
13
  import { ArcStudy } from '../../Core/ArcTypes.js';
13
14
  import { fromRows as fromRows$6, toRows as toRows$1 } from './DesignDescriptors.js';
@@ -16,6 +17,7 @@ import { fromRows as fromRows$4, toRows as toRows$3 } from './Factors.js';
16
17
  import { fromRows as fromRows$3, toRows as toRows$4 } from './Assays.js';
17
18
  import { fromRows as fromRows$2, toRows as toRows$5 } from './Protocols.js';
18
19
  import { fromRows as fromRows$1, toRows as toRows$6 } from './Contacts.js';
20
+ import { collect, delay, append as append$1, singleton } from '../../../node_modules/@fable-org/fable-library-js/Seq.js';
19
21
  import { ARCtrl_ArcTable__ArcTable_GetProtocols, ARCtrl_ArcTable__ArcTable_GetProcesses } from '../../Core/Conversion.js';
20
22
  import { getFactors } from '../../Core/Process/ProcessSequence.js';
21
23
 
@@ -31,6 +33,9 @@ class StudyInfo extends Record {
31
33
  this.Comments = Comments;
32
34
  }
33
35
  }
36
+ function StudyInfo_$reflection() {
37
+ return record_type("ARCtrl.Spreadsheet.Studies.StudyInfo", [], StudyInfo, () => [["Identifier", string_type], ["Title", string_type], ["Description", string_type], ["SubmissionDate", string_type], ["PublicReleaseDate", string_type], ["FileName", string_type], ["Comments", list_type(Comment$_$reflection())]]);
38
+ }
34
39
  function StudyInfo_create(identifier, title, description, submissionDate, publicReleaseDate, fileName, comments) {
35
40
  return new StudyInfo(identifier, title, description, submissionDate, publicReleaseDate, fileName, comments);
36
41
  }
@@ -93,37 +98,37 @@ function fromRows(lineNumber, en) {
93
98
  loop:
94
99
  while (true) {
95
100
  const lastLine = lastLine_mut, studyInfo = studyInfo_mut, designDescriptors = designDescriptors_mut, publications = publications_mut, factors = factors_mut, assays = assays_mut, protocols = protocols_mut, contacts = contacts_mut, remarks = remarks_mut, lineNumber_1 = lineNumber_1_mut;
96
- let matchResult, k_12;
101
+ let matchResult, k_6, k_7, k_8, k_9, k_10, k_11, k_12;
97
102
  if (lastLine != null) {
98
103
  switch (value(lastLine)) {
99
104
  case "STUDY DESIGN DESCRIPTORS": {
100
105
  matchResult = 0;
101
- value(lastLine);
106
+ k_6 = value(lastLine);
102
107
  break;
103
108
  }
104
109
  case "STUDY PUBLICATIONS": {
105
110
  matchResult = 1;
106
- value(lastLine);
111
+ k_7 = value(lastLine);
107
112
  break;
108
113
  }
109
114
  case "STUDY FACTORS": {
110
115
  matchResult = 2;
111
- value(lastLine);
116
+ k_8 = value(lastLine);
112
117
  break;
113
118
  }
114
119
  case "STUDY ASSAYS": {
115
120
  matchResult = 3;
116
- value(lastLine);
121
+ k_9 = value(lastLine);
117
122
  break;
118
123
  }
119
124
  case "STUDY PROTOCOLS": {
120
125
  matchResult = 4;
121
- value(lastLine);
126
+ k_10 = value(lastLine);
122
127
  break;
123
128
  }
124
129
  case "STUDY CONTACTS": {
125
130
  matchResult = 5;
126
- value(lastLine);
131
+ k_11 = value(lastLine);
127
132
  break;
128
133
  }
129
134
  default: {
@@ -223,6 +228,7 @@ function fromRows(lineNumber, en) {
223
228
  default:
224
229
  return [k_12, lineNumber_1, remarks, fromParts(studyInfo, designDescriptors, publications, factors, assays, protocols, contacts)];
225
230
  }
231
+ break;
226
232
  }
227
233
  };
228
234
  const patternInput_6 = StudyInfo_fromRows(lineNumber, en);
@@ -235,4 +241,4 @@ function toRows(study, assays) {
235
241
  return delay(() => append$1(StudyInfo_toRows_1680536E(study), delay(() => append$1(singleton(SparseRowModule_fromValues(["STUDY DESIGN DESCRIPTORS"])), delay(() => append$1(toRows$1("Study Design", ofSeq(study.StudyDesignDescriptors)), delay(() => append$1(singleton(SparseRowModule_fromValues(["STUDY PUBLICATIONS"])), delay(() => append$1(toRows$2("Study Publication", ofSeq(study.Publications)), delay(() => append$1(singleton(SparseRowModule_fromValues(["STUDY FACTORS"])), delay(() => append$1(toRows$3("Study Factor", factors), delay(() => append$1(singleton(SparseRowModule_fromValues(["STUDY ASSAYS"])), delay(() => append$1(toRows$4("Study Assay", assays_1), delay(() => append$1(singleton(SparseRowModule_fromValues(["STUDY PROTOCOLS"])), delay(() => append$1(toRows$5("Study Protocol", protocols), delay(() => append$1(singleton(SparseRowModule_fromValues(["STUDY CONTACTS"])), delay(() => toRows$6("Study Person", ofSeq(study.Contacts)))))))))))))))))))))))))));
236
242
  }
237
243
 
238
- export { StudyInfo, StudyInfo_FromSparseTable_3ECCA699, StudyInfo_ToSparseTable_1680536E, StudyInfo_create, StudyInfo_fromRows, StudyInfo_get_Labels, StudyInfo_toRows_1680536E, fromParts, fromRows, toRows };
244
+ export { StudyInfo, StudyInfo_$reflection, StudyInfo_FromSparseTable_3ECCA699, StudyInfo_ToSparseTable_1680536E, StudyInfo_create, StudyInfo_fromRows, StudyInfo_get_Labels, StudyInfo_toRows_1680536E, fromParts, fromRows, toRows };
@@ -1,13 +1,13 @@
1
- import { ofArray, map, empty, ofSeq, cons, reverse } from '../../../node_modules/@fable-org/fable-library-js/List.js';
1
+ import { ofArray, map as map$1, empty, ofSeq, cons, reverse } from '../../../node_modules/@fable-org/fable-library-js/List.js';
2
2
  import { value, unwrap, defaultArg } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
3
- import { map as map$1 } from '../../../node_modules/@fable-org/fable-library-js/Seq.js';
3
+ import { map } from '../../../node_modules/@fable-org/fable-library-js/Seq.js';
4
4
  import { OntologyAnnotation } from '../../Core/OntologyAnnotation.js';
5
5
  import { Option_fromValueWithDefault, ResizeArray_iter } from '../../Core/Helper/Collections.js';
6
6
  import { ProtocolParameter_fromAggregatedStrings, Component_fromAggregatedStrings, ProtocolParameter_toAggregatedStrings, Component_toAggregatedStrings } from './Conversions.js';
7
7
  import { ArcWorkflow_make, ArcWorkflow__get_Identifier, ArcWorkflow__get_WorkflowType, ArcWorkflow__get_Parameters, ArcWorkflow__get_Components, ArcWorkflow__get_SubWorkflowIdentifiers, ArcWorkflow__get_Title, ArcWorkflow__get_Description, ArcWorkflow__get_URI, ArcWorkflow__get_Version, ArcWorkflow__get_Comments } from '../../Core/ArcTypes.js';
8
8
  import { createMissingIdentifier, Workflow_tryIdentifierFromFileName, Workflow_fileNameFromIdentifier } from '../../Core/Helper/Identifier.js';
9
9
  import { Comment_fromString, Comment_toString } from './Comment.js';
10
- import { SparseTable_FromRows_Z5579EC29, SparseTable__TryGetValueDefault_5BAE6133, SparseTable__TryGetValue_11FD62A8, SparseTable_ToRows_759CAFC1, SparseTable_Create_Z2192E64B, SparseTable } from './SparseTable.js';
10
+ import { SparseTable__TryGetValueDefault_5BAE6133, SparseTable__TryGetValue_11FD62A8, SparseTable_Create_Z2192E64B, SparseTable, SparseTable_FromRows_Z5579EC29, SparseTable_ToRows_759CAFC1 } from './SparseTable.js';
11
11
  import { join } from '../../../node_modules/@fable-org/fable-library-js/String.js';
12
12
  import { addToDict } from '../../../node_modules/@fable-org/fable-library-js/MapUtil.js';
13
13
  import { List_distinct } from '../../../node_modules/@fable-org/fable-library-js/Seq2.js';
@@ -38,7 +38,7 @@ function fromString(identifier, title, description, workflowType, workflowTypeTe
38
38
  subworkflowIdentifiers_2 = [];
39
39
  } else {
40
40
  const subworkflowIdentifiers_1 = value(subworkflowIdentifiers);
41
- const collection = map$1((s) => s.trim(), subworkflowIdentifiers_1.split(";"));
41
+ const collection = map((s) => s.trim(), subworkflowIdentifiers_1.split(";"));
42
42
  subworkflowIdentifiers_2 = Array.from(collection);
43
43
  }
44
44
  let workflowType_1;
@@ -53,7 +53,7 @@ function fromString(identifier, title, description, workflowType, workflowTypeTe
53
53
  return ArcWorkflow_make(identifier == null ? fileName == null ? createMissingIdentifier() : (matchValue = Workflow_tryIdentifierFromFileName(value(fileName)), matchValue != null ? value(matchValue) : createMissingIdentifier()) : value(identifier), title, description, workflowType_1, uri, version, subworkflowIdentifiers_2, parameters, components, void 0, [], comments);
54
54
  }
55
55
  function fromSparseTable(matrix) {
56
- const comments = map((k) => Comment_fromString(k, SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [k, 0])), matrix.CommentKeys);
56
+ const comments = map$1((k) => Comment_fromString(k, SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [k, 0])), matrix.CommentKeys);
57
57
  return fromString(SparseTable__TryGetValue_11FD62A8(matrix, [identifierLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [titleLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [descriptionLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [workflowTypeLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [typeTermAccessionNumberLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [typeTermSourceREFLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [subWorkflowIdentifiersLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [uriLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [versionLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [parametersNameLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [parametersTermAccessionNumberLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [parametersTermSourceREFLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [componentsNameLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [componentsTypeLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [componentsTypeTermAccessionNumberLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [componentsTypeTermSourceREFLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [fileNameLabel, 0]), Array.from(comments));
58
58
  }
59
59
  function toSparseTable(workflow) {
@@ -3,6 +3,7 @@ import { singleton } from '../node_modules/@fable-org/fable-library-js/AsyncBuil
3
3
  import { downloadFile } from './WebRequest/WebRequest.js';
4
4
  import { Templates_fromJsonString } from './JsonIO/Table/Templates.js';
5
5
  import { startAsPromise } from '../node_modules/@fable-org/fable-library-js/Async.js';
6
+ import { class_type } from '../node_modules/@fable-org/fable-library-js/Reflection.js';
6
7
 
7
8
  function getTemplates(url) {
8
9
  const url_1 = defaultArg(url, "https://github.com/nfdi4plants/Swate-templates/releases/download/latest/templates_v2.0.0.json");
@@ -18,5 +19,8 @@ class WebController {
18
19
  return startAsPromise(singleton.Delay(() => singleton.Bind(getTemplates(url), (_arg) => singleton.Return(_arg))));
19
20
  }
20
21
  }
22
+ function WebController_$reflection() {
23
+ return class_type("ARCtrl.Template.Web.WebController", void 0, WebController);
24
+ }
21
25
 
22
- export { WebController, getTemplates };
26
+ export { WebController, WebController_$reflection, getTemplates };
@@ -3,6 +3,7 @@ import { join } from '../../node_modules/@fable-org/fable-library-js/String.js';
3
3
  import { toList, delay, append, singleton, empty } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
4
4
  import { equals, stringHash } from '../../node_modules/@fable-org/fable-library-js/Util.js';
5
5
  import { boxHashArray, boxHashOption } from '../Core/Helper/HashCodes.js';
6
+ import { class_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
6
7
 
7
8
  class ValidationPackage {
8
9
  constructor(name, version) {
@@ -49,5 +50,11 @@ class ValidationPackage {
49
50
  return boxHashArray([stringHash(this$.Name), boxHashOption(this$.Version)]) | 0;
50
51
  }
51
52
  }
53
+ function ValidationPackage_$reflection() {
54
+ return class_type("ARCtrl.ValidationPackages.ValidationPackage", void 0, ValidationPackage);
55
+ }
56
+ function ValidationPackage_$ctor_27AED5E3(name, version) {
57
+ return new ValidationPackage(name, version);
58
+ }
52
59
 
53
- export { ValidationPackage };
60
+ export { ValidationPackage, ValidationPackage_$ctor_27AED5E3, ValidationPackage_$reflection };
@@ -1,11 +1,12 @@
1
1
  import { unwrap, value } from '../../node_modules/@fable-org/fable-library-js/Option.js';
2
2
  import { join } from '../../node_modules/@fable-org/fable-library-js/String.js';
3
- import { toList, delay, append, fold, length, map, item, singleton, empty } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
3
+ import { toList, delay, append, singleton, empty, map, fold, length, item } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
4
4
  import { toString } from '../../node_modules/@fable-org/fable-library-js/Types.js';
5
5
  import { sortBy } from '../../node_modules/@fable-org/fable-library-js/Array.js';
6
- import { equals, compareArrays } from '../../node_modules/@fable-org/fable-library-js/Util.js';
6
+ import { compareArrays, equals } from '../../node_modules/@fable-org/fable-library-js/Util.js';
7
7
  import { rangeDouble } from '../../node_modules/@fable-org/fable-library-js/Range.js';
8
8
  import { boxHashArray, boxHashOption, boxHashSeq } from '../Core/Helper/HashCodes.js';
9
+ import { class_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
9
10
 
10
11
  class ValidationPackagesConfig {
11
12
  constructor(validation_packages, arc_specification) {
@@ -74,5 +75,11 @@ class ValidationPackagesConfig {
74
75
  return boxHashArray([boxHashOption(this$.ARCSpecification), boxHashSeq(this$.ValidationPackages)]) | 0;
75
76
  }
76
77
  }
78
+ function ValidationPackagesConfig_$reflection() {
79
+ return class_type("ARCtrl.ValidationPackages.ValidationPackagesConfig", void 0, ValidationPackagesConfig);
80
+ }
81
+ function ValidationPackagesConfig_$ctor_376974AD(validation_packages, arc_specification) {
82
+ return new ValidationPackagesConfig(validation_packages, arc_specification);
83
+ }
77
84
 
78
- export { ValidationPackagesConfig };
85
+ export { ValidationPackagesConfig, ValidationPackagesConfig_$ctor_376974AD, ValidationPackagesConfig_$reflection };
@@ -4,6 +4,7 @@ import { empty } from '../../node_modules/@fable-org/fable-library-js/List.js';
4
4
 
5
5
  function isNode() {
6
6
  return typeof process !== "undefined" && process.versions != null && process.versions.node != null;
7
+ ;
7
8
  }
8
9
  function downloadFile(url) {
9
10
  let pr_1, pr;
@@ -1,6 +1,7 @@
1
1
  import { fromFsWorkbook, toFsWorkbook } from './Spreadsheet/DataMap.js';
2
2
  import { map } from './CrossAsync.js';
3
3
  import { FsSpreadsheet_FsWorkbook__FsWorkbook_fromXlsxFile_Static_Z721C83C5, FsSpreadsheet_FsWorkbook__FsWorkbook_toXlsxFile_Static } from './fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/FsExtensions.fs.js';
4
+ import { class_type } from '../node_modules/@fable-org/fable-library-js/Reflection.js';
4
5
  import { ARCtrl_ArcAssay__ArcAssay_fromFsWorkbook_Static_32154C9D, ARCtrl_ArcAssay__ArcAssay_toFsWorkbook_Static_Z2508BE4F } from './Spreadsheet/ArcAssay.js';
5
6
  import { ARCtrl_ArcStudy__ArcStudy_fromFsWorkbook_Static_32154C9D, ARCtrl_ArcStudy__ArcStudy_toFsWorkbook_Static_Z4CEFA522 } from './Spreadsheet/ArcStudy.js';
6
7
  import { ofSeq } from '../node_modules/@fable-org/fable-library-js/List.js';
@@ -25,6 +26,12 @@ class XlsxHelper_DatamapXlsx {
25
26
  return FsSpreadsheet_FsWorkbook__FsWorkbook_toXlsxFile_Static(path, toFsWorkbook(datamap));
26
27
  }
27
28
  }
29
+ function XlsxHelper_DatamapXlsx_$reflection() {
30
+ return class_type("ARCtrl.XlsxHelper.DatamapXlsx", void 0, XlsxHelper_DatamapXlsx);
31
+ }
32
+ function XlsxHelper_DatamapXlsx_$ctor() {
33
+ return new XlsxHelper_DatamapXlsx();
34
+ }
28
35
  class XlsxHelper_AssayXlsx {
29
36
  constructor() {
30
37
  }
@@ -41,6 +48,12 @@ class XlsxHelper_AssayXlsx {
41
48
  return FsSpreadsheet_FsWorkbook__FsWorkbook_toXlsxFile_Static(path, ARCtrl_ArcAssay__ArcAssay_toFsWorkbook_Static_Z2508BE4F(assay));
42
49
  }
43
50
  }
51
+ function XlsxHelper_AssayXlsx_$reflection() {
52
+ return class_type("ARCtrl.XlsxHelper.AssayXlsx", void 0, XlsxHelper_AssayXlsx);
53
+ }
54
+ function XlsxHelper_AssayXlsx_$ctor() {
55
+ return new XlsxHelper_AssayXlsx();
56
+ }
44
57
  class XlsxHelper_StudyXlsx {
45
58
  constructor() {
46
59
  }
@@ -57,6 +70,12 @@ class XlsxHelper_StudyXlsx {
57
70
  return FsSpreadsheet_FsWorkbook__FsWorkbook_toXlsxFile_Static(path, ARCtrl_ArcStudy__ArcStudy_toFsWorkbook_Static_Z4CEFA522(study, unwrap(map$1(ofSeq, assays))));
58
71
  }
59
72
  }
73
+ function XlsxHelper_StudyXlsx_$reflection() {
74
+ return class_type("ARCtrl.XlsxHelper.StudyXlsx", void 0, XlsxHelper_StudyXlsx);
75
+ }
76
+ function XlsxHelper_StudyXlsx_$ctor() {
77
+ return new XlsxHelper_StudyXlsx();
78
+ }
60
79
  class XlsxHelper_WorkflowXlsx {
61
80
  constructor() {
62
81
  }
@@ -73,6 +92,12 @@ class XlsxHelper_WorkflowXlsx {
73
92
  return FsSpreadsheet_FsWorkbook__FsWorkbook_toXlsxFile_Static(path, ARCtrl_ArcWorkflow__ArcWorkflow_toFsWorkbook_Static_Z1C75CB0E(workflow));
74
93
  }
75
94
  }
95
+ function XlsxHelper_WorkflowXlsx_$reflection() {
96
+ return class_type("ARCtrl.XlsxHelper.WorkflowXlsx", void 0, XlsxHelper_WorkflowXlsx);
97
+ }
98
+ function XlsxHelper_WorkflowXlsx_$ctor() {
99
+ return new XlsxHelper_WorkflowXlsx();
100
+ }
76
101
  class XlsxHelper_RunXlsx {
77
102
  constructor() {
78
103
  }
@@ -89,6 +114,12 @@ class XlsxHelper_RunXlsx {
89
114
  return FsSpreadsheet_FsWorkbook__FsWorkbook_toXlsxFile_Static(path, ARCtrl_ArcRun__ArcRun_toFsWorkbook_Static_Z3EFAF6F8(run));
90
115
  }
91
116
  }
117
+ function XlsxHelper_RunXlsx_$reflection() {
118
+ return class_type("ARCtrl.XlsxHelper.RunXlsx", void 0, XlsxHelper_RunXlsx);
119
+ }
120
+ function XlsxHelper_RunXlsx_$ctor() {
121
+ return new XlsxHelper_RunXlsx();
122
+ }
92
123
  class XlsxHelper_InvestigationXlsx {
93
124
  constructor() {
94
125
  }
@@ -105,6 +136,12 @@ class XlsxHelper_InvestigationXlsx {
105
136
  return FsSpreadsheet_FsWorkbook__FsWorkbook_toXlsxFile_Static(path, ARCtrl_ArcInvestigation__ArcInvestigation_toFsWorkbook_Static_Z720BD3FF(investigation));
106
137
  }
107
138
  }
139
+ function XlsxHelper_InvestigationXlsx_$reflection() {
140
+ return class_type("ARCtrl.XlsxHelper.InvestigationXlsx", void 0, XlsxHelper_InvestigationXlsx);
141
+ }
142
+ function XlsxHelper_InvestigationXlsx_$ctor() {
143
+ return new XlsxHelper_InvestigationXlsx();
144
+ }
108
145
  class XlsxController {
109
146
  constructor() {
110
147
  }
@@ -127,5 +164,8 @@ class XlsxController {
127
164
  return new XlsxHelper_InvestigationXlsx();
128
165
  }
129
166
  }
167
+ function XlsxController_$reflection() {
168
+ return class_type("ARCtrl.XlsxController", void 0, XlsxController);
169
+ }
130
170
 
131
- export { XlsxController, XlsxHelper_AssayXlsx, XlsxHelper_DatamapXlsx, XlsxHelper_InvestigationXlsx, XlsxHelper_RunXlsx, XlsxHelper_StudyXlsx, XlsxHelper_WorkflowXlsx };
171
+ export { XlsxController, XlsxController_$reflection, XlsxHelper_AssayXlsx, XlsxHelper_AssayXlsx_$ctor, XlsxHelper_AssayXlsx_$reflection, XlsxHelper_DatamapXlsx, XlsxHelper_DatamapXlsx_$ctor, XlsxHelper_DatamapXlsx_$reflection, XlsxHelper_InvestigationXlsx, XlsxHelper_InvestigationXlsx_$ctor, XlsxHelper_InvestigationXlsx_$reflection, XlsxHelper_RunXlsx, XlsxHelper_RunXlsx_$ctor, XlsxHelper_RunXlsx_$reflection, XlsxHelper_StudyXlsx, XlsxHelper_StudyXlsx_$ctor, XlsxHelper_StudyXlsx_$reflection, XlsxHelper_WorkflowXlsx, XlsxHelper_WorkflowXlsx_$ctor, XlsxHelper_WorkflowXlsx_$reflection };
@@ -1,11 +1,14 @@
1
1
  import { choose, ofArray } from '../../node_modules/@fable-org/fable-library-js/List.js';
2
- import { YAMLElement_Nil, YAMLElement_Object, YAMLElement_Mapping, YAMLContent_create_27AED5E3 } from '../fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js';
2
+ import { YAMLElement_Nil, YAMLElement_Object, YAMLElement_Mapping, YAMLContent_create_27AED5E3, Config } from '../fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js';
3
3
  import { equals } from '../../node_modules/@fable-org/fable-library-js/Util.js';
4
4
  import { unwrap } from '../../node_modules/@fable-org/fable-library-js/Option.js';
5
5
  import { string, tryInclude } from '../fable_modules/YAMLicious.0.0.3/Encode.fs.js';
6
6
  import { toList, delay, collect, singleton } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
7
7
  import { ValidationPackage } from '../ValidationPackages/ValidationPackage.js';
8
8
  import { object, string as string$1 } from '../fable_modules/YAMLicious.0.0.3/Decode.fs.js';
9
+ import { read } from '../fable_modules/YAMLicious.0.0.3/Reader.fs.js';
10
+ import { defaultWhitespace } from './Encode.js';
11
+ import { write } from '../fable_modules/YAMLicious.0.0.3/Writer.fs.js';
9
12
 
10
13
  function ValidationPackage_encoder(validationpackage) {
11
14
  const objSeq = choose((tupledArg) => {
@@ -22,5 +25,18 @@ const ValidationPackage_decoder = (value_2) => object((get$) => {
22
25
  let objectArg, objectArg_1;
23
26
  return new ValidationPackage((objectArg = get$.Required, objectArg.Field("name", string$1)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("version", string$1))));
24
27
  }, value_2);
28
+ function ARCtrl_ValidationPackages_ValidationPackage__ValidationPackage_fromYamlString_Static_Z721C83C5(s) {
29
+ return ValidationPackage_decoder(read(s));
30
+ }
31
+ function ARCtrl_ValidationPackages_ValidationPackage__ValidationPackage_toYamlString_Static_71136F3F(whitespace) {
32
+ return (vp) => {
33
+ const element = ValidationPackage_encoder(vp);
34
+ const whitespace_1 = defaultWhitespace(whitespace) | 0;
35
+ return write(element, (c) => new Config(whitespace_1, c.Level));
36
+ };
37
+ }
38
+ function ARCtrl_ValidationPackages_ValidationPackage__ValidationPackage_toYamlString_71136F3F(this$, whitespace) {
39
+ return ARCtrl_ValidationPackages_ValidationPackage__ValidationPackage_toYamlString_Static_71136F3F(unwrap(whitespace))(this$);
40
+ }
25
41
 
26
- export { ValidationPackage_decoder, ValidationPackage_encoder };
42
+ export { ARCtrl_ValidationPackages_ValidationPackage__ValidationPackage_fromYamlString_Static_Z721C83C5, ARCtrl_ValidationPackages_ValidationPackage__ValidationPackage_toYamlString_71136F3F, ARCtrl_ValidationPackages_ValidationPackage__ValidationPackage_toYamlString_Static_71136F3F, ValidationPackage_decoder, ValidationPackage_encoder };