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

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 (312) hide show
  1. package/dist/ts/index.d.ts +1 -0
  2. package/dist/ts/index.d.ts.map +1 -1
  3. package/dist/ts/index.js +1 -0
  4. package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +894 -4
  5. package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +121 -3
  6. package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +279 -1
  7. package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +101 -2
  8. package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +187 -0
  9. package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +156 -2
  10. package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +183 -7
  11. package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +217 -5
  12. package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +154 -5
  13. package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +20 -1
  14. package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +30 -0
  15. package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +68 -1
  16. package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +6 -1
  17. package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +98 -1
  18. package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +18 -1
  19. package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +601 -5
  20. package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +10 -1
  21. package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +760 -16
  22. package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +26 -1
  23. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +18 -8
  24. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +36 -4
  25. package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +35 -1
  26. package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +26 -1
  27. package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +355 -1
  28. package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +21 -2
  29. package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +133 -1
  30. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +543 -8
  31. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +53 -4
  32. package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +673 -41
  33. package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +197 -4
  34. package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +128 -3
  35. package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +8 -0
  36. package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +180 -0
  37. package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +20 -2
  38. package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +406 -2
  39. package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +2 -2
  40. package/dist/ts/ts/ARC.d.ts +12 -5
  41. package/dist/ts/ts/ARC.d.ts.map +1 -1
  42. package/dist/ts/ts/ARC.js +172 -93
  43. package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
  44. package/dist/ts/ts/Contract/ARC.js +8 -1
  45. package/dist/ts/ts/Contract/ArcAssay.js +14 -5
  46. package/dist/ts/ts/Contract/ArcInvestigation.js +10 -1
  47. package/dist/ts/ts/Contract/ArcRun.js +19 -6
  48. package/dist/ts/ts/Contract/ArcStudy.js +19 -6
  49. package/dist/ts/ts/Contract/ArcWorkflow.js +19 -6
  50. package/dist/ts/ts/Contract/Contract.js +42 -1
  51. package/dist/ts/ts/Contract/Datamap.js +61 -17
  52. package/dist/ts/ts/Contract/Git.d.ts.map +1 -1
  53. package/dist/ts/ts/Contract/Git.js +22 -6
  54. package/dist/ts/ts/Contract/License.d.ts +5 -0
  55. package/dist/ts/ts/Contract/License.d.ts.map +1 -0
  56. package/dist/ts/ts/Contract/License.js +34 -0
  57. package/dist/ts/ts/Contract/ValidationPackagesConfig.js +31 -6
  58. package/dist/ts/ts/ContractIO/ContractIO.js +5 -5
  59. package/dist/ts/ts/ContractIO/FileSystemHelper.js +16 -4
  60. package/dist/ts/ts/Conversion.js +321 -48
  61. package/dist/ts/ts/Core/ArcTypes.js +216 -15
  62. package/dist/ts/ts/Core/Comment.js +11 -1
  63. package/dist/ts/ts/Core/CommentList.js +77 -2
  64. package/dist/ts/ts/Core/Conversion.js +123 -43
  65. package/dist/ts/ts/Core/Data.js +9 -2
  66. package/dist/ts/ts/Core/DataContext.js +19 -4
  67. package/dist/ts/ts/Core/DataFile.js +38 -1
  68. package/dist/ts/ts/Core/DataMap.js +111 -5
  69. package/dist/ts/ts/Core/Helper/Collections.js +106 -5
  70. package/dist/ts/ts/Core/Helper/HashCodes.js +4 -4
  71. package/dist/ts/ts/Core/Helper/Identifier.js +100 -2
  72. package/dist/ts/ts/Core/Helper/Regex.js +134 -2
  73. package/dist/ts/ts/Core/Helper/SemVer.js +23 -2
  74. package/dist/ts/ts/Core/IdentifierSetters.js +27 -3
  75. package/dist/ts/ts/Core/OntologyAnnotation.js +4 -1
  76. package/dist/ts/ts/Core/OntologySourceReference.js +8 -1
  77. package/dist/ts/ts/Core/Person.js +8 -1
  78. package/dist/ts/ts/Core/Process/ColumnIndex.js +121 -4
  79. package/dist/ts/ts/Core/Process/Component.js +37 -4
  80. package/dist/ts/ts/Core/Process/Factor.js +9 -4
  81. package/dist/ts/ts/Core/Process/FactorValue.js +61 -4
  82. package/dist/ts/ts/Core/Process/Material.js +14 -4
  83. package/dist/ts/ts/Core/Process/MaterialAttribute.js +41 -3
  84. package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +67 -4
  85. package/dist/ts/ts/Core/Process/MaterialType.js +15 -1
  86. package/dist/ts/ts/Core/Process/Process.js +150 -7
  87. package/dist/ts/ts/Core/Process/ProcessInput.js +48 -8
  88. package/dist/ts/ts/Core/Process/ProcessOutput.js +44 -7
  89. package/dist/ts/ts/Core/Process/ProcessParameterValue.js +10 -5
  90. package/dist/ts/ts/Core/Process/ProcessSequence.js +127 -6
  91. package/dist/ts/ts/Core/Process/Protocol.js +78 -4
  92. package/dist/ts/ts/Core/Process/ProtocolParameter.js +6 -2
  93. package/dist/ts/ts/Core/Process/Sample.js +21 -3
  94. package/dist/ts/ts/Core/Process/Source.js +13 -3
  95. package/dist/ts/ts/Core/Publication.js +8 -1
  96. package/dist/ts/ts/Core/Table/ArcTable.js +34 -25
  97. package/dist/ts/ts/Core/Table/ArcTableAux.js +150 -23
  98. package/dist/ts/ts/Core/Table/ArcTables.js +24 -15
  99. package/dist/ts/ts/Core/Table/CompositeCell.js +7 -3
  100. package/dist/ts/ts/Core/Table/CompositeColumn.js +8 -4
  101. package/dist/ts/ts/Core/Table/CompositeHeader.js +18 -15
  102. package/dist/ts/ts/Core/Template.js +12 -2
  103. package/dist/ts/ts/Core/Templates.js +8 -4
  104. package/dist/ts/ts/Core/Value.js +7 -3
  105. package/dist/ts/ts/CrossAsync.js +11 -1
  106. package/dist/ts/ts/FileSystem/Commit.js +18 -0
  107. package/dist/ts/ts/FileSystem/FileSystem.js +8 -3
  108. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +1 -0
  109. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
  110. package/dist/ts/ts/FileSystem/FileSystemTree.js +20 -13
  111. package/dist/ts/ts/FileSystem/Path.d.ts +2 -0
  112. package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
  113. package/dist/ts/ts/FileSystem/Path.js +17 -3
  114. package/dist/ts/ts/Json/Assay.js +26 -26
  115. package/dist/ts/ts/Json/Comment.js +10 -10
  116. package/dist/ts/ts/Json/Data.js +6 -6
  117. package/dist/ts/ts/Json/DataMap/DataContext.js +4 -4
  118. package/dist/ts/ts/Json/DataMap/DataMap.js +2 -2
  119. package/dist/ts/ts/Json/Decode.js +14 -9
  120. package/dist/ts/ts/Json/Encode.js +43 -11
  121. package/dist/ts/ts/Json/Investigation.js +40 -22
  122. package/dist/ts/ts/Json/OntologyAnnotation.js +5 -5
  123. package/dist/ts/ts/Json/OntologySourceReference.js +2 -2
  124. package/dist/ts/ts/Json/Person.js +26 -26
  125. package/dist/ts/ts/Json/Process/Component.js +9 -6
  126. package/dist/ts/ts/Json/Process/Factor.js +3 -3
  127. package/dist/ts/ts/Json/Process/FactorValue.js +8 -8
  128. package/dist/ts/ts/Json/Process/Material.js +9 -9
  129. package/dist/ts/ts/Json/Process/MaterialAttribute.js +1 -1
  130. package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +8 -8
  131. package/dist/ts/ts/Json/Process/Process.js +12 -12
  132. package/dist/ts/ts/Json/Process/ProcessInput.js +4 -4
  133. package/dist/ts/ts/Json/Process/ProcessOutput.js +3 -3
  134. package/dist/ts/ts/Json/Process/ProcessParameterValue.js +10 -7
  135. package/dist/ts/ts/Json/Process/Protocol.js +12 -12
  136. package/dist/ts/ts/Json/Process/ProtocolParameter.js +3 -3
  137. package/dist/ts/ts/Json/Process/Sample.js +14 -14
  138. package/dist/ts/ts/Json/Process/Source.js +9 -9
  139. package/dist/ts/ts/Json/Process/Value.js +1 -1
  140. package/dist/ts/ts/Json/PropertyValue.js +1 -1
  141. package/dist/ts/ts/Json/Publication.js +6 -6
  142. package/dist/ts/ts/Json/ROCrate/LDContext.js +1 -0
  143. package/dist/ts/ts/Json/ROCrate/LDGraph.js +3 -3
  144. package/dist/ts/ts/Json/ROCrate/LDNode.js +19 -19
  145. package/dist/ts/ts/Json/Run.js +7 -7
  146. package/dist/ts/ts/Json/StringTable.js +1 -1
  147. package/dist/ts/ts/Json/Study.js +32 -32
  148. package/dist/ts/ts/Json/Table/ArcTable.js +29 -29
  149. package/dist/ts/ts/Json/Table/CellTable.js +6 -6
  150. package/dist/ts/ts/Json/Table/CompositeCell.js +4 -4
  151. package/dist/ts/ts/Json/Table/CompositeHeader.js +2 -2
  152. package/dist/ts/ts/Json/Table/IOType.js +1 -1
  153. package/dist/ts/ts/Json/Table/OATable.js +7 -7
  154. package/dist/ts/ts/Json/Table/Templates.js +92 -6
  155. package/dist/ts/ts/Json/Workflow.js +11 -11
  156. package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +27 -1
  157. package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +17 -1
  158. package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +19 -1
  159. package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +27 -1
  160. package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +20 -1
  161. package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +18 -1
  162. package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +20 -1
  163. package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +16 -1
  164. package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +25 -1
  165. package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +24 -1
  166. package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +23 -1
  167. package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +20 -1
  168. package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +19 -1
  169. package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +19 -1
  170. package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +35 -1
  171. package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +61 -0
  172. package/dist/ts/ts/Json.d.ts +23 -1
  173. package/dist/ts/ts/Json.d.ts.map +1 -1
  174. package/dist/ts/ts/Json.js +112 -2
  175. package/dist/ts/ts/JsonIO/Assay.js +15 -3
  176. package/dist/ts/ts/JsonIO/Datamap.d.ts +7 -0
  177. package/dist/ts/ts/JsonIO/Datamap.d.ts.map +1 -0
  178. package/dist/ts/ts/JsonIO/Datamap.js +28 -0
  179. package/dist/ts/ts/JsonIO/Investigation.js +15 -3
  180. package/dist/ts/ts/JsonIO/LDObject.js +17 -3
  181. package/dist/ts/ts/JsonIO/OntologyAnnotation.js +12 -2
  182. package/dist/ts/ts/JsonIO/Person.d.ts +16 -0
  183. package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -0
  184. package/dist/ts/ts/JsonIO/Person.js +67 -0
  185. package/dist/ts/ts/JsonIO/Run.js +9 -3
  186. package/dist/ts/ts/JsonIO/Study.js +15 -3
  187. package/dist/ts/ts/JsonIO/Table/Compression.js +3 -3
  188. package/dist/ts/ts/JsonIO/Table/Templates.js +60 -5
  189. package/dist/ts/ts/JsonIO/Workflow.js +9 -3
  190. package/dist/ts/ts/License.d.ts +39 -0
  191. package/dist/ts/ts/License.d.ts.map +1 -0
  192. package/dist/ts/ts/License.js +123 -0
  193. package/dist/ts/ts/ROCrate/Generic/Comment.js +5 -1
  194. package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts +69 -0
  195. package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts.map +1 -0
  196. package/dist/ts/ts/ROCrate/Generic/CreativeWork.js +450 -0
  197. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts +1 -0
  198. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +1 -1
  199. package/dist/ts/ts/ROCrate/Generic/Dataset.js +27 -1
  200. package/dist/ts/ts/ROCrate/Generic/DefinedTerm.js +5 -1
  201. package/dist/ts/ts/ROCrate/Generic/File.js +5 -1
  202. package/dist/ts/ts/ROCrate/Generic/LabProcess.js +5 -1
  203. package/dist/ts/ts/ROCrate/Generic/LabProtocol.js +5 -1
  204. package/dist/ts/ts/ROCrate/Generic/Organization.js +5 -1
  205. package/dist/ts/ts/ROCrate/Generic/Person.js +7 -2
  206. package/dist/ts/ts/ROCrate/Generic/PostalAddress.js +5 -1
  207. package/dist/ts/ts/ROCrate/Generic/PropertyValue.js +19 -15
  208. package/dist/ts/ts/ROCrate/Generic/Sample.js +5 -1
  209. package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.js +5 -1
  210. package/dist/ts/ts/ROCrate/LDContext.js +15 -6
  211. package/dist/ts/ts/ROCrate/LDObject.js +53 -17
  212. package/dist/ts/ts/ROCrateIO.d.ts +9 -3
  213. package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
  214. package/dist/ts/ts/ROCrateIO.js +67 -14
  215. package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +18 -15
  216. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +5 -4
  217. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +40 -17
  218. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +4 -4
  219. package/dist/ts/ts/Spreadsheet/ArcAssay.js +30 -15
  220. package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +32 -18
  221. package/dist/ts/ts/Spreadsheet/ArcRun.js +23 -8
  222. package/dist/ts/ts/Spreadsheet/ArcStudy.js +22 -7
  223. package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +23 -8
  224. package/dist/ts/ts/Spreadsheet/CollectionAux.js +75 -5
  225. package/dist/ts/ts/Spreadsheet/DataMap.js +1 -1
  226. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.js +4 -4
  227. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.js +8 -8
  228. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.js +4 -4
  229. package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +6 -6
  230. package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +1 -1
  231. package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +2 -2
  232. package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +6 -3
  233. package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +9 -3
  234. package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +6 -4
  235. package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +7 -5
  236. package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +1 -1
  237. package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +10 -8
  238. package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +5 -5
  239. package/dist/ts/ts/Spreadsheet/Metadata/Run.js +6 -6
  240. package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +246 -10
  241. package/dist/ts/ts/Spreadsheet/Metadata/Study.js +19 -13
  242. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +5 -5
  243. package/dist/ts/ts/Template.Web.js +5 -1
  244. package/dist/ts/ts/ValidationPackages/ValidationPackage.js +8 -1
  245. package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +10 -3
  246. package/dist/ts/ts/WebRequest/WebRequest.Node.js +1 -0
  247. package/dist/ts/ts/Xlsx.js +41 -1
  248. package/dist/ts/ts/Yaml/ValidationPackage.js +18 -2
  249. package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +5 -2
  250. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +27 -4
  251. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +14 -3
  252. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +30 -4
  253. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +5 -1
  254. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +65 -2
  255. package/dist/ts/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +257 -1
  256. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +71 -1
  257. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +11 -1
  258. package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +188 -11
  259. package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +80 -2
  260. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCell.fs.js +63 -4
  261. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCellsCollection.fs.js +17 -7
  262. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/CellBuilder.fs.js +198 -0
  263. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Expression.fs.js +46 -0
  264. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/RowBuilder.fs.js +131 -0
  265. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Types.fs.js +307 -0
  266. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js +38 -2
  267. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsColumn.fs.js +11 -4
  268. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsRow.fs.js +12 -5
  269. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorkbook.fs.js +9 -2
  270. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorksheet.fs.js +14 -7
  271. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/HashCodes.fs.js +31 -1
  272. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Cell.fs.js +65 -0
  273. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Column.fs.js +38 -0
  274. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Row.fs.js +38 -0
  275. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Table.fs.js +34 -0
  276. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Value.fs.js +49 -3
  277. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Workbook.fs.js +44 -0
  278. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Worksheet.fs.js +129 -0
  279. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRange.fs.js +9 -2
  280. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeAddress.fs.js +82 -3
  281. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeBase.fs.js +12 -3
  282. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeColumn.fs.js +17 -2
  283. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeRow.fs.js +9 -2
  284. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTable.fs.js +12 -5
  285. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTableField.fs.js +12 -3
  286. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +2 -2
  287. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/FsExtensions.fs.js +42 -3
  288. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Json.fs.js +53 -0
  289. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Table.fs.js +9 -9
  290. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Workbook.fs.js +1 -1
  291. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Worksheet.fs.js +2 -2
  292. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Xlsx.fs.js +5 -1
  293. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Decode.fs.js +730 -23
  294. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Encode.fs.js +192 -7
  295. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Types.fs.js +45 -1
  296. package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js +15 -2
  297. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +1383 -15
  298. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +45 -4
  299. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +10 -0
  300. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +5 -5
  301. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +16 -6
  302. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +26 -23
  303. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +1 -1
  304. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +8 -8
  305. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +18 -2
  306. package/package.json +1 -1
  307. package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts +0 -2
  308. package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts.map +0 -1
  309. package/dist/ts/ts/FileSystem/DefaultGitattributes.js +0 -3
  310. package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts +0 -2
  311. package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts.map +0 -1
  312. 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,12 @@
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';
6
+ import { DataMap } from './Core/DataMap.js';
4
7
  import { ArcInvestigation, ArcRun, ArcWorkflow, ArcStudy, ArcAssay } from './Core/ArcTypes.js';
5
8
  import { FSharpList } from '@fable-org/fable-library-js/List.js';
6
9
  import { ARC } from './ARC.js';
7
- import { LDNode, LDGraph } from './ROCrate/LDObject.js';
8
10
  export declare class JsonHelper_OntologyAnnotationJson {
9
11
  constructor();
10
12
  fromJsonString(s: string): OntologyAnnotation;
@@ -16,6 +18,24 @@ export declare class JsonHelper_OntologyAnnotationJson {
16
18
  }
17
19
  export declare function JsonHelper_OntologyAnnotationJson_$reflection(): TypeInfo;
18
20
  export declare function JsonHelper_OntologyAnnotationJson_$ctor(): JsonHelper_OntologyAnnotationJson;
21
+ export declare class JsonHelper_PersonJson {
22
+ constructor();
23
+ fromJsonString(s: string): Person;
24
+ fromISAJsonString(s: string): Person;
25
+ fromROCrateJsonString(s: string): LDNode;
26
+ toJsonString(person: Person, spaces?: int32): string;
27
+ toISAJsonString(person: Person, spaces?: int32, useIDReferencing?: boolean): string;
28
+ toROCrateJsonString(person: Person, spaces?: int32): string;
29
+ }
30
+ export declare function JsonHelper_PersonJson_$reflection(): TypeInfo;
31
+ export declare function JsonHelper_PersonJson_$ctor(): JsonHelper_PersonJson;
32
+ export declare class JsonHelper_DatamapJson {
33
+ constructor();
34
+ fromJsonString(s: string): DataMap;
35
+ toJsonString(datamap: DataMap, spaces?: int32): string;
36
+ }
37
+ export declare function JsonHelper_DatamapJson_$reflection(): TypeInfo;
38
+ export declare function JsonHelper_DatamapJson_$ctor(): JsonHelper_DatamapJson;
19
39
  export declare class JsonHelper_AssayJson {
20
40
  constructor();
21
41
  fromJsonString(s: string): ArcAssay;
@@ -97,6 +117,8 @@ export declare function JsonHelper_LDNodeJson_$ctor(): JsonHelper_LDNodeJson;
97
117
  export declare class JsonController {
98
118
  constructor();
99
119
  static get OntologyAnnotation(): JsonHelper_OntologyAnnotationJson;
120
+ static get Person(): JsonHelper_PersonJson;
121
+ static get Datamap(): JsonHelper_DatamapJson;
100
122
  static get Assay(): JsonHelper_AssayJson;
101
123
  static get Study(): JsonHelper_StudyJson;
102
124
  static get Workflow(): JsonHelper_WorkflowJson;