@nfdi4plants/arctrl 1.0.0-beta.4 → 1.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 (244) hide show
  1. package/ARC.js +84 -25
  2. package/Contract/Contract.js +16 -5
  3. package/Contracts/Contracts.ARCtrl.js +1 -3
  4. package/Contracts/Contracts.ArcTypes.js +269 -0
  5. package/Contracts/Contracts.Git.js +4 -4
  6. package/FileSystem/Commit.js +2 -2
  7. package/FileSystem/FileSystem.js +4 -4
  8. package/FileSystem/FileSystemTree.js +8 -8
  9. package/FileSystem/Path.js +2 -2
  10. package/FileSystemTree.js +1 -1
  11. package/ISA/ISA/ArcTypes/ArcTable.js +39 -13
  12. package/ISA/ISA/ArcTypes/ArcTableAux.js +12 -12
  13. package/ISA/ISA/ArcTypes/ArcTables.js +24 -14
  14. package/ISA/ISA/ArcTypes/ArcTypes.js +143 -61
  15. package/ISA/ISA/ArcTypes/CompositeCell.js +8 -4
  16. package/ISA/ISA/ArcTypes/CompositeColumn.js +26 -5
  17. package/ISA/ISA/ArcTypes/CompositeHeader.js +32 -8
  18. package/ISA/ISA/ArcTypes/CompositeRow.js +1 -1
  19. package/ISA/ISA/Builder/Types.js +5 -5
  20. package/ISA/ISA/Fable.js +5 -5
  21. package/ISA/ISA/Helper.js +163 -9
  22. package/ISA/ISA/Identifier.js +3 -3
  23. package/ISA/ISA/JsonTypes/AnnotationValue.js +5 -5
  24. package/ISA/ISA/JsonTypes/Assay.js +8 -8
  25. package/ISA/ISA/JsonTypes/AssayMaterials.js +4 -4
  26. package/ISA/ISA/JsonTypes/ColumnIndex.js +5 -5
  27. package/ISA/ISA/JsonTypes/Comment.js +3 -3
  28. package/ISA/ISA/JsonTypes/CommentList.js +4 -4
  29. package/ISA/ISA/JsonTypes/Component.js +5 -5
  30. package/ISA/ISA/JsonTypes/Data.js +4 -4
  31. package/ISA/ISA/JsonTypes/DataFile.js +2 -2
  32. package/ISA/ISA/JsonTypes/Factor.js +6 -6
  33. package/ISA/ISA/JsonTypes/FactorValue.js +5 -5
  34. package/ISA/ISA/JsonTypes/Investigation.js +6 -6
  35. package/ISA/ISA/JsonTypes/Material.js +5 -5
  36. package/ISA/ISA/JsonTypes/MaterialAttribute.js +3 -3
  37. package/ISA/ISA/JsonTypes/MaterialAttributeValue.js +5 -5
  38. package/ISA/ISA/JsonTypes/MaterialType.js +2 -2
  39. package/ISA/ISA/JsonTypes/OntologyAnnotation.js +6 -6
  40. package/ISA/ISA/JsonTypes/OntologySourceReference.js +6 -6
  41. package/ISA/ISA/JsonTypes/Person.js +7 -7
  42. package/ISA/ISA/JsonTypes/Process.js +10 -10
  43. package/ISA/ISA/JsonTypes/ProcessInput.js +5 -5
  44. package/ISA/ISA/JsonTypes/ProcessOutput.js +5 -5
  45. package/ISA/ISA/JsonTypes/ProcessParameterValue.js +5 -5
  46. package/ISA/ISA/JsonTypes/ProcessSequence.js +6 -6
  47. package/ISA/ISA/JsonTypes/Protocol.js +6 -6
  48. package/ISA/ISA/JsonTypes/ProtocolParameter.js +3 -3
  49. package/ISA/ISA/JsonTypes/Publication.js +6 -6
  50. package/ISA/ISA/JsonTypes/Sample.js +5 -5
  51. package/ISA/ISA/JsonTypes/Source.js +5 -5
  52. package/ISA/ISA/JsonTypes/Study.js +8 -8
  53. package/ISA/ISA/JsonTypes/StudyMaterials.js +4 -4
  54. package/ISA/ISA/JsonTypes/Value.js +7 -7
  55. package/ISA/ISA/Regex.js +3 -3
  56. package/ISA/ISA/UIHelper.js +19 -0
  57. package/ISA/ISA.Json/Assay.js +3 -3
  58. package/ISA/ISA.Json/Comment.js +5 -5
  59. package/ISA/ISA.Json/ConverterOptions.js +1 -1
  60. package/ISA/ISA.Json/Data.js +5 -5
  61. package/ISA/ISA.Json/Decode.js +4 -4
  62. package/ISA/ISA.Json/Factor.js +5 -5
  63. package/ISA/ISA.Json/GEncode.js +3 -3
  64. package/ISA/ISA.Json/Investigation.js +4 -4
  65. package/ISA/ISA.Json/Material.js +5 -5
  66. package/ISA/ISA.Json/Ontology.js +6 -6
  67. package/ISA/ISA.Json/Person.js +5 -5
  68. package/ISA/ISA.Json/Process.js +5 -5
  69. package/ISA/ISA.Json/Protocol.js +6 -6
  70. package/ISA/ISA.Json/Publication.js +4 -4
  71. package/ISA/ISA.Json/Study.js +4 -4
  72. package/ISA/ISA.Json/Validation/Fable.js +6 -6
  73. package/ISA/ISA.Json/Validation/JsonSchemaValidation.js +1 -1
  74. package/ISA/ISA.Json/Validation/ValidationResult.js +2 -2
  75. package/ISA/ISA.Spreadsheet/AnnotationTable/ArcTable.js +4 -4
  76. package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeCell.js +2 -2
  77. package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeColumn.js +5 -5
  78. package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeHeader.js +4 -4
  79. package/ISA/ISA.Spreadsheet/ArcAssay.js +5 -5
  80. package/ISA/ISA.Spreadsheet/ArcInvestigation.js +15 -12
  81. package/ISA/ISA.Spreadsheet/ArcStudy.js +5 -5
  82. package/ISA/ISA.Spreadsheet/CollectionAux.js +7 -7
  83. package/ISA/ISA.Spreadsheet/Metadata/Assays.js +5 -5
  84. package/ISA/ISA.Spreadsheet/Metadata/Comment.js +3 -3
  85. package/ISA/ISA.Spreadsheet/Metadata/Contacts.js +5 -5
  86. package/ISA/ISA.Spreadsheet/Metadata/Conversions.js +5 -5
  87. package/ISA/ISA.Spreadsheet/Metadata/DesignDescriptors.js +1 -1
  88. package/ISA/ISA.Spreadsheet/Metadata/Factors.js +5 -5
  89. package/ISA/ISA.Spreadsheet/Metadata/OntologyAnnotation.js +5 -5
  90. package/ISA/ISA.Spreadsheet/Metadata/OntologySourceReference.js +5 -5
  91. package/ISA/ISA.Spreadsheet/Metadata/Protocols.js +5 -5
  92. package/ISA/ISA.Spreadsheet/Metadata/Publication.js +5 -5
  93. package/ISA/ISA.Spreadsheet/Metadata/SparseTable.js +10 -10
  94. package/ISA/ISA.Spreadsheet/Metadata/Study.js +8 -8
  95. package/Path.js +10 -0
  96. package/SemVer.js +7 -7
  97. package/Templates/Template.Json.js +7 -7
  98. package/Templates/Template.Spreadsheet.js +10 -10
  99. package/Templates/Template.Web.js +4 -4
  100. package/Templates/Template.js +7 -7
  101. package/Templates/Templates.js +5 -5
  102. package/WebRequest/WebRequest.js +4 -4
  103. package/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +7 -7
  104. package/fable_modules/Fable.Promise.2.2.2/Promise.fs.js +3 -3
  105. package/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +8 -8
  106. package/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +2 -2
  107. package/fable_modules/FsSpreadsheet.5.0.1/Cells/FsCell.fs.js +14 -14
  108. package/fable_modules/FsSpreadsheet.5.0.1/Cells/FsCellsCollection.fs.js +6 -6
  109. package/fable_modules/FsSpreadsheet.5.0.1/DSL/CellBuilder.fs.js +4 -4
  110. package/fable_modules/FsSpreadsheet.5.0.1/DSL/ColumnBuilder.fs.js +3 -3
  111. package/fable_modules/FsSpreadsheet.5.0.1/DSL/DSL.fs.js +2 -2
  112. package/fable_modules/FsSpreadsheet.5.0.1/DSL/Expression.fs.js +1 -1
  113. package/fable_modules/FsSpreadsheet.5.0.1/DSL/RowBuilder.fs.js +3 -3
  114. package/fable_modules/FsSpreadsheet.5.0.1/DSL/SheetBuilder.fs.js +3 -3
  115. package/fable_modules/FsSpreadsheet.5.0.1/DSL/TableBuilder.fs.js +3 -3
  116. package/fable_modules/FsSpreadsheet.5.0.1/DSL/Transform.fs.js +6 -6
  117. package/fable_modules/FsSpreadsheet.5.0.1/DSL/Types.fs.js +4 -4
  118. package/fable_modules/FsSpreadsheet.5.0.1/DSL/WorkbookBuilder.fs.js +3 -3
  119. package/fable_modules/FsSpreadsheet.5.0.1/FsAddress.fs.js +5 -5
  120. package/fable_modules/FsSpreadsheet.5.0.1/FsColumn.fs.js +3 -3
  121. package/fable_modules/FsSpreadsheet.5.0.1/FsRow.fs.js +3 -3
  122. package/fable_modules/FsSpreadsheet.5.0.1/FsWorkbook.fs.js +6 -6
  123. package/fable_modules/FsSpreadsheet.5.0.1/FsWorksheet.fs.js +9 -9
  124. package/fable_modules/FsSpreadsheet.5.0.1/Ranges/FsRange.fs.js +3 -3
  125. package/fable_modules/FsSpreadsheet.5.0.1/Ranges/FsRangeAddress.fs.js +2 -2
  126. package/fable_modules/FsSpreadsheet.5.0.1/Ranges/FsRangeBase.fs.js +3 -3
  127. package/fable_modules/FsSpreadsheet.5.0.1/Ranges/FsRangeColumn.fs.js +3 -3
  128. package/fable_modules/FsSpreadsheet.5.0.1/Ranges/FsRangeRow.fs.js +1 -1
  129. package/fable_modules/FsSpreadsheet.5.0.1/SheetBuilder.fs.js +8 -8
  130. package/fable_modules/FsSpreadsheet.5.0.1/Tables/FsTable.fs.js +7 -7
  131. package/fable_modules/FsSpreadsheet.5.0.1/Tables/FsTableField.fs.js +4 -4
  132. package/fable_modules/FsSpreadsheet.5.0.1/Tables/FsTableRow.fs.js +1 -1
  133. package/fable_modules/Thoth.Json.10.1.0/Decode.fs.js +20 -20
  134. package/fable_modules/Thoth.Json.10.1.0/Encode.fs.js +13 -13
  135. package/fable_modules/Thoth.Json.10.1.0/Extra.fs.js +2 -2
  136. package/fable_modules/Thoth.Json.10.1.0/Types.fs.js +6 -6
  137. package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Util.js +1 -2
  138. package/fable_modules/project_cracked.json +1 -1
  139. package/package.json +1 -1
  140. package/Contracts/Contracts.ArcAssay.js +0 -65
  141. package/Contracts/Contracts.ArcInvestigation.js +0 -58
  142. package/Contracts/Contracts.ArcStudy.js +0 -65
  143. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Array.d.ts +0 -0
  144. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Array.js +0 -0
  145. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Async.d.ts +0 -0
  146. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Async.js +0 -0
  147. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/AsyncBuilder.d.ts +0 -0
  148. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/AsyncBuilder.js +0 -0
  149. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/BigInt.d.ts +0 -0
  150. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/BigInt.js +0 -0
  151. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/BitConverter.d.ts +0 -0
  152. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/BitConverter.js +0 -0
  153. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Boolean.d.ts +0 -0
  154. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Boolean.js +0 -0
  155. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/CHANGELOG.md +0 -0
  156. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Char.d.ts +0 -0
  157. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Char.js +0 -0
  158. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Choice.d.ts +0 -0
  159. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Choice.js +0 -0
  160. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Date.d.ts +0 -0
  161. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Date.js +0 -0
  162. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/DateOffset.d.ts +0 -0
  163. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/DateOffset.js +0 -0
  164. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/DateOnly.d.ts +0 -0
  165. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/DateOnly.js +0 -0
  166. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Decimal.d.ts +0 -0
  167. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Decimal.js +0 -0
  168. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Double.d.ts +0 -0
  169. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Double.js +0 -0
  170. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Encoding.d.ts +0 -0
  171. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Encoding.js +0 -0
  172. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Event.d.ts +0 -0
  173. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Event.js +0 -0
  174. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/FSharp.Collections.d.ts +0 -0
  175. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/FSharp.Collections.js +0 -0
  176. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/FSharp.Core.d.ts +0 -0
  177. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/FSharp.Core.js +0 -0
  178. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Global.d.ts +0 -0
  179. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Global.js +0 -0
  180. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Guid.d.ts +0 -0
  181. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Guid.js +0 -0
  182. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Int32.d.ts +0 -0
  183. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Int32.js +0 -0
  184. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/List.d.ts +0 -0
  185. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/List.js +0 -0
  186. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Long.d.ts +0 -0
  187. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Long.js +0 -0
  188. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MailboxProcessor.d.ts +0 -0
  189. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MailboxProcessor.js +0 -0
  190. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Map.d.ts +0 -0
  191. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Map.js +0 -0
  192. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MapUtil.d.ts +0 -0
  193. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MapUtil.js +0 -0
  194. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MutableMap.d.ts +0 -0
  195. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MutableMap.js +0 -0
  196. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MutableSet.d.ts +0 -0
  197. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/MutableSet.js +0 -0
  198. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Native.d.ts +0 -0
  199. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Native.js +0 -0
  200. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Numeric.d.ts +0 -0
  201. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Numeric.js +0 -0
  202. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Observable.d.ts +0 -0
  203. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Observable.js +0 -0
  204. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Option.d.ts +0 -0
  205. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Option.js +0 -0
  206. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/README.md +0 -0
  207. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Random.d.ts +0 -0
  208. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Random.js +0 -0
  209. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Range.d.ts +0 -0
  210. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Range.js +0 -0
  211. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Reflection.d.ts +0 -0
  212. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Reflection.js +0 -0
  213. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/RegExp.d.ts +0 -0
  214. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/RegExp.js +0 -0
  215. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Seq.d.ts +0 -0
  216. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Seq.js +0 -0
  217. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Seq2.d.ts +0 -0
  218. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Seq2.js +0 -0
  219. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Set.d.ts +0 -0
  220. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Set.js +0 -0
  221. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/String.d.ts +0 -0
  222. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/String.js +0 -0
  223. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/System.Collections.Generic.d.ts +0 -0
  224. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/System.Collections.Generic.js +0 -0
  225. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/System.Text.d.ts +0 -0
  226. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/System.Text.js +0 -0
  227. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/SystemException.d.ts +0 -0
  228. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/SystemException.js +0 -0
  229. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/TimeOnly.d.ts +0 -0
  230. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/TimeOnly.js +0 -0
  231. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/TimeSpan.d.ts +0 -0
  232. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/TimeSpan.js +0 -0
  233. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Timer.d.ts +0 -0
  234. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Timer.js +0 -0
  235. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Types.d.ts +0 -0
  236. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Types.js +0 -0
  237. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Unicode.13.0.0.d.ts +0 -0
  238. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Unicode.13.0.0.js +0 -0
  239. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Uri.d.ts +0 -0
  240. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Uri.js +0 -0
  241. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/Util.d.ts +0 -0
  242. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/lib/big.d.ts +0 -0
  243. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/lib/big.js +0 -0
  244. /package/fable_modules/{fable-library.4.4.1 → fable-library.4.5.0}/package.json +0 -0
package/SemVer.js CHANGED
@@ -1,10 +1,10 @@
1
- import { match, create } from "./fable_modules/fable-library.4.4.1/RegExp.js";
2
- import { toString, Record } from "./fable_modules/fable-library.4.4.1/Types.js";
3
- import { record_type, option_type, string_type, int32_type } from "./fable_modules/fable-library.4.4.1/Reflection.js";
4
- import { parse } from "./fable_modules/fable-library.4.4.1/Int32.js";
5
- import { value as value_3, unwrap } from "./fable_modules/fable-library.4.4.1/Option.js";
6
- import { StringBuilder__Append_Z721C83C5, StringBuilder_$ctor } from "./fable_modules/fable-library.4.4.1/System.Text.js";
7
- import { printf, toText } from "./fable_modules/fable-library.4.4.1/String.js";
1
+ import { match, create } from "./fable_modules/fable-library.4.5.0/RegExp.js";
2
+ import { toString, Record } from "./fable_modules/fable-library.4.5.0/Types.js";
3
+ import { record_type, option_type, string_type, int32_type } from "./fable_modules/fable-library.4.5.0/Reflection.js";
4
+ import { parse } from "./fable_modules/fable-library.4.5.0/Int32.js";
5
+ import { value as value_3, unwrap } from "./fable_modules/fable-library.4.5.0/Option.js";
6
+ import { StringBuilder__Append_Z721C83C5, StringBuilder_$ctor } from "./fable_modules/fable-library.4.5.0/System.Text.js";
7
+ import { printf, toText } from "./fable_modules/fable-library.4.5.0/String.js";
8
8
 
9
9
  const SemVerAux_Pattern = "^(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?(-(?<pre>[0-9A-Za-z-\\.]+))?(\\+(?<build>[0-9A-Za-z-\\.]+))?$";
10
10
 
@@ -1,18 +1,18 @@
1
- import { toString } from "../fable_modules/fable-library.4.4.1/Types.js";
1
+ import { toString } from "../fable_modules/fable-library.4.5.0/Types.js";
2
2
  import { dict, fromString, datetimeUtc, array as array_1, map as map_2, list as list_2, guid as guid_1, object as object_1, string, succeed, andThen } from "../fable_modules/Thoth.Json.10.1.0/Decode.fs.js";
3
- import { uncurry2, uncurry3 } from "../fable_modules/fable-library.4.4.1/Util.js";
3
+ import { uncurry2, uncurry3 } from "../fable_modules/fable-library.4.5.0/Util.js";
4
4
  import { Template, Organisation } from "./Template.js";
5
5
  import { ConverterOptions_$ctor } from "../ISA/ISA.Json/ConverterOptions.js";
6
6
  import { decoder as decoder_2, encoder } from "../ISA/ISA.Json/Person.js";
7
7
  import { OntologyAnnotation_decoder, OntologyAnnotation_encoder } from "../ISA/ISA.Json/Ontology.js";
8
8
  import { toString as toString_1, datetime, list as list_1, guid, object } from "../fable_modules/Thoth.Json.10.1.0/Encode.fs.js";
9
- import { ofArray, map } from "../fable_modules/fable-library.4.4.1/List.js";
9
+ import { ofArray, map } from "../fable_modules/fable-library.4.5.0/List.js";
10
10
  import { Process_decoder, Process_encoder } from "../ISA/ISA.Json/Process.js";
11
- import { map as map_1, delay, toList } from "../fable_modules/fable-library.4.4.1/Seq.js";
11
+ import { map as map_1, delay, toList } from "../fable_modules/fable-library.4.5.0/Seq.js";
12
12
  import { ArcTables } from "../ISA/ISA/ArcTypes/ArcTables.js";
13
- import { printf, toFail } from "../fable_modules/fable-library.4.4.1/String.js";
14
- import { FSharpMap__get_Values } from "../fable_modules/fable-library.4.4.1/Map.js";
15
- import { defaultArg } from "../fable_modules/fable-library.4.4.1/Option.js";
13
+ import { printf, toFail } from "../fable_modules/fable-library.4.5.0/String.js";
14
+ import { FSharpMap__get_Values } from "../fable_modules/fable-library.4.5.0/Map.js";
15
+ import { defaultArg } from "../fable_modules/fable-library.4.5.0/Option.js";
16
16
 
17
17
  export const Organisation_encode = toString;
18
18
 
@@ -1,23 +1,23 @@
1
- import { toString, Record, FSharpException } from "../fable_modules/fable-library.4.4.1/Types.js";
2
- import { record_type, list_type, string_type, class_type } from "../fable_modules/fable-library.4.4.1/Reflection.js";
3
- import { toArray as toArray_1, append as append_1, reverse, map, empty, ofArray } from "../fable_modules/fable-library.4.4.1/List.js";
1
+ import { toString, Record, FSharpException } from "../fable_modules/fable-library.4.5.0/Types.js";
2
+ import { record_type, list_type, string_type, class_type } from "../fable_modules/fable-library.4.5.0/Reflection.js";
3
+ import { toArray as toArray_1, append as append_1, reverse, map, empty, ofArray } from "../fable_modules/fable-library.4.5.0/List.js";
4
4
  import { toRows, fromRows, toSparseTable, fromSparseTable } from "../ISA/ISA.Spreadsheet/Metadata/OntologyAnnotation.js";
5
5
  import { Comment$_$reflection } from "../ISA/ISA/JsonTypes/Comment.js";
6
6
  import { Comment_fromString } from "../ISA/ISA.Spreadsheet/Metadata/Comment.js";
7
7
  import { SparseRowModule_fromFsRow, SparseRowModule_writeToSheet, SparseRowModule_fromValues, SparseRowModule_tryGetValueAt, SparseTable_ToRows_6A3D4534, SparseTable_FromRows_Z5579EC29, SparseTable, SparseTable_Create_Z2192E64B, SparseTable__TryGetValueDefault_5BAE6133 } from "../ISA/ISA.Spreadsheet/Metadata/SparseTable.js";
8
8
  import { createMissingIdentifier } from "../ISA/ISA/Identifier.js";
9
- import { addToDict } from "../fable_modules/fable-library.4.4.1/MapUtil.js";
10
- import { List_distinct } from "../fable_modules/fable-library.4.4.1/Seq2.js";
11
- import { getEnumerator, stringHash } from "../fable_modules/fable-library.4.4.1/Util.js";
12
- import { tryPick, iterateIndexed, delay, singleton, append, head, exists, map as map_1 } from "../fable_modules/fable-library.4.4.1/Seq.js";
9
+ import { addToDict } from "../fable_modules/fable-library.4.5.0/MapUtil.js";
10
+ import { List_distinct } from "../fable_modules/fable-library.4.5.0/Seq2.js";
11
+ import { getEnumerator, stringHash } from "../fable_modules/fable-library.4.5.0/Util.js";
12
+ import { tryPick, iterateIndexed, delay, singleton, append, head, exists, map as map_1 } from "../fable_modules/fable-library.4.5.0/Seq.js";
13
13
  import { Person } from "../ISA/ISA/JsonTypes/Person.js";
14
- import { toArray } from "../fable_modules/fable-library.4.4.1/Option.js";
14
+ import { toArray } from "../fable_modules/fable-library.4.5.0/Option.js";
15
15
  import { toRows as toRows_1, fromRows as fromRows_1 } from "../ISA/ISA.Spreadsheet/Metadata/Contacts.js";
16
- import { parse } from "../fable_modules/fable-library.4.4.1/Guid.js";
16
+ import { parse } from "../fable_modules/fable-library.4.5.0/Guid.js";
17
17
  import { Template, Organisation } from "./Template.js";
18
18
  import { FsWorksheet } from "../fable_modules/FsSpreadsheet.5.0.1/FsWorksheet.fs.js";
19
19
  import { toFsWorksheet, tryFromFsWorksheet } from "../ISA/ISA.Spreadsheet/AnnotationTable/ArcTable.js";
20
- import { now } from "../fable_modules/fable-library.4.4.1/Date.js";
20
+ import { now } from "../fable_modules/fable-library.4.5.0/Date.js";
21
21
  import { FsWorkbook } from "../fable_modules/FsSpreadsheet.5.0.1/FsWorkbook.fs.js";
22
22
 
23
23
  export class TemplateReadError extends FSharpException {
@@ -1,9 +1,9 @@
1
- import { defaultArg } from "../fable_modules/fable-library.4.4.1/Option.js";
2
- import { singleton } from "../fable_modules/fable-library.4.4.1/AsyncBuilder.js";
1
+ import { defaultArg } from "../fable_modules/fable-library.4.5.0/Option.js";
2
+ import { singleton } from "../fable_modules/fable-library.4.5.0/AsyncBuilder.js";
3
3
  import { downloadFile } from "../WebRequest/WebRequest.js";
4
4
  import { Templates_fromJsonString } from "./Template.Json.js";
5
- import { startAsPromise } from "../fable_modules/fable-library.4.4.1/Async.js";
6
- import { class_type } from "../fable_modules/fable-library.4.4.1/Reflection.js";
5
+ import { startAsPromise } from "../fable_modules/fable-library.4.5.0/Async.js";
6
+ import { class_type } from "../fable_modules/fable-library.4.5.0/Reflection.js";
7
7
 
8
8
  export function getTemplates(url) {
9
9
  const url_1 = defaultArg(url, "https://github.com/nfdi4plants/Swate-templates/releases/download/latest/templates.json");
@@ -1,12 +1,12 @@
1
- import { identityHash, safeHash, stringHash, equals } from "../fable_modules/fable-library.4.4.1/Util.js";
2
- import { Union } from "../fable_modules/fable-library.4.4.1/Types.js";
3
- import { class_type, union_type, string_type } from "../fable_modules/fable-library.4.4.1/Reflection.js";
4
- import { defaultArg, unwrap } from "../fable_modules/fable-library.4.4.1/Option.js";
5
- import { newGuid } from "../fable_modules/fable-library.4.4.1/Guid.js";
1
+ import { identityHash, safeHash, stringHash, equals } from "../fable_modules/fable-library.4.5.0/Util.js";
2
+ import { Union } from "../fable_modules/fable-library.4.5.0/Types.js";
3
+ import { class_type, union_type, string_type } from "../fable_modules/fable-library.4.5.0/Reflection.js";
4
+ import { defaultArg, unwrap } from "../fable_modules/fable-library.4.5.0/Option.js";
5
+ import { newGuid } from "../fable_modules/fable-library.4.5.0/Guid.js";
6
6
  import { ArcTable } from "../ISA/ISA/ArcTypes/ArcTable.js";
7
7
  import { SemVer_tryOfString_Z721C83C5 } from "../SemVer.js";
8
- import { equalsWith } from "../fable_modules/fable-library.4.4.1/Array.js";
9
- import { toUniversalTime, now, equals as equals_1 } from "../fable_modules/fable-library.4.4.1/Date.js";
8
+ import { equalsWith } from "../fable_modules/fable-library.4.5.0/Array.js";
9
+ import { toUniversalTime, now, equals as equals_1 } from "../fable_modules/fable-library.4.5.0/Date.js";
10
10
 
11
11
  export class Organisation extends Union {
12
12
  constructor(tag, fields) {
@@ -1,8 +1,8 @@
1
- import { defaultArg } from "../fable_modules/fable-library.4.4.1/Option.js";
2
- import { append, addRangeInPlace, collect, contains as contains_1 } from "../fable_modules/fable-library.4.4.1/Array.js";
3
- import { uncurry2, safeHash, equals } from "../fable_modules/fable-library.4.4.1/Util.js";
4
- import { Array_distinct } from "../fable_modules/fable-library.4.4.1/Seq2.js";
5
- import { class_type } from "../fable_modules/fable-library.4.4.1/Reflection.js";
1
+ import { defaultArg } from "../fable_modules/fable-library.4.5.0/Option.js";
2
+ import { append, addRangeInPlace, collect, contains as contains_1 } from "../fable_modules/fable-library.4.5.0/Array.js";
3
+ import { uncurry2, safeHash, equals } from "../fable_modules/fable-library.4.5.0/Util.js";
4
+ import { Array_distinct } from "../fable_modules/fable-library.4.5.0/Seq2.js";
5
+ import { class_type } from "../fable_modules/fable-library.4.5.0/Reflection.js";
6
6
 
7
7
  export function TemplatesAux_getComparer(matchAll) {
8
8
  if (defaultArg(matchAll, false)) {
@@ -1,9 +1,9 @@
1
- import { awaitPromise } from "../fable_modules/fable-library.4.4.1/Async.js";
1
+ import { awaitPromise } from "../fable_modules/fable-library.4.5.0/Async.js";
2
2
  import { fetch$ } from "../fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js";
3
- import { empty } from "../fable_modules/fable-library.4.4.1/List.js";
4
- import { singleton } from "../fable_modules/fable-library.4.4.1/AsyncBuilder.js";
3
+ import { empty } from "../fable_modules/fable-library.4.5.0/List.js";
4
+ import { singleton } from "../fable_modules/fable-library.4.5.0/AsyncBuilder.js";
5
5
  import { Http_get } from "../fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js";
6
- import { printf, toFail } from "../fable_modules/fable-library.4.4.1/String.js";
6
+ import { printf, toFail } from "../fable_modules/fable-library.4.5.0/String.js";
7
7
  import "isomorphic-fetch";
8
8
 
9
9
  export function NodeJs_isNode() {
@@ -1,11 +1,11 @@
1
- import { Union } from "../fable-library.4.4.1/Types.js";
2
- import { array_type, tuple_type, bool_type, class_type, union_type, obj_type, int32_type, string_type } from "../fable-library.4.4.1/Reflection.js";
3
- import { defaultArg } from "../fable-library.4.4.1/Option.js";
4
- import { empty } from "../fable-library.4.4.1/Seq.js";
5
- import { keyValueList } from "../fable-library.4.4.1/MapUtil.js";
6
- import { int32ToString } from "../fable-library.4.4.1/Util.js";
1
+ import { Union } from "../fable-library.4.5.0/Types.js";
2
+ import { array_type, tuple_type, bool_type, class_type, union_type, obj_type, int32_type, string_type } from "../fable-library.4.5.0/Reflection.js";
3
+ import { defaultArg } from "../fable-library.4.5.0/Option.js";
4
+ import { empty } from "../fable-library.4.5.0/Seq.js";
5
+ import { keyValueList } from "../fable-library.4.5.0/MapUtil.js";
6
+ import { int32ToString } from "../fable-library.4.5.0/Util.js";
7
7
  import { result } from "../Fable.Promise.2.2.2/Promise.fs.js";
8
- import { singleton } from "../fable-library.4.4.1/List.js";
8
+ import { singleton } from "../fable-library.4.5.0/List.js";
9
9
 
10
10
  export class Types_HttpRequestHeaders extends Union {
11
11
  constructor(tag, fields) {
@@ -1,6 +1,6 @@
1
- import { Result_MapError, Result_Map, FSharpResult$2 } from "../fable-library.4.4.1/Choice.js";
2
- import { class_type } from "../fable-library.4.4.1/Reflection.js";
3
- import { defaultOf, equals, disposeSafe, getEnumerator } from "../fable-library.4.4.1/Util.js";
1
+ import { Result_MapError, Result_Map, FSharpResult$2 } from "../fable-library.4.5.0/Choice.js";
2
+ import { class_type } from "../fable-library.4.5.0/Reflection.js";
3
+ import { defaultOf, equals, disposeSafe, getEnumerator } from "../fable-library.4.5.0/Util.js";
4
4
 
5
5
  /**
6
6
  * Creates promise (in rejected state) with supplied reason.
@@ -1,12 +1,12 @@
1
- import { fromContinuations } from "../fable-library.4.4.1/Async.js";
1
+ import { fromContinuations } from "../fable-library.4.5.0/Async.js";
2
2
  import { HttpResponse, ResponseContent, HttpRequest, BodyContent, HttpMethod, Header } from "./Types.fs.js";
3
- import { tail, head, isEmpty, ofArray as ofArray_1, singleton, append, empty } from "../fable-library.4.4.1/List.js";
4
- import { ofArray, empty as empty_1 } from "../fable-library.4.4.1/Map.js";
5
- import { disposeSafe, getEnumerator, comparePrimitives } from "../fable-library.4.4.1/Util.js";
6
- import { join, split, isNullOrEmpty } from "../fable-library.4.4.1/String.js";
7
- import { choose } from "../fable-library.4.4.1/Array.js";
8
- import { some } from "../fable-library.4.4.1/Option.js";
9
- import { singleton as singleton_1 } from "../fable-library.4.4.1/AsyncBuilder.js";
3
+ import { tail, head, isEmpty, ofArray as ofArray_1, singleton, append, empty } from "../fable-library.4.5.0/List.js";
4
+ import { ofArray, empty as empty_1 } from "../fable-library.4.5.0/Map.js";
5
+ import { disposeSafe, getEnumerator, comparePrimitives } from "../fable-library.4.5.0/Util.js";
6
+ import { join, split, isNullOrEmpty } from "../fable-library.4.5.0/String.js";
7
+ import { choose } from "../fable-library.4.5.0/Array.js";
8
+ import { some } from "../fable-library.4.5.0/Option.js";
9
+ import { singleton as singleton_1 } from "../fable-library.4.5.0/AsyncBuilder.js";
10
10
 
11
11
  /**
12
12
  * Download a Blob
@@ -1,5 +1,5 @@
1
- import { Record, Union } from "../fable-library.4.4.1/Types.js";
2
- import { obj_type, record_type, int32_type, option_type, bool_type, list_type, class_type, string_type, union_type } from "../fable-library.4.4.1/Reflection.js";
1
+ import { Record, Union } from "../fable-library.4.5.0/Types.js";
2
+ import { obj_type, record_type, int32_type, option_type, bool_type, list_type, class_type, string_type, union_type } from "../fable-library.4.5.0/Reflection.js";
3
3
 
4
4
  export class HttpMethod extends Union {
5
5
  constructor(tag, fields) {
@@ -1,18 +1,18 @@
1
- import { toString, Union } from "../../fable-library.4.4.1/Types.js";
2
- import { class_type, union_type } from "../../fable-library.4.4.1/Reflection.js";
3
- import { map, defaultArg, unwrap } from "../../fable-library.4.4.1/Option.js";
1
+ import { toString, Union } from "../../fable-library.4.5.0/Types.js";
2
+ import { class_type, union_type } from "../../fable-library.4.5.0/Reflection.js";
3
+ import { map, defaultArg, unwrap } from "../../fable-library.4.5.0/Option.js";
4
4
  import { FsAddress__get_FixedRow, FsAddress__get_FixedColumn, FsAddress__get_Address, FsAddress__Copy, CellReference_indexToColAdress, FsAddress__get_ColumnNumber, FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "../FsAddress.fs.js";
5
- import { parse as parse_3 } from "../../fable-library.4.4.1/Decimal.js";
6
- import Decimal from "../../fable-library.4.4.1/Decimal.js";
7
- import { parse } from "../../fable-library.4.4.1/Double.js";
8
- import { parse as parse_1 } from "../../fable-library.4.4.1/Int32.js";
9
- import { toUInt64, toInt64 } from "../../fable-library.4.4.1/BigInt.js";
10
- import { parse as parse_2 } from "../../fable-library.4.4.1/Long.js";
11
- import { parse as parse_4 } from "../../fable-library.4.4.1/Date.js";
12
- import { parse as parse_5 } from "../../fable-library.4.4.1/Guid.js";
13
- import { parse as parse_6 } from "../../fable-library.4.4.1/Char.js";
14
- import { forAll } from "../../fable-library.4.4.1/Seq.js";
15
- import { equals } from "../../fable-library.4.4.1/Util.js";
5
+ import { parse as parse_3 } from "../../fable-library.4.5.0/Decimal.js";
6
+ import Decimal from "../../fable-library.4.5.0/Decimal.js";
7
+ import { parse } from "../../fable-library.4.5.0/Double.js";
8
+ import { parse as parse_1 } from "../../fable-library.4.5.0/Int32.js";
9
+ import { toUInt64, toInt64 } from "../../fable-library.4.5.0/BigInt.js";
10
+ import { parse as parse_2 } from "../../fable-library.4.5.0/Long.js";
11
+ import { parse as parse_4 } from "../../fable-library.4.5.0/Date.js";
12
+ import { parse as parse_5 } from "../../fable-library.4.5.0/Guid.js";
13
+ import { parse as parse_6 } from "../../fable-library.4.5.0/Char.js";
14
+ import { forAll } from "../../fable-library.4.5.0/Seq.js";
15
+ import { equals } from "../../fable-library.4.5.0/Util.js";
16
16
 
17
17
  export class DataType extends Union {
18
18
  constructor(tag, fields) {
@@ -1,10 +1,10 @@
1
- import { addToSet, addToDict, getItemFromDict } from "../../fable-library.4.4.1/MapUtil.js";
2
- import { some } from "../../fable-library.4.4.1/Option.js";
3
- import { class_type } from "../../fable-library.4.4.1/Reflection.js";
4
- import { minBy, min, singleton, empty, delay, collect, max, isEmpty, iterate, map } from "../../fable-library.4.4.1/Seq.js";
1
+ import { addToSet, addToDict, getItemFromDict } from "../../fable-library.4.5.0/MapUtil.js";
2
+ import { some } from "../../fable-library.4.5.0/Option.js";
3
+ import { class_type } from "../../fable-library.4.5.0/Reflection.js";
4
+ import { minBy, min, singleton, empty, delay, collect, max, isEmpty, iterate, map } from "../../fable-library.4.5.0/Seq.js";
5
5
  import { FsAddress_$ctor_Z37302880, FsAddress__get_ColumnNumber, FsAddress__get_RowNumber } from "../FsAddress.fs.js";
6
- import { comparePrimitives } from "../../fable-library.4.4.1/Util.js";
7
- import { rangeDouble } from "../../fable-library.4.4.1/Range.js";
6
+ import { comparePrimitives } from "../../fable-library.4.5.0/Util.js";
7
+ import { rangeDouble } from "../../fable-library.4.5.0/Range.js";
8
8
 
9
9
  export function Dictionary_tryGet(k, dict) {
10
10
  if (dict.has(k)) {
@@ -1,9 +1,9 @@
1
- import { toString, Union } from "../../fable-library.4.4.1/Types.js";
2
- import { class_type, union_type, char_type } from "../../fable-library.4.4.1/Reflection.js";
1
+ import { toString, Union } from "../../fable-library.4.5.0/Types.js";
2
+ import { class_type, union_type, char_type } from "../../fable-library.4.5.0/Reflection.js";
3
3
  import { DataType } from "../Cells/FsCell.fs.js";
4
- import { head, tail, isEmpty, append, empty, map, reduce } from "../../fable-library.4.4.1/List.js";
4
+ import { head, tail, isEmpty, append, empty, map, reduce } from "../../fable-library.4.5.0/List.js";
5
5
  import { SheetEntity$1__get_Messages, Message__MapText_11D407F6, SheetEntity$1 } from "./Types.fs.js";
6
- import { printf, toText } from "../../fable-library.4.4.1/String.js";
6
+ import { printf, toText } from "../../fable-library.4.5.0/String.js";
7
7
  import { OptionalSource$1__get_Source, RequiredSource$1__get_Source, OptionalSource$1_$ctor_2B595, RequiredSource$1_$ctor_2B595 } from "./Expression.fs.js";
8
8
 
9
9
  export class ReduceOperation extends Union {
@@ -1,7 +1,7 @@
1
- import { class_type } from "../../fable-library.4.4.1/Reflection.js";
1
+ import { class_type } from "../../fable-library.4.5.0/Reflection.js";
2
2
  import { SheetEntity$1__get_Messages, SheetEntity$1, Message__MapText_11D407F6, SheetEntity$1_some_2B595 } from "./Types.fs.js";
3
- import { append, map, empty } from "../../fable-library.4.4.1/List.js";
4
- import { printf, toText } from "../../fable-library.4.4.1/String.js";
3
+ import { append, map, empty } from "../../fable-library.4.5.0/List.js";
4
+ import { printf, toText } from "../../fable-library.4.5.0/String.js";
5
5
  import { OptionalSource$1__get_Source, RequiredSource$1__get_Source, OptionalSource$1_$ctor_2B595, RequiredSource$1_$ctor_2B595 } from "./Expression.fs.js";
6
6
 
7
7
  export class ColumnBuilder {
@@ -1,6 +1,6 @@
1
- import { class_type } from "../../fable-library.4.4.1/Reflection.js";
1
+ import { class_type } from "../../fable-library.4.5.0/Reflection.js";
2
2
  import { SheetEntity$1 } from "./Types.fs.js";
3
- import { singleton } from "../../fable-library.4.4.1/List.js";
3
+ import { singleton } from "../../fable-library.4.5.0/List.js";
4
4
 
5
5
  export class DSL {
6
6
  constructor() {
@@ -1,4 +1,4 @@
1
- import { class_type } from "../../fable-library.4.4.1/Reflection.js";
1
+ import { class_type } from "../../fable-library.4.5.0/Reflection.js";
2
2
 
3
3
  export class OptionalSource$1 {
4
4
  constructor(s) {
@@ -1,7 +1,7 @@
1
- import { class_type } from "../../fable-library.4.4.1/Reflection.js";
1
+ import { class_type } from "../../fable-library.4.5.0/Reflection.js";
2
2
  import { SheetEntity$1__get_Messages, SheetEntity$1, Message__MapText_11D407F6, SheetEntity$1_some_2B595 } from "./Types.fs.js";
3
- import { append, map, empty } from "../../fable-library.4.4.1/List.js";
4
- import { printf, toText } from "../../fable-library.4.4.1/String.js";
3
+ import { append, map, empty } from "../../fable-library.4.5.0/List.js";
4
+ import { printf, toText } from "../../fable-library.4.5.0/String.js";
5
5
  import { OptionalSource$1__get_Source, RequiredSource$1__get_Source, OptionalSource$1_$ctor_2B595, RequiredSource$1_$ctor_2B595 } from "./Expression.fs.js";
6
6
 
7
7
  export class RowBuilder {
@@ -1,7 +1,7 @@
1
- import { class_type } from "../../fable-library.4.4.1/Reflection.js";
1
+ import { class_type } from "../../fable-library.4.5.0/Reflection.js";
2
2
  import { SheetEntity$1__get_Messages, SheetEntity$1, Message__MapText_11D407F6, SheetEntity$1_some_2B595 } from "./Types.fs.js";
3
- import { append, map, empty } from "../../fable-library.4.4.1/List.js";
4
- import { printf, toText } from "../../fable-library.4.4.1/String.js";
3
+ import { append, map, empty } from "../../fable-library.4.5.0/List.js";
4
+ import { printf, toText } from "../../fable-library.4.5.0/String.js";
5
5
 
6
6
  export class SheetBuilder {
7
7
  constructor(name) {
@@ -1,7 +1,7 @@
1
- import { class_type } from "../../fable-library.4.4.1/Reflection.js";
1
+ import { class_type } from "../../fable-library.4.5.0/Reflection.js";
2
2
  import { SheetEntity$1__get_Messages, SheetEntity$1, Message__MapText_11D407F6, SheetEntity$1_some_2B595 } from "./Types.fs.js";
3
- import { append, map, empty } from "../../fable-library.4.4.1/List.js";
4
- import { printf, toText } from "../../fable-library.4.4.1/String.js";
3
+ import { append, map, empty } from "../../fable-library.4.5.0/List.js";
4
+ import { printf, toText } from "../../fable-library.4.5.0/String.js";
5
5
 
6
6
  export class TableBuilder {
7
7
  constructor(name) {
@@ -1,15 +1,15 @@
1
- import { choose, transpose, map, iterateIndexed, iterate, ofArrayWithTail, empty, reverse, singleton, tail as tail_25, cons, head, isEmpty } from "../../fable-library.4.4.1/List.js";
1
+ import { choose, transpose, map, iterateIndexed, iterate, ofArrayWithTail, empty, reverse, singleton, tail as tail_25, cons, head, isEmpty } from "../../fable-library.4.5.0/List.js";
2
2
  import { RowIndex__get_Index, ColumnIndex__get_Index, TableElement__get_IsColumn, SheetElement } from "./Types.fs.js";
3
- import { toString } from "../../fable-library.4.4.1/Types.js";
3
+ import { toString } from "../../fable-library.4.5.0/Types.js";
4
4
  import { FsRangeColumn__Cell_Z4232C216 } from "../Ranges/FsRangeColumn.fs.js";
5
5
  import { FsTableField__get_Column } from "../Tables/FsTableField.fs.js";
6
- import { add, FSharpSet__Contains, ofSeq } from "../../fable-library.4.4.1/Set.js";
7
- import { comparePrimitives } from "../../fable-library.4.4.1/Util.js";
8
- import { max } from "../../fable-library.4.4.1/Seq.js";
6
+ import { add, FSharpSet__Contains, ofSeq } from "../../fable-library.4.5.0/Set.js";
7
+ import { comparePrimitives } from "../../fable-library.4.5.0/Util.js";
8
+ import { max } from "../../fable-library.4.5.0/Seq.js";
9
9
  import { FsCellsCollection__get_MaxRowNumber } from "../Cells/FsCellsCollection.fs.js";
10
10
  import { FsRangeAddress_$ctor_7E77A4A0 } from "../Ranges/FsRangeAddress.fs.js";
11
11
  import { FsAddress_$ctor_Z37302880 } from "../FsAddress.fs.js";
12
- import { toText, printf, toFail } from "../../fable-library.4.4.1/String.js";
12
+ import { toText, printf, toFail } from "../../fable-library.4.5.0/String.js";
13
13
  import { FsWorkbook } from "../FsWorkbook.fs.js";
14
14
  import { FsWorksheet } from "../FsWorksheet.fs.js";
15
15
 
@@ -1,7 +1,7 @@
1
- import { Union } from "../../fable-library.4.4.1/Types.js";
2
- import { tuple_type, obj_type, int32_type, list_type, union_type, class_type, string_type } from "../../fable-library.4.4.1/Reflection.js";
3
- import { empty, pick, exists, map, reduce } from "../../fable-library.4.4.1/List.js";
4
- import { printf, toConsole } from "../../fable-library.4.4.1/String.js";
1
+ import { Union } from "../../fable-library.4.5.0/Types.js";
2
+ import { tuple_type, obj_type, int32_type, list_type, union_type, class_type, string_type } from "../../fable-library.4.5.0/Reflection.js";
3
+ import { empty, pick, exists, map, reduce } from "../../fable-library.4.5.0/List.js";
4
+ import { printf, toConsole } from "../../fable-library.4.5.0/String.js";
5
5
  import { DataType_$reflection } from "../Cells/FsCell.fs.js";
6
6
 
7
7
  export class Message extends Union {
@@ -1,7 +1,7 @@
1
- import { class_type } from "../../fable-library.4.4.1/Reflection.js";
1
+ import { class_type } from "../../fable-library.4.5.0/Reflection.js";
2
2
  import { SheetEntity$1__get_Messages, SheetEntity$1, Message__MapText_11D407F6, SheetEntity$1_some_2B595 } from "./Types.fs.js";
3
- import { append, map, empty } from "../../fable-library.4.4.1/List.js";
4
- import { printf, toText } from "../../fable-library.4.4.1/String.js";
3
+ import { append, map, empty } from "../../fable-library.4.5.0/List.js";
4
+ import { printf, toText } from "../../fable-library.4.5.0/String.js";
5
5
 
6
6
  export class WorkbookBuilder {
7
7
  constructor() {
@@ -1,8 +1,8 @@
1
- import { toFail, printf, toText } from "../fable-library.4.4.1/String.js";
2
- import { create, match } from "../fable-library.4.4.1/RegExp.js";
3
- import { parse } from "../fable-library.4.4.1/Int32.js";
4
- import { toUInt32, fromInt32, fromUInt32, op_Addition, toInt64 } from "../fable-library.4.4.1/BigInt.js";
5
- import { class_type } from "../fable-library.4.4.1/Reflection.js";
1
+ import { toFail, printf, toText } from "../fable-library.4.5.0/String.js";
2
+ import { create, match } from "../fable-library.4.5.0/RegExp.js";
3
+ import { parse } from "../fable-library.4.5.0/Int32.js";
4
+ import { toUInt32, fromInt32, fromUInt32, op_Addition, toInt64 } from "../fable-library.4.5.0/BigInt.js";
5
+ import { class_type } from "../fable-library.4.5.0/Reflection.js";
6
6
 
7
7
  /**
8
8
  * Transforms excel column string indices (e.g. A, B, Z, AA, CD) to index number (starting with A = 1).
@@ -1,10 +1,10 @@
1
1
  import { FsRangeAddress__Copy, FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./Ranges/FsRangeAddress.fs.js";
2
2
  import { FsAddress__set_ColumnNumber_Z524259A4, FsAddress__get_ColumnNumber, FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "./FsAddress.fs.js";
3
3
  import { FsCellsCollection__Add_Z21F271A4, FsCellsCollection__GetCellsInColumn_Z524259A4, FsCellsCollection_$ctor } from "./Cells/FsCellsCollection.fs.js";
4
- import { exists, map, maxBy, minBy, length } from "../fable-library.4.4.1/Seq.js";
5
- import { toIterator, getEnumerator, comparePrimitives } from "../fable-library.4.4.1/Util.js";
4
+ import { exists, map, maxBy, minBy, length } from "../fable-library.4.5.0/Seq.js";
5
+ import { toIterator, getEnumerator, comparePrimitives } from "../fable-library.4.5.0/Util.js";
6
6
  import { FsRangeBase_$reflection, FsRangeBase, FsRangeBase__Cell_Z3407A44B, FsRangeBase__get_RangeAddress, FsRangeBase__Cells_Z2740B3CA } from "./Ranges/FsRangeBase.fs.js";
7
- import { class_type } from "../fable-library.4.4.1/Reflection.js";
7
+ import { class_type } from "../fable-library.4.5.0/Reflection.js";
8
8
 
9
9
  export class FsColumn extends FsRangeBase {
10
10
  constructor(rangeAddress, cells) {
@@ -1,11 +1,11 @@
1
1
  import { FsRangeAddress__Copy, FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./Ranges/FsRangeAddress.fs.js";
2
2
  import { FsAddress__set_RowNumber_Z524259A4, FsAddress__get_RowNumber, FsAddress__get_ColumnNumber, FsAddress_$ctor_Z37302880 } from "./FsAddress.fs.js";
3
3
  import { FsCellsCollection__Add_2E78CE33, FsCellsCollection__Add_Z21F271A4, FsCellsCollection__GetCellsInRow_Z524259A4, FsCellsCollection_$ctor } from "./Cells/FsCellsCollection.fs.js";
4
- import { exists, map, maxBy, minBy, length } from "../fable-library.4.4.1/Seq.js";
5
- import { toIterator, getEnumerator, comparePrimitives } from "../fable-library.4.4.1/Util.js";
4
+ import { exists, map, maxBy, minBy, length } from "../fable-library.4.5.0/Seq.js";
5
+ import { toIterator, getEnumerator, comparePrimitives } from "../fable-library.4.5.0/Util.js";
6
6
  import { FsRangeBase_$reflection, FsRangeBase, FsRangeBase__Cell_Z3407A44B, FsRangeBase__get_RangeAddress, FsRangeBase__Cells_Z2740B3CA } from "./Ranges/FsRangeBase.fs.js";
7
7
  import { FsCell } from "./Cells/FsCell.fs.js";
8
- import { class_type } from "../fable-library.4.4.1/Reflection.js";
8
+ import { class_type } from "../fable-library.4.5.0/Reflection.js";
9
9
 
10
10
  export class FsRow extends FsRangeBase {
11
11
  constructor(rangeAddress, cells) {
@@ -1,10 +1,10 @@
1
- import { collect, tryFind as tryFind_1, removeInPlace, map } from "../fable-library.4.4.1/Array.js";
1
+ import { collect, tryFind as tryFind_1, removeInPlace, map } from "../fable-library.4.5.0/Array.js";
2
2
  import { FsWorksheet } from "./FsWorksheet.fs.js";
3
- import { tryFind, tryItem, iterate, exists } from "../fable-library.4.4.1/Seq.js";
4
- import { printf, toFail } from "../fable-library.4.4.1/String.js";
5
- import { defaultArg, value as value_1 } from "../fable-library.4.4.1/Option.js";
6
- import { safeHash, equals, defaultOf } from "../fable-library.4.4.1/Util.js";
7
- import { class_type } from "../fable-library.4.4.1/Reflection.js";
3
+ import { tryFind, tryItem, iterate, exists } from "../fable-library.4.5.0/Seq.js";
4
+ import { printf, toFail } from "../fable-library.4.5.0/String.js";
5
+ import { defaultArg, value as value_1 } from "../fable-library.4.5.0/Option.js";
6
+ import { safeHash, equals, defaultOf } from "../fable-library.4.5.0/Util.js";
7
+ import { class_type } from "../fable-library.4.5.0/Reflection.js";
8
8
 
9
9
  export class FsWorkbook {
10
10
  constructor() {
@@ -1,20 +1,20 @@
1
1
  import { FsCellsCollection__RemoveValueAt_Z37302880, FsCellsCollection__TryRemoveValueAt_Z37302880, FsCellsCollection__RemoveCellAt_Z37302880, FsCellsCollection__Add_2E78CE33, FsCellsCollection__Add_Z21F271A4, FsCellsCollection__Add_Z334DF64D, FsCellsCollection__TryGetCell_Z37302880, FsCellsCollection__Copy, FsCellsCollection__GetCells, FsCellsCollection_$ctor } from "./Cells/FsCellsCollection.fs.js";
2
- import { empty, maxBy, filter, exists, find, tryFind, iterate, last, head, sortBy, map } from "../fable-library.4.4.1/Seq.js";
2
+ import { empty, maxBy, filter, exists, find, tryFind, iterate, last, head, sortBy, map } from "../fable-library.4.5.0/Seq.js";
3
3
  import { FsColumn } from "./FsColumn.fs.js";
4
- import { clear, safeHash, equals, disposeSafe, getEnumerator, numberHash, comparePrimitives } from "../fable-library.4.4.1/Util.js";
4
+ import { clear, safeHash, equals, disposeSafe, getEnumerator, numberHash, comparePrimitives } from "../fable-library.4.5.0/Util.js";
5
5
  import { FsAddress__get_ColumnNumber, FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "./FsAddress.fs.js";
6
6
  import { FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./Ranges/FsRangeAddress.fs.js";
7
- import { groupBy } from "../fable-library.4.4.1/Seq2.js";
7
+ import { groupBy } from "../fable-library.4.5.0/Seq2.js";
8
8
  import { FsRow } from "./FsRow.fs.js";
9
- import { toConsole, printf, toFail } from "../fable-library.4.4.1/String.js";
9
+ import { toConsole, printf, toFail } from "../fable-library.4.5.0/String.js";
10
10
  import { FsRangeBase__set_RangeAddress_6A2513BC } from "./Ranges/FsRangeBase.fs.js";
11
- import { addRangeInPlace, removeInPlace } from "../fable-library.4.4.1/Array.js";
12
- import { tryFind as tryFind_1, ofSeq } from "../fable-library.4.4.1/Map.js";
13
- import { value as value_3, defaultArg } from "../fable-library.4.4.1/Option.js";
11
+ import { addRangeInPlace, removeInPlace } from "../fable-library.4.5.0/Array.js";
12
+ import { tryFind as tryFind_1, ofSeq } from "../fable-library.4.5.0/Map.js";
13
+ import { value as value_3, defaultArg } from "../fable-library.4.5.0/Option.js";
14
14
  import { FsTable } from "./Tables/FsTable.fs.js";
15
- import { iterate as iterate_1 } from "../fable-library.4.4.1/List.js";
15
+ import { iterate as iterate_1 } from "../fable-library.4.5.0/List.js";
16
16
  import { FsCell } from "./Cells/FsCell.fs.js";
17
- import { class_type } from "../fable-library.4.4.1/Reflection.js";
17
+ import { class_type } from "../fable-library.4.5.0/Reflection.js";
18
18
 
19
19
  export class FsWorksheet {
20
20
  constructor(name, fsRows, fsTables, fsCellsCollection) {
@@ -1,9 +1,9 @@
1
1
  import { FsRangeBase__get_RangeAddress, FsRangeBase_$reflection, FsRangeBase } from "./FsRangeBase.fs.js";
2
- import { class_type } from "../../fable-library.4.4.1/Reflection.js";
3
- import { int32ToString, defaultOf } from "../../fable-library.4.4.1/Util.js";
2
+ import { class_type } from "../../fable-library.4.5.0/Reflection.js";
3
+ import { int32ToString, defaultOf } from "../../fable-library.4.5.0/Util.js";
4
4
  import { FsAddress__get_ColumnNumber, FsAddress_$ctor_Z37302880, FsAddress__get_RowNumber } from "../FsAddress.fs.js";
5
5
  import { FsRangeAddress__get_LastAddress, FsRangeAddress_$ctor_7E77A4A0, FsRangeAddress__get_FirstAddress } from "./FsRangeAddress.fs.js";
6
- import { printf, toText } from "../../fable-library.4.4.1/String.js";
6
+ import { printf, toText } from "../../fable-library.4.5.0/String.js";
7
7
  import { FsRangeRow_$ctor_6A2513BC } from "./FsRangeRow.fs.js";
8
8
 
9
9
  export class FsRange extends FsRangeBase {
@@ -1,5 +1,5 @@
1
- import { class_type } from "../../fable-library.4.4.1/Reflection.js";
2
- import { toConsole, printf, toText } from "../../fable-library.4.4.1/String.js";
1
+ import { class_type } from "../../fable-library.4.5.0/Reflection.js";
2
+ import { toConsole, printf, toText } from "../../fable-library.4.5.0/String.js";
3
3
  import { FsAddress__get_Address, FsAddress_$ctor_Z37302880, FsAddress__set_ColumnNumber_Z524259A4, FsAddress__get_ColumnNumber, FsAddress__set_RowNumber_Z524259A4, FsAddress__get_RowNumber, FsAddress_$ctor_Z721C83C5, CellReference_moveHorizontal, CellReference_toIndices } from "../FsAddress.fs.js";
4
4
 
5
5
  export class FsRangeAddress {
@@ -1,9 +1,9 @@
1
- import { equals, defaultOf } from "../../fable-library.4.4.1/Util.js";
2
- import { class_type } from "../../fable-library.4.4.1/Reflection.js";
1
+ import { equals, defaultOf } from "../../fable-library.4.5.0/Util.js";
2
+ import { class_type } from "../../fable-library.4.5.0/Reflection.js";
3
3
  import { FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress__Extend_6D30B323 } from "./FsRangeAddress.fs.js";
4
4
  import { FsAddress__get_FixedColumn, FsAddress__get_FixedRow, FsAddress_$ctor_Z4C746FC0, FsAddress__get_ColumnNumber, FsAddress__get_RowNumber } from "../FsAddress.fs.js";
5
5
  import { FsCellsCollection__GetCells_7E77A4A0, FsCellsCollection__Add_2E78CE33, FsCellsCollection__TryGetCell_Z37302880, FsCellsCollection__get_MaxColumnNumber, FsCellsCollection__get_MaxRowNumber } from "../Cells/FsCellsCollection.fs.js";
6
- import { printf, toFail } from "../../fable-library.4.4.1/String.js";
6
+ import { printf, toFail } from "../../fable-library.4.5.0/String.js";
7
7
  import { FsCell } from "../Cells/FsCell.fs.js";
8
8
 
9
9
  export class FsRangeBase {
@@ -1,9 +1,9 @@
1
1
  import { FsRangeBase__Cells_Z2740B3CA, FsRangeBase__Cell_Z3407A44B, FsRangeBase__get_RangeAddress, FsRangeBase_$reflection, FsRangeBase } from "./FsRangeBase.fs.js";
2
- import { class_type } from "../../fable-library.4.4.1/Reflection.js";
2
+ import { class_type } from "../../fable-library.4.5.0/Reflection.js";
3
3
  import { FsRangeAddress__Copy, FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./FsRangeAddress.fs.js";
4
4
  import { FsAddress__get_RowNumber, FsAddress__set_ColumnNumber_Z524259A4, FsAddress__get_ColumnNumber, FsAddress_$ctor_Z37302880 } from "../FsAddress.fs.js";
5
- import { map, toList } from "../../fable-library.4.4.1/Seq.js";
6
- import { rangeDouble } from "../../fable-library.4.4.1/Range.js";
5
+ import { map, toList } from "../../fable-library.4.5.0/Seq.js";
6
+ import { rangeDouble } from "../../fable-library.4.5.0/Range.js";
7
7
 
8
8
  export class FsRangeColumn extends FsRangeBase {
9
9
  constructor(rangeAddress) {
@@ -1,5 +1,5 @@
1
1
  import { FsRangeBase__Cells_Z2740B3CA, FsRangeBase__Cell_Z3407A44B, FsRangeBase__get_RangeAddress, FsRangeBase_$reflection, FsRangeBase } from "./FsRangeBase.fs.js";
2
- import { class_type } from "../../fable-library.4.4.1/Reflection.js";
2
+ import { class_type } from "../../fable-library.4.5.0/Reflection.js";
3
3
  import { FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./FsRangeAddress.fs.js";
4
4
  import { FsAddress__get_ColumnNumber, FsAddress__set_RowNumber_Z524259A4, FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "../FsAddress.fs.js";
5
5