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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (306) hide show
  1. package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +894 -4
  2. package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +121 -3
  3. package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +279 -1
  4. package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +101 -2
  5. package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +187 -0
  6. package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +156 -2
  7. package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +183 -7
  8. package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +217 -5
  9. package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +154 -5
  10. package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +20 -1
  11. package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +30 -0
  12. package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +68 -1
  13. package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +6 -1
  14. package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +98 -1
  15. package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +18 -1
  16. package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +601 -5
  17. package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +10 -1
  18. package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +760 -16
  19. package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +26 -1
  20. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +18 -8
  21. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +36 -4
  22. package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +35 -1
  23. package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +26 -1
  24. package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +355 -1
  25. package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +21 -2
  26. package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +133 -1
  27. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +543 -8
  28. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +53 -4
  29. package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +673 -41
  30. package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +197 -4
  31. package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +128 -3
  32. package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +8 -0
  33. package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +180 -0
  34. package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +20 -2
  35. package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +406 -2
  36. package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +2 -2
  37. package/dist/ts/ts/ARC.d.ts +12 -5
  38. package/dist/ts/ts/ARC.d.ts.map +1 -1
  39. package/dist/ts/ts/ARC.js +172 -93
  40. package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
  41. package/dist/ts/ts/Contract/ARC.js +8 -1
  42. package/dist/ts/ts/Contract/ArcAssay.js +14 -5
  43. package/dist/ts/ts/Contract/ArcInvestigation.js +10 -1
  44. package/dist/ts/ts/Contract/ArcRun.js +19 -6
  45. package/dist/ts/ts/Contract/ArcStudy.js +19 -6
  46. package/dist/ts/ts/Contract/ArcWorkflow.js +19 -6
  47. package/dist/ts/ts/Contract/Contract.js +42 -1
  48. package/dist/ts/ts/Contract/Datamap.js +61 -17
  49. package/dist/ts/ts/Contract/Git.d.ts.map +1 -1
  50. package/dist/ts/ts/Contract/Git.js +22 -6
  51. package/dist/ts/ts/Contract/License.d.ts +5 -0
  52. package/dist/ts/ts/Contract/License.d.ts.map +1 -0
  53. package/dist/ts/ts/Contract/License.js +34 -0
  54. package/dist/ts/ts/Contract/ValidationPackagesConfig.js +31 -6
  55. package/dist/ts/ts/ContractIO/ContractIO.js +5 -5
  56. package/dist/ts/ts/ContractIO/FileSystemHelper.js +16 -4
  57. package/dist/ts/ts/Conversion.js +321 -48
  58. package/dist/ts/ts/Core/ArcTypes.js +216 -15
  59. package/dist/ts/ts/Core/Comment.js +11 -1
  60. package/dist/ts/ts/Core/CommentList.js +77 -2
  61. package/dist/ts/ts/Core/Conversion.js +123 -43
  62. package/dist/ts/ts/Core/Data.js +9 -2
  63. package/dist/ts/ts/Core/DataContext.js +19 -4
  64. package/dist/ts/ts/Core/DataFile.js +38 -1
  65. package/dist/ts/ts/Core/DataMap.js +111 -5
  66. package/dist/ts/ts/Core/Helper/Collections.js +106 -5
  67. package/dist/ts/ts/Core/Helper/HashCodes.js +4 -4
  68. package/dist/ts/ts/Core/Helper/Identifier.js +100 -2
  69. package/dist/ts/ts/Core/Helper/Regex.js +134 -2
  70. package/dist/ts/ts/Core/Helper/SemVer.js +23 -2
  71. package/dist/ts/ts/Core/IdentifierSetters.js +27 -3
  72. package/dist/ts/ts/Core/OntologyAnnotation.js +4 -1
  73. package/dist/ts/ts/Core/OntologySourceReference.js +8 -1
  74. package/dist/ts/ts/Core/Person.js +8 -1
  75. package/dist/ts/ts/Core/Process/ColumnIndex.js +121 -4
  76. package/dist/ts/ts/Core/Process/Component.js +37 -4
  77. package/dist/ts/ts/Core/Process/Factor.js +9 -4
  78. package/dist/ts/ts/Core/Process/FactorValue.js +61 -4
  79. package/dist/ts/ts/Core/Process/Material.js +14 -4
  80. package/dist/ts/ts/Core/Process/MaterialAttribute.js +41 -3
  81. package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +67 -4
  82. package/dist/ts/ts/Core/Process/MaterialType.js +15 -1
  83. package/dist/ts/ts/Core/Process/Process.js +150 -7
  84. package/dist/ts/ts/Core/Process/ProcessInput.js +48 -8
  85. package/dist/ts/ts/Core/Process/ProcessOutput.js +44 -7
  86. package/dist/ts/ts/Core/Process/ProcessParameterValue.js +10 -5
  87. package/dist/ts/ts/Core/Process/ProcessSequence.js +127 -6
  88. package/dist/ts/ts/Core/Process/Protocol.js +78 -4
  89. package/dist/ts/ts/Core/Process/ProtocolParameter.js +6 -2
  90. package/dist/ts/ts/Core/Process/Sample.js +21 -3
  91. package/dist/ts/ts/Core/Process/Source.js +13 -3
  92. package/dist/ts/ts/Core/Publication.js +8 -1
  93. package/dist/ts/ts/Core/Table/ArcTable.js +34 -25
  94. package/dist/ts/ts/Core/Table/ArcTableAux.js +150 -23
  95. package/dist/ts/ts/Core/Table/ArcTables.js +24 -15
  96. package/dist/ts/ts/Core/Table/CompositeCell.js +7 -3
  97. package/dist/ts/ts/Core/Table/CompositeColumn.js +8 -4
  98. package/dist/ts/ts/Core/Table/CompositeHeader.js +18 -15
  99. package/dist/ts/ts/Core/Template.js +12 -2
  100. package/dist/ts/ts/Core/Templates.js +8 -4
  101. package/dist/ts/ts/Core/Value.js +7 -3
  102. package/dist/ts/ts/CrossAsync.js +11 -1
  103. package/dist/ts/ts/FileSystem/Commit.js +18 -0
  104. package/dist/ts/ts/FileSystem/FileSystem.js +8 -3
  105. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +1 -0
  106. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
  107. package/dist/ts/ts/FileSystem/FileSystemTree.js +20 -13
  108. package/dist/ts/ts/FileSystem/Path.d.ts +2 -0
  109. package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
  110. package/dist/ts/ts/FileSystem/Path.js +17 -3
  111. package/dist/ts/ts/Json/Assay.js +26 -26
  112. package/dist/ts/ts/Json/Comment.js +10 -10
  113. package/dist/ts/ts/Json/Data.js +6 -6
  114. package/dist/ts/ts/Json/DataMap/DataContext.js +4 -4
  115. package/dist/ts/ts/Json/DataMap/DataMap.js +2 -2
  116. package/dist/ts/ts/Json/Decode.js +14 -9
  117. package/dist/ts/ts/Json/Encode.js +43 -11
  118. package/dist/ts/ts/Json/Investigation.js +40 -22
  119. package/dist/ts/ts/Json/OntologyAnnotation.js +5 -5
  120. package/dist/ts/ts/Json/OntologySourceReference.js +2 -2
  121. package/dist/ts/ts/Json/Person.js +26 -26
  122. package/dist/ts/ts/Json/Process/Component.js +9 -6
  123. package/dist/ts/ts/Json/Process/Factor.js +3 -3
  124. package/dist/ts/ts/Json/Process/FactorValue.js +8 -8
  125. package/dist/ts/ts/Json/Process/Material.js +9 -9
  126. package/dist/ts/ts/Json/Process/MaterialAttribute.js +1 -1
  127. package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +8 -8
  128. package/dist/ts/ts/Json/Process/Process.js +12 -12
  129. package/dist/ts/ts/Json/Process/ProcessInput.js +4 -4
  130. package/dist/ts/ts/Json/Process/ProcessOutput.js +3 -3
  131. package/dist/ts/ts/Json/Process/ProcessParameterValue.js +10 -7
  132. package/dist/ts/ts/Json/Process/Protocol.js +12 -12
  133. package/dist/ts/ts/Json/Process/ProtocolParameter.js +3 -3
  134. package/dist/ts/ts/Json/Process/Sample.js +14 -14
  135. package/dist/ts/ts/Json/Process/Source.js +9 -9
  136. package/dist/ts/ts/Json/Process/Value.js +1 -1
  137. package/dist/ts/ts/Json/PropertyValue.js +1 -1
  138. package/dist/ts/ts/Json/Publication.js +6 -6
  139. package/dist/ts/ts/Json/ROCrate/LDContext.js +1 -0
  140. package/dist/ts/ts/Json/ROCrate/LDGraph.js +3 -3
  141. package/dist/ts/ts/Json/ROCrate/LDNode.js +19 -19
  142. package/dist/ts/ts/Json/Run.js +7 -7
  143. package/dist/ts/ts/Json/StringTable.js +1 -1
  144. package/dist/ts/ts/Json/Study.js +32 -32
  145. package/dist/ts/ts/Json/Table/ArcTable.js +29 -29
  146. package/dist/ts/ts/Json/Table/CellTable.js +6 -6
  147. package/dist/ts/ts/Json/Table/CompositeCell.js +4 -4
  148. package/dist/ts/ts/Json/Table/CompositeHeader.js +2 -2
  149. package/dist/ts/ts/Json/Table/IOType.js +1 -1
  150. package/dist/ts/ts/Json/Table/OATable.js +7 -7
  151. package/dist/ts/ts/Json/Table/Templates.js +92 -6
  152. package/dist/ts/ts/Json/Workflow.js +11 -11
  153. package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +27 -1
  154. package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +17 -1
  155. package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +19 -1
  156. package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +27 -1
  157. package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +20 -1
  158. package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +18 -1
  159. package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +20 -1
  160. package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +16 -1
  161. package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +25 -1
  162. package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +24 -1
  163. package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +23 -1
  164. package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +20 -1
  165. package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +19 -1
  166. package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +19 -1
  167. package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +35 -1
  168. package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +61 -0
  169. package/dist/ts/ts/Json.d.ts +13 -1
  170. package/dist/ts/ts/Json.d.ts.map +1 -1
  171. package/dist/ts/ts/Json.js +89 -2
  172. package/dist/ts/ts/JsonIO/Assay.js +15 -3
  173. package/dist/ts/ts/JsonIO/Investigation.js +15 -3
  174. package/dist/ts/ts/JsonIO/LDObject.js +17 -3
  175. package/dist/ts/ts/JsonIO/OntologyAnnotation.js +12 -2
  176. package/dist/ts/ts/JsonIO/Person.d.ts +16 -0
  177. package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -0
  178. package/dist/ts/ts/JsonIO/Person.js +67 -0
  179. package/dist/ts/ts/JsonIO/Run.js +9 -3
  180. package/dist/ts/ts/JsonIO/Study.js +15 -3
  181. package/dist/ts/ts/JsonIO/Table/Compression.js +3 -3
  182. package/dist/ts/ts/JsonIO/Table/Templates.js +60 -5
  183. package/dist/ts/ts/JsonIO/Workflow.js +9 -3
  184. package/dist/ts/ts/License.d.ts +39 -0
  185. package/dist/ts/ts/License.d.ts.map +1 -0
  186. package/dist/ts/ts/License.js +123 -0
  187. package/dist/ts/ts/ROCrate/Generic/Comment.js +5 -1
  188. package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts +69 -0
  189. package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts.map +1 -0
  190. package/dist/ts/ts/ROCrate/Generic/CreativeWork.js +450 -0
  191. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts +1 -0
  192. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +1 -1
  193. package/dist/ts/ts/ROCrate/Generic/Dataset.js +27 -1
  194. package/dist/ts/ts/ROCrate/Generic/DefinedTerm.js +5 -1
  195. package/dist/ts/ts/ROCrate/Generic/File.js +5 -1
  196. package/dist/ts/ts/ROCrate/Generic/LabProcess.js +5 -1
  197. package/dist/ts/ts/ROCrate/Generic/LabProtocol.js +5 -1
  198. package/dist/ts/ts/ROCrate/Generic/Organization.js +5 -1
  199. package/dist/ts/ts/ROCrate/Generic/Person.js +7 -2
  200. package/dist/ts/ts/ROCrate/Generic/PostalAddress.js +5 -1
  201. package/dist/ts/ts/ROCrate/Generic/PropertyValue.js +19 -15
  202. package/dist/ts/ts/ROCrate/Generic/Sample.js +5 -1
  203. package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.js +5 -1
  204. package/dist/ts/ts/ROCrate/LDContext.js +15 -6
  205. package/dist/ts/ts/ROCrate/LDObject.js +53 -17
  206. package/dist/ts/ts/ROCrateIO.d.ts +9 -3
  207. package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
  208. package/dist/ts/ts/ROCrateIO.js +67 -14
  209. package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +18 -15
  210. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +5 -4
  211. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +40 -17
  212. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +4 -4
  213. package/dist/ts/ts/Spreadsheet/ArcAssay.js +30 -15
  214. package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +32 -18
  215. package/dist/ts/ts/Spreadsheet/ArcRun.js +23 -8
  216. package/dist/ts/ts/Spreadsheet/ArcStudy.js +22 -7
  217. package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +23 -8
  218. package/dist/ts/ts/Spreadsheet/CollectionAux.js +75 -5
  219. package/dist/ts/ts/Spreadsheet/DataMap.js +1 -1
  220. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.js +4 -4
  221. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.js +8 -8
  222. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.js +4 -4
  223. package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +6 -6
  224. package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +1 -1
  225. package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +2 -2
  226. package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +6 -3
  227. package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +9 -3
  228. package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +6 -4
  229. package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +7 -5
  230. package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +1 -1
  231. package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +10 -8
  232. package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +5 -5
  233. package/dist/ts/ts/Spreadsheet/Metadata/Run.js +6 -6
  234. package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +246 -10
  235. package/dist/ts/ts/Spreadsheet/Metadata/Study.js +19 -13
  236. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +5 -5
  237. package/dist/ts/ts/Template.Web.js +5 -1
  238. package/dist/ts/ts/ValidationPackages/ValidationPackage.js +8 -1
  239. package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +10 -3
  240. package/dist/ts/ts/WebRequest/WebRequest.Node.js +1 -0
  241. package/dist/ts/ts/Xlsx.js +41 -1
  242. package/dist/ts/ts/Yaml/ValidationPackage.js +18 -2
  243. package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +5 -2
  244. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +27 -4
  245. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +14 -3
  246. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +30 -4
  247. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +5 -1
  248. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +65 -2
  249. package/dist/ts/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +257 -1
  250. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +71 -1
  251. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +11 -1
  252. package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +188 -11
  253. package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +80 -2
  254. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCell.fs.js +63 -4
  255. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCellsCollection.fs.js +17 -7
  256. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/CellBuilder.fs.js +198 -0
  257. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Expression.fs.js +46 -0
  258. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/RowBuilder.fs.js +131 -0
  259. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Types.fs.js +307 -0
  260. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js +38 -2
  261. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsColumn.fs.js +11 -4
  262. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsRow.fs.js +12 -5
  263. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorkbook.fs.js +9 -2
  264. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorksheet.fs.js +14 -7
  265. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/HashCodes.fs.js +31 -1
  266. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Cell.fs.js +65 -0
  267. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Column.fs.js +38 -0
  268. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Row.fs.js +38 -0
  269. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Table.fs.js +34 -0
  270. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Value.fs.js +49 -3
  271. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Workbook.fs.js +44 -0
  272. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Worksheet.fs.js +129 -0
  273. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRange.fs.js +9 -2
  274. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeAddress.fs.js +82 -3
  275. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeBase.fs.js +12 -3
  276. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeColumn.fs.js +17 -2
  277. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeRow.fs.js +9 -2
  278. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTable.fs.js +12 -5
  279. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTableField.fs.js +12 -3
  280. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +2 -2
  281. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/FsExtensions.fs.js +42 -3
  282. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Json.fs.js +53 -0
  283. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Table.fs.js +9 -9
  284. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Workbook.fs.js +1 -1
  285. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Worksheet.fs.js +2 -2
  286. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Xlsx.fs.js +5 -1
  287. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Decode.fs.js +730 -23
  288. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Encode.fs.js +192 -7
  289. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Types.fs.js +45 -1
  290. package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js +15 -2
  291. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +1383 -15
  292. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +45 -4
  293. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +10 -0
  294. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +5 -5
  295. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +16 -6
  296. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +26 -23
  297. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +1 -1
  298. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +8 -8
  299. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +18 -2
  300. package/package.json +1 -1
  301. package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts +0 -2
  302. package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts.map +0 -1
  303. package/dist/ts/ts/FileSystem/DefaultGitattributes.js +0 -3
  304. package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts +0 -2
  305. package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts.map +0 -1
  306. package/dist/ts/ts/FileSystem/DefaultGitignore.js +0 -3
@@ -1,5 +1,31 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, Assay, ArcAssay, measurementType, technologyType, technologyPlatform, dataFiles, materials, otherMaterials, samples, characteristicCategories, processSequence, unitCategories, comments, filename) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.Assay = Assay;
11
+ this.ArcAssay = ArcAssay;
12
+ this.measurementType = measurementType;
13
+ this.technologyType = technologyType;
14
+ this.technologyPlatform = technologyPlatform;
15
+ this.dataFiles = dataFiles;
16
+ this.materials = materials;
17
+ this.otherMaterials = otherMaterials;
18
+ this.samples = samples;
19
+ this.characteristicCategories = characteristicCategories;
20
+ this.processSequence = processSequence;
21
+ this.unitCategories = unitCategories;
22
+ this.comments = comments;
23
+ this.filename = filename;
24
+ }
25
+ }
26
+ function IContext_$reflection() {
27
+ return record_type("ARCtrl.Json.ROCrateContext.Assay.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Assay", string_type], ["ArcAssay", string_type], ["measurementType", string_type], ["technologyType", string_type], ["technologyPlatform", string_type], ["dataFiles", string_type], ["materials", string_type], ["otherMaterials", string_type], ["samples", string_type], ["characteristicCategories", string_type], ["processSequence", string_type], ["unitCategories", string_type], ["comments", string_type], ["filename", string_type]]);
28
+ }
3
29
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
30
  const values = [["sdo", {
5
31
  Encode(helpers) {
@@ -58,4 +84,4 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
58
84
  };
59
85
  })();
60
86
 
61
- export { context_jsonvalue };
87
+ export { IContext, IContext_$reflection, context_jsonvalue };
@@ -1,5 +1,20 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, Comment$, name, value) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.Comment = Comment$;
11
+ this.name = name;
12
+ this.value = value;
13
+ }
14
+ }
15
+ function IContext_$reflection() {
16
+ return record_type("ARCtrl.Json.ROCrateContext.Comment.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Comment", string_type], ["name", string_type], ["value", string_type]]);
17
+ }
3
18
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
19
  const values = [["sdo", {
5
20
  Encode(helpers) {
@@ -25,5 +40,6 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
25
40
  }
26
41
  };
27
42
  })();
43
+ const context_str = '\r\n{\r\n "@context": {\r\n "sdo": "http://schema.org/",\r\n \r\n "Comment": "sdo:Comment",\r\n "name": "sdo:name",\r\n "value": "sdo:text"\r\n }\r\n}\r\n ';
28
44
 
29
- export { context_jsonvalue };
45
+ export { IContext, IContext_$reflection, context_jsonvalue, context_str };
@@ -1,5 +1,22 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, Data, ArcData, type, name, comments) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.Data = Data;
11
+ this.ArcData = ArcData;
12
+ this.type = type;
13
+ this.name = name;
14
+ this.comments = comments;
15
+ }
16
+ }
17
+ function IContext_$reflection() {
18
+ return record_type("ARCtrl.Json.ROCrateContext.Data.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Data", string_type], ["ArcData", string_type], ["type", string_type], ["name", string_type], ["comments", string_type]]);
19
+ }
3
20
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
21
  const values = [["sdo", {
5
22
  Encode(helpers) {
@@ -37,5 +54,6 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
37
54
  }
38
55
  };
39
56
  })();
57
+ const context_str = '\r\n{\r\n "@context": {\r\n "sdo": "http://schema.org/",\r\n "arc": "http://purl.org/nfdi4plants/ontology/",\r\n\r\n "Data": "sdo:MediaObject",\r\n "ArcData": "arc:ARC#ARC_00000076",\r\n\r\n "type": "arc:ARC#ARC_00000107",\r\n\r\n "name": "sdo:name",\r\n "comments": "sdo:disambiguatingDescription"\r\n }\r\n}\r\n ';
40
58
 
41
- export { context_jsonvalue };
59
+ export { IContext, IContext_$reflection, context_jsonvalue, context_str };
@@ -1,5 +1,30 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, Investigation, identifier, title, description, submissionDate, publicReleaseDate, publications, people, studies, ontologySourceReferences, comments, publications$003F, filename) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.Investigation = Investigation;
11
+ this.identifier = identifier;
12
+ this.title = title;
13
+ this.description = description;
14
+ this.submissionDate = submissionDate;
15
+ this.publicReleaseDate = publicReleaseDate;
16
+ this.publications = publications;
17
+ this.people = people;
18
+ this.studies = studies;
19
+ this.ontologySourceReferences = ontologySourceReferences;
20
+ this.comments = comments;
21
+ this["publications?"] = publications$003F;
22
+ this.filename = filename;
23
+ }
24
+ }
25
+ function IContext_$reflection() {
26
+ return record_type("ARCtrl.Json.ROCrateContext.Investigation.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Investigation", string_type], ["identifier", string_type], ["title", string_type], ["description", string_type], ["submissionDate", string_type], ["publicReleaseDate", string_type], ["publications", string_type], ["people", string_type], ["studies", string_type], ["ontologySourceReferences", string_type], ["comments", string_type], ["publications?", string_type], ["filename", string_type]]);
27
+ }
3
28
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
29
  const values = [["sdo", {
5
30
  Encode(helpers) {
@@ -65,5 +90,6 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
65
90
  }
66
91
  };
67
92
  })();
93
+ const context_str = '\r\n{\r\n "@context": {\r\n "sdo": "http://schema.org/",\r\n "arc": "http://purl.org/nfdi4plants/ontology/",\r\n\r\n "Investigation": "sdo:Dataset",\r\n\r\n "identifier" : "sdo:identifier",\r\n "title": "sdo:name",\r\n "description": "sdo:description",\r\n "submissionDate": "sdo:dateCreated",\r\n "publicReleaseDate": "sdo:datePublished",\r\n "publications": "sdo:citation",\r\n "people": "sdo:creator",\r\n "studies": "sdo:hasPart",\r\n "ontologySourceReferences": "sdo:mentions",\r\n "comments": "sdo:disambiguatingDescription",\r\n\r\n "publications?": "sdo:SubjectOf?",\r\n "filename": "sdo:alternateName"\r\n }\r\n}\r\n ';
68
94
 
69
- export { context_jsonvalue };
95
+ export { IContext, IContext_$reflection, context_jsonvalue, context_str };
@@ -1,5 +1,23 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, Material, ArcMaterial, type, name, characteristics, derivesFrom) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.Material = Material;
11
+ this.ArcMaterial = ArcMaterial;
12
+ this.type = type;
13
+ this.name = name;
14
+ this.characteristics = characteristics;
15
+ this.derivesFrom = derivesFrom;
16
+ }
17
+ }
18
+ function IContext_$reflection() {
19
+ return record_type("ARCtrl.Json.ROCrateContext.Material.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Material", string_type], ["ArcMaterial", string_type], ["type", string_type], ["name", string_type], ["characteristics", string_type], ["derivesFrom", string_type]]);
20
+ }
3
21
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
22
  const values = [["sdo", {
5
23
  Encode(helpers) {
@@ -33,5 +51,6 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
33
51
  }
34
52
  };
35
53
  })();
54
+ const context_str = '\r\n{\r\n "@context": {\r\n "sdo": "http://schema.org/",\r\n "arc": "http://purl.org/nfdi4plants/ontology/",\r\n\r\n "ArcMaterial": "arc:ARC#ARC_00000108",\r\n "Material": "sdo:Thing",\r\n\r\n "type": "arc:ARC#ARC_00000085",\r\n "name": "arc:ARC#ARC_00000019",\r\n "characteristics": "arc:ARC#ARC_00000080",\r\n "derivesFrom": "arc:ARC#ARC_00000082"\r\n }\r\n}\r\n ';
36
55
 
37
- export { context_jsonvalue };
56
+ export { IContext, IContext_$reflection, context_jsonvalue, context_str };
@@ -1,5 +1,22 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, OntologyAnnotation, annotationValue, termSource, termAccession, comments) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.OntologyAnnotation = OntologyAnnotation;
11
+ this.annotationValue = annotationValue;
12
+ this.termSource = termSource;
13
+ this.termAccession = termAccession;
14
+ this.comments = comments;
15
+ }
16
+ }
17
+ function IContext_$reflection() {
18
+ return record_type("ARCtrl.Json.ROCrateContext.OntologyAnnotation.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["OntologyAnnotation", string_type], ["annotationValue", string_type], ["termSource", string_type], ["termAccession", string_type], ["comments", string_type]]);
19
+ }
3
20
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
21
  const values = [["sdo", {
5
22
  Encode(helpers) {
@@ -34,4 +51,4 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
34
51
  };
35
52
  })();
36
53
 
37
- export { context_jsonvalue };
54
+ export { IContext, IContext_$reflection, context_jsonvalue };
@@ -1,5 +1,23 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, OntologySourceReference, description, name, file, version, comments) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.OntologySourceReference = OntologySourceReference;
11
+ this.description = description;
12
+ this.name = name;
13
+ this.file = file;
14
+ this.version = version;
15
+ this.comments = comments;
16
+ }
17
+ }
18
+ function IContext_$reflection() {
19
+ return record_type("ARCtrl.Json.ROCrateContext.OntologySourceReference.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["OntologySourceReference", string_type], ["description", string_type], ["name", string_type], ["file", string_type], ["version", string_type], ["comments", string_type]]);
20
+ }
3
21
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
22
  const values = [["sdo", {
5
23
  Encode(helpers) {
@@ -37,5 +55,6 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
37
55
  }
38
56
  };
39
57
  })();
58
+ const context_str = '\r\n{\r\n "@context": {\r\n "sdo": "http://schema.org/",\r\n "arc": "http://purl.org/nfdi4plants/ontology/",\r\n\r\n "OntologySourceReference": "sdo:DefinedTermSet",\r\n \r\n "description": "sdo:description",\r\n "name": "sdo:name",\r\n "file": "sdo:url",\r\n "version": "sdo:version",\r\n "comments": "sdo:disambiguatingDescription"\r\n }\r\n}\r\n ';
40
59
 
41
- export { context_jsonvalue };
60
+ export { IContext, IContext_$reflection, context_jsonvalue, context_str };
@@ -1,5 +1,19 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, Organization, name) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.Organization = Organization;
11
+ this.name = name;
12
+ }
13
+ }
14
+ function IContext_$reflection() {
15
+ return record_type("ARCtrl.Json.ROCrateContext.Organization.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Organization", string_type], ["name", string_type]]);
16
+ }
3
17
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
18
  const values = [["sdo", {
5
19
  Encode(helpers) {
@@ -21,5 +35,6 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
21
35
  }
22
36
  };
23
37
  })();
38
+ const context_str = '\r\n{\r\n "@context": {\r\n "sdo": "http://schema.org/",\r\n "arc": "http://purl.org/nfdi4plants/ontology/",\r\n\r\n "Organization": "sdo:Organization",\r\n \r\n "name": "sdo:name"\r\n }\r\n}\r\n ';
24
39
 
25
- export { context_jsonvalue };
40
+ export { IContext, IContext_$reflection, context_jsonvalue, context_str };
@@ -1,5 +1,28 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, Person, firstName, lastName, midInitials, email, address, phone, fax, comments, roles, affiliation) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.Person = Person;
11
+ this.firstName = firstName;
12
+ this.lastName = lastName;
13
+ this.midInitials = midInitials;
14
+ this.email = email;
15
+ this.address = address;
16
+ this.phone = phone;
17
+ this.fax = fax;
18
+ this.comments = comments;
19
+ this.roles = roles;
20
+ this.affiliation = affiliation;
21
+ }
22
+ }
23
+ function IContext_$reflection() {
24
+ return record_type("ARCtrl.Json.ROCrateContext.Person.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Person", string_type], ["firstName", string_type], ["lastName", string_type], ["midInitials", string_type], ["email", string_type], ["address", string_type], ["phone", string_type], ["fax", string_type], ["comments", string_type], ["roles", string_type], ["affiliation", string_type]]);
25
+ }
3
26
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
27
  const values = [["sdo", {
5
28
  Encode(helpers) {
@@ -82,5 +105,6 @@ const contextMinimal_jsonValue = /* @__PURE__ */ (() => {
82
105
  }
83
106
  };
84
107
  })();
108
+ const context_str = '\r\n{\r\n "@context": {\r\n "sdo": "http://schema.org/",\r\n "arc": "http://purl.org/nfdi4plants/ontology/",\r\n\r\n "Person": "sdo:Person",\r\n "firstName": "sdo:givenName",\r\n "lastName": "sdo:familyName",\r\n "midInitials": "sdo:additionalName",\r\n "email": "sdo:email",\r\n "address": "sdo:address",\r\n "phone": "sdo:telephone",\r\n "fax": "sdo:faxNumber",\r\n "comments": "sdo:disambiguatingDescription",\r\n "roles": "sdo:jobTitle",\r\n "affiliation": "sdo:affiliation"\r\n }\r\n}\r\n ';
85
109
 
86
- export { contextMinimal_jsonValue, context_jsonvalue };
110
+ export { IContext, IContext_$reflection, contextMinimal_jsonValue, context_jsonvalue, context_str };
@@ -1,5 +1,28 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, Process, ArcProcess, name, executesProtocol, performer, date, previousProcess, nextProcess, input, output, comments) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.Process = Process;
11
+ this.ArcProcess = ArcProcess;
12
+ this.name = name;
13
+ this.executesProtocol = executesProtocol;
14
+ this.performer = performer;
15
+ this.date = date;
16
+ this.previousProcess = previousProcess;
17
+ this.nextProcess = nextProcess;
18
+ this.input = input;
19
+ this.output = output;
20
+ this.comments = comments;
21
+ }
22
+ }
23
+ function IContext_$reflection() {
24
+ return record_type("ARCtrl.Json.ROCrateContext.Process.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Process", string_type], ["ArcProcess", string_type], ["name", string_type], ["executesProtocol", string_type], ["performer", string_type], ["date", string_type], ["previousProcess", string_type], ["nextProcess", string_type], ["input", string_type], ["output", string_type], ["comments", string_type]]);
25
+ }
3
26
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
27
  const values = [["sdo", {
5
28
  Encode(helpers) {
@@ -54,4 +77,4 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
54
77
  };
55
78
  })();
56
79
 
57
- export { context_jsonvalue };
80
+ export { IContext, IContext_$reflection, context_jsonvalue };
@@ -1,5 +1,27 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, Protocol, ArcProtocol, name, protocolType, description, version, components, parameters, uri, comments) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.Protocol = Protocol;
11
+ this.ArcProtocol = ArcProtocol;
12
+ this.name = name;
13
+ this.protocolType = protocolType;
14
+ this.description = description;
15
+ this.version = version;
16
+ this.components = components;
17
+ this.parameters = parameters;
18
+ this.uri = uri;
19
+ this.comments = comments;
20
+ }
21
+ }
22
+ function IContext_$reflection() {
23
+ return record_type("ARCtrl.Json.ROCrateContext.Protocol.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Protocol", string_type], ["ArcProtocol", string_type], ["name", string_type], ["protocolType", string_type], ["description", string_type], ["version", string_type], ["components", string_type], ["parameters", string_type], ["uri", string_type], ["comments", string_type]]);
24
+ }
3
25
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
26
  const values = [["sdo", {
5
27
  Encode(helpers) {
@@ -58,4 +80,4 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
58
80
  };
59
81
  })();
60
82
 
61
- export { context_jsonvalue };
83
+ export { IContext, IContext_$reflection, context_jsonvalue };
@@ -1,5 +1,24 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, Publication, pubMedID, doi, title, status, authorList, comments) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.Publication = Publication;
11
+ this.pubMedID = pubMedID;
12
+ this.doi = doi;
13
+ this.title = title;
14
+ this.status = status;
15
+ this.authorList = authorList;
16
+ this.comments = comments;
17
+ }
18
+ }
19
+ function IContext_$reflection() {
20
+ return record_type("ARCtrl.Json.ROCrateContext.Publication.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Publication", string_type], ["pubMedID", string_type], ["doi", string_type], ["title", string_type], ["status", string_type], ["authorList", string_type], ["comments", string_type]]);
21
+ }
3
22
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
23
  const values = [["sdo", {
5
24
  Encode(helpers) {
@@ -42,4 +61,4 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
42
61
  };
43
62
  })();
44
63
 
45
- export { context_jsonvalue };
64
+ export { IContext, IContext_$reflection, context_jsonvalue };
@@ -1,5 +1,23 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, Sample, ArcSample, name, characteristics, factorValues, derivesFrom) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.Sample = Sample;
11
+ this.ArcSample = ArcSample;
12
+ this.name = name;
13
+ this.characteristics = characteristics;
14
+ this.factorValues = factorValues;
15
+ this.derivesFrom = derivesFrom;
16
+ }
17
+ }
18
+ function IContext_$reflection() {
19
+ return record_type("ARCtrl.Json.ROCrateContext.Sample.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Sample", string_type], ["ArcSample", string_type], ["name", string_type], ["characteristics", string_type], ["factorValues", string_type], ["derivesFrom", string_type]]);
20
+ }
3
21
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
22
  const values = [["sdo", {
5
23
  Encode(helpers) {
@@ -30,4 +48,4 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
30
48
  };
31
49
  })();
32
50
 
33
- export { context_jsonvalue };
51
+ export { IContext, IContext_$reflection, context_jsonvalue };
@@ -1,5 +1,22 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, Source, ArcSource, identifier, characteristics, name) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.Source = Source;
11
+ this.ArcSource = ArcSource;
12
+ this.identifier = identifier;
13
+ this.characteristics = characteristics;
14
+ this.name = name;
15
+ }
16
+ }
17
+ function IContext_$reflection() {
18
+ return record_type("ARCtrl.Json.ROCrateContext.Source.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Source", string_type], ["ArcSource", string_type], ["identifier", string_type], ["characteristics", string_type], ["name", string_type]]);
19
+ }
3
20
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
21
  const values = [["sdo", {
5
22
  Encode(helpers) {
@@ -29,5 +46,6 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
29
46
  }
30
47
  };
31
48
  })();
49
+ const context_str = '\r\n{\r\n "@context": {\r\n "sdo": "http://schema.org/",\r\n "arc": "http://purl.org/nfdi4plants/ontology/",\r\n\r\n "Source": "sdo:Thing",\r\n "ArcSource": "arc:ARC#ARC_00000071",\r\n\r\n "identifier": "sdo:identifier",\r\n\r\n "name": "arc:ARC#ARC_00000019",\r\n "characteristics": "arc:ARC#ARC_00000080"\r\n }\r\n}\r\n ';
32
50
 
33
- export { context_jsonvalue };
51
+ export { IContext, IContext_$reflection, context_jsonvalue, context_str };
@@ -1,5 +1,39 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
1
3
  import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
2
4
 
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, Study, ArcStudy, identifier, title, description, submissionDate, publicReleaseDate, publications, people, assays, filename, comments, protocols, materials, otherMaterials, sources, samples, processSequence, factors, characteristicCategories, unitCategories, studyDesignDescriptors) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.Study = Study;
11
+ this.ArcStudy = ArcStudy;
12
+ this.identifier = identifier;
13
+ this.title = title;
14
+ this.description = description;
15
+ this.submissionDate = submissionDate;
16
+ this.publicReleaseDate = publicReleaseDate;
17
+ this.publications = publications;
18
+ this.people = people;
19
+ this.assays = assays;
20
+ this.filename = filename;
21
+ this.comments = comments;
22
+ this.protocols = protocols;
23
+ this.materials = materials;
24
+ this.otherMaterials = otherMaterials;
25
+ this.sources = sources;
26
+ this.samples = samples;
27
+ this.processSequence = processSequence;
28
+ this.factors = factors;
29
+ this.characteristicCategories = characteristicCategories;
30
+ this.unitCategories = unitCategories;
31
+ this.studyDesignDescriptors = studyDesignDescriptors;
32
+ }
33
+ }
34
+ function IContext_$reflection() {
35
+ return record_type("ARCtrl.Json.ROCrateContext.Study.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["Study", string_type], ["ArcStudy", string_type], ["identifier", string_type], ["title", string_type], ["description", string_type], ["submissionDate", string_type], ["publicReleaseDate", string_type], ["publications", string_type], ["people", string_type], ["assays", string_type], ["filename", string_type], ["comments", string_type], ["protocols", string_type], ["materials", string_type], ["otherMaterials", string_type], ["sources", string_type], ["samples", string_type], ["processSequence", string_type], ["factors", string_type], ["characteristicCategories", string_type], ["unitCategories", string_type], ["studyDesignDescriptors", string_type]]);
36
+ }
3
37
  const context_jsonvalue = /* @__PURE__ */ (() => {
4
38
  const values = [["sdo", {
5
39
  Encode(helpers) {
@@ -74,4 +108,4 @@ const context_jsonvalue = /* @__PURE__ */ (() => {
74
108
  };
75
109
  })();
76
110
 
77
- export { context_jsonvalue };
111
+ export { IContext, IContext_$reflection, context_jsonvalue };
@@ -0,0 +1,61 @@
1
+ import { Record } from '../../../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { record_type, string_type } from '../../../../node_modules/@fable-org/fable-library-js/Reflection.js';
3
+ import { map } from '../../../../node_modules/@fable-org/fable-library-js/Seq.js';
4
+
5
+ class IContext extends Record {
6
+ constructor(sdo, arc, CreativeWork, about, conformsTo) {
7
+ super();
8
+ this.sdo = sdo;
9
+ this.arc = arc;
10
+ this.CreativeWork = CreativeWork;
11
+ this.about = about;
12
+ this.conformsTo = conformsTo;
13
+ }
14
+ }
15
+ function IContext_$reflection() {
16
+ return record_type("ARCtrl.Json.ROCrateContext.ROCrate.IContext", [], IContext, () => [["sdo", string_type], ["arc", string_type], ["CreativeWork", string_type], ["about", string_type], ["conformsTo", string_type]]);
17
+ }
18
+ const conformsTo_jsonvalue = /* @__PURE__ */ (() => {
19
+ const values = [["@id", {
20
+ Encode(helpers) {
21
+ return helpers.encodeString("https://w3id.org/ro/crate/1.1");
22
+ }
23
+ }]];
24
+ return {
25
+ Encode(helpers_1) {
26
+ const arg = map((tupledArg) => [tupledArg[0], tupledArg[1].Encode(helpers_1)], values);
27
+ return helpers_1.encodeObject(arg);
28
+ }
29
+ };
30
+ })();
31
+ const context_jsonvalue = /* @__PURE__ */ (() => {
32
+ const values = [["sdo", {
33
+ Encode(helpers) {
34
+ return helpers.encodeString("http://schema.org/");
35
+ }
36
+ }], ["arc", {
37
+ Encode(helpers_1) {
38
+ return helpers_1.encodeString("http://purl.org/nfdi4plants/ontology/");
39
+ }
40
+ }], ["CreativeWork", {
41
+ Encode(helpers_2) {
42
+ return helpers_2.encodeString("sdo:CreativeWork");
43
+ }
44
+ }], ["about", {
45
+ Encode(helpers_3) {
46
+ return helpers_3.encodeString("sdo:about");
47
+ }
48
+ }], ["conformsTo", {
49
+ Encode(helpers_4) {
50
+ return helpers_4.encodeString("http://purl.org/dc/terms/conformsTo");
51
+ }
52
+ }]];
53
+ return {
54
+ Encode(helpers_5) {
55
+ const arg = map((tupledArg) => [tupledArg[0], tupledArg[1].Encode(helpers_5)], values);
56
+ return helpers_5.encodeObject(arg);
57
+ }
58
+ };
59
+ })();
60
+
61
+ export { IContext, IContext_$reflection, conformsTo_jsonvalue, context_jsonvalue };
@@ -1,10 +1,11 @@
1
1
  import { OntologyAnnotation } from './Core/OntologyAnnotation.js';
2
2
  import { int32 } from '@fable-org/fable-library-js/Int32.js';
3
3
  import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
4
+ import { Person } from './Core/Person.js';
5
+ import { LDGraph, LDNode } from './ROCrate/LDObject.js';
4
6
  import { ArcInvestigation, ArcRun, ArcWorkflow, ArcStudy, ArcAssay } from './Core/ArcTypes.js';
5
7
  import { FSharpList } from '@fable-org/fable-library-js/List.js';
6
8
  import { ARC } from './ARC.js';
7
- import { LDNode, LDGraph } from './ROCrate/LDObject.js';
8
9
  export declare class JsonHelper_OntologyAnnotationJson {
9
10
  constructor();
10
11
  fromJsonString(s: string): OntologyAnnotation;
@@ -16,6 +17,17 @@ export declare class JsonHelper_OntologyAnnotationJson {
16
17
  }
17
18
  export declare function JsonHelper_OntologyAnnotationJson_$reflection(): TypeInfo;
18
19
  export declare function JsonHelper_OntologyAnnotationJson_$ctor(): JsonHelper_OntologyAnnotationJson;
20
+ export declare class JsonHelper_PersonJson {
21
+ constructor();
22
+ fromJsonString(s: string): Person;
23
+ fromISAJsonString(s: string): Person;
24
+ fromROCrateJsonString(s: string): LDNode;
25
+ toJsonString(person: Person, spaces?: int32): string;
26
+ toISAJsonString(person: Person, spaces?: int32, useIDReferencing?: boolean): string;
27
+ toROCrateJsonString(person: Person, spaces?: int32): string;
28
+ }
29
+ export declare function JsonHelper_PersonJson_$reflection(): TypeInfo;
30
+ export declare function JsonHelper_PersonJson_$ctor(): JsonHelper_PersonJson;
19
31
  export declare class JsonHelper_AssayJson {
20
32
  constructor();
21
33
  fromJsonString(s: string): ArcAssay;
@@ -1 +1 @@
1
- {"version":3,"file":"Json.d.ts","sourceRoot":"","sources":["../../../src/ARCtrl/ts/Json.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Json.d.ts","sourceRoot":"","sources":["../../../src/ARCtrl/ts/Json.ts"],"names":[],"mappings":"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"}