@nfdi4plants/arctrl 3.1.0 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (892) hide show
  1. package/dist/ts/index.d.ts +3 -0
  2. package/dist/ts/index.d.ts.map +1 -1
  3. package/dist/ts/index.js +3 -0
  4. package/dist/ts/node_modules/@fable-org/fable-library-ts/Array.js +1296 -0
  5. package/dist/ts/node_modules/@fable-org/fable-library-ts/Async.js +174 -0
  6. package/dist/ts/node_modules/@fable-org/fable-library-ts/AsyncBuilder.js +190 -0
  7. package/dist/ts/node_modules/@fable-org/fable-library-ts/BigInt.js +479 -0
  8. package/dist/ts/node_modules/@fable-org/fable-library-ts/Boolean.js +23 -0
  9. package/dist/ts/node_modules/@fable-org/fable-library-ts/Char.js +172 -0
  10. package/dist/ts/node_modules/@fable-org/fable-library-ts/Choice.js +187 -0
  11. package/dist/ts/node_modules/@fable-org/fable-library-ts/CollectionUtil.js +148 -0
  12. package/dist/ts/node_modules/@fable-org/fable-library-ts/Date.js +843 -0
  13. package/dist/ts/node_modules/@fable-org/fable-library-ts/DateOffset.js +247 -0
  14. package/dist/ts/node_modules/@fable-org/fable-library-ts/Decimal.js +279 -0
  15. package/dist/ts/node_modules/@fable-org/fable-library-ts/Double.js +53 -0
  16. package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Collections.js +48 -0
  17. package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Core.js +148 -0
  18. package/dist/ts/node_modules/@fable-org/fable-library-ts/Global.js +31 -0
  19. package/dist/ts/node_modules/@fable-org/fable-library-ts/Guid.js +140 -0
  20. package/dist/ts/node_modules/@fable-org/fable-library-ts/Int32.js +165 -0
  21. package/dist/ts/node_modules/@fable-org/fable-library-ts/List.js +1282 -0
  22. package/dist/ts/node_modules/@fable-org/fable-library-ts/Long.js +40 -0
  23. package/dist/ts/node_modules/@fable-org/fable-library-ts/Map.js +1298 -0
  24. package/dist/ts/node_modules/@fable-org/fable-library-ts/MapUtil.js +126 -0
  25. package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableMap.js +323 -0
  26. package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableSet.js +225 -0
  27. package/dist/ts/node_modules/@fable-org/fable-library-ts/Native.js +14 -0
  28. package/dist/ts/node_modules/@fable-org/fable-library-ts/Numeric.js +63 -0
  29. package/dist/ts/node_modules/@fable-org/fable-library-ts/Option.js +81 -0
  30. package/dist/ts/node_modules/@fable-org/fable-library-ts/Random.js +174 -0
  31. package/dist/ts/node_modules/@fable-org/fable-library-ts/Range.js +47 -0
  32. package/dist/ts/node_modules/@fable-org/fable-library-ts/Reflection.js +471 -0
  33. package/dist/ts/node_modules/@fable-org/fable-library-ts/RegExp.js +137 -0
  34. package/dist/ts/node_modules/@fable-org/fable-library-ts/Result.js +169 -0
  35. package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq.js +1398 -0
  36. package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq2.js +110 -0
  37. package/dist/ts/node_modules/@fable-org/fable-library-ts/Set.js +1670 -0
  38. package/dist/ts/node_modules/@fable-org/fable-library-ts/String.js +660 -0
  39. package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Collections.Generic.js +328 -0
  40. package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Text.js +201 -0
  41. package/dist/ts/node_modules/@fable-org/fable-library-ts/System.js +292 -0
  42. package/dist/ts/node_modules/@fable-org/fable-library-ts/TimeSpan.js +170 -0
  43. package/dist/ts/node_modules/@fable-org/fable-library-ts/Types.js +199 -0
  44. package/dist/ts/node_modules/@fable-org/{fable-library-js → fable-library-ts}/Unicode.13.0.0.js +0 -2
  45. package/dist/ts/node_modules/@fable-org/fable-library-ts/Uri.js +154 -0
  46. package/dist/ts/node_modules/@fable-org/fable-library-ts/Util.js +747 -0
  47. package/dist/ts/node_modules/@fable-org/fable-library-ts/lib/big.js +1052 -0
  48. package/dist/ts/ts/ARC.d.ts +122 -62
  49. package/dist/ts/ts/ARC.d.ts.map +1 -1
  50. package/dist/ts/ts/ARC.js +142 -86
  51. package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts +32 -0
  52. package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts.map +1 -0
  53. package/dist/ts/ts/CWL/CWLKnownFieldNames.js +95 -0
  54. package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts +12 -12
  55. package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts.map +1 -1
  56. package/dist/ts/ts/CWL/CWLProcessingUnit.js +7 -7
  57. package/dist/ts/ts/CWL/CWLTypes.d.ts +219 -59
  58. package/dist/ts/ts/CWL/CWLTypes.d.ts.map +1 -1
  59. package/dist/ts/ts/CWL/CWLTypes.js +696 -124
  60. package/dist/ts/ts/CWL/Decode.d.ts +303 -61
  61. package/dist/ts/ts/CWL/Decode.d.ts.map +1 -1
  62. package/dist/ts/ts/CWL/Decode.js +1162 -679
  63. package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts +37 -0
  64. package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts.map +1 -0
  65. package/dist/ts/ts/CWL/DynamicObjHelpers.js +57 -0
  66. package/dist/ts/ts/CWL/Encode.d.ts +138 -14
  67. package/dist/ts/ts/CWL/Encode.d.ts.map +1 -1
  68. package/dist/ts/ts/CWL/Encode.js +798 -522
  69. package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts +32 -6
  70. package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts.map +1 -1
  71. package/dist/ts/ts/CWL/ExpressionToolDescription.js +31 -3
  72. package/dist/ts/ts/CWL/HashHelpers.d.ts +4 -3
  73. package/dist/ts/ts/CWL/HashHelpers.d.ts.map +1 -1
  74. package/dist/ts/ts/CWL/HashHelpers.js +9 -9
  75. package/dist/ts/ts/CWL/Inputs.d.ts +69 -18
  76. package/dist/ts/ts/CWL/Inputs.d.ts.map +1 -1
  77. package/dist/ts/ts/CWL/Inputs.js +191 -52
  78. package/dist/ts/ts/CWL/OperationDescription.d.ts +8 -6
  79. package/dist/ts/ts/CWL/OperationDescription.d.ts.map +1 -1
  80. package/dist/ts/ts/CWL/OperationDescription.js +7 -3
  81. package/dist/ts/ts/CWL/Outputs.d.ts +55 -16
  82. package/dist/ts/ts/CWL/Outputs.d.ts.map +1 -1
  83. package/dist/ts/ts/CWL/Outputs.js +170 -75
  84. package/dist/ts/ts/CWL/ParameterReference.d.ts +15 -9
  85. package/dist/ts/ts/CWL/ParameterReference.d.ts.map +1 -1
  86. package/dist/ts/ts/CWL/ParameterReference.js +36 -17
  87. package/dist/ts/ts/CWL/ParameterValue.d.ts +57 -0
  88. package/dist/ts/ts/CWL/ParameterValue.d.ts.map +1 -0
  89. package/dist/ts/ts/CWL/ParameterValue.js +321 -0
  90. package/dist/ts/ts/CWL/Requirements.d.ts +183 -66
  91. package/dist/ts/ts/CWL/Requirements.d.ts.map +1 -1
  92. package/dist/ts/ts/CWL/Requirements.js +475 -137
  93. package/dist/ts/ts/CWL/ToolDescription.d.ts +57 -8
  94. package/dist/ts/ts/CWL/ToolDescription.d.ts.map +1 -1
  95. package/dist/ts/ts/CWL/ToolDescription.js +98 -7
  96. package/dist/ts/ts/CWL/WorkflowDescription.d.ts +30 -7
  97. package/dist/ts/ts/CWL/WorkflowDescription.d.ts.map +1 -1
  98. package/dist/ts/ts/CWL/WorkflowDescription.js +28 -3
  99. package/dist/ts/ts/CWL/WorkflowSteps.d.ts +91 -36
  100. package/dist/ts/ts/CWL/WorkflowSteps.d.ts.map +1 -1
  101. package/dist/ts/ts/CWL/WorkflowSteps.js +206 -41
  102. package/dist/ts/ts/CWLRunResolver.d.ts +11 -11
  103. package/dist/ts/ts/CWLRunResolver.d.ts.map +1 -1
  104. package/dist/ts/ts/CWLRunResolver.js +16 -16
  105. package/dist/ts/ts/Contract/ARC.d.ts +2 -2
  106. package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
  107. package/dist/ts/ts/Contract/ARC.js +1 -1
  108. package/dist/ts/ts/Contract/ArcAssay.d.ts +7 -6
  109. package/dist/ts/ts/Contract/ArcAssay.d.ts.map +1 -1
  110. package/dist/ts/ts/Contract/ArcAssay.js +15 -10
  111. package/dist/ts/ts/Contract/ArcInvestigation.d.ts +5 -4
  112. package/dist/ts/ts/Contract/ArcInvestigation.d.ts.map +1 -1
  113. package/dist/ts/ts/Contract/ArcInvestigation.js +12 -7
  114. package/dist/ts/ts/Contract/ArcRun.d.ts +11 -10
  115. package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -1
  116. package/dist/ts/ts/Contract/ArcRun.js +24 -21
  117. package/dist/ts/ts/Contract/ArcStudy.d.ts +8 -7
  118. package/dist/ts/ts/Contract/ArcStudy.d.ts.map +1 -1
  119. package/dist/ts/ts/Contract/ArcStudy.js +15 -10
  120. package/dist/ts/ts/Contract/ArcWorkflow.d.ts +9 -8
  121. package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -1
  122. package/dist/ts/ts/Contract/ArcWorkflow.js +20 -16
  123. package/dist/ts/ts/Contract/Contract.d.ts +38 -8
  124. package/dist/ts/ts/Contract/Contract.d.ts.map +1 -1
  125. package/dist/ts/ts/Contract/Contract.js +46 -7
  126. package/dist/ts/ts/Contract/Datamap.d.ts +5 -4
  127. package/dist/ts/ts/Contract/Datamap.d.ts.map +1 -1
  128. package/dist/ts/ts/Contract/Datamap.js +45 -32
  129. package/dist/ts/ts/Contract/Git.d.ts +6 -5
  130. package/dist/ts/ts/Contract/Git.d.ts.map +1 -1
  131. package/dist/ts/ts/Contract/Git.js +4 -4
  132. package/dist/ts/ts/Contract/License.d.ts +4 -3
  133. package/dist/ts/ts/Contract/License.d.ts.map +1 -1
  134. package/dist/ts/ts/Contract/License.js +5 -5
  135. package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts +5 -4
  136. package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -1
  137. package/dist/ts/ts/Contract/ValidationPackagesConfig.js +6 -7
  138. package/dist/ts/ts/ContractIO/ContractIO.d.ts +5 -4
  139. package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -1
  140. package/dist/ts/ts/ContractIO/ContractIO.js +49 -44
  141. package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts +13 -12
  142. package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts.map +1 -1
  143. package/dist/ts/ts/ContractIO/FileSystemHelper.js +6 -6
  144. package/dist/ts/ts/Conversion/Assay.d.ts +5 -5
  145. package/dist/ts/ts/Conversion/Assay.d.ts.map +1 -1
  146. package/dist/ts/ts/Conversion/Assay.js +38 -18
  147. package/dist/ts/ts/Conversion/Basic.d.ts +16 -13
  148. package/dist/ts/ts/Conversion/Basic.d.ts.map +1 -1
  149. package/dist/ts/ts/Conversion/Basic.js +69 -38
  150. package/dist/ts/ts/Conversion/ColumnIndex.d.ts +3 -3
  151. package/dist/ts/ts/Conversion/ColumnIndex.d.ts.map +1 -1
  152. package/dist/ts/ts/Conversion/ColumnIndex.js +8 -8
  153. package/dist/ts/ts/Conversion/Datamap.d.ts +4 -4
  154. package/dist/ts/ts/Conversion/Datamap.d.ts.map +1 -1
  155. package/dist/ts/ts/Conversion/Datamap.js +2 -2
  156. package/dist/ts/ts/Conversion/DateTime.d.ts +1 -1
  157. package/dist/ts/ts/Conversion/DateTime.d.ts.map +1 -1
  158. package/dist/ts/ts/Conversion/DateTime.js +7 -6
  159. package/dist/ts/ts/Conversion/Investigation.d.ts +5 -5
  160. package/dist/ts/ts/Conversion/Investigation.d.ts.map +1 -1
  161. package/dist/ts/ts/Conversion/Investigation.js +19 -12
  162. package/dist/ts/ts/Conversion/Person.d.ts +5 -5
  163. package/dist/ts/ts/Conversion/Person.d.ts.map +1 -1
  164. package/dist/ts/ts/Conversion/Person.js +57 -25
  165. package/dist/ts/ts/Conversion/Process.d.ts +14 -11
  166. package/dist/ts/ts/Conversion/Process.d.ts.map +1 -1
  167. package/dist/ts/ts/Conversion/Process.js +57 -46
  168. package/dist/ts/ts/Conversion/Run.d.ts +12 -17
  169. package/dist/ts/ts/Conversion/Run.d.ts.map +1 -1
  170. package/dist/ts/ts/Conversion/Run.js +452 -69
  171. package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts +4 -4
  172. package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts.map +1 -1
  173. package/dist/ts/ts/Conversion/ScholarlyArticle.js +26 -17
  174. package/dist/ts/ts/Conversion/Study.d.ts +5 -5
  175. package/dist/ts/ts/Conversion/Study.d.ts.map +1 -1
  176. package/dist/ts/ts/Conversion/Study.js +30 -15
  177. package/dist/ts/ts/Conversion/Table.d.ts +10 -11
  178. package/dist/ts/ts/Conversion/Table.d.ts.map +1 -1
  179. package/dist/ts/ts/Conversion/Table.js +17 -24
  180. package/dist/ts/ts/Conversion/Workflow.d.ts +17 -17
  181. package/dist/ts/ts/Conversion/Workflow.d.ts.map +1 -1
  182. package/dist/ts/ts/Conversion/Workflow.js +86 -47
  183. package/dist/ts/ts/Conversion.d.ts +24 -21
  184. package/dist/ts/ts/Conversion.d.ts.map +1 -1
  185. package/dist/ts/ts/Conversion.js +20 -13
  186. package/dist/ts/ts/Core/ArcTypes.d.ts +331 -76
  187. package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -1
  188. package/dist/ts/ts/Core/ArcTypes.js +585 -299
  189. package/dist/ts/ts/Core/Comment.d.ts +5 -5
  190. package/dist/ts/ts/Core/Comment.d.ts.map +1 -1
  191. package/dist/ts/ts/Core/Comment.js +17 -10
  192. package/dist/ts/ts/Core/CommentList.d.ts +3 -3
  193. package/dist/ts/ts/Core/CommentList.d.ts.map +1 -1
  194. package/dist/ts/ts/Core/CommentList.js +8 -8
  195. package/dist/ts/ts/Core/Conversion.d.ts +25 -25
  196. package/dist/ts/ts/Core/Conversion.d.ts.map +1 -1
  197. package/dist/ts/ts/Core/Conversion.js +102 -102
  198. package/dist/ts/ts/Core/Data.d.ts +6 -6
  199. package/dist/ts/ts/Core/Data.d.ts.map +1 -1
  200. package/dist/ts/ts/Core/Data.js +11 -10
  201. package/dist/ts/ts/Core/DataContext.d.ts +10 -10
  202. package/dist/ts/ts/Core/DataContext.d.ts.map +1 -1
  203. package/dist/ts/ts/Core/DataContext.js +3 -3
  204. package/dist/ts/ts/Core/DataFile.d.ts +9 -6
  205. package/dist/ts/ts/Core/DataFile.d.ts.map +1 -1
  206. package/dist/ts/ts/Core/DataFile.js +20 -9
  207. package/dist/ts/ts/Core/Datamap.d.ts +17 -16
  208. package/dist/ts/ts/Core/Datamap.d.ts.map +1 -1
  209. package/dist/ts/ts/Core/Datamap.js +16 -14
  210. package/dist/ts/ts/Core/Helper/Collections.d.ts +4 -4
  211. package/dist/ts/ts/Core/Helper/Collections.d.ts.map +1 -1
  212. package/dist/ts/ts/Core/Helper/Collections.js +30 -37
  213. package/dist/ts/ts/Core/Helper/HashCodes.d.ts +15 -4
  214. package/dist/ts/ts/Core/Helper/HashCodes.d.ts.map +1 -1
  215. package/dist/ts/ts/Core/Helper/HashCodes.js +33 -14
  216. package/dist/ts/ts/Core/Helper/Identifier.d.ts +1 -1
  217. package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -1
  218. package/dist/ts/ts/Core/Helper/Identifier.js +10 -8
  219. package/dist/ts/ts/Core/Helper/ORCID.d.ts +1 -1
  220. package/dist/ts/ts/Core/Helper/ORCID.d.ts.map +1 -1
  221. package/dist/ts/ts/Core/Helper/ORCID.js +4 -3
  222. package/dist/ts/ts/Core/Helper/Regex.d.ts +7 -7
  223. package/dist/ts/ts/Core/Helper/Regex.d.ts.map +1 -1
  224. package/dist/ts/ts/Core/Helper/Regex.js +20 -12
  225. package/dist/ts/ts/Core/Helper/SemVer.d.ts +5 -5
  226. package/dist/ts/ts/Core/Helper/SemVer.d.ts.map +1 -1
  227. package/dist/ts/ts/Core/Helper/SemVer.js +7 -7
  228. package/dist/ts/ts/Core/Helper/Url.d.ts +1 -1
  229. package/dist/ts/ts/Core/Helper/Url.d.ts.map +1 -1
  230. package/dist/ts/ts/Core/Helper/Url.js +8 -7
  231. package/dist/ts/ts/Core/IdentifierSetters.d.ts +2 -2
  232. package/dist/ts/ts/Core/IdentifierSetters.d.ts.map +1 -1
  233. package/dist/ts/ts/Core/OntologyAnnotation.d.ts +23 -5
  234. package/dist/ts/ts/Core/OntologyAnnotation.d.ts.map +1 -1
  235. package/dist/ts/ts/Core/OntologyAnnotation.js +116 -45
  236. package/dist/ts/ts/Core/OntologySourceReference.d.ts +4 -4
  237. package/dist/ts/ts/Core/OntologySourceReference.d.ts.map +1 -1
  238. package/dist/ts/ts/Core/OntologySourceReference.js +4 -4
  239. package/dist/ts/ts/Core/Person.d.ts +19 -9
  240. package/dist/ts/ts/Core/Person.d.ts.map +1 -1
  241. package/dist/ts/ts/Core/Person.js +27 -11
  242. package/dist/ts/ts/Core/Process/ColumnIndex.d.ts +11 -11
  243. package/dist/ts/ts/Core/Process/ColumnIndex.d.ts.map +1 -1
  244. package/dist/ts/ts/Core/Process/ColumnIndex.js +68 -29
  245. package/dist/ts/ts/Core/Process/Component.d.ts +16 -16
  246. package/dist/ts/ts/Core/Process/Component.d.ts.map +1 -1
  247. package/dist/ts/ts/Core/Process/Component.js +38 -25
  248. package/dist/ts/ts/Core/Process/Factor.d.ts +53 -8
  249. package/dist/ts/ts/Core/Process/Factor.d.ts.map +1 -1
  250. package/dist/ts/ts/Core/Process/Factor.js +62 -11
  251. package/dist/ts/ts/Core/Process/FactorValue.d.ts +15 -15
  252. package/dist/ts/ts/Core/Process/FactorValue.d.ts.map +1 -1
  253. package/dist/ts/ts/Core/Process/FactorValue.js +39 -47
  254. package/dist/ts/ts/Core/Process/Material.d.ts +9 -9
  255. package/dist/ts/ts/Core/Process/Material.d.ts.map +1 -1
  256. package/dist/ts/ts/Core/Process/Material.js +5 -5
  257. package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts +7 -7
  258. package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts.map +1 -1
  259. package/dist/ts/ts/Core/Process/MaterialAttribute.js +17 -8
  260. package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts +15 -15
  261. package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -1
  262. package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +45 -48
  263. package/dist/ts/ts/Core/Process/MaterialType.d.ts +7 -5
  264. package/dist/ts/ts/Core/Process/MaterialType.d.ts.map +1 -1
  265. package/dist/ts/ts/Core/Process/MaterialType.js +14 -7
  266. package/dist/ts/ts/Core/Process/Process.d.ts +22 -22
  267. package/dist/ts/ts/Core/Process/Process.d.ts.map +1 -1
  268. package/dist/ts/ts/Core/Process/Process.js +42 -26
  269. package/dist/ts/ts/Core/Process/ProcessInput.d.ts +14 -14
  270. package/dist/ts/ts/Core/Process/ProcessInput.d.ts.map +1 -1
  271. package/dist/ts/ts/Core/Process/ProcessInput.js +15 -10
  272. package/dist/ts/ts/Core/Process/ProcessOutput.d.ts +14 -14
  273. package/dist/ts/ts/Core/Process/ProcessOutput.d.ts.map +1 -1
  274. package/dist/ts/ts/Core/Process/ProcessOutput.js +15 -10
  275. package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts +30 -15
  276. package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -1
  277. package/dist/ts/ts/Core/Process/ProcessParameterValue.js +56 -46
  278. package/dist/ts/ts/Core/Process/ProcessSequence.d.ts +16 -16
  279. package/dist/ts/ts/Core/Process/ProcessSequence.d.ts.map +1 -1
  280. package/dist/ts/ts/Core/Process/ProcessSequence.js +33 -26
  281. package/dist/ts/ts/Core/Process/Protocol.d.ts +9 -9
  282. package/dist/ts/ts/Core/Process/Protocol.d.ts.map +1 -1
  283. package/dist/ts/ts/Core/Process/Protocol.js +21 -13
  284. package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts +28 -7
  285. package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts.map +1 -1
  286. package/dist/ts/ts/Core/Process/ProtocolParameter.js +33 -8
  287. package/dist/ts/ts/Core/Process/Sample.d.ts +10 -10
  288. package/dist/ts/ts/Core/Process/Sample.d.ts.map +1 -1
  289. package/dist/ts/ts/Core/Process/Sample.js +5 -5
  290. package/dist/ts/ts/Core/Process/Source.d.ts +8 -8
  291. package/dist/ts/ts/Core/Process/Source.d.ts.map +1 -1
  292. package/dist/ts/ts/Core/Process/Source.js +5 -5
  293. package/dist/ts/ts/Core/Publication.d.ts +5 -5
  294. package/dist/ts/ts/Core/Publication.d.ts.map +1 -1
  295. package/dist/ts/ts/Core/Publication.js +18 -11
  296. package/dist/ts/ts/Core/ScalarValue.d.ts +41 -0
  297. package/dist/ts/ts/Core/ScalarValue.d.ts.map +1 -0
  298. package/dist/ts/ts/Core/{Value.js → ScalarValue.js} +56 -29
  299. package/dist/ts/ts/Core/Table/ArcTable.d.ts +134 -15
  300. package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -1
  301. package/dist/ts/ts/Core/Table/ArcTable.js +204 -68
  302. package/dist/ts/ts/Core/Table/ArcTableAux.d.ts +15 -10
  303. package/dist/ts/ts/Core/Table/ArcTableAux.d.ts.map +1 -1
  304. package/dist/ts/ts/Core/Table/ArcTableAux.js +75 -71
  305. package/dist/ts/ts/Core/Table/ArcTables.d.ts +12 -9
  306. package/dist/ts/ts/Core/Table/ArcTables.d.ts.map +1 -1
  307. package/dist/ts/ts/Core/Table/ArcTables.js +42 -38
  308. package/dist/ts/ts/Core/Table/CompositeCell.d.ts +46 -7
  309. package/dist/ts/ts/Core/Table/CompositeCell.d.ts.map +1 -1
  310. package/dist/ts/ts/Core/Table/CompositeCell.js +52 -12
  311. package/dist/ts/ts/Core/Table/CompositeColumn.d.ts +20 -7
  312. package/dist/ts/ts/Core/Table/CompositeColumn.d.ts.map +1 -1
  313. package/dist/ts/ts/Core/Table/CompositeColumn.js +17 -4
  314. package/dist/ts/ts/Core/Table/CompositeHeader.d.ts +116 -22
  315. package/dist/ts/ts/Core/Table/CompositeHeader.d.ts.map +1 -1
  316. package/dist/ts/ts/Core/Table/CompositeHeader.js +219 -65
  317. package/dist/ts/ts/Core/Template.d.ts +15 -9
  318. package/dist/ts/ts/Core/Template.d.ts.map +1 -1
  319. package/dist/ts/ts/Core/Template.js +19 -11
  320. package/dist/ts/ts/Core/Templates.d.ts +24 -5
  321. package/dist/ts/ts/Core/Templates.d.ts.map +1 -1
  322. package/dist/ts/ts/Core/Templates.js +26 -8
  323. package/dist/ts/ts/Core/URI.d.ts.map +1 -1
  324. package/dist/ts/ts/CrossAsync.d.ts +6 -5
  325. package/dist/ts/ts/CrossAsync.d.ts.map +1 -1
  326. package/dist/ts/ts/CrossAsync.js +6 -6
  327. package/dist/ts/ts/FileSystem/Commit.d.ts +3 -3
  328. package/dist/ts/ts/FileSystem/Commit.d.ts.map +1 -1
  329. package/dist/ts/ts/FileSystem/Commit.js +2 -2
  330. package/dist/ts/ts/FileSystem/FileSystem.d.ts +9 -9
  331. package/dist/ts/ts/FileSystem/FileSystem.d.ts.map +1 -1
  332. package/dist/ts/ts/FileSystem/FileSystem.js +4 -4
  333. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +35 -16
  334. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
  335. package/dist/ts/ts/FileSystem/FileSystemTree.js +36 -18
  336. package/dist/ts/ts/FileSystem/Path.d.ts +9 -8
  337. package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
  338. package/dist/ts/ts/FileSystem/Path.js +13 -13
  339. package/dist/ts/ts/Json/Assay.d.ts +9 -9
  340. package/dist/ts/ts/Json/Assay.d.ts.map +1 -1
  341. package/dist/ts/ts/Json/Assay.js +86 -50
  342. package/dist/ts/ts/Json/Comment.d.ts +4 -4
  343. package/dist/ts/ts/Json/Comment.d.ts.map +1 -1
  344. package/dist/ts/ts/Json/Comment.js +38 -17
  345. package/dist/ts/ts/Json/Data.d.ts +7 -7
  346. package/dist/ts/ts/Json/Data.d.ts.map +1 -1
  347. package/dist/ts/ts/Json/Data.js +48 -20
  348. package/dist/ts/ts/Json/DataFile.d.ts +2 -2
  349. package/dist/ts/ts/Json/DataFile.d.ts.map +1 -1
  350. package/dist/ts/ts/Json/DataFile.js +10 -9
  351. package/dist/ts/ts/Json/Datamap/DataContext.d.ts +2 -2
  352. package/dist/ts/ts/Json/Datamap/DataContext.d.ts.map +1 -1
  353. package/dist/ts/ts/Json/Datamap/DataContext.js +14 -7
  354. package/dist/ts/ts/Json/Datamap/Datamap.d.ts +7 -7
  355. package/dist/ts/ts/Json/Datamap/Datamap.d.ts.map +1 -1
  356. package/dist/ts/ts/Json/Datamap/Datamap.js +4 -4
  357. package/dist/ts/ts/Json/Decode.d.ts +6 -6
  358. package/dist/ts/ts/Json/Decode.d.ts.map +1 -1
  359. package/dist/ts/ts/Json/Decode.js +32 -32
  360. package/dist/ts/ts/Json/Encode.d.ts +6 -5
  361. package/dist/ts/ts/Json/Encode.d.ts.map +1 -1
  362. package/dist/ts/ts/Json/Encode.js +28 -26
  363. package/dist/ts/ts/Json/IDTable.d.ts +2 -2
  364. package/dist/ts/ts/Json/IDTable.d.ts.map +1 -1
  365. package/dist/ts/ts/Json/IDTable.js +2 -2
  366. package/dist/ts/ts/Json/Investigation.d.ts +9 -9
  367. package/dist/ts/ts/Json/Investigation.d.ts.map +1 -1
  368. package/dist/ts/ts/Json/Investigation.js +68 -33
  369. package/dist/ts/ts/Json/OntologyAnnotation.d.ts +6 -6
  370. package/dist/ts/ts/Json/OntologyAnnotation.d.ts.map +1 -1
  371. package/dist/ts/ts/Json/OntologyAnnotation.js +60 -25
  372. package/dist/ts/ts/Json/OntologySourceReference.d.ts +4 -4
  373. package/dist/ts/ts/Json/OntologySourceReference.d.ts.map +1 -1
  374. package/dist/ts/ts/Json/OntologySourceReference.js +36 -15
  375. package/dist/ts/ts/Json/Person.d.ts +5 -5
  376. package/dist/ts/ts/Json/Person.d.ts.map +1 -1
  377. package/dist/ts/ts/Json/Person.js +57 -29
  378. package/dist/ts/ts/Json/Process/AssayMaterials.d.ts +5 -5
  379. package/dist/ts/ts/Json/Process/AssayMaterials.d.ts.map +1 -1
  380. package/dist/ts/ts/Json/Process/AssayMaterials.js +12 -5
  381. package/dist/ts/ts/Json/Process/Component.d.ts +5 -5
  382. package/dist/ts/ts/Json/Process/Component.d.ts.map +1 -1
  383. package/dist/ts/ts/Json/Process/Component.js +25 -11
  384. package/dist/ts/ts/Json/Process/Factor.d.ts +4 -4
  385. package/dist/ts/ts/Json/Process/Factor.d.ts.map +1 -1
  386. package/dist/ts/ts/Json/Process/Factor.js +17 -9
  387. package/dist/ts/ts/Json/Process/FactorValue.d.ts +5 -5
  388. package/dist/ts/ts/Json/Process/FactorValue.d.ts.map +1 -1
  389. package/dist/ts/ts/Json/Process/FactorValue.js +14 -7
  390. package/dist/ts/ts/Json/Process/Material.d.ts +5 -5
  391. package/dist/ts/ts/Json/Process/Material.d.ts.map +1 -1
  392. package/dist/ts/ts/Json/Process/Material.js +31 -31
  393. package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts +4 -4
  394. package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts.map +1 -1
  395. package/dist/ts/ts/Json/Process/MaterialAttribute.js +16 -8
  396. package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts +5 -5
  397. package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -1
  398. package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +14 -7
  399. package/dist/ts/ts/Json/Process/MaterialType.d.ts +2 -2
  400. package/dist/ts/ts/Json/Process/MaterialType.d.ts.map +1 -1
  401. package/dist/ts/ts/Json/Process/MaterialType.js +9 -8
  402. package/dist/ts/ts/Json/Process/Process.d.ts +4 -4
  403. package/dist/ts/ts/Json/Process/Process.d.ts.map +1 -1
  404. package/dist/ts/ts/Json/Process/Process.js +28 -14
  405. package/dist/ts/ts/Json/Process/ProcessInput.d.ts +4 -4
  406. package/dist/ts/ts/Json/Process/ProcessInput.d.ts.map +1 -1
  407. package/dist/ts/ts/Json/Process/ProcessInput.js +2 -2
  408. package/dist/ts/ts/Json/Process/ProcessOutput.d.ts +4 -4
  409. package/dist/ts/ts/Json/Process/ProcessOutput.d.ts.map +1 -1
  410. package/dist/ts/ts/Json/Process/ProcessOutput.js +2 -2
  411. package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts +5 -5
  412. package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -1
  413. package/dist/ts/ts/Json/Process/ProcessParameterValue.js +16 -8
  414. package/dist/ts/ts/Json/Process/Protocol.d.ts +4 -4
  415. package/dist/ts/ts/Json/Process/Protocol.d.ts.map +1 -1
  416. package/dist/ts/ts/Json/Process/Protocol.js +30 -16
  417. package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts +4 -4
  418. package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts.map +1 -1
  419. package/dist/ts/ts/Json/Process/ProtocolParameter.js +16 -8
  420. package/dist/ts/ts/Json/Process/Sample.d.ts +7 -7
  421. package/dist/ts/ts/Json/Process/Sample.d.ts.map +1 -1
  422. package/dist/ts/ts/Json/Process/Sample.js +37 -60
  423. package/dist/ts/ts/Json/Process/Source.d.ts +5 -5
  424. package/dist/ts/ts/Json/Process/Source.d.ts.map +1 -1
  425. package/dist/ts/ts/Json/Process/Source.js +34 -57
  426. package/dist/ts/ts/Json/Process/StudyMaterials.d.ts +5 -5
  427. package/dist/ts/ts/Json/Process/StudyMaterials.d.ts.map +1 -1
  428. package/dist/ts/ts/Json/Process/StudyMaterials.js +12 -5
  429. package/dist/ts/ts/Json/Process/Value.d.ts +6 -6
  430. package/dist/ts/ts/Json/Process/Value.d.ts.map +1 -1
  431. package/dist/ts/ts/Json/Process/Value.js +4 -4
  432. package/dist/ts/ts/Json/PropertyValue.d.ts +6 -6
  433. package/dist/ts/ts/Json/PropertyValue.d.ts.map +1 -1
  434. package/dist/ts/ts/Json/PropertyValue.js +31 -22
  435. package/dist/ts/ts/Json/Publication.d.ts +5 -5
  436. package/dist/ts/ts/Json/Publication.d.ts.map +1 -1
  437. package/dist/ts/ts/Json/Publication.js +36 -15
  438. package/dist/ts/ts/Json/ROCrate/LDContext.d.ts +2 -2
  439. package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -1
  440. package/dist/ts/ts/Json/ROCrate/LDContext.js +17 -16
  441. package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts +2 -2
  442. package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts.map +1 -1
  443. package/dist/ts/ts/Json/ROCrate/LDGraph.js +21 -14
  444. package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +2 -2
  445. package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -1
  446. package/dist/ts/ts/Json/ROCrate/LDNode.js +94 -29
  447. package/dist/ts/ts/Json/ROCrate/LDRef.d.ts +2 -2
  448. package/dist/ts/ts/Json/ROCrate/LDRef.d.ts.map +1 -1
  449. package/dist/ts/ts/Json/ROCrate/LDRef.js +4 -4
  450. package/dist/ts/ts/Json/ROCrate/LDValue.d.ts +2 -2
  451. package/dist/ts/ts/Json/ROCrate/LDValue.d.ts.map +1 -1
  452. package/dist/ts/ts/Json/ROCrate/LDValue.js +8 -7
  453. package/dist/ts/ts/Json/Run.d.ts +7 -7
  454. package/dist/ts/ts/Json/Run.d.ts.map +1 -1
  455. package/dist/ts/ts/Json/Run.js +28 -14
  456. package/dist/ts/ts/Json/StringTable.d.ts +7 -7
  457. package/dist/ts/ts/Json/StringTable.d.ts.map +1 -1
  458. package/dist/ts/ts/Json/StringTable.js +10 -10
  459. package/dist/ts/ts/Json/Study.d.ts +9 -9
  460. package/dist/ts/ts/Json/Study.d.ts.map +1 -1
  461. package/dist/ts/ts/Json/Study.js +79 -45
  462. package/dist/ts/ts/Json/Table/ArcTable.d.ts +10 -10
  463. package/dist/ts/ts/Json/Table/ArcTable.d.ts.map +1 -1
  464. package/dist/ts/ts/Json/Table/ArcTable.js +28 -28
  465. package/dist/ts/ts/Json/Table/CellTable.d.ts +9 -9
  466. package/dist/ts/ts/Json/Table/CellTable.d.ts.map +1 -1
  467. package/dist/ts/ts/Json/Table/CellTable.js +8 -8
  468. package/dist/ts/ts/Json/Table/CompositeCell.d.ts +6 -6
  469. package/dist/ts/ts/Json/Table/CompositeCell.d.ts.map +1 -1
  470. package/dist/ts/ts/Json/Table/CompositeCell.js +7 -7
  471. package/dist/ts/ts/Json/Table/CompositeHeader.d.ts +2 -2
  472. package/dist/ts/ts/Json/Table/CompositeHeader.d.ts.map +1 -1
  473. package/dist/ts/ts/Json/Table/CompositeHeader.js +7 -7
  474. package/dist/ts/ts/Json/Table/IOType.d.ts +2 -2
  475. package/dist/ts/ts/Json/Table/IOType.d.ts.map +1 -1
  476. package/dist/ts/ts/Json/Table/IOType.js +2 -2
  477. package/dist/ts/ts/Json/Table/OATable.d.ts +8 -8
  478. package/dist/ts/ts/Json/Table/OATable.d.ts.map +1 -1
  479. package/dist/ts/ts/Json/Table/OATable.js +8 -8
  480. package/dist/ts/ts/Json/Table/Templates.d.ts +9 -9
  481. package/dist/ts/ts/Json/Table/Templates.d.ts.map +1 -1
  482. package/dist/ts/ts/Json/Table/Templates.js +11 -11
  483. package/dist/ts/ts/Json/Workflow.d.ts +7 -7
  484. package/dist/ts/ts/Json/Workflow.d.ts.map +1 -1
  485. package/dist/ts/ts/Json/Workflow.js +28 -14
  486. package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts +4 -4
  487. package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -1
  488. package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +3 -3
  489. package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts +4 -4
  490. package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -1
  491. package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +3 -3
  492. package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts +4 -4
  493. package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -1
  494. package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +3 -3
  495. package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts +4 -4
  496. package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -1
  497. package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +3 -3
  498. package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts +4 -4
  499. package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -1
  500. package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +3 -3
  501. package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +4 -4
  502. package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -1
  503. package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +3 -3
  504. package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +4 -4
  505. package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -1
  506. package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +3 -3
  507. package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts +4 -4
  508. package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -1
  509. package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +3 -3
  510. package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts +4 -4
  511. package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -1
  512. package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +3 -3
  513. package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts +4 -4
  514. package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -1
  515. package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +3 -3
  516. package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts +4 -4
  517. package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -1
  518. package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +3 -3
  519. package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts +4 -4
  520. package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -1
  521. package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +3 -3
  522. package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts +4 -4
  523. package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -1
  524. package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +3 -3
  525. package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts +4 -4
  526. package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -1
  527. package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +3 -3
  528. package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts +4 -4
  529. package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -1
  530. package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +3 -3
  531. package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts +1 -1
  532. package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -1
  533. package/dist/ts/ts/Json/context/rocrate/property_value_context.js +1 -1
  534. package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts +4 -4
  535. package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -1
  536. package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +3 -3
  537. package/dist/ts/ts/Json.d.ts +10 -10
  538. package/dist/ts/ts/Json.d.ts.map +1 -1
  539. package/dist/ts/ts/Json.js +5 -5
  540. package/dist/ts/ts/JsonIO/Assay.d.ts +6 -7
  541. package/dist/ts/ts/JsonIO/Assay.d.ts.map +1 -1
  542. package/dist/ts/ts/JsonIO/Assay.js +13 -12
  543. package/dist/ts/ts/JsonIO/Datamap.d.ts +3 -4
  544. package/dist/ts/ts/JsonIO/Datamap.d.ts.map +1 -1
  545. package/dist/ts/ts/JsonIO/Datamap.js +7 -6
  546. package/dist/ts/ts/JsonIO/Investigation.d.ts +5 -6
  547. package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -1
  548. package/dist/ts/ts/JsonIO/Investigation.js +11 -10
  549. package/dist/ts/ts/JsonIO/LDObject.d.ts +5 -6
  550. package/dist/ts/ts/JsonIO/LDObject.d.ts.map +1 -1
  551. package/dist/ts/ts/JsonIO/LDObject.js +14 -13
  552. package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts +5 -6
  553. package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -1
  554. package/dist/ts/ts/JsonIO/OntologyAnnotation.js +11 -10
  555. package/dist/ts/ts/JsonIO/Person.d.ts +5 -6
  556. package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -1
  557. package/dist/ts/ts/JsonIO/Person.js +11 -10
  558. package/dist/ts/ts/JsonIO/Run.d.ts +4 -5
  559. package/dist/ts/ts/JsonIO/Run.d.ts.map +1 -1
  560. package/dist/ts/ts/JsonIO/Run.js +9 -8
  561. package/dist/ts/ts/JsonIO/Study.d.ts +7 -8
  562. package/dist/ts/ts/JsonIO/Study.d.ts.map +1 -1
  563. package/dist/ts/ts/JsonIO/Study.js +13 -12
  564. package/dist/ts/ts/JsonIO/Table/Compression.d.ts +6 -6
  565. package/dist/ts/ts/JsonIO/Table/Compression.d.ts.map +1 -1
  566. package/dist/ts/ts/JsonIO/Table/Compression.js +4 -4
  567. package/dist/ts/ts/JsonIO/Table/Templates.d.ts +10 -10
  568. package/dist/ts/ts/JsonIO/Table/Templates.d.ts.map +1 -1
  569. package/dist/ts/ts/JsonIO/Table/Templates.js +13 -12
  570. package/dist/ts/ts/JsonIO/Workflow.d.ts +4 -5
  571. package/dist/ts/ts/JsonIO/Workflow.d.ts.map +1 -1
  572. package/dist/ts/ts/JsonIO/Workflow.js +9 -8
  573. package/dist/ts/ts/License.d.ts +12 -6
  574. package/dist/ts/ts/License.d.ts.map +1 -1
  575. package/dist/ts/ts/License.js +49 -14
  576. package/dist/ts/ts/ROCrate/Helper.d.ts.map +1 -1
  577. package/dist/ts/ts/ROCrate/Helper.js +1 -1
  578. package/dist/ts/ts/ROCrate/LDContext.d.ts +15 -4
  579. package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -1
  580. package/dist/ts/ts/ROCrate/LDContext.js +27 -16
  581. package/dist/ts/ts/ROCrate/LDObject.d.ts +19 -10
  582. package/dist/ts/ts/ROCrate/LDObject.d.ts.map +1 -1
  583. package/dist/ts/ts/ROCrate/LDObject.js +76 -38
  584. package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts +4 -4
  585. package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts.map +1 -1
  586. package/dist/ts/ts/ROCrate/LDTypes/Comment.js +11 -9
  587. package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts +5 -5
  588. package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts.map +1 -1
  589. package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.js +18 -16
  590. package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts +4 -4
  591. package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts.map +1 -1
  592. package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.js +22 -16
  593. package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts +4 -4
  594. package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts.map +1 -1
  595. package/dist/ts/ts/ROCrate/LDTypes/CreateAction.js +15 -13
  596. package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts +4 -4
  597. package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts.map +1 -1
  598. package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.js +25 -23
  599. package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts +4 -4
  600. package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts.map +1 -1
  601. package/dist/ts/ts/ROCrate/LDTypes/Dataset.js +48 -45
  602. package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts +4 -4
  603. package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts.map +1 -1
  604. package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.js +11 -9
  605. package/dist/ts/ts/ROCrate/LDTypes/File.d.ts +4 -4
  606. package/dist/ts/ts/ROCrate/LDTypes/File.d.ts.map +1 -1
  607. package/dist/ts/ts/ROCrate/LDTypes/File.js +15 -13
  608. package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts +4 -4
  609. package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts.map +1 -1
  610. package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.js +18 -16
  611. package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts +4 -4
  612. package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts.map +1 -1
  613. package/dist/ts/ts/ROCrate/LDTypes/LabProcess.js +16 -14
  614. package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts +4 -4
  615. package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts.map +1 -1
  616. package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.js +17 -16
  617. package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts +4 -4
  618. package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts.map +1 -1
  619. package/dist/ts/ts/ROCrate/LDTypes/Organization.js +8 -6
  620. package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts +4 -4
  621. package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts.map +1 -1
  622. package/dist/ts/ts/ROCrate/LDTypes/Person.js +28 -25
  623. package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts +4 -4
  624. package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts.map +1 -1
  625. package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.js +17 -16
  626. package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts +10 -6
  627. package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts.map +1 -1
  628. package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.js +104 -61
  629. package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts +4 -4
  630. package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts.map +1 -1
  631. package/dist/ts/ts/ROCrate/LDTypes/Sample.js +14 -13
  632. package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts +4 -4
  633. package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts.map +1 -1
  634. package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.js +12 -10
  635. package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts +5 -5
  636. package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts.map +1 -1
  637. package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.js +11 -10
  638. package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts +3 -3
  639. package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts.map +1 -1
  640. package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.js +4 -3
  641. package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts +3 -3
  642. package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts.map +1 -1
  643. package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.js +4 -3
  644. package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +1 -1
  645. package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -1
  646. package/dist/ts/ts/ROCrate/ROCrateContext.js +2 -2
  647. package/dist/ts/ts/ROCrateIO.d.ts +13 -8
  648. package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
  649. package/dist/ts/ts/ROCrateIO.js +16 -13
  650. package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +13 -12
  651. package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -1
  652. package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +15 -15
  653. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -8
  654. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -1
  655. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +23 -12
  656. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +14 -14
  657. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -1
  658. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +17 -18
  659. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +18 -17
  660. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -1
  661. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +37 -29
  662. package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts +6 -6
  663. package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts.map +1 -1
  664. package/dist/ts/ts/Spreadsheet/ArcAssay.js +16 -15
  665. package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts +14 -14
  666. package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -1
  667. package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +21 -21
  668. package/dist/ts/ts/Spreadsheet/ArcRun.d.ts +5 -5
  669. package/dist/ts/ts/Spreadsheet/ArcRun.d.ts.map +1 -1
  670. package/dist/ts/ts/Spreadsheet/ArcRun.js +9 -9
  671. package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts +7 -7
  672. package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts.map +1 -1
  673. package/dist/ts/ts/Spreadsheet/ArcStudy.js +13 -12
  674. package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts +5 -5
  675. package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -1
  676. package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +9 -9
  677. package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts +8 -8
  678. package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts.map +1 -1
  679. package/dist/ts/ts/Spreadsheet/CollectionAux.js +11 -11
  680. package/dist/ts/ts/Spreadsheet/Datamap.d.ts +2 -2
  681. package/dist/ts/ts/Spreadsheet/Datamap.d.ts.map +1 -1
  682. package/dist/ts/ts/Spreadsheet/Datamap.js +6 -5
  683. package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts +4 -4
  684. package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts.map +1 -1
  685. package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.js +14 -10
  686. package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts +7 -7
  687. package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts.map +1 -1
  688. package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.js +30 -21
  689. package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts +7 -7
  690. package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts.map +1 -1
  691. package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.js +10 -10
  692. package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts +7 -7
  693. package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -1
  694. package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +12 -9
  695. package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts +5 -5
  696. package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -1
  697. package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +11 -7
  698. package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts +7 -7
  699. package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -1
  700. package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +8 -8
  701. package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts +9 -8
  702. package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -1
  703. package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +6 -6
  704. package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +7 -7
  705. package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -1
  706. package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +1 -1
  707. package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts +7 -7
  708. package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -1
  709. package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +6 -6
  710. package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +7 -7
  711. package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -1
  712. package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +7 -7
  713. package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +7 -7
  714. package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -1
  715. package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +7 -7
  716. package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts +7 -7
  717. package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -1
  718. package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +9 -8
  719. package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts +7 -7
  720. package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -1
  721. package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +11 -9
  722. package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts +7 -7
  723. package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -1
  724. package/dist/ts/ts/Spreadsheet/Metadata/Run.js +13 -10
  725. package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts +10 -10
  726. package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -1
  727. package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +55 -49
  728. package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts +14 -14
  729. package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -1
  730. package/dist/ts/ts/Spreadsheet/Metadata/Study.js +10 -10
  731. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts +7 -7
  732. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -1
  733. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +8 -8
  734. package/dist/ts/ts/Template.Web.d.ts +10 -6
  735. package/dist/ts/ts/Template.Web.d.ts.map +1 -1
  736. package/dist/ts/ts/Template.Web.js +4 -4
  737. package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts +6 -3
  738. package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -1
  739. package/dist/ts/ts/ValidationPackages/ValidationPackage.js +10 -7
  740. package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts +7 -4
  741. package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -1
  742. package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +29 -24
  743. package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts +1 -1
  744. package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts.map +1 -1
  745. package/dist/ts/ts/WebRequest/WebRequest.Node.js +4 -4
  746. package/dist/ts/ts/WebRequest/WebRequest.d.ts +1 -1
  747. package/dist/ts/ts/WebRequest/WebRequest.d.ts.map +1 -1
  748. package/dist/ts/ts/WebRequest/WebRequest.js +3 -3
  749. package/dist/ts/ts/WorkflowGraph/Adapters.d.ts +6 -6
  750. package/dist/ts/ts/WorkflowGraph/Adapters.d.ts.map +1 -1
  751. package/dist/ts/ts/WorkflowGraph/Adapters.js +13 -13
  752. package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts +7 -4
  753. package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts.map +1 -1
  754. package/dist/ts/ts/WorkflowGraph/BuildOptions.js +2 -2
  755. package/dist/ts/ts/WorkflowGraph/Builder.d.ts +25 -19
  756. package/dist/ts/ts/WorkflowGraph/Builder.d.ts.map +1 -1
  757. package/dist/ts/ts/WorkflowGraph/Builder.js +82 -68
  758. package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts +52 -32
  759. package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts.map +1 -1
  760. package/dist/ts/ts/WorkflowGraph/GraphTypes.js +90 -30
  761. package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts +5 -5
  762. package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts.map +1 -1
  763. package/dist/ts/ts/WorkflowGraph/ReferenceParsing.js +6 -5
  764. package/dist/ts/ts/Xlsx.d.ts +5 -5
  765. package/dist/ts/ts/Xlsx.d.ts.map +1 -1
  766. package/dist/ts/ts/Xlsx.js +8 -6
  767. package/dist/ts/ts/Yaml/Encode.d.ts +2 -2
  768. package/dist/ts/ts/Yaml/Encode.d.ts.map +1 -1
  769. package/dist/ts/ts/Yaml/Encode.js +2 -2
  770. package/dist/ts/ts/Yaml/ValidationPackage.d.ts +4 -5
  771. package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -1
  772. package/dist/ts/ts/Yaml/ValidationPackage.js +12 -12
  773. package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +4 -5
  774. package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -1
  775. package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +12 -12
  776. package/dist/ts/ts/Yaml.d.ts +3 -3
  777. package/dist/ts/ts/Yaml.d.ts.map +1 -1
  778. package/dist/ts/ts/Yaml.js +3 -8
  779. package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/DynObj.fs.js +6 -6
  780. package/dist/ts/ts/fable_modules/DynamicObj.8.0.0/DynamicObj.fs.js +515 -0
  781. package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/FableJS.fs.js +23 -8
  782. package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/HashCodes.fs.js +11 -11
  783. package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/PropertyHelper.fs.js +2 -2
  784. package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/ReflectionUtils.fs.js +16 -6
  785. package/dist/ts/ts/fable_modules/{Fable.Fetch.2.6.0 → Fable.Fetch.2.7.0}/Fetch.fs.js +11 -11
  786. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +8 -7
  787. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +3 -3
  788. package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Http.fs.js +21 -21
  789. package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Types.fs.js +52 -19
  790. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCell.fs.js +255 -126
  791. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCellsCollection.fs.js +135 -18
  792. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/CellBuilder.fs.js +9 -9
  793. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Expression.fs.js +1 -1
  794. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/RowBuilder.fs.js +5 -5
  795. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Types.fs.js +16 -16
  796. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsAddress.fs.js +41 -17
  797. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsColumn.fs.js +70 -7
  798. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsRow.fs.js +76 -8
  799. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorkbook.fs.js +77 -11
  800. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorksheet.fs.js +237 -32
  801. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/HashCodes.fs.js +9 -9
  802. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Cell.fs.js +10 -10
  803. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Column.fs.js +6 -6
  804. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Row.fs.js +6 -6
  805. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Table.fs.js +3 -3
  806. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Value.fs.js +11 -11
  807. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Workbook.fs.js +3 -3
  808. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Worksheet.fs.js +8 -8
  809. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRange.fs.js +6 -5
  810. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeAddress.fs.js +11 -5
  811. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeBase.fs.js +18 -13
  812. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeColumn.fs.js +9 -3
  813. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeRow.fs.js +1 -1
  814. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTable.fs.js +185 -26
  815. package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTableField.fs.js +48 -5
  816. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.1/Cell.fs.js +65 -0
  817. package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/FsExtensions.fs.js +1 -1
  818. package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Json.fs.js +9 -9
  819. package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Table.fs.js +15 -14
  820. package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Workbook.fs.js +4 -4
  821. package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Worksheet.fs.js +4 -4
  822. package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Xlsx.fs.js +2 -2
  823. package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Decode.fs.js +265 -159
  824. package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Encode.fs.js +94 -36
  825. package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Types.fs.js +16 -22
  826. package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Decode.fs.js +9 -7
  827. package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Encode.fs.js +2 -3
  828. package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Decode.fs.js +100 -134
  829. package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Encode.fs.js +10 -10
  830. package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Escapes.fs.js +41 -34
  831. package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Persil.fs.js +56 -204
  832. package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Preprocessing.fs.js +319 -0
  833. package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Reader.fs.js +1884 -0
  834. package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Regex.fs.js +23 -0
  835. package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/RegexActivePatterns.fs.js +16 -16
  836. package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Syntax.fs.js +840 -0
  837. package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Writer.fs.js +106 -76
  838. package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/YAMLiciousTypes.fs.js +74 -32
  839. package/package.json +3 -2
  840. package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +0 -1244
  841. package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +0 -146
  842. package/dist/ts/node_modules/@fable-org/fable-library-js/AsyncBuilder.js +0 -186
  843. package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +0 -286
  844. package/dist/ts/node_modules/@fable-org/fable-library-js/Boolean.js +0 -24
  845. package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +0 -172
  846. package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +0 -187
  847. package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +0 -185
  848. package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +0 -750
  849. package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +0 -271
  850. package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +0 -214
  851. package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +0 -49
  852. package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +0 -30
  853. package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +0 -72
  854. package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +0 -10
  855. package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +0 -145
  856. package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +0 -137
  857. package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +0 -1276
  858. package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +0 -49
  859. package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +0 -1399
  860. package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +0 -130
  861. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +0 -330
  862. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +0 -236
  863. package/dist/ts/node_modules/@fable-org/fable-library-js/Native.js +0 -10
  864. package/dist/ts/node_modules/@fable-org/fable-library-js/Numeric.js +0 -73
  865. package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +0 -99
  866. package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +0 -48
  867. package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +0 -465
  868. package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +0 -133
  869. package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +0 -168
  870. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +0 -1381
  871. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +0 -114
  872. package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +0 -1792
  873. package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +0 -557
  874. package/dist/ts/node_modules/@fable-org/fable-library-js/System.Collections.Generic.js +0 -320
  875. package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +0 -165
  876. package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +0 -8
  877. package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +0 -180
  878. package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +0 -211
  879. package/dist/ts/node_modules/@fable-org/fable-library-js/Uri.js +0 -160
  880. package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +0 -771
  881. package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +0 -825
  882. package/dist/ts/ts/Core/Value.d.ts +0 -41
  883. package/dist/ts/ts/Core/Value.d.ts.map +0 -1
  884. package/dist/ts/ts/fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js +0 -367
  885. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +0 -68
  886. package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/FlowToBlock.fs.js +0 -956
  887. package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/Preprocessing.fs.js +0 -181
  888. package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/Reader.fs.js +0 -1493
  889. package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/Regex.fs.js +0 -21
  890. package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/StringBuffer.fs.js +0 -60
  891. /package/dist/ts/ts/fable_modules/{Fable.Exceljs.1.6.0 → Fable.Exceljs.2.0.0_565fc3e-alpha.1}/ExcelJs.fs.js +0 -0
  892. /package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Interop/JsInterop.fs.js +0 -0
@@ -1,40 +1,97 @@
1
- import { IMap } from '@fable-org/fable-library-js/Util.js';
2
- import { int32 } from '@fable-org/fable-library-js/Int32.js';
3
- import { Option } from '@fable-org/fable-library-js/Option.js';
4
- import { FSharpList } from '@fable-org/fable-library-js/List.js';
5
- import { YAMLElement_$union } from '../fable_modules/YAMLicious.1.0.0-alpha.7/YAMLiciousTypes.fs.js';
6
- import { IGetters } from '../fable_modules/YAMLicious.1.0.0-alpha.7/Decode.fs.js';
7
- import { DynamicObj } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
8
- import { SchemaDefRequirementType, SoftwarePackage, InputEnumSchema, InputRecordSchema, InputRecordField, InputArraySchema, CWLType_$union, SchemaSaladString_$union } from './CWLTypes.js';
9
- import { CWLOutput, OutputBinding } from './Outputs.js';
10
- import { HintEntry_$union, InlineJavascriptRequirementValue, ToolTimeLimitValue_$union, InplaceUpdateRequirementValue, Requirement_$union, ResourceRequirementInstance, LoadListingRequirementValue, EnvironmentDef, DockerRequirement, InitialWorkDirEntry_$union } from './Requirements.js';
11
- import { CWLInput, InputBinding } from './Inputs.js';
12
- import { WorkflowStep, WorkflowStepRun_$union, StepOutput_$union, StepInput, ScatterMethod_$union, PickValueMethod_$union, LinkMergeMethod_$union } from './WorkflowSteps.js';
13
- import { CWLProcessingUnit_$union } from './CWLProcessingUnit.js';
14
- import { CWLToolDescription } from './ToolDescription.js';
15
- import { CWLExpressionToolDescription } from './ExpressionToolDescription.js';
16
- import { CWLOperationDescription } from './OperationDescription.js';
17
- import { CWLWorkflowDescription } from './WorkflowDescription.js';
18
- import { CWLParameterReference } from './ParameterReference.js';
1
+ import { IMap, Exception, IComparable, IEquatable } from '@fable-org/fable-library-ts/Util.ts';
2
+ import { Record } from '@fable-org/fable-library-ts/Types.ts';
3
+ import { Option } from '@fable-org/fable-library-ts/Option.ts';
4
+ import { TypeInfo } from '@fable-org/fable-library-ts/Reflection.ts';
5
+ import { YAMLElement_$union } from '../fable_modules/YAMLicious.1.0.0/YAMLiciousTypes.fs.js';
6
+ import { int32 } from '@fable-org/fable-library-ts/Int32.ts';
7
+ import { FSharpList } from '@fable-org/fable-library-ts/List.ts';
8
+ import { IGetters } from '../fable_modules/YAMLicious.1.0.0/Decode.fs.js';
9
+ import { int64 } from '@fable-org/fable-library-ts/BigInt.ts';
10
+ import { DynamicObj } from '../fable_modules/DynamicObj.8.0.0/DynamicObj.fs.js';
11
+ import { HintEntry_$union, InlineJavascriptRequirementValue, ToolTimeLimitValue_$union, InplaceUpdateRequirementValue, Requirement_$union, ResourceRequirementInstance, LoadListingRequirementValue, EnvironmentDef, DockerRequirement, InitialWorkDirEntry_$union, LoadListingEnum_$union } from './Requirements.ts';
12
+ import { SchemaDefRequirementType, SoftwarePackage, InputEnumSchema, InputRecordSchema, InputRecordField, InputArraySchema, CWLType_$union, SchemaSaladString_$union, DirectoryInstance, FileInstance } from './CWLTypes.ts';
13
+ import { CWLOutput, OutputBinding } from './Outputs.ts';
14
+ import { CWLInput, InputBinding } from './Inputs.ts';
15
+ import { WorkflowStep, WorkflowStepRun_$union, StepOutput_$union, StepInput, ScatterMethod_$union, PickValueMethod_$union, LinkMergeMethod_$union } from './WorkflowSteps.ts';
16
+ import { CWLProcessingUnit_$union } from './CWLProcessingUnit.ts';
17
+ import { CWLWorkflowDescription } from './WorkflowDescription.ts';
18
+ import { CWLExpressionToolDescription } from './ExpressionToolDescription.ts';
19
+ import { CWLOperationDescription } from './OperationDescription.ts';
20
+ import { CWLToolDescription } from './ToolDescription.ts';
21
+ import { CWLParameterValue_$union } from './ParameterValue.ts';
22
+ import { CWLParameterReference } from './ParameterReference.ts';
19
23
  export declare function ResizeArray_map<$a, $b>(f: ((arg0: $a) => $b), a: $a[]): $b[];
20
- export declare function Decode_countLeadingSpaces(line: string): int32;
21
- export declare function Decode_isBlankLine(line: string): boolean;
22
- export declare function Decode_normalizeLineEndings(yaml: string): string;
23
- export declare function Decode_stripLeadingShebang(yaml: string): string;
24
- export declare function Decode_tryParseBlockScalarHeader(line: string): Option<int32>;
25
- export declare function Decode_normalizeYamlInput(yaml: string): string;
26
- export declare function Decode_removeFullLineComments(yaml: string): string;
24
+ export declare class Decode_DecodeWarning extends Record implements IEquatable<Decode_DecodeWarning>, IComparable<Decode_DecodeWarning> {
25
+ readonly Path: string;
26
+ readonly Message: string;
27
+ readonly Raw: Option<string>;
28
+ constructor(Path: string, Message: string, Raw: Option<string>);
29
+ }
30
+ export declare function Decode_DecodeWarning_$reflection(): TypeInfo;
31
+ export declare class Decode_DecodeResult$1<T> extends Record implements IEquatable<Decode_DecodeResult$1<T>> {
32
+ readonly Value: T;
33
+ readonly Warnings: Decode_DecodeWarning[];
34
+ constructor(Value: T, Warnings: Decode_DecodeWarning[]);
35
+ }
36
+ export declare function Decode_DecodeResult$1_$reflection(gen0: TypeInfo): TypeInfo;
37
+ /**
38
+ * Add a recoverable decode warning only when the caller requested warning collection.
39
+ */
40
+ export declare function Decode_addWarning(warnings: Option<Decode_DecodeWarning[]>, path: string, message: string, raw: Option<YAMLElement_$union>): void;
41
+ /**
42
+ * Strip parser-level comment nodes and sequence placeholders before CWL semantic decoding.
43
+ */
27
44
  export declare function Decode_removeYamlComments(yamlElement: YAMLElement_$union): YAMLElement_$union;
28
45
  /**
29
46
  * Determines if an exception represents a recoverable decoding error.
30
47
  * Returns true for schema mismatches; false for system errors that should propagate.
31
48
  */
32
- export declare function Decode_isRecoverableDecodingError(ex: Error): boolean;
49
+ export declare function Decode_isRecoverableDecodingError(ex: Exception): boolean;
50
+ /**
51
+ * Read YAML and normalize comment nodes that CWL decoders intentionally ignore.
52
+ */
33
53
  export declare function Decode_readSanitizedYaml(yaml: string): YAMLElement_$union;
34
54
  /**
35
- * Decode key value pairs into a dynamic object, while preserving their tree structure
55
+ * Box int64 values in a way that preserves 64-bit numeric intent across Fable targets.
56
+ */
57
+ export declare function Decode_boxOverflowInt64(value: int64): any;
58
+ /**
59
+ * Decode key value pairs into a dynamic object, while preserving their tree structure.
36
60
  */
37
61
  export declare function Decode_overflowDecoder(dynObj: DynamicObj, dict: IMap<string, YAMLElement_$union>): DynamicObj;
62
+ /**
63
+ * Treat comment artifacts and empty placeholder objects as non-semantic collection items.
64
+ */
65
+ export declare function Decode_isIgnorableYamlNoise(value: YAMLElement_$union): boolean;
66
+ /**
67
+ * Decode an optional field only if the field is physically present, avoiding fallback
68
+ * behavior that can blur absent fields with malformed field values.
69
+ */
70
+ export declare function Decode_tryGetPresentField<T>(fieldName: string, decoder: ((arg0: YAMLElement_$union) => T), value: YAMLElement_$union): Option<T>;
71
+ export declare function Decode_tryGetStringField(fieldName: string, value: YAMLElement_$union): Option<string>;
72
+ export declare function Decode_tryGetBoolField(fieldName: string, value: YAMLElement_$union): Option<boolean>;
73
+ export declare function Decode_tryGetYamlField(fieldName: string, value: YAMLElement_$union): Option<YAMLElement_$union>;
74
+ export declare function Decode_tryGetIntArrayField(fieldName: string, value: YAMLElement_$union): Option<int32[]>;
75
+ /**
76
+ * Decode int64 fields explicitly so resource and File sizes do not narrow to int.
77
+ */
78
+ export declare function Decode_tryGetInt64Field(fieldName: string, value: YAMLElement_$union): Option<int64>;
79
+ /**
80
+ * Decode and validate CWL loadListing enum fields from their YAML string form.
81
+ */
82
+ export declare function Decode_tryGetLoadListingField(fieldName: string, value: YAMLElement_$union): Option<LoadListingEnum_$union>;
83
+ /**
84
+ * Preserve unknown object fields on DynamicObj-backed CWL objects.
85
+ */
86
+ export declare function Decode_overflowIntoDynamicObj(dynObj: DynamicObj, knownFields: FSharpList<string>, value: YAMLElement_$union): DynamicObj;
87
+ /**
88
+ * Decode File object fields while preserving unrecognized extension metadata.
89
+ */
90
+ export declare function Decode_decodeFileInstanceFields(element: YAMLElement_$union): FileInstance;
91
+ /**
92
+ * Decode Directory object fields while preserving unrecognized extension metadata.
93
+ */
94
+ export declare function Decode_decodeDirectoryInstanceFields(element: YAMLElement_$union): DirectoryInstance;
38
95
  /**
39
96
  * Decode scalar schema-salad string fields.
40
97
  * Recognized directive wrappers are `$include` and `$import`.
@@ -46,11 +103,20 @@ export declare function Decode_decodeSchemaSaladString(yEle: YAMLElement_$union)
46
103
  * Directive objects such as {$include: path} are represented using legacy string form.
47
104
  */
48
105
  export declare function Decode_decodeStringOrExpression(yEle: YAMLElement_$union): string;
49
- export declare const Decode_outputBindingGlobDecoder: (value_1: YAMLElement_$union) => OutputBinding;
50
- export declare const Decode_outputBindingDecoder: (value: YAMLElement_$union) => Option<OutputBinding>;
106
+ /**
107
+ * Decode a YAMLElement into a glob search pattern for output binding
108
+ */
109
+ export declare function Decode_outputBindingGlobDecoder(value: YAMLElement_$union): OutputBinding;
110
+ export declare const Decode_outputBindingDecoder: (value_1: YAMLElement_$union) => Option<OutputBinding>;
111
+ /**
112
+ * Decode schema-salad string-or-array fields into a uniform ResizeArray.
113
+ */
51
114
  export declare function Decode_decodeStringArrayOrScalar(value: YAMLElement_$union): string[];
52
115
  export declare const Decode_outputSourceDecoder: (value_1: YAMLElement_$union) => Option<string[]>;
53
- export declare const Decode_direntDecoder: (value_1: YAMLElement_$union) => CWLType_$union;
116
+ /**
117
+ * Decode a YAMLElement into a Dirent
118
+ */
119
+ export declare function Decode_direntDecoder(value: YAMLElement_$union): CWLType_$union;
54
120
  /**
55
121
  * Decode a listing entry of InitialWorkDirRequirement.
56
122
  * Supports both Dirent object form and string/expression form.
@@ -64,16 +130,14 @@ export declare function Decode_cwlSimpleTypeFromString(s: string): CWLType_$unio
64
130
  * Recursively parse array shorthand notation (File[][], string[][][], etc.)
65
131
  */
66
132
  export declare function Decode_parseArrayShorthand(typeStr: string): Option<CWLType_$union>;
67
- export declare function inputArraySchemaDecoder$0040324(): ((arg0: YAMLElement_$union) => InputArraySchema);
68
- export declare const inputArraySchemaDecoder$0040324$002D1: any;
69
- export declare function inputRecordFieldDecoder$0040338(): ((arg0: YAMLElement_$union) => InputRecordField);
70
- export declare const inputRecordFieldDecoder$0040338$002D1: any;
71
- export declare function inputRecordSchemaDecoder$0040377(): ((arg0: YAMLElement_$union) => InputRecordSchema);
72
- export declare const inputRecordSchemaDecoder$0040377$002D1: any;
73
- export declare function inputEnumSchemaDecoder$0040404(): ((arg0: YAMLElement_$union) => InputEnumSchema);
74
- export declare const inputEnumSchemaDecoder$0040404$002D1: any;
75
- export declare const Decode_inputArraySchemaDecoder: ((arg0: YAMLElement_$union) => InputArraySchema);
76
- export declare const Decode_inputRecordFieldDecoder: ((arg0: YAMLElement_$union) => InputRecordField);
133
+ /**
134
+ * Decode an InputArraySchema from a YAMLElement
135
+ */
136
+ export declare function Decode_inputArraySchemaDecoder(value: YAMLElement_$union): InputArraySchema;
137
+ /**
138
+ * Decode an InputRecordField from a YAMLElement
139
+ */
140
+ export declare function Decode_inputRecordFieldDecoder(value: YAMLElement_$union): InputRecordField;
77
141
  /**
78
142
  * Attempt to decode fields as flow-style array: [{name: x, type: y}]
79
143
  */
@@ -82,8 +146,14 @@ export declare function Decode_tryDecodeFieldsAsArray(element: YAMLElement_$unio
82
146
  * Attempt to decode fields as map-style: {fieldName: type}
83
147
  */
84
148
  export declare function Decode_tryDecodeFieldsAsMap(element: YAMLElement_$union): Option<InputRecordField[]>;
85
- export declare const Decode_inputRecordSchemaDecoder: ((arg0: YAMLElement_$union) => InputRecordSchema);
86
- export declare const Decode_inputEnumSchemaDecoder: ((arg0: YAMLElement_$union) => InputEnumSchema);
149
+ /**
150
+ * Decode an InputRecordSchema from a YAMLElement
151
+ */
152
+ export declare function Decode_inputRecordSchemaDecoder(value: YAMLElement_$union): InputRecordSchema;
153
+ /**
154
+ * Decode an InputEnumSchema from a YAMLElement
155
+ */
156
+ export declare function Decode_inputEnumSchemaDecoder(value: YAMLElement_$union): InputEnumSchema;
87
157
  /**
88
158
  * Decode a CWLType from a YAMLElement (handles all types including complex schemas)
89
159
  */
@@ -93,8 +163,24 @@ export declare function Decode_cwlTypeDecoder$0027(element: YAMLElement_$union):
93
163
  */
94
164
  export declare function Decode_cwlTypeStringMatcher(t: string, get$: IGetters): [CWLType_$union, boolean];
95
165
  export declare const Decode_cwlTypeDecoder: (value_1: YAMLElement_$union) => [CWLType_$union, boolean];
96
- export declare const Decode_outputArrayDecoder: (value_1: YAMLElement_$union) => CWLOutput[];
97
- export declare const Decode_outputsDecoder: (value: YAMLElement_$union) => CWLOutput[];
166
+ /**
167
+ * Decode a named output from either map shorthand or full object form.
168
+ */
169
+ export declare function Decode_decodeNamedOutput(name: string, value: YAMLElement_$union): CWLOutput;
170
+ /**
171
+ * Decode one sequence-form output, warning only for malformed unnamed entries.
172
+ */
173
+ export declare function Decode_decodeOutputSequenceItem(warnings: Option<Decode_DecodeWarning[]>, path: string, index: int32, item: YAMLElement_$union): Option<CWLOutput>;
174
+ /**
175
+ * Decode a YAMLElement into an Output Array
176
+ */
177
+ export declare function Decode_outputArrayDecoderWithWarnings(warnings: Option<Decode_DecodeWarning[]>, path: string, value: YAMLElement_$union): CWLOutput[];
178
+ export declare const Decode_outputArrayDecoder: (value: YAMLElement_$union) => CWLOutput[];
179
+ /**
180
+ * Access the outputs field and decode a YAMLElement into an Output Array
181
+ */
182
+ export declare function Decode_outputsDecoderWithWarnings(warnings: Option<Decode_DecodeWarning[]>): ((arg0: YAMLElement_$union) => CWLOutput[]);
183
+ export declare const Decode_outputsDecoder: ((arg0: YAMLElement_$union) => CWLOutput[]);
98
184
  /**
99
185
  * Decode a YAMLElement into a DockerRequirement
100
186
  */
@@ -114,40 +200,99 @@ export declare function Decode_softwareRequirementDecoder(get$: IGetters): Softw
114
200
  * Supports both string/expression and Dirent listing items.
115
201
  */
116
202
  export declare function Decode_initialWorkDirRequirementDecoder(get$: IGetters): InitialWorkDirEntry_$union[];
203
+ /**
204
+ * Decode LoadListingRequirement, applying CWL's default no_listing behavior.
205
+ */
117
206
  export declare function Decode_loadListingRequirementDecoder(get$: IGetters): LoadListingRequirementValue;
207
+ /**
208
+ * Decode resource scalar fields as int64, float, or expression string without losing numeric shape.
209
+ */
118
210
  export declare function Decode_decodeResourceScalar(element: YAMLElement_$union): any;
211
+ /**
212
+ * Decode an optional resource field through the resource scalar coercion rules.
213
+ */
119
214
  export declare function Decode_optionalResourceField(get$: IGetters, fieldName: string): Option<any>;
120
215
  /**
121
216
  * Decode a YAMLElement into a ResourceRequirementInstance
122
217
  */
123
218
  export declare function Decode_resourceRequirementDecoder(get$: IGetters): ResourceRequirementInstance;
219
+ /**
220
+ * Decode schema definition entries in either named object or map-entry shorthand form.
221
+ */
124
222
  export declare function Decode_schemaDefRequirementTypeDecoder(value: YAMLElement_$union): SchemaDefRequirementType;
125
223
  /**
126
224
  * Decode a YAMLElement into a SchemaDefRequirementType array
127
225
  */
128
226
  export declare function Decode_schemaDefRequirementDecoder(get$: IGetters): SchemaDefRequirementType[];
227
+ /**
228
+ * Decode only literal boolean scalars, leaving expressions for requirement-specific handling.
229
+ */
129
230
  export declare function Decode_tryDecodeBoolScalar(element: YAMLElement_$union): Option<boolean>;
231
+ /**
232
+ * Decode WorkReuse as either a concrete bool requirement or an expression payload.
233
+ */
130
234
  export declare function Decode_workReuseRequirementDecoder(get$: IGetters): Requirement_$union;
235
+ /**
236
+ * Decode NetworkAccess as either a concrete bool requirement or an expression payload.
237
+ */
131
238
  export declare function Decode_networkAccessRequirementDecoder(get$: IGetters): Requirement_$union;
239
+ /**
240
+ * Decode InplaceUpdateRequirement, defaulting missing inplaceUpdate to true.
241
+ */
132
242
  export declare function Decode_inplaceUpdateRequirementDecoder(get$: IGetters): InplaceUpdateRequirementValue;
133
243
  /**
134
244
  * Decode a YAMLElement into a ToolTimeLimitRequirement value
135
245
  */
136
246
  export declare function Decode_toolTimeLimitRequirementDecoder(get$: IGetters): ToolTimeLimitValue_$union;
247
+ /**
248
+ * Decode InlineJavascriptRequirement expressionLib in scalar or array form.
249
+ */
137
250
  export declare function Decode_inlineJavascriptRequirementDecoder(get$: IGetters): InlineJavascriptRequirementValue;
138
251
  /**
139
- * Decode all YAMLElements matching the Requirement type into a ResizeArray of Requirement
252
+ * Dispatch a known CWL requirement class to its typed decoder.
140
253
  */
141
254
  export declare function Decode_requirementFromTypeName(cls: string, get$: IGetters): Requirement_$union;
255
+ /**
256
+ * Attach unknown payload fields to DynamicObj-backed requirement values after class dispatch.
257
+ */
258
+ export declare function Decode_addRequirementPayloadOverflow(element: YAMLElement_$union, requirement: Requirement_$union): Requirement_$union;
259
+ /**
260
+ * Decode requirements from either sequence syntax or class-name map syntax.
261
+ */
142
262
  export declare function Decode_requirementArrayDecoder(yEle: YAMLElement_$union): Requirement_$union[];
263
+ /**
264
+ * Try known requirement decoding for hints, falling back to UnknownHint on decode failure.
265
+ */
143
266
  export declare function Decode_tryDecodeKnownRequirementFromElement(element: YAMLElement_$union): Option<Requirement_$union>;
267
+ /**
268
+ * Decode one hint as a known requirement when possible, otherwise preserve the raw hint.
269
+ */
144
270
  export declare function Decode_decodeHintElement(element: YAMLElement_$union): HintEntry_$union;
271
+ /**
272
+ * Decode hints from sequence syntax or class-name map syntax while preserving unknown hints.
273
+ */
145
274
  export declare function Decode_hintArrayDecoder(yEle: YAMLElement_$union): HintEntry_$union[];
146
275
  export declare const Decode_requirementsDecoder: (value: YAMLElement_$union) => Option<Requirement_$union[]>;
147
276
  export declare const Decode_hintsDecoder: (value: YAMLElement_$union) => Option<HintEntry_$union[]>;
148
- export declare const Decode_inputBindingDecoder: (value_5: YAMLElement_$union) => Option<InputBinding>;
149
- export declare const Decode_inputArrayDecoder: (value_1: YAMLElement_$union) => CWLInput[];
150
- export declare const Decode_inputsDecoder: (value: YAMLElement_$union) => Option<CWLInput[]>;
277
+ export declare const Decode_inputBindingDecoder: (value_9: YAMLElement_$union) => Option<InputBinding>;
278
+ /**
279
+ * Decode a named input from map shorthand or full object form, preserving optionality and extensions.
280
+ */
281
+ export declare function Decode_decodeNamedInput(name: string, value: YAMLElement_$union): CWLInput;
282
+ /**
283
+ * Decode one sequence-form input, warning only for malformed unnamed entries.
284
+ */
285
+ export declare function Decode_decodeInputSequenceItem(warnings: Option<Decode_DecodeWarning[]>, path: string, index: int32, item: YAMLElement_$union): Option<CWLInput>;
286
+ /**
287
+ * Decode a YAMLElement into an Input array
288
+ */
289
+ export declare function Decode_inputArrayDecoderWithWarnings(warnings: Option<Decode_DecodeWarning[]>, path: string, value: YAMLElement_$union): CWLInput[];
290
+ export declare const Decode_inputArrayDecoder: (value: YAMLElement_$union) => CWLInput[];
291
+ /**
292
+ * Access the inputs field and decode the YAMLElements into an Input array
293
+ */
294
+ export declare function Decode_inputsDecoderWithWarnings(warnings: Option<Decode_DecodeWarning[]>): ((arg0: YAMLElement_$union) => Option<CWLInput[]>);
295
+ export declare const Decode_inputsDecoder: ((arg0: YAMLElement_$union) => Option<CWLInput[]>);
151
296
  export declare const Decode_baseCommandDecoder: (value_2: YAMLElement_$union) => Option<string[]>;
152
297
  export declare const Decode_versionDecoder: (value_1: YAMLElement_$union) => string;
153
298
  export declare const Decode_classDecoder: (value_1: YAMLElement_$union) => string;
@@ -164,54 +309,151 @@ export declare function Decode_stringOrStringArrayDecoder(value: YAMLElement_$un
164
309
  * Handles both single string values and arrays of strings
165
310
  */
166
311
  export declare function Decode_sourceArrayFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<string[]>);
312
+ /**
313
+ * Decode and validate linkMerge enum fields.
314
+ */
167
315
  export declare function Decode_linkMergeFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<LinkMergeMethod_$union>);
316
+ /**
317
+ * Decode and validate pickValue enum fields.
318
+ */
168
319
  export declare function Decode_pickValueFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<PickValueMethod_$union>);
169
320
  export declare function Decode_scatterFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<string[]>);
321
+ /**
322
+ * Decode and validate scatterMethod enum fields.
323
+ */
170
324
  export declare function Decode_scatterMethodFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<ScatterMethod_$union>);
325
+ /**
326
+ * Decode optional expression-like fields, including schema-salad directive wrappers.
327
+ */
171
328
  export declare function Decode_expressionStringOptionFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<string>);
329
+ /**
330
+ * Decode a step input from map or scalar shorthand and preserve unknown step-input fields.
331
+ */
172
332
  export declare function Decode_decodeStepInputFromValue(id: string, value: YAMLElement_$union, allowScalarSource: boolean): StepInput;
333
+ /**
334
+ * Decode map-form step inputs where the map key supplies the step input id.
335
+ */
173
336
  export declare function Decode_decodeStepInputsFromMap(value: YAMLElement_$union): StepInput[];
337
+ /**
338
+ * Decode sequence-form step inputs where the id must be present in the item.
339
+ */
174
340
  export declare function Decode_decodeStepInputFromArrayItem(item: YAMLElement_$union): StepInput;
341
+ /**
342
+ * Decode sequence-form step inputs, warning and skipping only malformed unnamed entries.
343
+ */
344
+ export declare function Decode_decodeStepInputsFromArrayWithWarnings(warnings: Option<Decode_DecodeWarning[]>, path: string, items: FSharpList<YAMLElement_$union>): StepInput[];
175
345
  export declare function Decode_decodeStepInputsFromArray(items: FSharpList<YAMLElement_$union>): StepInput[];
176
- export declare function Decode_inputStepDecoder(value: YAMLElement_$union): StepInput[];
346
+ /**
347
+ * Select the step input decoder based on CWL map-form versus sequence-form syntax.
348
+ */
349
+ export declare function Decode_inputStepDecoderWithWarnings(warnings: Option<Decode_DecodeWarning[]>, path: string, value: YAMLElement_$union): StepInput[];
350
+ export declare const Decode_inputStepDecoder: (value: YAMLElement_$union) => StepInput[];
351
+ /**
352
+ * Decode step outputs from scalar shorthand or record form with extension fields.
353
+ */
177
354
  export declare function Decode_decodeStepOutputItem(value: YAMLElement_$union): StepOutput_$union;
178
355
  export declare const Decode_outputStepsDecoder: (value_2: YAMLElement_$union) => StepOutput_$union[];
179
356
  export declare const Decode_docDecoder: (value_1: YAMLElement_$union) => Option<string>;
180
357
  export declare const Decode_labelDecoder: (value_1: YAMLElement_$union) => Option<string>;
181
358
  export declare const Decode_idDecoder: (value_1: YAMLElement_$union) => Option<string>;
182
359
  export declare const Decode_intentDecoder: (value_1: YAMLElement_$union) => Option<string[]>;
360
+ /**
361
+ * Test object mappings for an explicit field without invoking a typed decoder.
362
+ */
183
363
  export declare function Decode_hasField(fieldName: string, yamlElement: YAMLElement_$union): boolean;
364
+ /**
365
+ * Inject the parent workflow cwlVersion into inline run objects that omit it.
366
+ */
184
367
  export declare function Decode_withDefaultCwlVersion(defaultCwlVersion: string, yamlElement: YAMLElement_$union): YAMLElement_$union;
185
- export declare function Decode_workflowStepRunDecoder(defaultCwlVersion: string, runValue: YAMLElement_$union): WorkflowStepRun_$union;
186
- export declare function Decode_decodeWorkflowStepFromValueWithId(defaultCwlVersion: string, stepId: string, value: YAMLElement_$union): WorkflowStep;
368
+ /**
369
+ * Decode a workflow step run as either a path string or an inline CWL processing unit.
370
+ */
371
+ export declare function Decode_workflowStepRunDecoder(warnings: Option<Decode_DecodeWarning[]>, defaultCwlVersion: string, runValue: YAMLElement_$union): WorkflowStepRun_$union;
372
+ /**
373
+ * Decode a named workflow step and thread warnings into nested step inputs and inline runs.
374
+ */
375
+ export declare function Decode_decodeWorkflowStepFromValueWithId(warnings: Option<Decode_DecodeWarning[]>, defaultCwlVersion: string, path: string, stepId: string, value: YAMLElement_$union): WorkflowStep;
187
376
  export declare function Decode_decodeWorkflowStepFromArrayItem(defaultCwlVersion: string, item: YAMLElement_$union): WorkflowStep;
188
- export declare function Decode_stepArrayDecoderWithVersion(defaultCwlVersion: string, value: YAMLElement_$union): WorkflowStep[];
189
- export declare function Decode_stepsDecoderWithVersion(defaultCwlVersion: string): ((arg0: YAMLElement_$union) => WorkflowStep[]);
190
- export declare function Decode_commandLineToolDecoder(yamlCWL: YAMLElement_$union): CWLToolDescription;
191
- export declare function Decode_expressionToolDecoder(yamlCWL: YAMLElement_$union): CWLExpressionToolDescription;
192
- export declare function Decode_operationDecoder(yamlCWL: YAMLElement_$union): CWLOperationDescription;
193
- export declare function Decode_workflowDecoder(yamlCWL: YAMLElement_$union): CWLWorkflowDescription;
377
+ /**
378
+ * Decode one sequence-form workflow step, warning only for malformed unnamed entries.
379
+ */
380
+ export declare function Decode_decodeWorkflowStepFromArrayItemWithWarnings(warnings: Option<Decode_DecodeWarning[]>, defaultCwlVersion: string, index: int32, item: YAMLElement_$union): Option<WorkflowStep>;
381
+ /**
382
+ * Decode workflow steps from sequence-form or map-form syntax with version-aware inline runs.
383
+ */
384
+ export declare function Decode_stepArrayDecoderWithVersion(warnings: Option<Decode_DecodeWarning[]>, defaultCwlVersion: string, value: YAMLElement_$union): WorkflowStep[];
385
+ export declare function Decode_stepsDecoderWithVersion(warnings: Option<Decode_DecodeWarning[]>, defaultCwlVersion: string): ((arg0: YAMLElement_$union) => WorkflowStep[]);
386
+ /**
387
+ * Decode a CommandLineTool and preserve unknown top-level metadata fields.
388
+ */
389
+ export declare function Decode_commandLineToolDecoder(warnings: Option<Decode_DecodeWarning[]>, yamlCWL: YAMLElement_$union): CWLToolDescription;
390
+ /**
391
+ * Decode an ExpressionTool and preserve unknown top-level metadata fields.
392
+ */
393
+ export declare function Decode_expressionToolDecoder(warnings: Option<Decode_DecodeWarning[]>, yamlCWL: YAMLElement_$union): CWLExpressionToolDescription;
394
+ /**
395
+ * Decode an Operation and enforce its required inputs collection.
396
+ */
397
+ export declare function Decode_operationDecoder(warnings: Option<Decode_DecodeWarning[]>, yamlCWL: YAMLElement_$union): CWLOperationDescription;
398
+ /**
399
+ * Decode a Workflow, including version-aware steps and preserved metadata fields.
400
+ */
401
+ export declare function Decode_workflowDecoder(warnings: Option<Decode_DecodeWarning[]>, yamlCWL: YAMLElement_$union): CWLWorkflowDescription;
402
+ /**
403
+ * Dispatch a parsed CWL document to the processing-unit decoder declared by its class field.
404
+ */
405
+ export declare function Decode_decodeCWLProcessingUnitElementWithWarnings(warnings: Option<Decode_DecodeWarning[]>, yamlCWL: YAMLElement_$union): CWLProcessingUnit_$union;
406
+ /**
407
+ * Decode an already-parsed CWL element without warning collection.
408
+ */
194
409
  export declare function Decode_decodeCWLProcessingUnitElement(yamlCWL: YAMLElement_$union): CWLProcessingUnit_$union;
195
410
  export declare const Decode_stepArrayDecoder: (value: YAMLElement_$union) => WorkflowStep[];
196
411
  export declare const Decode_stepsDecoder: ((arg0: YAMLElement_$union) => WorkflowStep[]);
197
412
  /**
198
- * Decode a CWL file string written in the YAML format into a CWLToolDescription
413
+ * Decode a CWL CommandLineTool YAML string and return recoverable warnings.
414
+ */
415
+ export declare function Decode_decodeCommandLineToolWithWarnings(cwl: string): Decode_DecodeResult$1<CWLToolDescription>;
416
+ /**
417
+ * Decode a CWL CommandLineTool and discard recoverable warnings.
199
418
  */
200
419
  export declare function Decode_decodeCommandLineTool(cwl: string): CWLToolDescription;
201
420
  /**
202
- * Decode a CWL file string written in the YAML format into a CWLWorkflowDescription
421
+ * Decode a CWL Workflow YAML string and return recoverable warnings.
422
+ */
423
+ export declare function Decode_decodeWorkflowWithWarnings(cwl: string): Decode_DecodeResult$1<CWLWorkflowDescription>;
424
+ /**
425
+ * Decode a CWL Workflow and discard recoverable warnings.
203
426
  */
204
427
  export declare function Decode_decodeWorkflow(cwl: string): CWLWorkflowDescription;
205
428
  /**
206
- * Decode a CWL file string written in the YAML format into a CWLExpressionToolDescription
429
+ * Decode a CWL ExpressionTool YAML string and return recoverable warnings.
430
+ */
431
+ export declare function Decode_decodeExpressionToolWithWarnings(cwl: string): Decode_DecodeResult$1<CWLExpressionToolDescription>;
432
+ /**
433
+ * Decode a CWL ExpressionTool and discard recoverable warnings.
207
434
  */
208
435
  export declare function Decode_decodeExpressionTool(cwl: string): CWLExpressionToolDescription;
209
436
  /**
210
- * Decode a CWL file string written in the YAML format into a CWLOperationDescription
437
+ * Decode a CWL Operation YAML string and return recoverable warnings.
438
+ */
439
+ export declare function Decode_decodeOperationWithWarnings(cwl: string): Decode_DecodeResult$1<CWLOperationDescription>;
440
+ /**
441
+ * Decode a CWL Operation and discard recoverable warnings.
211
442
  */
212
443
  export declare function Decode_decodeOperation(cwl: string): CWLOperationDescription;
444
+ /**
445
+ * Decode any CWL processing unit from a YAML string and return recoverable warnings.
446
+ */
447
+ export declare function Decode_decodeCWLProcessingUnitWithWarnings(cwl: string): Decode_DecodeResult$1<CWLProcessingUnit_$union>;
448
+ /**
449
+ * Decode any CWL processing unit and discard recoverable warnings.
450
+ */
213
451
  export declare function Decode_decodeCWLProcessingUnit(cwl: string): CWLProcessingUnit_$union;
452
+ export declare function DecodeParameters_decodeParameterValue(value: YAMLElement_$union): CWLParameterValue_$union;
214
453
  export declare function DecodeParameters_cwlParameterReferenceDecoder(get$: IGetters, key: string, yEle: YAMLElement_$union): CWLParameterReference;
215
454
  export declare const DecodeParameters_cwlparameterReferenceArrayDecoder: (value: YAMLElement_$union) => CWLParameterReference[];
455
+ /**
456
+ * Decode a YAML parameter file string into parameter references.
457
+ */
216
458
  export declare function DecodeParameters_decodeYAMLParameterFile(yaml: string): CWLParameterReference[];
217
459
  //# sourceMappingURL=Decode.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Decode.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/CWL/Decode.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Decode.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/CWL/Decode.ts"],"names":[],"mappings":"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"}