@nfdi4plants/arctrl 2.2.3 → 2.3.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 (481) hide show
  1. package/ARC.js +63 -23
  2. package/CWL/CWLTypes.js +3 -3
  3. package/CWL/Decode.js +7 -7
  4. package/CWL/Inputs.js +4 -4
  5. package/CWL/Outputs.js +4 -4
  6. package/CWL/Requirements.js +3 -3
  7. package/CWL/ToolDescription.js +2 -2
  8. package/CWL/WorkflowDescription.js +2 -2
  9. package/CWL/WorkflowSteps.js +3 -3
  10. package/Contract/ArcAssay.js +4 -4
  11. package/Contract/ArcInvestigation.js +2 -2
  12. package/Contract/ArcStudy.js +4 -4
  13. package/Contract/Contract.js +3 -3
  14. package/Contract/Datamap.js +2 -2
  15. package/Contract/Git.js +4 -4
  16. package/Contract/ValidationPackagesConfig.js +2 -2
  17. package/ContractIO/ContractIO.js +204 -0
  18. package/ContractIO/FileSystemHelper.js +130 -0
  19. package/Core/ArcTypes.js +9 -9
  20. package/Core/Comment.js +8 -8
  21. package/Core/CommentList.js +4 -4
  22. package/Core/Conversion.js +11 -11
  23. package/Core/Data.js +5 -5
  24. package/Core/DataContext.js +2 -2
  25. package/Core/DataFile.js +2 -2
  26. package/Core/DataMap.js +3 -3
  27. package/Core/Helper/Collections.js +8 -8
  28. package/Core/Helper/HashCodes.js +5 -5
  29. package/Core/Helper/Identifier.js +1 -1
  30. package/Core/Helper/Regex.js +3 -3
  31. package/Core/Helper/SemVer.js +6 -6
  32. package/Core/OntologyAnnotation.js +7 -7
  33. package/Core/OntologySourceReference.js +3 -3
  34. package/Core/Person.js +9 -9
  35. package/Core/Process/ColumnIndex.js +5 -5
  36. package/Core/Process/Component.js +4 -4
  37. package/Core/Process/Factor.js +5 -5
  38. package/Core/Process/FactorValue.js +5 -5
  39. package/Core/Process/Material.js +5 -5
  40. package/Core/Process/MaterialAttribute.js +3 -3
  41. package/Core/Process/MaterialAttributeValue.js +5 -5
  42. package/Core/Process/MaterialType.js +2 -2
  43. package/Core/Process/Process.js +8 -8
  44. package/Core/Process/ProcessInput.js +5 -5
  45. package/Core/Process/ProcessOutput.js +5 -5
  46. package/Core/Process/ProcessParameterValue.js +5 -5
  47. package/Core/Process/ProcessSequence.js +6 -6
  48. package/Core/Process/Protocol.js +5 -5
  49. package/Core/Process/ProtocolParameter.js +3 -3
  50. package/Core/Process/Sample.js +5 -5
  51. package/Core/Process/Source.js +5 -5
  52. package/Core/Publication.js +8 -8
  53. package/Core/Table/ArcTable.js +13 -13
  54. package/Core/Table/ArcTableAux.js +15 -15
  55. package/Core/Table/ArcTables.js +9 -9
  56. package/Core/Table/CompositeCell.js +3 -3
  57. package/Core/Table/CompositeColumn.js +4 -4
  58. package/Core/Table/CompositeHeader.js +4 -4
  59. package/Core/Template.js +6 -6
  60. package/Core/Templates.js +6 -6
  61. package/Core/Value.js +7 -7
  62. package/CrossAsync.js +34 -0
  63. package/FileSystem/Commit.js +2 -2
  64. package/FileSystem/FileSystem.js +4 -4
  65. package/FileSystem/FileSystemTree.js +8 -8
  66. package/FileSystem/Path.js +2 -2
  67. package/FileSystem.js +102 -0
  68. package/Json/ARC.js +3 -3
  69. package/Json/Assay.js +4 -4
  70. package/Json/Comment.js +5 -5
  71. package/Json/ConverterOptions.js +2 -2
  72. package/Json/Data.js +4 -4
  73. package/Json/DataFile.js +1 -1
  74. package/Json/DataMap/DataContext.js +3 -3
  75. package/Json/DataMap/DataMap.js +1 -1
  76. package/Json/Decode.js +9 -9
  77. package/Json/Encode.js +5 -5
  78. package/Json/IDTable.js +3 -3
  79. package/Json/Investigation.js +5 -5
  80. package/Json/LDObject.js +6 -6
  81. package/Json/OntologyAnnotation.js +5 -5
  82. package/Json/OntologySourceReference.js +4 -4
  83. package/Json/Person.js +5 -5
  84. package/Json/Process/AssayMaterials.js +3 -3
  85. package/Json/Process/Component.js +3 -3
  86. package/Json/Process/Factor.js +3 -3
  87. package/Json/Process/FactorValue.js +3 -3
  88. package/Json/Process/Material.js +4 -4
  89. package/Json/Process/MaterialAttribute.js +3 -3
  90. package/Json/Process/MaterialAttributeValue.js +3 -3
  91. package/Json/Process/MaterialType.js +1 -1
  92. package/Json/Process/Process.js +4 -4
  93. package/Json/Process/ProcessInput.js +1 -1
  94. package/Json/Process/ProcessOutput.js +1 -1
  95. package/Json/Process/ProcessParameterValue.js +3 -3
  96. package/Json/Process/Protocol.js +4 -4
  97. package/Json/Process/ProtocolParameter.js +3 -3
  98. package/Json/Process/Sample.js +5 -5
  99. package/Json/Process/Source.js +4 -4
  100. package/Json/Process/StudyMaterials.js +3 -3
  101. package/Json/Process/Value.js +1 -1
  102. package/Json/PropertyValue.js +3 -3
  103. package/Json/Publication.js +4 -4
  104. package/Json/StringTable.js +4 -4
  105. package/Json/Study.js +5 -5
  106. package/Json/Table/ArcTable.js +10 -10
  107. package/Json/Table/CellTable.js +4 -4
  108. package/Json/Table/CompositeCell.js +3 -3
  109. package/Json/Table/CompositeHeader.js +2 -2
  110. package/Json/Table/IOType.js +1 -1
  111. package/Json/Table/OATable.js +4 -4
  112. package/Json/Table/Templates.js +5 -5
  113. package/Json/context/rocrate/isa_assay_context.js +3 -3
  114. package/Json/context/rocrate/isa_comment_context.js +3 -3
  115. package/Json/context/rocrate/isa_component_context.js +3 -3
  116. package/Json/context/rocrate/isa_data_context.js +3 -3
  117. package/Json/context/rocrate/isa_factor_context.js +3 -3
  118. package/Json/context/rocrate/isa_factor_value_context.js +3 -3
  119. package/Json/context/rocrate/isa_investigation_context.js +3 -3
  120. package/Json/context/rocrate/isa_material_attribute_context.js +3 -3
  121. package/Json/context/rocrate/isa_material_attribute_value_context.js +3 -3
  122. package/Json/context/rocrate/isa_material_context.js +3 -3
  123. package/Json/context/rocrate/isa_ontology_annotation_context.js +3 -3
  124. package/Json/context/rocrate/isa_ontology_source_reference_context.js +3 -3
  125. package/Json/context/rocrate/isa_organization_context.js +3 -3
  126. package/Json/context/rocrate/isa_person_context.js +3 -3
  127. package/Json/context/rocrate/isa_process_context.js +3 -3
  128. package/Json/context/rocrate/isa_process_parameter_value_context.js +3 -3
  129. package/Json/context/rocrate/isa_protocol_context.js +3 -3
  130. package/Json/context/rocrate/isa_protocol_parameter_context.js +3 -3
  131. package/Json/context/rocrate/isa_publication_context.js +3 -3
  132. package/Json/context/rocrate/isa_sample_context.js +3 -3
  133. package/Json/context/rocrate/isa_source_context.js +3 -3
  134. package/Json/context/rocrate/isa_study_context.js +3 -3
  135. package/Json/context/rocrate/property_value_context.js +1 -1
  136. package/Json/context/rocrate/rocrate_context.js +3 -3
  137. package/Json.js +2 -2
  138. package/JsonIO/ARC.js +3 -3
  139. package/JsonIO/Assay.js +2 -2
  140. package/JsonIO/Comment.js +2 -2
  141. package/JsonIO/Data.js +2 -2
  142. package/JsonIO/DataFile.js +2 -2
  143. package/JsonIO/DataMap/DataMap.js +1 -1
  144. package/JsonIO/Investigation.js +2 -2
  145. package/JsonIO/LDObject.js +2 -2
  146. package/JsonIO/OntologyAnnotation.js +2 -2
  147. package/JsonIO/OntologySourceReference.js +2 -2
  148. package/JsonIO/Person.js +2 -2
  149. package/JsonIO/Process/Component.js +2 -2
  150. package/JsonIO/Process/Factor.js +2 -2
  151. package/JsonIO/Process/FactorValue.js +2 -2
  152. package/JsonIO/Process/Material.js +2 -2
  153. package/JsonIO/Process/MaterialAttribute.js +2 -2
  154. package/JsonIO/Process/MaterialAttributeValue.js +2 -2
  155. package/JsonIO/Process/MaterialType.js +2 -2
  156. package/JsonIO/Process/Process.js +2 -2
  157. package/JsonIO/Process/ProcessInput.js +2 -2
  158. package/JsonIO/Process/ProcessOutput.js +2 -2
  159. package/JsonIO/Process/ProcessParameterValue.js +2 -2
  160. package/JsonIO/Process/ProcessSequence.js +4 -4
  161. package/JsonIO/Process/Protocol.js +2 -2
  162. package/JsonIO/Process/ProtocolParameter.js +2 -2
  163. package/JsonIO/Process/Sample.js +2 -2
  164. package/JsonIO/Process/Source.js +2 -2
  165. package/JsonIO/Process/StudyMaterials.js +3 -3
  166. package/JsonIO/Process/Value.js +1 -1
  167. package/JsonIO/Publication.js +2 -2
  168. package/JsonIO/Study.js +2 -2
  169. package/JsonIO/Table/ArcTable.js +5 -5
  170. package/JsonIO/Table/CompositeCell.js +2 -2
  171. package/JsonIO/Table/CompositeHeader.js +2 -2
  172. package/JsonIO/Table/Compression.js +3 -3
  173. package/JsonIO/Table/IOType.js +2 -2
  174. package/JsonIO/Table/Templates.js +3 -3
  175. package/ROCrate/ArcROCrateMetadata.js +3 -3
  176. package/ROCrate/ISAProfile/Assay.js +4 -4
  177. package/ROCrate/ISAProfile/Data.js +4 -4
  178. package/ROCrate/ISAProfile/Dataset.js +2 -2
  179. package/ROCrate/ISAProfile/Investigation.js +4 -4
  180. package/ROCrate/ISAProfile/LabProcess.js +4 -4
  181. package/ROCrate/ISAProfile/LabProtocol.js +4 -4
  182. package/ROCrate/ISAProfile/Person.js +4 -4
  183. package/ROCrate/ISAProfile/PropertyValue.js +4 -4
  184. package/ROCrate/ISAProfile/Sample.js +4 -4
  185. package/ROCrate/ISAProfile/ScholarlyArticle.js +4 -4
  186. package/ROCrate/ISAProfile/Study.js +4 -4
  187. package/ROCrate/LDObject.js +2 -2
  188. package/Spreadsheet/AnnotationTable/ArcTable.js +13 -13
  189. package/Spreadsheet/AnnotationTable/CompositeCell.js +2 -2
  190. package/Spreadsheet/AnnotationTable/CompositeColumn.js +7 -7
  191. package/Spreadsheet/AnnotationTable/CompositeHeader.js +6 -6
  192. package/Spreadsheet/ArcAssay.js +7 -7
  193. package/Spreadsheet/ArcInvestigation.js +12 -12
  194. package/Spreadsheet/ArcStudy.js +7 -7
  195. package/Spreadsheet/CollectionAux.js +7 -7
  196. package/Spreadsheet/DataMap.js +3 -3
  197. package/Spreadsheet/DataMapTable/DataMapColumn.js +6 -6
  198. package/Spreadsheet/DataMapTable/DataMapHeader.js +5 -5
  199. package/Spreadsheet/DataMapTable/DataMapTable.js +10 -10
  200. package/Spreadsheet/Metadata/Assays.js +5 -5
  201. package/Spreadsheet/Metadata/Comment.js +2 -2
  202. package/Spreadsheet/Metadata/Contacts.js +5 -5
  203. package/Spreadsheet/Metadata/Conversions.js +5 -5
  204. package/Spreadsheet/Metadata/DesignDescriptors.js +1 -1
  205. package/Spreadsheet/Metadata/Factors.js +5 -5
  206. package/Spreadsheet/Metadata/OntologyAnnotation.js +5 -5
  207. package/Spreadsheet/Metadata/OntologySourceReference.js +5 -5
  208. package/Spreadsheet/Metadata/Protocols.js +5 -5
  209. package/Spreadsheet/Metadata/Publication.js +5 -5
  210. package/Spreadsheet/Metadata/SparseTable.js +17 -17
  211. package/Spreadsheet/Metadata/Study.js +8 -8
  212. package/Spreadsheet/Template.js +13 -13
  213. package/Template.Web.js +4 -4
  214. package/ValidationPackages/ValidationPackage.js +5 -5
  215. package/ValidationPackages/ValidationPackagesConfig.js +8 -8
  216. package/WebRequest/WebRequest.Node.js +2 -2
  217. package/WebRequest/WebRequest.js +2 -2
  218. package/Xlsx.js +16 -3
  219. package/Yaml/Encode.js +1 -1
  220. package/Yaml/ValidationPackage.js +4 -4
  221. package/Yaml/ValidationPackagesConfig.js +4 -4
  222. package/fable_modules/DynamicObj.4.0.3/DynObj.fs.js +6 -6
  223. package/fable_modules/DynamicObj.4.0.3/DynamicObj.fs.js +4 -4
  224. package/fable_modules/DynamicObj.4.0.3/FableJS.fs.js +4 -4
  225. package/fable_modules/DynamicObj.4.0.3/HashCodes.fs.js +5 -5
  226. package/fable_modules/DynamicObj.4.0.3/PropertyHelper.fs.js +2 -2
  227. package/fable_modules/DynamicObj.4.0.3/ReflectionUtils.fs.js +1 -1
  228. package/fable_modules/Fable.Exceljs.1.6.0/Cell.fs +32 -0
  229. package/fable_modules/Fable.Exceljs.1.6.0/Column.fs +24 -0
  230. package/fable_modules/Fable.Exceljs.1.6.0/Csv.fs +12 -0
  231. package/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs +61 -0
  232. package/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +4 -0
  233. package/fable_modules/Fable.Exceljs.1.6.0/Extensions.fs +36 -0
  234. package/fable_modules/Fable.Exceljs.1.6.0/Extensions.fs.js +20 -0
  235. package/fable_modules/Fable.Exceljs.1.6.0/Fable.Exceljs.fableproj +53 -0
  236. package/fable_modules/Fable.Exceljs.1.6.0/Row.fs +34 -0
  237. package/fable_modules/Fable.Exceljs.1.6.0/Table.fs +85 -0
  238. package/fable_modules/Fable.Exceljs.1.6.0/Table.fs.js +22 -0
  239. package/fable_modules/Fable.Exceljs.1.6.0/Unions.fs +87 -0
  240. package/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +73 -0
  241. package/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs +37 -0
  242. package/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs +120 -0
  243. package/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs +18 -0
  244. package/fable_modules/Fable.Exceljs.1.6.0/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.fs +3 -0
  245. package/fable_modules/Fable.Exceljs.1.6.0/obj/Debug/net6.0/Fable.Exceljs.AssemblyInfo.fs +19 -0
  246. package/fable_modules/Fable.Exceljs.1.6.0/obj/Debug/netstandard2.0/Fable.Exceljs.AssemblyInfo.fs +19 -0
  247. package/fable_modules/Fable.Exceljs.1.6.0/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.fs +3 -0
  248. package/fable_modules/Fable.Exceljs.1.6.0/obj/Release/net6.0/Fable.Exceljs.AssemblyInfo.fs +19 -0
  249. package/fable_modules/Fable.Exceljs.1.6.0/obj/Release/netstandard2.0/Fable.Exceljs.AssemblyInfo.fs +19 -0
  250. package/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +8 -8
  251. package/fable_modules/Fable.Promise.3.2.0/AsyncIterable.fs +57 -0
  252. package/fable_modules/Fable.Promise.3.2.0/AsyncIterable.fs.js +104 -0
  253. package/fable_modules/{Fable.Promise.2.2.2 → Fable.Promise.3.2.0}/Fable.Promise.fableproj +4 -3
  254. package/fable_modules/Fable.Promise.3.2.0/Promise.fs +766 -0
  255. package/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +217 -0
  256. package/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs +31 -0
  257. package/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +19 -0
  258. package/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +8 -8
  259. package/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +2 -2
  260. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Cells/FsCell.fs.js +14 -14
  261. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Cells/FsCellsCollection.fs.js +6 -6
  262. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/CellBuilder.fs.js +4 -4
  263. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/ColumnBuilder.fs.js +3 -3
  264. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/DSL.fs.js +2 -2
  265. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/Expression.fs.js +1 -1
  266. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/RowBuilder.fs.js +3 -3
  267. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/SheetBuilder.fs.js +3 -3
  268. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/TableBuilder.fs.js +3 -3
  269. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/Transform.fs.js +6 -6
  270. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/Types.fs.js +4 -4
  271. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/WorkbookBuilder.fs.js +3 -3
  272. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/FsAddress.fs.js +8 -8
  273. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/FsColumn.fs.js +3 -3
  274. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/FsRow.fs.js +3 -3
  275. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/FsSpreadsheet.fableproj +5 -5
  276. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/FsWorkbook.fs.js +6 -6
  277. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/FsWorksheet.fs.js +9 -9
  278. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Cell.fs.js +2 -2
  279. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Column.fs.js +2 -2
  280. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Row.fs.js +2 -2
  281. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Table.fs.js +1 -1
  282. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Value.fs.js +5 -5
  283. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Workbook.fs.js +1 -1
  284. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Worksheet.fs.js +3 -3
  285. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Ranges/FsRange.fs.js +3 -3
  286. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Ranges/FsRangeAddress.fs.js +3 -3
  287. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Ranges/FsRangeBase.fs.js +3 -3
  288. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Ranges/FsRangeColumn.fs.js +3 -3
  289. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Ranges/FsRangeRow.fs.js +1 -1
  290. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/SheetBuilder.fs.js +8 -8
  291. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Tables/FsTable.fs.js +7 -7
  292. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Tables/FsTableField.fs.js +4 -4
  293. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Tables/FsTableRow.fs.js +1 -1
  294. package/fable_modules/FsSpreadsheet.6.3.1/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +3 -0
  295. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/obj/Debug/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +1 -1
  296. package/fable_modules/FsSpreadsheet.6.3.1/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +3 -0
  297. package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/obj/Release/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +1 -1
  298. package/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs +88 -0
  299. package/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +79 -0
  300. package/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs +69 -0
  301. package/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +64 -0
  302. package/fable_modules/FsSpreadsheet.Js.6.3.1/FsSpreadsheet.Js.fableproj +57 -0
  303. package/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs +59 -0
  304. package/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +39 -0
  305. package/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs +50 -0
  306. package/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +54 -0
  307. package/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs +27 -0
  308. package/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +34 -0
  309. package/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs +41 -0
  310. package/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +63 -0
  311. package/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs +74 -0
  312. package/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +70 -0
  313. package/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +19 -19
  314. package/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +6 -6
  315. package/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +2 -2
  316. package/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +1 -1
  317. package/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +2 -2
  318. package/fable_modules/YAMLicious.0.0.3/Decode.fs.js +15 -15
  319. package/fable_modules/YAMLicious.0.0.3/Encode.fs.js +6 -6
  320. package/fable_modules/YAMLicious.0.0.3/Library.fs.js +1 -1
  321. package/fable_modules/YAMLicious.0.0.3/Persil.fs.js +3 -3
  322. package/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +6 -6
  323. package/fable_modules/YAMLicious.0.0.3/Reader.fs.js +7 -7
  324. package/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +3 -3
  325. package/fable_modules/YAMLicious.0.0.3/Writer.fs.js +4 -4
  326. package/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +6 -6
  327. package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/CHANGELOG.md +6 -0
  328. package/fable_modules/fable-library-js.4.24.0/CollectionUtil.d.ts +7 -0
  329. package/fable_modules/fable-library-js.4.24.0/CollectionUtil.js +182 -0
  330. package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/String.d.ts +10 -2
  331. package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/package.json +1 -1
  332. package/fable_modules/project_cracked.json +1 -1
  333. package/package.json +1 -1
  334. package/fable_modules/Fable.Promise.2.2.2/Promise.fs +0 -176
  335. package/fable_modules/Fable.Promise.2.2.2/Promise.fs.js +0 -143
  336. package/fable_modules/Fable.Promise.2.2.2/PromiseImpl.fs +0 -4
  337. package/fable_modules/Fable.Promise.2.2.2/PromiseImpl.fs.js +0 -4
  338. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → Fable.Exceljs.1.6.0}/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -0
  339. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → Fable.Exceljs.1.6.0}/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -0
  340. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Cells/FsCell.fs +0 -0
  341. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Cells/FsCellsCollection.fs +0 -0
  342. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/CellBuilder.fs +0 -0
  343. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/ColumnBuilder.fs +0 -0
  344. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/DSL.fs +0 -0
  345. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/Expression.fs +0 -0
  346. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/Operators.fs +0 -0
  347. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/Operators.fs.js +0 -0
  348. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/RowBuilder.fs +0 -0
  349. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/SheetBuilder.fs +0 -0
  350. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/TableBuilder.fs +0 -0
  351. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/Transform.fs +0 -0
  352. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/Types.fs +0 -0
  353. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/DSL/WorkbookBuilder.fs +0 -0
  354. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/FsAddress.fs +0 -0
  355. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/FsColumn.fs +0 -0
  356. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/FsRow.fs +0 -0
  357. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/FsWorkbook.fs +0 -0
  358. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/FsWorksheet.fs +0 -0
  359. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Cell.fs +0 -0
  360. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Column.fs +0 -0
  361. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Row.fs +0 -0
  362. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Table.fs +0 -0
  363. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Value.fs +0 -0
  364. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Workbook.fs +0 -0
  365. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Json/Worksheet.fs +0 -0
  366. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Ranges/FsRange.fs +0 -0
  367. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Ranges/FsRangeAddress.fs +0 -0
  368. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Ranges/FsRangeBase.fs +0 -0
  369. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Ranges/FsRangeColumn.fs +0 -0
  370. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Ranges/FsRangeRow.fs +0 -0
  371. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/SheetBuilder.fs +0 -0
  372. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Tables/FsTable.fs +0 -0
  373. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Tables/FsTableField.fs +0 -0
  374. /package/fable_modules/{FsSpreadsheet.6.3.0-alpha.4 → FsSpreadsheet.6.3.1}/Tables/FsTableRow.fs +0 -0
  375. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Array.d.ts +0 -0
  376. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Array.js +0 -0
  377. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Async.d.ts +0 -0
  378. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Async.js +0 -0
  379. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/AsyncBuilder.d.ts +0 -0
  380. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/AsyncBuilder.js +0 -0
  381. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/BigInt.d.ts +0 -0
  382. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/BigInt.js +0 -0
  383. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/BitConverter.d.ts +0 -0
  384. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/BitConverter.js +0 -0
  385. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Boolean.d.ts +0 -0
  386. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Boolean.js +0 -0
  387. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Char.d.ts +0 -0
  388. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Char.js +0 -0
  389. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Choice.d.ts +0 -0
  390. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Choice.js +0 -0
  391. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/ConditionalWeakTable.d.ts +0 -0
  392. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/ConditionalWeakTable.js +0 -0
  393. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Date.d.ts +0 -0
  394. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Date.js +0 -0
  395. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/DateOffset.d.ts +0 -0
  396. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/DateOffset.js +0 -0
  397. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/DateOnly.d.ts +0 -0
  398. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/DateOnly.js +0 -0
  399. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Decimal.d.ts +0 -0
  400. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Decimal.js +0 -0
  401. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Double.d.ts +0 -0
  402. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Double.js +0 -0
  403. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Encoding.d.ts +0 -0
  404. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Encoding.js +0 -0
  405. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Event.d.ts +0 -0
  406. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Event.js +0 -0
  407. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/FSharp.Collections.d.ts +0 -0
  408. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/FSharp.Collections.js +0 -0
  409. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/FSharp.Core.CompilerServices.d.ts +0 -0
  410. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/FSharp.Core.CompilerServices.js +0 -0
  411. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/FSharp.Core.d.ts +0 -0
  412. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/FSharp.Core.js +0 -0
  413. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Global.d.ts +0 -0
  414. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Global.js +0 -0
  415. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Guid.d.ts +0 -0
  416. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Guid.js +0 -0
  417. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Int32.d.ts +0 -0
  418. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Int32.js +0 -0
  419. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/List.d.ts +0 -0
  420. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/List.js +0 -0
  421. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Long.d.ts +0 -0
  422. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Long.js +0 -0
  423. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/MailboxProcessor.d.ts +0 -0
  424. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/MailboxProcessor.js +0 -0
  425. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Map.d.ts +0 -0
  426. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Map.js +0 -0
  427. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/MapUtil.d.ts +0 -0
  428. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/MapUtil.js +0 -0
  429. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/MutableMap.d.ts +0 -0
  430. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/MutableMap.js +0 -0
  431. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/MutableSet.d.ts +0 -0
  432. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/MutableSet.js +0 -0
  433. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Native.d.ts +0 -0
  434. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Native.js +0 -0
  435. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Numeric.d.ts +0 -0
  436. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Numeric.js +0 -0
  437. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Observable.d.ts +0 -0
  438. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Observable.js +0 -0
  439. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Option.d.ts +0 -0
  440. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Option.js +0 -0
  441. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/README.md +0 -0
  442. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Random.d.ts +0 -0
  443. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Random.js +0 -0
  444. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Range.d.ts +0 -0
  445. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Range.js +0 -0
  446. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Reflection.d.ts +0 -0
  447. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Reflection.js +0 -0
  448. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/RegExp.d.ts +0 -0
  449. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/RegExp.js +0 -0
  450. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Result.d.ts +0 -0
  451. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Result.js +0 -0
  452. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Seq.d.ts +0 -0
  453. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Seq.js +0 -0
  454. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Seq2.d.ts +0 -0
  455. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Seq2.js +0 -0
  456. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Set.d.ts +0 -0
  457. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Set.js +0 -0
  458. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/String.js +0 -0
  459. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/System.Collections.Generic.d.ts +0 -0
  460. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/System.Collections.Generic.js +0 -0
  461. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/System.Text.d.ts +0 -0
  462. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/System.Text.js +0 -0
  463. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/SystemException.d.ts +0 -0
  464. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/SystemException.js +0 -0
  465. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/TimeOnly.d.ts +0 -0
  466. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/TimeOnly.js +0 -0
  467. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/TimeSpan.d.ts +0 -0
  468. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/TimeSpan.js +0 -0
  469. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Timer.d.ts +0 -0
  470. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Timer.js +0 -0
  471. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Types.d.ts +0 -0
  472. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Types.js +0 -0
  473. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Unicode.13.0.0.d.ts +0 -0
  474. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Unicode.13.0.0.js +0 -0
  475. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Uri.d.ts +0 -0
  476. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Uri.js +0 -0
  477. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Util.d.ts +0 -0
  478. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/Util.js +0 -0
  479. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/big.d.ts +0 -0
  480. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/lib/big.d.ts +0 -0
  481. /package/fable_modules/{fable-library-js.4.22.0 → fable-library-js.4.24.0}/lib/big.js +0 -0
@@ -1,17 +1,17 @@
1
- import { Record, toString } from "../../fable_modules/fable-library-js.4.22.0/Types.js";
2
- import { zip, tryPick, map as map_1, tryFind, append, collect, choose, empty, length } from "../../fable_modules/fable-library-js.4.22.0/List.js";
3
- import { map, value as value_4, bind, defaultArg } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
4
- import { printf, toText } from "../../fable_modules/fable-library-js.4.22.0/String.js";
5
- import { record_type, list_type, option_type, string_type } from "../../fable_modules/fable-library-js.4.22.0/Reflection.js";
1
+ import { Record, toString } from "../../fable_modules/fable-library-js.4.24.0/Types.js";
2
+ import { zip, tryPick, map as map_1, tryFind, append, collect, choose, empty, length } from "../../fable_modules/fable-library-js.4.24.0/List.js";
3
+ import { map, value as value_4, bind, defaultArg } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
4
+ import { printf, toText } from "../../fable_modules/fable-library-js.4.24.0/String.js";
5
+ import { record_type, list_type, option_type, string_type } from "../../fable_modules/fable-library-js.4.24.0/Reflection.js";
6
6
  import { Protocol_$reflection } from "./Protocol.js";
7
7
  import { ProcessParameterValue_$reflection } from "./ProcessParameterValue.js";
8
8
  import { ProcessInput_tryMaterial_5B3D5BA9, ProcessInput_trySample_5B3D5BA9, ProcessInput_tryData_5B3D5BA9, ProcessInput_trySource_5B3D5BA9, ProcessInput_tryGetCharacteristicValues_5B3D5BA9, ProcessInput_$reflection } from "./ProcessInput.js";
9
9
  import { ProcessOutput_tryMaterial_Z42C11600, ProcessOutput_trySample_Z42C11600, ProcessOutput_tryData_Z42C11600, ProcessOutput_tryGetFactorValues_Z42C11600, ProcessOutput_tryGetCharacteristicValues_Z42C11600, ProcessOutput_$reflection } from "./ProcessOutput.js";
10
10
  import { Comment$_$reflection } from "../Comment.js";
11
11
  import { ActivePatterns_$007CRegex$007C_$007C } from "../Helper/Regex.js";
12
- import { parse } from "../../fable_modules/fable-library-js.4.22.0/Int32.js";
13
- import { List_distinct } from "../../fable_modules/fable-library-js.4.22.0/Seq2.js";
14
- import { safeHash, equals } from "../../fable_modules/fable-library-js.4.22.0/Util.js";
12
+ import { parse } from "../../fable_modules/fable-library-js.4.24.0/Int32.js";
13
+ import { List_distinct } from "../../fable_modules/fable-library-js.4.24.0/Seq2.js";
14
+ import { safeHash, equals } from "../../fable_modules/fable-library-js.4.24.0/Util.js";
15
15
  import { ProtocolParameter } from "./ProtocolParameter.js";
16
16
  import { Option_fromValueWithDefault } from "../Helper/Collections.js";
17
17
 
@@ -1,12 +1,12 @@
1
- import { Union, toString } from "../../fable_modules/fable-library-js.4.22.0/Types.js";
2
- import { printf, toText } from "../../fable_modules/fable-library-js.4.22.0/String.js";
1
+ import { Union, toString } from "../../fable_modules/fable-library-js.4.24.0/Types.js";
2
+ import { printf, toText } from "../../fable_modules/fable-library-js.4.24.0/String.js";
3
3
  import { Source_create_Z5CA08497, Source_getUnits_53E41069, Source_setCharacteristicValues, Source_get_empty, Source_$reflection } from "./Source.js";
4
4
  import { Sample_create_62424AD2, Sample_getUnits_53716792, Sample_setCharacteristicValues, Sample_$reflection } from "./Sample.js";
5
5
  import { Data, Data_$reflection } from "../Data.js";
6
6
  import { Material_create_Z66909A6D, Material_getUnits_ZBCDEB61, Material_setCharacteristicValues, Material_$reflection } from "./Material.js";
7
- import { union_type } from "../../fable_modules/fable-library-js.4.22.0/Reflection.js";
8
- import { unwrap, map, defaultArg } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
9
- import { empty, choose } from "../../fable_modules/fable-library-js.4.22.0/List.js";
7
+ import { union_type } from "../../fable_modules/fable-library-js.4.24.0/Reflection.js";
8
+ import { unwrap, map, defaultArg } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
9
+ import { empty, choose } from "../../fable_modules/fable-library-js.4.24.0/List.js";
10
10
  import { DataFile } from "../DataFile.js";
11
11
 
12
12
  export class ProcessInput extends Union {
@@ -1,11 +1,11 @@
1
- import { Union, toString } from "../../fable_modules/fable-library-js.4.22.0/Types.js";
2
- import { printf, toText } from "../../fable_modules/fable-library-js.4.22.0/String.js";
1
+ import { Union, toString } from "../../fable_modules/fable-library-js.4.24.0/Types.js";
2
+ import { printf, toText } from "../../fable_modules/fable-library-js.4.24.0/String.js";
3
3
  import { Sample_create_62424AD2, Sample_getUnits_53716792, Sample_setFactorValues, Sample_get_empty, Sample_$reflection } from "./Sample.js";
4
4
  import { Data, Data_$reflection } from "../Data.js";
5
5
  import { Material_create_Z66909A6D, Material_getUnits_ZBCDEB61, Material_$reflection } from "./Material.js";
6
- import { union_type } from "../../fable_modules/fable-library-js.4.22.0/Reflection.js";
7
- import { unwrap, map, defaultArg } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
8
- import { empty, choose } from "../../fable_modules/fable-library-js.4.22.0/List.js";
6
+ import { union_type } from "../../fable_modules/fable-library-js.4.24.0/Reflection.js";
7
+ import { unwrap, map, defaultArg } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
8
+ import { empty, choose } from "../../fable_modules/fable-library-js.4.24.0/List.js";
9
9
  import { DataFile } from "../DataFile.js";
10
10
 
11
11
  export class ProcessOutput extends Union {
@@ -1,9 +1,9 @@
1
- import { bind, unwrap, map, defaultArg } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
2
- import { int32ToString } from "../../fable_modules/fable-library-js.4.22.0/Util.js";
3
- import { printf, toText } from "../../fable_modules/fable-library-js.4.22.0/String.js";
1
+ import { bind, unwrap, map, defaultArg } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
2
+ import { int32ToString } from "../../fable_modules/fable-library-js.4.24.0/Util.js";
3
+ import { printf, toText } from "../../fable_modules/fable-library-js.4.24.0/String.js";
4
4
  import { ProtocolParameter_$reflection, ProtocolParameter } from "./ProtocolParameter.js";
5
- import { Record, toString } from "../../fable_modules/fable-library-js.4.22.0/Types.js";
6
- import { record_type, option_type } from "../../fable_modules/fable-library-js.4.22.0/Reflection.js";
5
+ import { Record, toString } from "../../fable_modules/fable-library-js.4.24.0/Types.js";
6
+ import { record_type, option_type } from "../../fable_modules/fable-library-js.4.24.0/Reflection.js";
7
7
  import { Value_$reflection } from "../Value.js";
8
8
  import { OntologyAnnotation_$reflection } from "../OntologyAnnotation.js";
9
9
 
@@ -1,12 +1,12 @@
1
- import { List_groupBy, List_distinct } from "../../fable_modules/fable-library-js.4.22.0/Seq2.js";
2
- import { singleton, zip, map, empty, collect, concat, filter, choose } from "../../fable_modules/fable-library-js.4.22.0/List.js";
3
- import { value as value_4, defaultArg, bind } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
4
- import { arrayHash, equalArrays, comparePrimitives, safeHash, equals, stringHash } from "../../fable_modules/fable-library-js.4.22.0/Util.js";
1
+ import { List_groupBy, List_distinct } from "../../fable_modules/fable-library-js.4.24.0/Seq2.js";
2
+ import { singleton, zip, map, empty, collect, concat, filter, choose } from "../../fable_modules/fable-library-js.4.24.0/List.js";
3
+ import { value as value_4, defaultArg, bind } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
4
+ import { arrayHash, equalArrays, comparePrimitives, safeHash, equals, stringHash } from "../../fable_modules/fable-library-js.4.24.0/Util.js";
5
5
  import { Process_getMaterials_763471FF, Process_getSamples_763471FF, Process_getSources_763471FF, Process_getData_763471FF, Process_getUnits_763471FF, Process_getFactors_763471FF, Process_tryGetOutputsWithFactorBy, Process_tryGetOutputsWithCharacteristicBy, Process_tryGetInputsWithCharacteristicBy, Process_getCharacteristics_763471FF, Process_getParameters_763471FF, Process_tryGetOutputsWithParameterBy, Process_tryGetInputsWithParameterBy } from "./Process.js";
6
- import { FSharpSet__Contains, ofList } from "../../fable_modules/fable-library-js.4.22.0/Set.js";
6
+ import { FSharpSet__Contains, ofList } from "../../fable_modules/fable-library-js.4.24.0/Set.js";
7
7
  import { ProcessOutput__get_Name, ProcessOutput_getName_Z42C11600 } from "./ProcessOutput.js";
8
8
  import { ProcessInput__get_Name, ProcessInput_getName_5B3D5BA9 } from "./ProcessInput.js";
9
- import { FSharpMap__TryFind, ofList as ofList_1 } from "../../fable_modules/fable-library-js.4.22.0/Map.js";
9
+ import { FSharpMap__TryFind, ofList as ofList_1 } from "../../fable_modules/fable-library-js.4.24.0/Map.js";
10
10
 
11
11
  /**
12
12
  * Returns the names of the protocols the given processes impelement
@@ -1,12 +1,12 @@
1
- import { Record } from "../../fable_modules/fable-library-js.4.22.0/Types.js";
2
- import { record_type, list_type, option_type, string_type } from "../../fable_modules/fable-library-js.4.22.0/Reflection.js";
1
+ import { Record } from "../../fable_modules/fable-library-js.4.24.0/Types.js";
2
+ import { record_type, list_type, option_type, string_type } from "../../fable_modules/fable-library-js.4.24.0/Reflection.js";
3
3
  import { OntologyAnnotation_$reflection } from "../OntologyAnnotation.js";
4
4
  import { ProtocolParameter_$reflection } from "./ProtocolParameter.js";
5
5
  import { Component_$reflection } from "./Component.js";
6
6
  import { Comment$_$reflection } from "../Comment.js";
7
- import { empty, filter, singleton, append, exists, tryFind } from "../../fable_modules/fable-library-js.4.22.0/List.js";
8
- import { equals } from "../../fable_modules/fable-library-js.4.22.0/Util.js";
9
- import { defaultArg, map } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
7
+ import { empty, filter, singleton, append, exists, tryFind } from "../../fable_modules/fable-library-js.4.24.0/List.js";
8
+ import { equals } from "../../fable_modules/fable-library-js.4.24.0/Util.js";
9
+ import { defaultArg, map } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
10
10
 
11
11
  export class Protocol extends Record {
12
12
  constructor(ID, Name, ProtocolType, Description, Uri, Version, Parameters, Components, Comments) {
@@ -1,8 +1,8 @@
1
1
  import { OntologyAnnotation_$reflection, OntologyAnnotation } from "../OntologyAnnotation.js";
2
- import { bind, map, defaultArg, unwrap } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
2
+ import { bind, map, defaultArg, unwrap } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
3
3
  import { Option_fromValueWithDefault } from "../Helper/Collections.js";
4
- import { Record, toString } from "../../fable_modules/fable-library-js.4.22.0/Types.js";
5
- import { record_type, option_type, string_type } from "../../fable_modules/fable-library-js.4.22.0/Reflection.js";
4
+ import { Record, toString } from "../../fable_modules/fable-library-js.4.24.0/Types.js";
5
+ import { record_type, option_type, string_type } from "../../fable_modules/fable-library-js.4.24.0/Reflection.js";
6
6
 
7
7
  export class ProtocolParameter extends Record {
8
8
  constructor(ID, ParameterName) {
@@ -1,8 +1,8 @@
1
- import { Record, toString } from "../../fable_modules/fable-library-js.4.22.0/Types.js";
2
- import { append, choose, empty, length } from "../../fable_modules/fable-library-js.4.22.0/List.js";
3
- import { defaultArg } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
4
- import { printf, toText } from "../../fable_modules/fable-library-js.4.22.0/String.js";
5
- import { record_type, list_type, option_type, string_type } from "../../fable_modules/fable-library-js.4.22.0/Reflection.js";
1
+ import { Record, toString } from "../../fable_modules/fable-library-js.4.24.0/Types.js";
2
+ import { append, choose, empty, length } from "../../fable_modules/fable-library-js.4.24.0/List.js";
3
+ import { defaultArg } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
4
+ import { printf, toText } from "../../fable_modules/fable-library-js.4.24.0/String.js";
5
+ import { record_type, list_type, option_type, string_type } from "../../fable_modules/fable-library-js.4.24.0/Reflection.js";
6
6
  import { MaterialAttributeValue_$reflection } from "./MaterialAttributeValue.js";
7
7
  import { FactorValue_$reflection } from "./FactorValue.js";
8
8
  import { Source_$reflection } from "./Source.js";
@@ -1,8 +1,8 @@
1
- import { Record, toString } from "../../fable_modules/fable-library-js.4.22.0/Types.js";
2
- import { choose, empty, length } from "../../fable_modules/fable-library-js.4.22.0/List.js";
3
- import { defaultArg } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
4
- import { printf, toText } from "../../fable_modules/fable-library-js.4.22.0/String.js";
5
- import { record_type, list_type, option_type, string_type } from "../../fable_modules/fable-library-js.4.22.0/Reflection.js";
1
+ import { Record, toString } from "../../fable_modules/fable-library-js.4.24.0/Types.js";
2
+ import { choose, empty, length } from "../../fable_modules/fable-library-js.4.24.0/List.js";
3
+ import { defaultArg } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
4
+ import { printf, toText } from "../../fable_modules/fable-library-js.4.24.0/String.js";
5
+ import { record_type, list_type, option_type, string_type } from "../../fable_modules/fable-library-js.4.24.0/Reflection.js";
6
6
  import { MaterialAttributeValue_$reflection } from "./MaterialAttributeValue.js";
7
7
 
8
8
  export class Source extends Record {
@@ -1,13 +1,13 @@
1
- import { map as map_1, defaultArg, unwrap } from "../fable_modules/fable-library-js.4.22.0/Option.js";
1
+ import { map as map_1, defaultArg, unwrap } from "../fable_modules/fable-library-js.4.24.0/Option.js";
2
2
  import { ResizeArray_map } from "./Helper/Collections.js";
3
3
  import { boxHashSeq, boxHashOption, boxHashArray } from "./Helper/HashCodes.js";
4
- import { safeHash } from "../fable_modules/fable-library-js.4.22.0/Util.js";
5
- import { StringBuilder__Append_Z721C83C5, StringBuilder_$ctor } from "../fable_modules/fable-library-js.4.22.0/System.Text.js";
6
- import { printf, toText, join } from "../fable_modules/fable-library-js.4.22.0/String.js";
7
- import { ofArray, choose, map } from "../fable_modules/fable-library-js.4.22.0/List.js";
8
- import { length } from "../fable_modules/fable-library-js.4.22.0/Seq.js";
9
- import { toString } from "../fable_modules/fable-library-js.4.22.0/Types.js";
10
- import { class_type } from "../fable_modules/fable-library-js.4.22.0/Reflection.js";
4
+ import { safeHash } from "../fable_modules/fable-library-js.4.24.0/Util.js";
5
+ import { StringBuilder__Append_Z721C83C5, StringBuilder_$ctor } from "../fable_modules/fable-library-js.4.24.0/System.Text.js";
6
+ import { printf, toText, join } from "../fable_modules/fable-library-js.4.24.0/String.js";
7
+ import { ofArray, choose, map } from "../fable_modules/fable-library-js.4.24.0/List.js";
8
+ import { length } from "../fable_modules/fable-library-js.4.24.0/Seq.js";
9
+ import { toString } from "../fable_modules/fable-library-js.4.24.0/Types.js";
10
+ import { class_type } from "../fable_modules/fable-library-js.4.24.0/Reflection.js";
11
11
 
12
12
  export class Publication {
13
13
  constructor(pubMedID, doi, authors, title, status, comments) {
@@ -1,22 +1,22 @@
1
1
  import { boxHashValues, Unchecked_alignByHeaders, Unchecked_extendToRowCount, Unchecked_removeRowCells_withIndexChange, Unchecked_addRows, Unchecked_addRow, Unchecked_getEmptyCellForHeader, Unchecked_moveColumnTo, Unchecked_removeColumnCells_withIndexChange, tryFindDuplicateUniqueInArray, Unchecked_removeColumnCells, Unchecked_removeHeader, Unchecked_fillMissingCells, Unchecked_addColumn, SanityChecks_validateColumn, tryFindDuplicateUnique, Unchecked_setCellAt, SanityChecks_validateRowIndex, SanityChecks_validateColumnIndex, Unchecked_tryGetCellAt, getRowCount, getColumnCount, SanityChecks_validate } from "./ArcTableAux.js";
2
- import { Dictionary } from "../../fable_modules/fable-library-js.4.22.0/MutableMap.js";
3
- import { compareArrays, safeHash, comparePrimitives, equals, disposeSafe, getEnumerator, arrayHash, equalArrays } from "../../fable_modules/fable-library-js.4.22.0/Util.js";
4
- import { value as value_3, map as map_2, unwrap, defaultArg } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
5
- import { item as item_1, fold, append as append_1, toList, indexed as indexed_1, choose, filter, length, tryFindIndex, empty, singleton, collect, removeAt, iterate, map, delay, toArray } from "../../fable_modules/fable-library-js.4.22.0/Seq.js";
6
- import { rangeDouble } from "../../fable_modules/fable-library-js.4.22.0/Range.js";
2
+ import { Dictionary } from "../../fable_modules/fable-library-js.4.24.0/MutableMap.js";
3
+ import { compareArrays, safeHash, comparePrimitives, equals, disposeSafe, getEnumerator, arrayHash, equalArrays } from "../../fable_modules/fable-library-js.4.24.0/Util.js";
4
+ import { value as value_3, map as map_2, unwrap, defaultArg } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
5
+ import { item as item_1, fold, append as append_1, toList, indexed as indexed_1, choose, filter, length, tryFindIndex, empty, singleton, collect, removeAt, iterate, map, delay, toArray } from "../../fable_modules/fable-library-js.4.24.0/Seq.js";
6
+ import { rangeDouble } from "../../fable_modules/fable-library-js.4.24.0/Range.js";
7
7
  import { ResizeArray_map } from "../Helper/Collections.js";
8
- import { getItemFromDict, addToDict } from "../../fable_modules/fable-library-js.4.22.0/MapUtil.js";
9
- import { join, printf, toFail } from "../../fable_modules/fable-library-js.4.22.0/String.js";
8
+ import { getItemFromDict, addToDict } from "../../fable_modules/fable-library-js.4.24.0/MapUtil.js";
9
+ import { join, printf, toFail } from "../../fable_modules/fable-library-js.4.24.0/String.js";
10
10
  import { CompositeColumn } from "./CompositeColumn.js";
11
- import { sortBy, indexed, mapIndexed, item, sortDescending, iterateIndexed, initialize, map as map_1 } from "../../fable_modules/fable-library-js.4.22.0/Array.js";
12
- import { append, iterate as iterate_1, isEmpty } from "../../fable_modules/fable-library-js.4.22.0/List.js";
13
- import { StringBuilder__AppendLine_Z721C83C5, StringBuilder_$ctor } from "../../fable_modules/fable-library-js.4.22.0/System.Text.js";
14
- import { toString } from "../../fable_modules/fable-library-js.4.22.0/Types.js";
11
+ import { sortBy, indexed, mapIndexed, item, sortDescending, iterateIndexed, initialize, map as map_1 } from "../../fable_modules/fable-library-js.4.24.0/Array.js";
12
+ import { append, iterate as iterate_1, isEmpty } from "../../fable_modules/fable-library-js.4.24.0/List.js";
13
+ import { StringBuilder__AppendLine_Z721C83C5, StringBuilder_$ctor } from "../../fable_modules/fable-library-js.4.24.0/System.Text.js";
14
+ import { toString } from "../../fable_modules/fable-library-js.4.24.0/Types.js";
15
15
  import { CompositeCell } from "./CompositeCell.js";
16
16
  import { CompositeHeader } from "./CompositeHeader.js";
17
- import { Array_groupBy } from "../../fable_modules/fable-library-js.4.22.0/Seq2.js";
17
+ import { Array_groupBy } from "../../fable_modules/fable-library-js.4.24.0/Seq2.js";
18
18
  import { boxHashSeq, boxHashArray } from "../Helper/HashCodes.js";
19
- import { class_type } from "../../fable_modules/fable-library-js.4.22.0/Reflection.js";
19
+ import { class_type } from "../../fable_modules/fable-library-js.4.24.0/Reflection.js";
20
20
 
21
21
  export class ArcTable {
22
22
  constructor(name, headers, values) {
@@ -1,20 +1,20 @@
1
- import { toList, head as head_1, toArray, filter, tryFindIndex, maxBy } from "../../fable_modules/fable-library-js.4.22.0/Seq.js";
2
- import { arrayHash, equalArrays, numberHash, disposeSafe, getEnumerator, compare, equals, safeHash, comparePrimitives } from "../../fable_modules/fable-library-js.4.22.0/Util.js";
3
- import { addToDict, getItemFromDict } from "../../fable_modules/fable-library-js.4.22.0/MapUtil.js";
4
- import { value as value_2 } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
5
- import { mapIndexed, pick, exists, ofSeq, empty, head, tail as tail_1, isEmpty, cons } from "../../fable_modules/fable-library-js.4.22.0/List.js";
6
- import { printf, toConsole } from "../../fable_modules/fable-library-js.4.22.0/String.js";
1
+ import { toList, head as head_1, toArray, filter, tryFindIndex, maxBy } from "../../fable_modules/fable-library-js.4.24.0/Seq.js";
2
+ import { arrayHash, equalArrays, numberHash, disposeSafe, getEnumerator, compare, equals, safeHash, comparePrimitives } from "../../fable_modules/fable-library-js.4.24.0/Util.js";
3
+ import { addToDict, getItemFromDict } from "../../fable_modules/fable-library-js.4.24.0/MapUtil.js";
4
+ import { value as value_2 } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
5
+ import { mapIndexed, pick, exists, ofSeq, empty, head, tail as tail_1, isEmpty, cons } from "../../fable_modules/fable-library-js.4.24.0/List.js";
6
+ import { printf, toConsole } from "../../fable_modules/fable-library-js.4.24.0/String.js";
7
7
  import { List_tryPickAndRemove, Dictionary_tryFind } from "../Helper/Collections.js";
8
8
  import { CompositeCell } from "./CompositeCell.js";
9
- import { max } from "../../fable_modules/fable-library-js.4.22.0/Double.js";
10
- import { setItem, item, map, iterateIndexed } from "../../fable_modules/fable-library-js.4.22.0/Array.js";
11
- import { tryFind, ofArray } from "../../fable_modules/fable-library-js.4.22.0/Map.js";
12
- import { Array_groupBy } from "../../fable_modules/fable-library-js.4.22.0/Seq2.js";
13
- import { FSharpSet__Contains, ofArray as ofArray_1 } from "../../fable_modules/fable-library-js.4.22.0/Set.js";
14
- import { toString } from "../../fable_modules/fable-library-js.4.22.0/Types.js";
15
- import { rangeDouble } from "../../fable_modules/fable-library-js.4.22.0/Range.js";
16
- import { op_UnaryNegation_Int32 } from "../../fable_modules/fable-library-js.4.22.0/Int32.js";
17
- import { Dictionary } from "../../fable_modules/fable-library-js.4.22.0/MutableMap.js";
9
+ import { max } from "../../fable_modules/fable-library-js.4.24.0/Double.js";
10
+ import { setItem, item, map, iterateIndexed } from "../../fable_modules/fable-library-js.4.24.0/Array.js";
11
+ import { tryFind, ofArray } from "../../fable_modules/fable-library-js.4.24.0/Map.js";
12
+ import { Array_groupBy } from "../../fable_modules/fable-library-js.4.24.0/Seq2.js";
13
+ import { FSharpSet__Contains, ofArray as ofArray_1 } from "../../fable_modules/fable-library-js.4.24.0/Set.js";
14
+ import { toString } from "../../fable_modules/fable-library-js.4.24.0/Types.js";
15
+ import { rangeDouble } from "../../fable_modules/fable-library-js.4.24.0/Range.js";
16
+ import { op_UnaryNegation_Int32 } from "../../fable_modules/fable-library-js.4.24.0/Int32.js";
17
+ import { Dictionary } from "../../fable_modules/fable-library-js.4.24.0/MutableMap.js";
18
18
 
19
19
  export function getColumnCount(headers) {
20
20
  return headers.length;
@@ -1,16 +1,16 @@
1
- import { append, toArray, reduce, choose, map as map_1, delay, toList, length, findIndex, tryFindIndex } from "../../fable_modules/fable-library-js.4.22.0/Seq.js";
1
+ import { append, toArray, reduce, choose, map as map_1, delay, toList, length, findIndex, tryFindIndex } from "../../fable_modules/fable-library-js.4.24.0/Seq.js";
2
2
  import { Dictionary_tryFind } from "../Helper/Collections.js";
3
- import { addToSet, addToDict } from "../../fable_modules/fable-library-js.4.22.0/MapUtil.js";
4
- import { toIterator, equals, comparePrimitives, stringHash, compare, disposeSafe, getEnumerator } from "../../fable_modules/fable-library-js.4.22.0/Util.js";
5
- import { bind, map as map_2, unwrap, defaultArg, value as value_2 } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
6
- import { collect, map as map_3, item, insertRangeInPlace, fold } from "../../fable_modules/fable-library-js.4.22.0/Array.js";
3
+ import { addToSet, addToDict } from "../../fable_modules/fable-library-js.4.24.0/MapUtil.js";
4
+ import { toIterator, equals, comparePrimitives, stringHash, compare, disposeSafe, getEnumerator } from "../../fable_modules/fable-library-js.4.24.0/Util.js";
5
+ import { bind, map as map_2, unwrap, defaultArg, value as value_2 } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
6
+ import { collect, map as map_3, item, insertRangeInPlace, fold } from "../../fable_modules/fable-library-js.4.24.0/Array.js";
7
7
  import { CompositeHeader } from "./CompositeHeader.js";
8
- import { Array_groupBy, distinct } from "../../fable_modules/fable-library-js.4.22.0/Seq2.js";
9
- import { FSharpSet__get_IsEmpty, ofSeq, intersect } from "../../fable_modules/fable-library-js.4.22.0/Set.js";
8
+ import { Array_groupBy, distinct } from "../../fable_modules/fable-library-js.4.24.0/Seq2.js";
9
+ import { FSharpSet__get_IsEmpty, ofSeq, intersect } from "../../fable_modules/fable-library-js.4.24.0/Set.js";
10
10
  import { ArcTable } from "./ArcTable.js";
11
- import { tryFind, ofSeq as ofSeq_1 } from "../../fable_modules/fable-library-js.4.22.0/Map.js";
11
+ import { tryFind, ofSeq as ofSeq_1 } from "../../fable_modules/fable-library-js.4.24.0/Map.js";
12
12
  import { Unchecked_fillMissingCells } from "./ArcTableAux.js";
13
- import { class_type } from "../../fable_modules/fable-library-js.4.22.0/Reflection.js";
13
+ import { class_type } from "../../fable_modules/fable-library-js.4.24.0/Reflection.js";
14
14
 
15
15
  /**
16
16
  * If a table with the given name exists in the TableList, returns it, else returns None.
@@ -1,8 +1,8 @@
1
- import { unwrap, defaultArg } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
1
+ import { unwrap, defaultArg } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
2
2
  import { OntologyAnnotation_$reflection, OntologyAnnotation } from "../OntologyAnnotation.js";
3
3
  import { Data_$reflection, Data } from "../Data.js";
4
- import { Union } from "../../fable_modules/fable-library-js.4.22.0/Types.js";
5
- import { union_type, string_type } from "../../fable_modules/fable-library-js.4.22.0/Reflection.js";
4
+ import { Union } from "../../fable_modules/fable-library-js.4.24.0/Types.js";
5
+ import { union_type, string_type } from "../../fable_modules/fable-library-js.4.24.0/Reflection.js";
6
6
 
7
7
  export class CompositeCell extends Union {
8
8
  constructor(tag, fields) {
@@ -1,9 +1,9 @@
1
- import { unwrap, defaultArg } from "../../fable_modules/fable-library-js.4.22.0/Option.js";
2
- import { fold, empty, singleton, collect, delay, toArray, exists } from "../../fable_modules/fable-library-js.4.22.0/Seq.js";
1
+ import { unwrap, defaultArg } from "../../fable_modules/fable-library-js.4.24.0/Option.js";
2
+ import { fold, empty, singleton, collect, delay, toArray, exists } from "../../fable_modules/fable-library-js.4.24.0/Seq.js";
3
3
  import { CompositeCell_$reflection, CompositeCell } from "./CompositeCell.js";
4
- import { Record } from "../../fable_modules/fable-library-js.4.22.0/Types.js";
4
+ import { Record } from "../../fable_modules/fable-library-js.4.24.0/Types.js";
5
5
  import { CompositeHeader_$reflection } from "./CompositeHeader.js";
6
- import { record_type, array_type } from "../../fable_modules/fable-library-js.4.22.0/Reflection.js";
6
+ import { record_type, array_type } from "../../fable_modules/fable-library-js.4.24.0/Reflection.js";
7
7
 
8
8
  export class CompositeColumn extends Record {
9
9
  constructor(Header, Cells) {
@@ -1,8 +1,8 @@
1
- import { map } from "../../fable_modules/fable-library-js.4.22.0/Array.js";
2
- import { union_type, string_type, getUnionCases, name } from "../../fable_modules/fable-library-js.4.22.0/Reflection.js";
3
- import { Union, toString } from "../../fable_modules/fable-library-js.4.22.0/Types.js";
1
+ import { map } from "../../fable_modules/fable-library-js.4.24.0/Array.js";
2
+ import { union_type, string_type, getUnionCases, name } from "../../fable_modules/fable-library-js.4.24.0/Reflection.js";
3
+ import { Union, toString } from "../../fable_modules/fable-library-js.4.24.0/Types.js";
4
4
  import { ActivePatterns_$007CTermColumn$007C_$007C, Pattern_CommentPattern, Pattern_OutputPattern, Pattern_InputPattern, ActivePatterns_$007CRegex$007C_$007C, tryParseIOTypeHeader } from "../Helper/Regex.js";
5
- import { printf, toFail } from "../../fable_modules/fable-library-js.4.22.0/String.js";
5
+ import { printf, toFail } from "../../fable_modules/fable-library-js.4.24.0/String.js";
6
6
  import { OntologyAnnotation_$reflection, OntologyAnnotation } from "../OntologyAnnotation.js";
7
7
 
8
8
  export class IOType extends Union {
package/Core/Template.js CHANGED
@@ -1,13 +1,13 @@
1
- import { safeHash, equals } from "../fable_modules/fable-library-js.4.22.0/Util.js";
2
- import { Union } from "../fable_modules/fable-library-js.4.22.0/Types.js";
3
- import { class_type, union_type, string_type } from "../fable_modules/fable-library-js.4.22.0/Reflection.js";
4
- import { defaultArg, unwrap } from "../fable_modules/fable-library-js.4.22.0/Option.js";
5
- import { newGuid } from "../fable_modules/fable-library-js.4.22.0/Guid.js";
1
+ import { safeHash, equals } from "../fable_modules/fable-library-js.4.24.0/Util.js";
2
+ import { Union } from "../fable_modules/fable-library-js.4.24.0/Types.js";
3
+ import { class_type, union_type, string_type } from "../fable_modules/fable-library-js.4.24.0/Reflection.js";
4
+ import { defaultArg, unwrap } from "../fable_modules/fable-library-js.4.24.0/Option.js";
5
+ import { newGuid } from "../fable_modules/fable-library-js.4.24.0/Guid.js";
6
6
  import { ArcTable } from "./Table/ArcTable.js";
7
7
  import { SemVer_tryOfString_Z721C83C5 } from "./Helper/SemVer.js";
8
8
  import { ResizeArray_map } from "./Helper/Collections.js";
9
9
  import { hashDateTime, boxHashSeq, boxHashArray } from "./Helper/HashCodes.js";
10
- import { now } from "../fable_modules/fable-library-js.4.22.0/Date.js";
10
+ import { now } from "../fable_modules/fable-library-js.4.24.0/Date.js";
11
11
 
12
12
  export class Organisation extends Union {
13
13
  constructor(tag, fields) {
package/Core/Templates.js CHANGED
@@ -1,10 +1,10 @@
1
- import { defaultArg } from "../fable_modules/fable-library-js.4.22.0/Option.js";
1
+ import { defaultArg } from "../fable_modules/fable-library-js.4.24.0/Option.js";
2
2
  import { ResizeArray_append, ResizeArray_collect, ResizeArray_distinct, ResizeArray_filter } from "./Helper/Collections.js";
3
- import { uncurry2, safeHash, equals, disposeSafe, getEnumerator } from "../fable_modules/fable-library-js.4.22.0/Util.js";
4
- import { contains as contains_1 } from "../fable_modules/fable-library-js.4.22.0/Seq.js";
5
- import { addRangeInPlace, item } from "../fable_modules/fable-library-js.4.22.0/Array.js";
6
- import { Array_distinct } from "../fable_modules/fable-library-js.4.22.0/Seq2.js";
7
- import { class_type } from "../fable_modules/fable-library-js.4.22.0/Reflection.js";
3
+ import { uncurry2, safeHash, equals, disposeSafe, getEnumerator } from "../fable_modules/fable-library-js.4.24.0/Util.js";
4
+ import { contains as contains_1 } from "../fable_modules/fable-library-js.4.24.0/Seq.js";
5
+ import { addRangeInPlace, item } from "../fable_modules/fable-library-js.4.24.0/Array.js";
6
+ import { Array_distinct } from "../fable_modules/fable-library-js.4.24.0/Seq2.js";
7
+ import { class_type } from "../fable_modules/fable-library-js.4.24.0/Reflection.js";
8
8
 
9
9
  export function TemplatesAux_getComparer(matchAll) {
10
10
  if (defaultArg(matchAll, false)) {
package/Core/Value.js CHANGED
@@ -1,11 +1,11 @@
1
- import { tryParse } from "../fable_modules/fable-library-js.4.22.0/Int32.js";
2
- import { Union, toString, FSharpRef } from "../fable_modules/fable-library-js.4.22.0/Types.js";
3
- import { tryParse as tryParse_1 } from "../fable_modules/fable-library-js.4.22.0/Double.js";
1
+ import { tryParse } from "../fable_modules/fable-library-js.4.24.0/Int32.js";
2
+ import { Union, toString, FSharpRef } from "../fable_modules/fable-library-js.4.24.0/Types.js";
3
+ import { tryParse as tryParse_1 } from "../fable_modules/fable-library-js.4.24.0/Double.js";
4
4
  import { OntologyAnnotation_$reflection, OntologyAnnotation } from "./OntologyAnnotation.js";
5
- import { unwrap, defaultArg } from "../fable_modules/fable-library-js.4.22.0/Option.js";
6
- import { int32ToString } from "../fable_modules/fable-library-js.4.22.0/Util.js";
7
- import { printf, toText } from "../fable_modules/fable-library-js.4.22.0/String.js";
8
- import { union_type, string_type, float64_type, int32_type } from "../fable_modules/fable-library-js.4.22.0/Reflection.js";
5
+ import { unwrap, defaultArg } from "../fable_modules/fable-library-js.4.24.0/Option.js";
6
+ import { int32ToString } from "../fable_modules/fable-library-js.4.24.0/Util.js";
7
+ import { printf, toText } from "../fable_modules/fable-library-js.4.24.0/String.js";
8
+ import { union_type, string_type, float64_type, int32_type } from "../fable_modules/fable-library-js.4.24.0/Reflection.js";
9
9
 
10
10
  export class Value extends Union {
11
11
  constructor(tag, fields) {
package/CrossAsync.js ADDED
@@ -0,0 +1,34 @@
1
+ import { PromiseBuilder__Delay_62FBFDE1, PromiseBuilder__Run_212F1D4B } from "./fable_modules/Fable.Promise.3.2.0/Promise.fs.js";
2
+ import { promise } from "./fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js";
3
+ import { append } from "./fable_modules/fable-library-js.4.24.0/Array.js";
4
+ import { getEnumerator } from "./fable_modules/fable-library-js.4.24.0/Util.js";
5
+ import { awaitPromise } from "./fable_modules/fable-library-js.4.24.0/Async.js";
6
+ import { FSharpResult$2 } from "./fable_modules/fable-library-js.4.24.0/Result.js";
7
+ import { toString } from "./fable_modules/fable-library-js.4.24.0/Types.js";
8
+
9
+ export function startSequential(starterF, tasks) {
10
+ const loop = (en) => PromiseBuilder__Run_212F1D4B(promise, PromiseBuilder__Delay_62FBFDE1(promise, () => (en["System.Collections.IEnumerator.MoveNext"]() ? (starterF(en["System.Collections.Generic.IEnumerator`1.get_Current"]()).then((_arg) => (loop(en).then((_arg_1) => (Promise.resolve(append([_arg], _arg_1))))))) : (Promise.resolve([])))));
11
+ return loop(getEnumerator(tasks));
12
+ }
13
+
14
+ export function all(tasks) {
15
+ return Promise.all(tasks);
16
+ }
17
+
18
+ export function map(f, v) {
19
+ return PromiseBuilder__Run_212F1D4B(promise, PromiseBuilder__Delay_62FBFDE1(promise, () => (v.then((_arg) => (Promise.resolve(f(_arg)))))));
20
+ }
21
+
22
+ export function asAsync(v) {
23
+ return awaitPromise(v);
24
+ }
25
+
26
+ export function catchWith(f, p) {
27
+ return p.catch(f);
28
+ }
29
+
30
+ export function catchAsResult(p) {
31
+ const pr_1 = p.then((x) => (new FSharpResult$2(0, [x])));
32
+ return pr_1.catch((e) => (new FSharpResult$2(1, [toString(e)])));
33
+ }
34
+
@@ -1,5 +1,5 @@
1
- import { Record } from "../fable_modules/fable-library-js.4.22.0/Types.js";
2
- import { record_type, class_type, string_type } from "../fable_modules/fable-library-js.4.22.0/Reflection.js";
1
+ import { Record } from "../fable_modules/fable-library-js.4.24.0/Types.js";
2
+ import { record_type, class_type, string_type } from "../fable_modules/fable-library-js.4.24.0/Reflection.js";
3
3
 
4
4
  export class Commit extends Record {
5
5
  constructor(Hash, UserName, UserEmail, Date$, Message) {
@@ -1,9 +1,9 @@
1
- import { defaultArg } from "../fable_modules/fable-library-js.4.22.0/Option.js";
1
+ import { defaultArg } from "../fable_modules/fable-library-js.4.24.0/Option.js";
2
2
  import { FileSystemTree_$reflection, FileSystemTree } from "./FileSystemTree.js";
3
- import { map, append } from "../fable_modules/fable-library-js.4.22.0/Array.js";
4
- import { Record } from "../fable_modules/fable-library-js.4.22.0/Types.js";
3
+ import { map, append } from "../fable_modules/fable-library-js.4.24.0/Array.js";
4
+ import { Record } from "../fable_modules/fable-library-js.4.24.0/Types.js";
5
5
  import { Commit_$reflection } from "./Commit.js";
6
- import { record_type, array_type } from "../fable_modules/fable-library-js.4.22.0/Reflection.js";
6
+ import { record_type, array_type } from "../fable_modules/fable-library-js.4.24.0/Reflection.js";
7
7
 
8
8
  export class FileSystem extends Record {
9
9
  constructor(Tree, History) {
@@ -1,12 +1,12 @@
1
- import { unwrap, defaultArg } from "../fable_modules/fable-library-js.4.22.0/Option.js";
2
- import { append as append_1, choose, equalsWith, tail, head, map, tryFind } from "../fable_modules/fable-library-js.4.22.0/Array.js";
3
- import { singleton, append, delay, toArray } from "../fable_modules/fable-library-js.4.22.0/Seq.js";
4
- import { Array_distinct, Array_groupBy } from "../fable_modules/fable-library-js.4.22.0/Seq2.js";
5
- import { curry2, arrayHash, stringHash } from "../fable_modules/fable-library-js.4.22.0/Util.js";
1
+ import { unwrap, defaultArg } from "../fable_modules/fable-library-js.4.24.0/Option.js";
2
+ import { append as append_1, choose, equalsWith, tail, head, map, tryFind } from "../fable_modules/fable-library-js.4.24.0/Array.js";
3
+ import { singleton, append, delay, toArray } from "../fable_modules/fable-library-js.4.24.0/Seq.js";
4
+ import { Array_distinct, Array_groupBy } from "../fable_modules/fable-library-js.4.24.0/Seq2.js";
5
+ import { curry2, arrayHash, stringHash } from "../fable_modules/fable-library-js.4.24.0/Util.js";
6
6
  import { combineMany, split } from "./Path.js";
7
- import { empty, reverse, toArray as toArray_1, cons } from "../fable_modules/fable-library-js.4.22.0/List.js";
8
- import { Union } from "../fable_modules/fable-library-js.4.22.0/Types.js";
9
- import { union_type, array_type, string_type } from "../fable_modules/fable-library-js.4.22.0/Reflection.js";
7
+ import { empty, reverse, toArray as toArray_1, cons } from "../fable_modules/fable-library-js.4.24.0/List.js";
8
+ import { Union } from "../fable_modules/fable-library-js.4.24.0/Types.js";
9
+ import { union_type, array_type, string_type } from "../fable_modules/fable-library-js.4.24.0/Reflection.js";
10
10
 
11
11
  export class FileSystemTree extends Union {
12
12
  constructor(tag, fields) {
@@ -1,5 +1,5 @@
1
- import { trim, join, trimStart, trimEnd, split as split_1 } from "../fable_modules/fable-library-js.4.22.0/String.js";
2
- import { last, mapIndexed } from "../fable_modules/fable-library-js.4.22.0/Array.js";
1
+ import { trim, join, trimStart, trimEnd, split as split_1 } from "../fable_modules/fable-library-js.4.24.0/String.js";
2
+ import { last, mapIndexed } from "../fable_modules/fable-library-js.4.24.0/Array.js";
3
3
 
4
4
  export const seperators = ["/", "\\"];
5
5
 
package/FileSystem.js ADDED
@@ -0,0 +1,102 @@
1
+ // const fs = require('fs/promises');
2
+ // const pathModule = require('path');
3
+
4
+ import fs from 'fs/promises'
5
+ import * as pathModule from 'path'
6
+
7
+ // Check if a directory exists
8
+ export async function directoryExists(path) {
9
+ try {
10
+ const stats = await fs.stat(path);
11
+ return stats.isDirectory();
12
+ } catch (err) {
13
+ if (err.code === 'ENOENT') return false;
14
+ throw err;
15
+ }
16
+ }
17
+
18
+ // Create a directory
19
+ export async function createDirectory(path) {
20
+ await fs.mkdir(path, { recursive: true });
21
+ }
22
+
23
+ // Ensure a directory exists
24
+ export async function ensureDirectory(path) {
25
+ if (!(await directoryExists(path))) {
26
+ await createDirectory(path);
27
+ }
28
+ }
29
+
30
+ // Ensure the directory for a file exists
31
+ export async function ensureDirectoryOfFile(filePath) {
32
+ const dir = pathModule.dirname(filePath);
33
+ await ensureDirectory(dir);
34
+ }
35
+
36
+ // Check if a file exists
37
+ export async function fileExists(path) {
38
+ try {
39
+ const stats = await fs.stat(path);
40
+ return stats.isFile();
41
+ } catch (err) {
42
+ if (err.code === 'ENOENT') return false;
43
+ throw err;
44
+ }
45
+ }
46
+
47
+ // Get subdirectories in a directory combined with the input path
48
+ export async function getSubDirectories(path) {
49
+ const entries = await fs.readdir(path, { withFileTypes: true });
50
+ return entries.filter(entry => entry.isDirectory()).map(entry => pathModule.join(path, entry.name));
51
+ }
52
+
53
+ // write a function which returns the path of all files in a directory combined with the input path
54
+ export async function getSubFiles(path) {
55
+ const entries = await fs.readdir(path, { withFileTypes: true });
56
+ return entries.filter(entry => entry.isFile()).map(entry => pathModule.join(path, entry.name));
57
+ }
58
+
59
+ // Move a file
60
+ export async function moveFile(oldPath, newPath) {
61
+ await fs.rename(oldPath, newPath);
62
+ }
63
+
64
+ // Move a directory
65
+ export async function moveDirectory(oldPath, newPath) {
66
+ await fs.rename(oldPath, newPath);
67
+ }
68
+
69
+ // Delete a file
70
+ export async function deleteFile(path) {
71
+ try {
72
+ await fs.unlink(path);
73
+ }
74
+ catch (err) {
75
+ if (err.code !== 'ENOENT') throw err;
76
+ }
77
+ }
78
+
79
+ // Delete a directory (and its contents)
80
+ export async function deleteDirectory(path) {
81
+ await fs.rm(path, { recursive: true, force: true });
82
+ }
83
+
84
+ // Read file as text
85
+ export async function readFileText(path) {
86
+ return await fs.readFile(path, 'utf-8');
87
+ }
88
+
89
+ // Read file as binary
90
+ export async function readFileBinary(path) {
91
+ return await fs.readFile(path);
92
+ }
93
+
94
+ // Write text to a file
95
+ export async function writeFileText(path, text) {
96
+ await fs.writeFile(path, text, 'utf-8');
97
+ }
98
+
99
+ // Write binary data to a file
100
+ export async function writeFileBinary(path, bytes) {
101
+ await fs.writeFile(path, bytes);
102
+ }