@nfdi4plants/arctrl 3.0.0-beta.8 → 3.0.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 (296) hide show
  1. package/README.md +30 -3
  2. package/dist/ts/index.d.ts +54 -16
  3. package/dist/ts/index.d.ts.map +1 -1
  4. package/dist/ts/index.js +56 -18
  5. package/dist/ts/ts/ARC.d.ts +38 -15
  6. package/dist/ts/ts/ARC.d.ts.map +1 -1
  7. package/dist/ts/ts/ARC.js +285 -140
  8. package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts +62 -0
  9. package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts.map +1 -0
  10. package/dist/ts/ts/CWL/CWLProcessingUnit.js +250 -0
  11. package/dist/ts/ts/CWL/CWLTypes.d.ts +148 -0
  12. package/dist/ts/ts/CWL/CWLTypes.d.ts.map +1 -0
  13. package/dist/ts/ts/CWL/CWLTypes.js +384 -0
  14. package/dist/ts/ts/CWL/Decode.d.ts +210 -0
  15. package/dist/ts/ts/CWL/Decode.d.ts.map +1 -0
  16. package/dist/ts/ts/CWL/Decode.js +2617 -0
  17. package/dist/ts/ts/CWL/Encode.d.ts +96 -0
  18. package/dist/ts/ts/CWL/Encode.d.ts.map +1 -0
  19. package/dist/ts/ts/CWL/Encode.js +1509 -0
  20. package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts +50 -0
  21. package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts.map +1 -0
  22. package/dist/ts/ts/CWL/ExpressionToolDescription.js +152 -0
  23. package/dist/ts/ts/CWL/HashHelpers.d.ts +9 -0
  24. package/dist/ts/ts/CWL/HashHelpers.d.ts.map +1 -0
  25. package/dist/ts/ts/CWL/HashHelpers.js +35 -0
  26. package/dist/ts/ts/CWL/Inputs.d.ts +31 -0
  27. package/dist/ts/ts/CWL/Inputs.d.ts.map +1 -0
  28. package/dist/ts/ts/CWL/Inputs.js +86 -0
  29. package/dist/ts/ts/CWL/OperationDescription.d.ts +46 -0
  30. package/dist/ts/ts/CWL/OperationDescription.d.ts.map +1 -0
  31. package/dist/ts/ts/CWL/OperationDescription.js +133 -0
  32. package/dist/ts/ts/CWL/Outputs.d.ts +44 -0
  33. package/dist/ts/ts/CWL/Outputs.d.ts.map +1 -0
  34. package/dist/ts/ts/CWL/Outputs.js +143 -0
  35. package/dist/ts/ts/CWL/ParameterReference.d.ts +23 -0
  36. package/dist/ts/ts/CWL/ParameterReference.d.ts.map +1 -0
  37. package/dist/ts/ts/CWL/ParameterReference.js +60 -0
  38. package/dist/ts/ts/CWL/Requirements.d.ts +206 -0
  39. package/dist/ts/ts/CWL/Requirements.d.ts.map +1 -0
  40. package/dist/ts/ts/CWL/Requirements.js +384 -0
  41. package/dist/ts/ts/CWL/ToolDescription.d.ts +50 -0
  42. package/dist/ts/ts/CWL/ToolDescription.d.ts.map +1 -0
  43. package/dist/ts/ts/CWL/ToolDescription.js +152 -0
  44. package/dist/ts/ts/CWL/WorkflowDescription.d.ts +50 -0
  45. package/dist/ts/ts/CWL/WorkflowDescription.d.ts.map +1 -0
  46. package/dist/ts/ts/CWL/WorkflowDescription.js +142 -0
  47. package/dist/ts/ts/CWL/WorkflowSteps.d.ts +160 -0
  48. package/dist/ts/ts/CWL/WorkflowSteps.d.ts.map +1 -0
  49. package/dist/ts/ts/CWL/WorkflowSteps.js +317 -0
  50. package/dist/ts/ts/CWLRunResolver.d.ts +45 -0
  51. package/dist/ts/ts/CWLRunResolver.d.ts.map +1 -0
  52. package/dist/ts/ts/CWLRunResolver.js +181 -0
  53. package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
  54. package/dist/ts/ts/Contract/ARC.js +27 -9
  55. package/dist/ts/ts/Contract/ArcRun.d.ts +6 -0
  56. package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -1
  57. package/dist/ts/ts/Contract/ArcRun.js +131 -4
  58. package/dist/ts/ts/Contract/ArcWorkflow.d.ts +3 -0
  59. package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -1
  60. package/dist/ts/ts/Contract/ArcWorkflow.js +70 -4
  61. package/dist/ts/ts/Contract/Datamap.d.ts +25 -25
  62. package/dist/ts/ts/Contract/Datamap.d.ts.map +1 -1
  63. package/dist/ts/ts/Contract/Datamap.js +61 -42
  64. package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -1
  65. package/dist/ts/ts/ContractIO/ContractIO.js +3 -1
  66. package/dist/ts/ts/Conversion/Assay.d.ts +13 -0
  67. package/dist/ts/ts/Conversion/Assay.d.ts.map +1 -0
  68. package/dist/ts/ts/Conversion/Assay.js +69 -0
  69. package/dist/ts/ts/Conversion/Basic.d.ts +105 -0
  70. package/dist/ts/ts/Conversion/Basic.d.ts.map +1 -0
  71. package/dist/ts/ts/Conversion/Basic.js +452 -0
  72. package/dist/ts/ts/Conversion/ColumnIndex.d.ts +11 -0
  73. package/dist/ts/ts/Conversion/ColumnIndex.d.ts.map +1 -0
  74. package/dist/ts/ts/Conversion/ColumnIndex.js +71 -0
  75. package/dist/ts/ts/Conversion/Datamap.d.ts +11 -0
  76. package/dist/ts/ts/Conversion/Datamap.d.ts.map +1 -0
  77. package/dist/ts/ts/Conversion/Datamap.js +21 -0
  78. package/dist/ts/ts/Conversion/DateTime.d.ts +4 -0
  79. package/dist/ts/ts/Conversion/DateTime.d.ts.map +1 -0
  80. package/dist/ts/ts/Conversion/DateTime.js +23 -0
  81. package/dist/ts/ts/Conversion/Investigation.d.ts +12 -0
  82. package/dist/ts/ts/Conversion/Investigation.d.ts.map +1 -0
  83. package/dist/ts/ts/Conversion/Investigation.js +79 -0
  84. package/dist/ts/ts/Conversion/Person.d.ts +16 -0
  85. package/dist/ts/ts/Conversion/Person.d.ts.map +1 -0
  86. package/dist/ts/ts/Conversion/Person.js +100 -0
  87. package/dist/ts/ts/Conversion/Process.d.ts +84 -0
  88. package/dist/ts/ts/Conversion/Process.d.ts.map +1 -0
  89. package/dist/ts/ts/Conversion/Process.js +455 -0
  90. package/dist/ts/ts/Conversion/Run.d.ts +35 -0
  91. package/dist/ts/ts/Conversion/Run.d.ts.map +1 -0
  92. package/dist/ts/ts/Conversion/Run.js +254 -0
  93. package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts +16 -0
  94. package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts.map +1 -0
  95. package/dist/ts/ts/Conversion/ScholarlyArticle.js +116 -0
  96. package/dist/ts/ts/Conversion/Study.d.ts +12 -0
  97. package/dist/ts/ts/Conversion/Study.d.ts.map +1 -0
  98. package/dist/ts/ts/Conversion/Study.js +51 -0
  99. package/dist/ts/ts/Conversion/Table.d.ts +45 -0
  100. package/dist/ts/ts/Conversion/Table.d.ts.map +1 -0
  101. package/dist/ts/ts/Conversion/Table.js +203 -0
  102. package/dist/ts/ts/Conversion/Workflow.d.ts +91 -0
  103. package/dist/ts/ts/Conversion/Workflow.d.ts.map +1 -0
  104. package/dist/ts/ts/Conversion/Workflow.js +455 -0
  105. package/dist/ts/ts/Conversion.d.ts +25 -276
  106. package/dist/ts/ts/Conversion.d.ts.map +1 -1
  107. package/dist/ts/ts/Conversion.js +64 -1477
  108. package/dist/ts/ts/Core/ArcTypes.d.ts +69 -59
  109. package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -1
  110. package/dist/ts/ts/Core/ArcTypes.js +251 -146
  111. package/dist/ts/ts/Core/Datamap.d.ts +53 -0
  112. package/dist/ts/ts/Core/{DataMap.d.ts.map → Datamap.d.ts.map} +1 -1
  113. package/dist/ts/ts/Core/Datamap.js +177 -0
  114. package/dist/ts/ts/Core/Helper/Identifier.d.ts +24 -0
  115. package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -1
  116. package/dist/ts/ts/Core/Helper/Identifier.js +35 -2
  117. package/dist/ts/ts/Core/Table/ArcTable.d.ts +8 -8
  118. package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -1
  119. package/dist/ts/ts/Core/Table/ArcTable.js +20 -20
  120. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +4 -4
  121. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
  122. package/dist/ts/ts/FileSystem/FileSystemTree.js +20 -27
  123. package/dist/ts/ts/FileSystem/Path.d.ts +22 -0
  124. package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
  125. package/dist/ts/ts/FileSystem/Path.js +173 -3
  126. package/dist/ts/ts/Json/Assay.js +5 -5
  127. package/dist/ts/ts/Json/{DataMap → Datamap}/DataContext.d.ts.map +1 -1
  128. package/dist/ts/ts/Json/{DataMap/DataMap.d.ts → Datamap/Datamap.d.ts} +6 -6
  129. package/dist/ts/ts/Json/Datamap/Datamap.d.ts.map +1 -0
  130. package/dist/ts/ts/Json/{DataMap/DataMap.js → Datamap/Datamap.js} +3 -3
  131. package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -1
  132. package/dist/ts/ts/Json/ROCrate/LDContext.js +21 -11
  133. package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +1 -0
  134. package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -1
  135. package/dist/ts/ts/Json/ROCrate/LDNode.js +18 -7
  136. package/dist/ts/ts/Json/Run.js +5 -5
  137. package/dist/ts/ts/Json/Study.js +5 -5
  138. package/dist/ts/ts/Json/Workflow.d.ts.map +1 -1
  139. package/dist/ts/ts/Json/Workflow.js +10 -11
  140. package/dist/ts/ts/Json.d.ts +3 -5
  141. package/dist/ts/ts/Json.d.ts.map +1 -1
  142. package/dist/ts/ts/Json.js +4 -10
  143. package/dist/ts/ts/JsonIO/Datamap.d.ts +4 -4
  144. package/dist/ts/ts/JsonIO/Datamap.js +6 -6
  145. package/dist/ts/ts/JsonIO/Investigation.d.ts +0 -6
  146. package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -1
  147. package/dist/ts/ts/JsonIO/Investigation.js +2 -21
  148. package/dist/ts/ts/License.js +1 -1
  149. package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -1
  150. package/dist/ts/ts/ROCrate/LDContext.js +35 -31
  151. package/dist/ts/ts/ROCrate/LDObject.d.ts +2 -2
  152. package/dist/ts/ts/ROCrate/LDObject.js +2 -2
  153. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Comment.d.ts.map +1 -1
  154. package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts +63 -0
  155. package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts.map +1 -0
  156. package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.js +361 -0
  157. package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts +39 -0
  158. package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts.map +1 -0
  159. package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.js +219 -0
  160. package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts +43 -0
  161. package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts.map +1 -0
  162. package/dist/ts/ts/ROCrate/LDTypes/CreateAction.js +224 -0
  163. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/CreativeWork.d.ts.map +1 -1
  164. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/CreativeWork.js +1 -1
  165. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Dataset.d.ts +34 -22
  166. package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts.map +1 -0
  167. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Dataset.js +59 -2
  168. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/DefinedTerm.d.ts.map +1 -1
  169. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/File.d.ts +10 -4
  170. package/dist/ts/ts/ROCrate/LDTypes/File.d.ts.map +1 -0
  171. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/File.js +34 -1
  172. package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts +59 -0
  173. package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts.map +1 -0
  174. package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.js +344 -0
  175. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProcess.d.ts +2 -0
  176. package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts.map +1 -0
  177. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProcess.js +31 -5
  178. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProtocol.d.ts +6 -2
  179. package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts.map +1 -0
  180. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProtocol.js +66 -15
  181. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Organization.d.ts.map +1 -1
  182. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Person.d.ts.map +1 -1
  183. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PostalAddress.d.ts.map +1 -1
  184. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PropertyValue.d.ts +35 -11
  185. package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts.map +1 -0
  186. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PropertyValue.js +191 -1
  187. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Sample.d.ts.map +1 -1
  188. package/dist/ts/ts/ROCrate/{Generic → LDTypes}/ScholarlyArticle.d.ts.map +1 -1
  189. package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts +46 -0
  190. package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts.map +1 -0
  191. package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.js +247 -0
  192. package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts +12 -0
  193. package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts.map +1 -0
  194. package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.js +40 -0
  195. package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts +11 -0
  196. package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts.map +1 -0
  197. package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.js +46 -0
  198. package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +2 -2
  199. package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -1
  200. package/dist/ts/ts/ROCrate/ROCrateContext.js +6 -6
  201. package/dist/ts/ts/ROCrateIO.d.ts +7 -3
  202. package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
  203. package/dist/ts/ts/ROCrateIO.js +82 -13
  204. package/dist/ts/ts/Spreadsheet/ArcAssay.js +3 -3
  205. package/dist/ts/ts/Spreadsheet/ArcRun.js +2 -2
  206. package/dist/ts/ts/Spreadsheet/ArcStudy.js +3 -3
  207. package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +2 -2
  208. package/dist/ts/ts/Spreadsheet/Datamap.d.ts +8 -0
  209. package/dist/ts/ts/Spreadsheet/Datamap.d.ts.map +1 -0
  210. package/dist/ts/ts/Spreadsheet/{DataMap.js → Datamap.js} +9 -9
  211. package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapColumn.d.ts → DatamapTable/DatamapColumn.d.ts} +1 -1
  212. package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapColumn.d.ts.map → DatamapTable/DatamapColumn.d.ts.map} +1 -1
  213. package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapColumn.js → DatamapTable/DatamapColumn.js} +1 -1
  214. package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapHeader.d.ts → DatamapTable/DatamapHeader.d.ts} +1 -1
  215. package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapHeader.d.ts.map → DatamapTable/DatamapHeader.d.ts.map} +1 -1
  216. package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapTable.d.ts → DatamapTable/DatamapTable.d.ts} +5 -5
  217. package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts.map +1 -0
  218. package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapTable.js → DatamapTable/DatamapTable.js} +8 -8
  219. package/dist/ts/ts/Spreadsheet/Metadata/Run.js +1 -1
  220. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -1
  221. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +4 -4
  222. package/dist/ts/ts/WorkflowGraph/Adapters.d.ts +36 -0
  223. package/dist/ts/ts/WorkflowGraph/Adapters.d.ts.map +1 -0
  224. package/dist/ts/ts/WorkflowGraph/Adapters.js +94 -0
  225. package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts +37 -0
  226. package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts.map +1 -0
  227. package/dist/ts/ts/WorkflowGraph/BuildOptions.js +35 -0
  228. package/dist/ts/ts/WorkflowGraph/Builder.d.ts +160 -0
  229. package/dist/ts/ts/WorkflowGraph/Builder.d.ts.map +1 -0
  230. package/dist/ts/ts/WorkflowGraph/Builder.js +556 -0
  231. package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts +182 -0
  232. package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts.map +1 -0
  233. package/dist/ts/ts/WorkflowGraph/GraphTypes.js +281 -0
  234. package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts +27 -0
  235. package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts.map +1 -0
  236. package/dist/ts/ts/WorkflowGraph/ReferenceParsing.js +49 -0
  237. package/dist/ts/ts/Xlsx.d.ts +5 -5
  238. package/dist/ts/ts/Xlsx.js +1 -1
  239. package/dist/ts/ts/Yaml/ValidationPackage.d.ts +1 -1
  240. package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -1
  241. package/dist/ts/ts/Yaml/ValidationPackage.js +5 -5
  242. package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +1 -1
  243. package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -1
  244. package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +5 -5
  245. package/dist/ts/ts/Yaml.d.ts +24 -0
  246. package/dist/ts/ts/Yaml.d.ts.map +1 -0
  247. package/dist/ts/ts/Yaml.js +56 -0
  248. package/dist/ts/ts/fable_modules/DynamicObj.7.1.0/DynObj.fs.js +109 -0
  249. package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/Encode.fs.js +1 -1
  250. package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.3/FlowToBlock.fs.js +954 -0
  251. package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.3/Interop/JsInterop.fs.js +10 -0
  252. package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/Persil.fs.js +1 -1
  253. package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/Reader.fs.js +208 -152
  254. package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.3/Regex.fs.js +15 -0
  255. package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/RegexActivePatterns.fs.js +14 -10
  256. package/package.json +1 -1
  257. package/dist/ts/ts/Core/DataMap.d.ts +0 -52
  258. package/dist/ts/ts/Core/DataMap.js +0 -159
  259. package/dist/ts/ts/Json/DataMap/DataMap.d.ts.map +0 -1
  260. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +0 -1
  261. package/dist/ts/ts/ROCrate/Generic/File.d.ts.map +0 -1
  262. package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts.map +0 -1
  263. package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts.map +0 -1
  264. package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts.map +0 -1
  265. package/dist/ts/ts/Spreadsheet/DataMap.d.ts +0 -8
  266. package/dist/ts/ts/Spreadsheet/DataMap.d.ts.map +0 -1
  267. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +0 -1
  268. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -10
  269. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -11
  270. /package/dist/ts/ts/Json/{DataMap → Datamap}/DataContext.d.ts +0 -0
  271. /package/dist/ts/ts/Json/{DataMap → Datamap}/DataContext.js +0 -0
  272. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Comment.d.ts +0 -0
  273. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Comment.js +0 -0
  274. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/CreativeWork.d.ts +0 -0
  275. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/DefinedTerm.d.ts +0 -0
  276. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/DefinedTerm.js +0 -0
  277. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Organization.d.ts +0 -0
  278. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Organization.js +0 -0
  279. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Person.d.ts +0 -0
  280. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Person.js +0 -0
  281. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PostalAddress.d.ts +0 -0
  282. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PostalAddress.js +0 -0
  283. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Sample.d.ts +0 -0
  284. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Sample.js +0 -0
  285. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/ScholarlyArticle.d.ts +0 -0
  286. /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/ScholarlyArticle.js +0 -0
  287. /package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapHeader.js → DatamapTable/DatamapHeader.js} +0 -0
  288. /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/DynamicObj.fs.js +0 -0
  289. /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/FableJS.fs.js +0 -0
  290. /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/HashCodes.fs.js +0 -0
  291. /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/PropertyHelper.fs.js +0 -0
  292. /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/ReflectionUtils.fs.js +0 -0
  293. /package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/Decode.fs.js +0 -0
  294. /package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/Preprocessing.fs.js +0 -0
  295. /package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/Writer.fs.js +0 -0
  296. /package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/YAMLiciousTypes.fs.js +0 -0
@@ -0,0 +1,384 @@
1
+ import { Union, Record } from '../../node_modules/@fable-org/fable-library-js/Types.js';
2
+ import { union_type, string_type, class_type, record_type, option_type, bool_type, array_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
3
+ import { toText, printf } from '../../node_modules/@fable-org/fable-library-js/String.js';
4
+ import { identityHash, equals, arrayHash, safeHash, numberHash } from '../../node_modules/@fable-org/fable-library-js/Util.js';
5
+ import { DynamicObj, DynamicObj_$reflection } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
6
+ import { value } from '../../node_modules/@fable-org/fable-library-js/Option.js';
7
+ import { forAll2, toList, map } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
8
+
9
+ function SchemaSaladString_Literal(Item) {
10
+ return new SchemaSaladString(0, [Item]);
11
+ }
12
+ function SchemaSaladString_Include(Item) {
13
+ return new SchemaSaladString(1, [Item]);
14
+ }
15
+ function SchemaSaladString_Import(Item) {
16
+ return new SchemaSaladString(2, [Item]);
17
+ }
18
+ class SchemaSaladString extends Union {
19
+ constructor(tag, fields) {
20
+ super();
21
+ this.tag = tag;
22
+ this.fields = fields;
23
+ }
24
+ cases() {
25
+ return ["Literal", "Include", "Import"];
26
+ }
27
+ }
28
+ function SchemaSaladString_$reflection() {
29
+ return union_type("ARCtrl.CWL.SchemaSaladString", [], SchemaSaladString, () => [[["Item", string_type]], [["Item", string_type]], [["Item", string_type]]]);
30
+ }
31
+ function SchemaSaladString__get_Value(this$) {
32
+ let value;
33
+ switch (this$.tag) {
34
+ case /* Include */
35
+ 1: {
36
+ value = this$.fields[0];
37
+ break;
38
+ }
39
+ case /* Import */
40
+ 2: {
41
+ value = this$.fields[0];
42
+ break;
43
+ }
44
+ default:
45
+ value = this$.fields[0];
46
+ }
47
+ return value;
48
+ }
49
+ function SchemaSaladString__get_AsDirectiveString(this$) {
50
+ switch (this$.tag) {
51
+ case /* Include */
52
+ 1: {
53
+ const value_1 = this$.fields[0];
54
+ return toText(printf("$include: %s"))(value_1);
55
+ }
56
+ case /* Import */
57
+ 2: {
58
+ const value_2 = this$.fields[0];
59
+ return toText(printf("$import: %s"))(value_2);
60
+ }
61
+ default:
62
+ return this$.fields[0];
63
+ }
64
+ }
65
+ function SchemaSaladStringModule_literal(value) {
66
+ return SchemaSaladString_Literal(value);
67
+ }
68
+ function SchemaSaladStringModule_includePath(value) {
69
+ return SchemaSaladString_Include(value);
70
+ }
71
+ function SchemaSaladStringModule_importPath(value) {
72
+ return SchemaSaladString_Import(value);
73
+ }
74
+ function SchemaSaladStringModule_value(saladString) {
75
+ return SchemaSaladString__get_Value(saladString);
76
+ }
77
+ function SchemaSaladStringModule_toDirectiveString(saladString) {
78
+ return SchemaSaladString__get_AsDirectiveString(saladString);
79
+ }
80
+ class FileInstance extends DynamicObj {
81
+ constructor() {
82
+ super();
83
+ }
84
+ GetHashCode() {
85
+ const this$ = this;
86
+ return identityHash(this$.DeepCopyProperties()) | 0;
87
+ }
88
+ Equals(o) {
89
+ let o_1;
90
+ const this$ = this;
91
+ return o instanceof FileInstance && (o_1 = o, this$.StructurallyEquals(o_1));
92
+ }
93
+ }
94
+ function FileInstance_$reflection() {
95
+ return class_type("ARCtrl.CWL.FileInstance", void 0, FileInstance, DynamicObj_$reflection());
96
+ }
97
+ function FileInstance_$ctor() {
98
+ return new FileInstance();
99
+ }
100
+ class DirectoryInstance extends DynamicObj {
101
+ constructor() {
102
+ super();
103
+ }
104
+ Equals(o) {
105
+ let o_1;
106
+ const this$ = this;
107
+ return o instanceof DirectoryInstance && (o_1 = o, this$.StructurallyEquals(o_1));
108
+ }
109
+ GetHashCode() {
110
+ const this$ = this;
111
+ return identityHash(this$.DeepCopyProperties()) | 0;
112
+ }
113
+ }
114
+ function DirectoryInstance_$reflection() {
115
+ return class_type("ARCtrl.CWL.DirectoryInstance", void 0, DirectoryInstance, DynamicObj_$reflection());
116
+ }
117
+ function DirectoryInstance_$ctor() {
118
+ return new DirectoryInstance();
119
+ }
120
+ class DirentInstance extends Record {
121
+ constructor(Entry, Entryname, Writable) {
122
+ super();
123
+ this.Entry = Entry;
124
+ this.Entryname = Entryname;
125
+ this.Writable = Writable;
126
+ }
127
+ }
128
+ function DirentInstance_$reflection() {
129
+ return record_type("ARCtrl.CWL.DirentInstance", [], DirentInstance, () => [["Entry", SchemaSaladString_$reflection()], ["Entryname", option_type(SchemaSaladString_$reflection())], ["Writable", option_type(bool_type)]]);
130
+ }
131
+ class InputEnumSchema extends Record {
132
+ constructor(Symbols, Label, Doc, Name) {
133
+ super();
134
+ this.Symbols = Symbols;
135
+ this.Label = Label;
136
+ this.Doc = Doc;
137
+ this.Name = Name;
138
+ }
139
+ Equals(o) {
140
+ let other;
141
+ const this$ = this;
142
+ return o instanceof InputEnumSchema && (other = o, equals(this$.Label, other.Label) && equals(this$.Doc, other.Doc) && equals(this$.Name, other.Name) && this$.Symbols.length === other.Symbols.length && forAll2((x, y) => x === y, this$.Symbols, other.Symbols));
143
+ }
144
+ GetHashCode() {
145
+ const this$ = this;
146
+ return arrayHash([toList(this$.Symbols), this$.Label, this$.Doc, this$.Name]) | 0;
147
+ }
148
+ }
149
+ function InputEnumSchema_$reflection() {
150
+ return record_type("ARCtrl.CWL.InputEnumSchema", [], InputEnumSchema, () => [["Symbols", array_type(string_type)], ["Label", option_type(string_type)], ["Doc", option_type(string_type)], ["Name", option_type(string_type)]]);
151
+ }
152
+ class InputRecordField extends Record {
153
+ constructor(Name, Type, Doc, Label) {
154
+ super();
155
+ this.Name = Name;
156
+ this.Type = Type;
157
+ this.Doc = Doc;
158
+ this.Label = Label;
159
+ }
160
+ Equals(o) {
161
+ let other;
162
+ const this$ = this;
163
+ return o instanceof InputRecordField && (other = o, this$.Name === other.Name && equals(this$.Type, other.Type) && equals(this$.Doc, other.Doc) && equals(this$.Label, other.Label));
164
+ }
165
+ GetHashCode() {
166
+ const this$ = this;
167
+ return arrayHash([this$.Name, this$.Type, this$.Doc, this$.Label]) | 0;
168
+ }
169
+ }
170
+ function InputRecordField_$reflection() {
171
+ return record_type("ARCtrl.CWL.InputRecordField", [], InputRecordField, () => [["Name", string_type], ["Type", CWLType_$reflection()], ["Doc", option_type(string_type)], ["Label", option_type(string_type)]]);
172
+ }
173
+ class InputRecordSchema extends Record {
174
+ constructor(Fields, Label, Doc, Name) {
175
+ super();
176
+ this.Fields = Fields;
177
+ this.Label = Label;
178
+ this.Doc = Doc;
179
+ this.Name = Name;
180
+ }
181
+ Equals(o) {
182
+ const this$ = this;
183
+ if (o instanceof InputRecordSchema) {
184
+ const other = o;
185
+ if (equals(this$.Label, other.Label) && equals(this$.Doc, other.Doc) && equals(this$.Name, other.Name)) {
186
+ const matchValue = this$.Fields;
187
+ const matchValue_1 = other.Fields;
188
+ let matchResult, f1, f2;
189
+ if (matchValue != null) {
190
+ if (matchValue_1 != null) {
191
+ matchResult = 1;
192
+ f1 = value(matchValue);
193
+ f2 = value(matchValue_1);
194
+ } else {
195
+ matchResult = 2;
196
+ }
197
+ } else if (matchValue_1 == null) {
198
+ matchResult = 0;
199
+ } else {
200
+ matchResult = 2;
201
+ }
202
+ switch (matchResult) {
203
+ case 0:
204
+ return true;
205
+ case 1:
206
+ return f1.length === f2.length && forAll2(equals, f1, f2);
207
+ default:
208
+ return false;
209
+ }
210
+ } else {
211
+ return false;
212
+ }
213
+ } else {
214
+ return false;
215
+ }
216
+ }
217
+ GetHashCode() {
218
+ const this$ = this;
219
+ return arrayHash([this$.Fields, this$.Label, this$.Doc, this$.Name]) | 0;
220
+ }
221
+ }
222
+ function InputRecordSchema_$reflection() {
223
+ return record_type("ARCtrl.CWL.InputRecordSchema", [], InputRecordSchema, () => [["Fields", option_type(array_type(InputRecordField_$reflection()))], ["Label", option_type(string_type)], ["Doc", option_type(string_type)], ["Name", option_type(string_type)]]);
224
+ }
225
+ class InputArraySchema extends Record {
226
+ constructor(Items, Label, Doc, Name) {
227
+ super();
228
+ this.Items = Items;
229
+ this.Label = Label;
230
+ this.Doc = Doc;
231
+ this.Name = Name;
232
+ }
233
+ Equals(o) {
234
+ let other;
235
+ const this$ = this;
236
+ return o instanceof InputArraySchema && (other = o, equals(this$.Items, other.Items) && equals(this$.Label, other.Label) && equals(this$.Doc, other.Doc) && equals(this$.Name, other.Name));
237
+ }
238
+ GetHashCode() {
239
+ const this$ = this;
240
+ return arrayHash([this$.Items, this$.Label, this$.Doc, this$.Name]) | 0;
241
+ }
242
+ }
243
+ function InputArraySchema_$reflection() {
244
+ return record_type("ARCtrl.CWL.InputArraySchema", [], InputArraySchema, () => [["Items", CWLType_$reflection()], ["Label", option_type(string_type)], ["Doc", option_type(string_type)], ["Name", option_type(string_type)]]);
245
+ }
246
+ function CWLType_File(Item) {
247
+ return new CWLType(0, [Item]);
248
+ }
249
+ function CWLType_Directory(Item) {
250
+ return new CWLType(1, [Item]);
251
+ }
252
+ function CWLType_Dirent(Item) {
253
+ return new CWLType(2, [Item]);
254
+ }
255
+ function CWLType_String() {
256
+ return new CWLType(3, []);
257
+ }
258
+ function CWLType_Int() {
259
+ return new CWLType(4, []);
260
+ }
261
+ function CWLType_Long() {
262
+ return new CWLType(5, []);
263
+ }
264
+ function CWLType_Float() {
265
+ return new CWLType(6, []);
266
+ }
267
+ function CWLType_Double() {
268
+ return new CWLType(7, []);
269
+ }
270
+ function CWLType_Boolean() {
271
+ return new CWLType(8, []);
272
+ }
273
+ function CWLType_Stdout() {
274
+ return new CWLType(9, []);
275
+ }
276
+ function CWLType_Null() {
277
+ return new CWLType(10, []);
278
+ }
279
+ function CWLType_Array(Item) {
280
+ return new CWLType(11, [Item]);
281
+ }
282
+ function CWLType_Record(Item) {
283
+ return new CWLType(12, [Item]);
284
+ }
285
+ function CWLType_Enum(Item) {
286
+ return new CWLType(13, [Item]);
287
+ }
288
+ function CWLType_Union(Item) {
289
+ return new CWLType(14, [Item]);
290
+ }
291
+ class CWLType extends Union {
292
+ constructor(tag, fields) {
293
+ super();
294
+ this.tag = tag;
295
+ this.fields = fields;
296
+ }
297
+ cases() {
298
+ return ["File", "Directory", "Dirent", "String", "Int", "Long", "Float", "Double", "Boolean", "Stdout", "Null", "Array", "Record", "Enum", "Union"];
299
+ }
300
+ Equals(o) {
301
+ let other, d1, d2, di1, di2, a1, a2, r1, r2, e1, e2, u1, u2, f1, f2;
302
+ const this$ = this;
303
+ return o instanceof CWLType && (other = o, this$.tag === /* Directory */
304
+ 1 ? other.tag === /* Directory */
305
+ 1 && (d1 = this$.fields[0], d2 = other.fields[0], equals(d1, d2)) : this$.tag === /* Dirent */
306
+ 2 ? other.tag === /* Dirent */
307
+ 2 && (di1 = this$.fields[0], di2 = other.fields[0], equals(di1, di2)) : this$.tag === /* String */
308
+ 3 ? other.tag === /* String */
309
+ 3 : this$.tag === /* Int */
310
+ 4 ? other.tag === /* Int */
311
+ 4 : this$.tag === /* Long */
312
+ 5 ? other.tag === /* Long */
313
+ 5 : this$.tag === /* Float */
314
+ 6 ? other.tag === /* Float */
315
+ 6 : this$.tag === /* Double */
316
+ 7 ? other.tag === /* Double */
317
+ 7 : this$.tag === /* Boolean */
318
+ 8 ? other.tag === /* Boolean */
319
+ 8 : this$.tag === /* Stdout */
320
+ 9 ? other.tag === /* Stdout */
321
+ 9 : this$.tag === /* Null */
322
+ 10 ? other.tag === /* Null */
323
+ 10 : this$.tag === /* Array */
324
+ 11 ? other.tag === /* Array */
325
+ 11 && (a1 = this$.fields[0], a2 = other.fields[0], equals(a1, a2)) : this$.tag === /* Record */
326
+ 12 ? other.tag === /* Record */
327
+ 12 && (r1 = this$.fields[0], r2 = other.fields[0], equals(r1, r2)) : this$.tag === /* Enum */
328
+ 13 ? other.tag === /* Enum */
329
+ 13 && (e1 = this$.fields[0], e2 = other.fields[0], equals(e1, e2)) : this$.tag === /* Union */
330
+ 14 ? other.tag === /* Union */
331
+ 14 && (u1 = this$.fields[0], u2 = other.fields[0], u1.length === u2.length && forAll2(equals, u1, u2)) : other.tag === /* File */
332
+ 0 && (f1 = this$.fields[0], f2 = other.fields[0], equals(f1, f2)));
333
+ }
334
+ GetHashCode() {
335
+ const this$ = this;
336
+ return (this$.tag === /* Directory */
337
+ 1 ? arrayHash([1, safeHash(this$.fields[0])]) : this$.tag === /* Dirent */
338
+ 2 ? arrayHash([2, this$.fields[0]]) : this$.tag === /* String */
339
+ 3 ? numberHash(3) : this$.tag === /* Int */
340
+ 4 ? numberHash(4) : this$.tag === /* Long */
341
+ 5 ? numberHash(5) : this$.tag === /* Float */
342
+ 6 ? numberHash(6) : this$.tag === /* Double */
343
+ 7 ? numberHash(7) : this$.tag === /* Boolean */
344
+ 8 ? numberHash(8) : this$.tag === /* Stdout */
345
+ 9 ? numberHash(9) : this$.tag === /* Null */
346
+ 10 ? numberHash(10) : this$.tag === /* Array */
347
+ 11 ? arrayHash([11, this$.fields[0]]) : this$.tag === /* Record */
348
+ 12 ? arrayHash([12, this$.fields[0]]) : this$.tag === /* Enum */
349
+ 13 ? arrayHash([13, this$.fields[0]]) : this$.tag === /* Union */
350
+ 14 ? arrayHash([14, toList(map(safeHash, this$.fields[0]))]) : arrayHash([0, safeHash(this$.fields[0])])) | 0;
351
+ }
352
+ }
353
+ function CWLType_$reflection() {
354
+ return union_type("ARCtrl.CWL.CWLType", [], CWLType, () => [[["Item", FileInstance_$reflection()]], [["Item", DirectoryInstance_$reflection()]], [["Item", DirentInstance_$reflection()]], [], [], [], [], [], [], [], [], [["Item", InputArraySchema_$reflection()]], [["Item", InputRecordSchema_$reflection()]], [["Item", InputEnumSchema_$reflection()]], [["Item", array_type(CWLType_$reflection())]]]);
355
+ }
356
+ function CWLType_file() {
357
+ return CWLType_File(FileInstance_$ctor());
358
+ }
359
+ function CWLType_directory() {
360
+ return CWLType_Directory(DirectoryInstance_$ctor());
361
+ }
362
+ class SchemaDefRequirementType extends Record {
363
+ constructor(Name, Type_) {
364
+ super();
365
+ this.Name = Name;
366
+ this.Type_ = Type_;
367
+ }
368
+ }
369
+ function SchemaDefRequirementType_$reflection() {
370
+ return record_type("ARCtrl.CWL.SchemaDefRequirementType", [], SchemaDefRequirementType, () => [["Name", string_type], ["Type_", CWLType_$reflection()]]);
371
+ }
372
+ class SoftwarePackage extends Record {
373
+ constructor(Package, Version, Specs) {
374
+ super();
375
+ this.Package = Package;
376
+ this.Version = Version;
377
+ this.Specs = Specs;
378
+ }
379
+ }
380
+ function SoftwarePackage_$reflection() {
381
+ return record_type("ARCtrl.CWL.SoftwarePackage", [], SoftwarePackage, () => [["Package", string_type], ["Version", option_type(array_type(string_type))], ["Specs", option_type(array_type(string_type))]]);
382
+ }
383
+
384
+ export { CWLType, CWLType_$reflection, CWLType_Array, CWLType_Boolean, CWLType_Directory, CWLType_Dirent, CWLType_Double, CWLType_Enum, CWLType_File, CWLType_Float, CWLType_Int, CWLType_Long, CWLType_Null, CWLType_Record, CWLType_Stdout, CWLType_String, CWLType_Union, CWLType_directory, CWLType_file, DirectoryInstance, DirectoryInstance_$ctor, DirectoryInstance_$reflection, DirentInstance, DirentInstance_$reflection, FileInstance, FileInstance_$ctor, FileInstance_$reflection, InputArraySchema, InputArraySchema_$reflection, InputEnumSchema, InputEnumSchema_$reflection, InputRecordField, InputRecordField_$reflection, InputRecordSchema, InputRecordSchema_$reflection, SchemaDefRequirementType, SchemaDefRequirementType_$reflection, SchemaSaladString, SchemaSaladStringModule_importPath, SchemaSaladStringModule_includePath, SchemaSaladStringModule_literal, SchemaSaladStringModule_toDirectiveString, SchemaSaladStringModule_value, SchemaSaladString_$reflection, SchemaSaladString_Import, SchemaSaladString_Include, SchemaSaladString_Literal, SchemaSaladString__get_AsDirectiveString, SchemaSaladString__get_Value, SoftwarePackage, SoftwarePackage_$reflection };
@@ -0,0 +1,210 @@
1
+ import { IMap } from '@fable-org/fable-library-js/Util.js';
2
+ import { FSharpList } from '@fable-org/fable-library-js/List.js';
3
+ import { YAMLElement_$union } from '../fable_modules/YAMLicious.1.0.0-alpha.3/YAMLiciousTypes.fs.js';
4
+ import { Option } from '@fable-org/fable-library-js/Option.js';
5
+ import { IGetters } from '../fable_modules/YAMLicious.1.0.0-alpha.3/Decode.fs.js';
6
+ import { DynamicObj } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
7
+ import { SchemaDefRequirementType, SoftwarePackage, InputEnumSchema, InputRecordSchema, InputRecordField, InputArraySchema, CWLType_$union, SchemaSaladString_$union } from './CWLTypes.js';
8
+ import { CWLOutput, OutputBinding } from './Outputs.js';
9
+ import { HintEntry_$union, InlineJavascriptRequirementValue, ToolTimeLimitValue_$union, InplaceUpdateRequirementValue, Requirement_$union, ResourceRequirementInstance, LoadListingRequirementValue, EnvironmentDef, DockerRequirement, InitialWorkDirEntry_$union } from './Requirements.js';
10
+ import { CWLInput, InputBinding } from './Inputs.js';
11
+ import { WorkflowStep, WorkflowStepRun_$union, StepOutput_$union, StepInput, ScatterMethod_$union, PickValueMethod_$union, LinkMergeMethod_$union } from './WorkflowSteps.js';
12
+ import { CWLProcessingUnit_$union } from './CWLProcessingUnit.js';
13
+ import { CWLToolDescription } from './ToolDescription.js';
14
+ import { CWLExpressionToolDescription } from './ExpressionToolDescription.js';
15
+ import { CWLOperationDescription } from './OperationDescription.js';
16
+ import { CWLWorkflowDescription } from './WorkflowDescription.js';
17
+ import { CWLParameterReference } from './ParameterReference.js';
18
+ export declare function ResizeArray_map<$a, $b>(f: ((arg0: $a) => $b), a: $a[]): $b[];
19
+ export declare function Decode_normalizeYamlInput(yaml: string): string;
20
+ export declare function Decode_removeFullLineComments(yaml: string): string;
21
+ export declare function Decode_removeYamlComments(yamlElement: YAMLElement_$union): YAMLElement_$union;
22
+ /**
23
+ * Determines if an exception represents a recoverable decoding error.
24
+ * Returns true for schema mismatches; false for system errors that should propagate.
25
+ */
26
+ export declare function Decode_isRecoverableDecodingError(ex: Error): boolean;
27
+ export declare function Decode_readSanitizedYaml(yaml: string): YAMLElement_$union;
28
+ /**
29
+ * Decode key value pairs into a dynamic object, while preserving their tree structure
30
+ */
31
+ export declare function Decode_overflowDecoder(dynObj: DynamicObj, dict: IMap<string, YAMLElement_$union>): DynamicObj;
32
+ /**
33
+ * Decode scalar schema-salad string fields.
34
+ * Recognized directive wrappers are `$include` and `$import`.
35
+ * Unknown single-key mappings are intentionally coerced to a legacy literal `key: value` string.
36
+ */
37
+ export declare function Decode_decodeSchemaSaladString(yEle: YAMLElement_$union): SchemaSaladString_$union;
38
+ /**
39
+ * Decode a YAMLElement which is either a string or expression into a string.
40
+ * Directive objects such as {$include: path} are represented using legacy string form.
41
+ */
42
+ export declare function Decode_decodeStringOrExpression(yEle: YAMLElement_$union): string;
43
+ export declare const Decode_outputBindingGlobDecoder: (value_1: YAMLElement_$union) => OutputBinding;
44
+ export declare const Decode_outputBindingDecoder: (value: YAMLElement_$union) => Option<OutputBinding>;
45
+ export declare function Decode_decodeStringArrayOrScalar(value: YAMLElement_$union): string[];
46
+ export declare const Decode_outputSourceDecoder: (value_1: YAMLElement_$union) => Option<string[]>;
47
+ export declare const Decode_direntDecoder: (value_1: YAMLElement_$union) => CWLType_$union;
48
+ /**
49
+ * Decode a listing entry of InitialWorkDirRequirement.
50
+ * Supports both Dirent object form and string/expression form.
51
+ */
52
+ export declare function Decode_initialWorkDirEntryDecoder(value: YAMLElement_$union): InitialWorkDirEntry_$union;
53
+ /**
54
+ * Decode the contained type of a CWL Array
55
+ */
56
+ export declare function Decode_cwlSimpleTypeFromString(s: string): CWLType_$union;
57
+ /**
58
+ * Recursively parse array shorthand notation (File[][], string[][][], etc.)
59
+ */
60
+ export declare function Decode_parseArrayShorthand(typeStr: string): Option<CWLType_$union>;
61
+ export declare function inputArraySchemaDecoder$0040261(): ((arg0: YAMLElement_$union) => InputArraySchema);
62
+ export declare const inputArraySchemaDecoder$0040261$002D1: any;
63
+ export declare function inputRecordFieldDecoder$0040275(): ((arg0: YAMLElement_$union) => InputRecordField);
64
+ export declare const inputRecordFieldDecoder$0040275$002D1: any;
65
+ export declare function inputRecordSchemaDecoder$0040314(): ((arg0: YAMLElement_$union) => InputRecordSchema);
66
+ export declare const inputRecordSchemaDecoder$0040314$002D1: any;
67
+ export declare function inputEnumSchemaDecoder$0040341(): ((arg0: YAMLElement_$union) => InputEnumSchema);
68
+ export declare const inputEnumSchemaDecoder$0040341$002D1: any;
69
+ export declare const Decode_inputArraySchemaDecoder: ((arg0: YAMLElement_$union) => InputArraySchema);
70
+ export declare const Decode_inputRecordFieldDecoder: ((arg0: YAMLElement_$union) => InputRecordField);
71
+ /**
72
+ * Attempt to decode fields as flow-style array: [{name: x, type: y}]
73
+ */
74
+ export declare function Decode_tryDecodeFieldsAsArray(element: YAMLElement_$union): Option<InputRecordField[]>;
75
+ /**
76
+ * Attempt to decode fields as map-style: {fieldName: type}
77
+ */
78
+ export declare function Decode_tryDecodeFieldsAsMap(element: YAMLElement_$union): Option<InputRecordField[]>;
79
+ export declare const Decode_inputRecordSchemaDecoder: ((arg0: YAMLElement_$union) => InputRecordSchema);
80
+ export declare const Decode_inputEnumSchemaDecoder: ((arg0: YAMLElement_$union) => InputEnumSchema);
81
+ /**
82
+ * Decode a CWLType from a YAMLElement (handles all types including complex schemas)
83
+ */
84
+ export declare function Decode_cwlTypeDecoder$0027(element: YAMLElement_$union): CWLType_$union;
85
+ /**
86
+ * Match the input string to the possible CWL types and checks if it is optional
87
+ */
88
+ export declare function Decode_cwlTypeStringMatcher(t: string, get$: IGetters): [CWLType_$union, boolean];
89
+ export declare const Decode_cwlTypeDecoder: (value_1: YAMLElement_$union) => [CWLType_$union, boolean];
90
+ export declare const Decode_outputArrayDecoder: (value_1: YAMLElement_$union) => CWLOutput[];
91
+ export declare const Decode_outputsDecoder: (value: YAMLElement_$union) => CWLOutput[];
92
+ /**
93
+ * Decode a YAMLElement into a DockerRequirement
94
+ */
95
+ export declare function Decode_dockerRequirementDecoder(get$: IGetters): DockerRequirement;
96
+ /**
97
+ * Decode a YAMLElement into an EnvVarRequirement array.
98
+ * Supports both array form and map shorthand form (envName -> envValue).
99
+ */
100
+ export declare function Decode_envVarRequirementDecoder(get$: IGetters): EnvironmentDef[];
101
+ /**
102
+ * Decode a YAMLElement into a SoftwareRequirement array.
103
+ * Supports both array form and map shorthand form.
104
+ */
105
+ export declare function Decode_softwareRequirementDecoder(get$: IGetters): SoftwarePackage[];
106
+ /**
107
+ * Decode a YAMLElement into an InitialWorkDirRequirement array.
108
+ * Supports both string/expression and Dirent listing items.
109
+ */
110
+ export declare function Decode_initialWorkDirRequirementDecoder(get$: IGetters): InitialWorkDirEntry_$union[];
111
+ export declare function Decode_loadListingRequirementDecoder(get$: IGetters): LoadListingRequirementValue;
112
+ export declare function Decode_decodeResourceScalar(element: YAMLElement_$union): any;
113
+ export declare function Decode_optionalResourceField(get$: IGetters, fieldName: string): Option<any>;
114
+ /**
115
+ * Decode a YAMLElement into a ResourceRequirementInstance
116
+ */
117
+ export declare function Decode_resourceRequirementDecoder(get$: IGetters): ResourceRequirementInstance;
118
+ export declare function Decode_schemaDefRequirementTypeDecoder(value: YAMLElement_$union): SchemaDefRequirementType;
119
+ /**
120
+ * Decode a YAMLElement into a SchemaDefRequirementType array
121
+ */
122
+ export declare function Decode_schemaDefRequirementDecoder(get$: IGetters): SchemaDefRequirementType[];
123
+ export declare function Decode_tryDecodeBoolScalar(element: YAMLElement_$union): Option<boolean>;
124
+ export declare function Decode_workReuseRequirementDecoder(get$: IGetters): Requirement_$union;
125
+ export declare function Decode_networkAccessRequirementDecoder(get$: IGetters): Requirement_$union;
126
+ export declare function Decode_inplaceUpdateRequirementDecoder(get$: IGetters): InplaceUpdateRequirementValue;
127
+ /**
128
+ * Decode a YAMLElement into a ToolTimeLimitRequirement value
129
+ */
130
+ export declare function Decode_toolTimeLimitRequirementDecoder(get$: IGetters): ToolTimeLimitValue_$union;
131
+ export declare function Decode_inlineJavascriptRequirementDecoder(get$: IGetters): InlineJavascriptRequirementValue;
132
+ /**
133
+ * Decode all YAMLElements matching the Requirement type into a ResizeArray of Requirement
134
+ */
135
+ export declare function Decode_requirementFromTypeName(cls: string, get$: IGetters): Requirement_$union;
136
+ export declare function Decode_requirementArrayDecoder(yEle: YAMLElement_$union): Requirement_$union[];
137
+ export declare function Decode_tryDecodeKnownRequirementFromElement(element: YAMLElement_$union): Option<Requirement_$union>;
138
+ export declare function Decode_decodeHintElement(element: YAMLElement_$union): HintEntry_$union;
139
+ export declare function Decode_hintArrayDecoder(yEle: YAMLElement_$union): HintEntry_$union[];
140
+ export declare const Decode_requirementsDecoder: (value: YAMLElement_$union) => Option<Requirement_$union[]>;
141
+ export declare const Decode_hintsDecoder: (value: YAMLElement_$union) => Option<HintEntry_$union[]>;
142
+ export declare const Decode_inputBindingDecoder: (value_5: YAMLElement_$union) => Option<InputBinding>;
143
+ export declare const Decode_inputArrayDecoder: (value_1: YAMLElement_$union) => CWLInput[];
144
+ export declare const Decode_inputsDecoder: (value: YAMLElement_$union) => Option<CWLInput[]>;
145
+ export declare const Decode_baseCommandDecoder: (value_2: YAMLElement_$union) => Option<string[]>;
146
+ export declare const Decode_versionDecoder: (value_1: YAMLElement_$union) => string;
147
+ export declare const Decode_classDecoder: (value_1: YAMLElement_$union) => string;
148
+ export declare function Decode_stringOptionFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<string>);
149
+ export declare function Decode_boolOptionFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<boolean>);
150
+ export declare function Decode_yamlElementOptionFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<YAMLElement_$union>);
151
+ export declare function Decode_stringFieldDecoder(field: string): ((arg0: YAMLElement_$union) => string);
152
+ /**
153
+ * Decode a YAMLElement that may be a single string or an array of strings.
154
+ */
155
+ export declare function Decode_stringOrStringArrayDecoder(value: YAMLElement_$union): Option<string[]>;
156
+ /**
157
+ * Decode a YAMLElement into a ResizeArray<string> option for the source field
158
+ * Handles both single string values and arrays of strings
159
+ */
160
+ export declare function Decode_sourceArrayFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<string[]>);
161
+ export declare function Decode_linkMergeFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<LinkMergeMethod_$union>);
162
+ export declare function Decode_pickValueFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<PickValueMethod_$union>);
163
+ export declare function Decode_scatterFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<string[]>);
164
+ export declare function Decode_scatterMethodFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<ScatterMethod_$union>);
165
+ export declare function Decode_expressionStringOptionFieldDecoder(field: string): ((arg0: YAMLElement_$union) => Option<string>);
166
+ export declare function Decode_decodeStepInputFromValue(id: string, value: YAMLElement_$union, allowScalarSource: boolean): StepInput;
167
+ export declare function Decode_decodeStepInputsFromMap(value: YAMLElement_$union): StepInput[];
168
+ export declare function Decode_decodeStepInputFromArrayItem(item: YAMLElement_$union): StepInput;
169
+ export declare function Decode_decodeStepInputsFromArray(items: FSharpList<YAMLElement_$union>): StepInput[];
170
+ export declare function Decode_inputStepDecoder(value: YAMLElement_$union): StepInput[];
171
+ export declare function Decode_decodeStepOutputItem(value: YAMLElement_$union): StepOutput_$union;
172
+ export declare const Decode_outputStepsDecoder: (value_2: YAMLElement_$union) => StepOutput_$union[];
173
+ export declare const Decode_docDecoder: (value_1: YAMLElement_$union) => Option<string>;
174
+ export declare const Decode_labelDecoder: (value_1: YAMLElement_$union) => Option<string>;
175
+ export declare const Decode_intentDecoder: (value_1: YAMLElement_$union) => Option<string[]>;
176
+ export declare function Decode_hasField(fieldName: string, yamlElement: YAMLElement_$union): boolean;
177
+ export declare function Decode_withDefaultCwlVersion(defaultCwlVersion: string, yamlElement: YAMLElement_$union): YAMLElement_$union;
178
+ export declare function Decode_workflowStepRunDecoder(defaultCwlVersion: string, runValue: YAMLElement_$union): WorkflowStepRun_$union;
179
+ export declare function Decode_decodeWorkflowStepFromValueWithId(defaultCwlVersion: string, stepId: string, value: YAMLElement_$union): WorkflowStep;
180
+ export declare function Decode_decodeWorkflowStepFromArrayItem(defaultCwlVersion: string, item: YAMLElement_$union): WorkflowStep;
181
+ export declare function Decode_stepArrayDecoderWithVersion(defaultCwlVersion: string, value: YAMLElement_$union): WorkflowStep[];
182
+ export declare function Decode_stepsDecoderWithVersion(defaultCwlVersion: string): ((arg0: YAMLElement_$union) => WorkflowStep[]);
183
+ export declare function Decode_commandLineToolDecoder(yamlCWL: YAMLElement_$union): CWLToolDescription;
184
+ export declare function Decode_expressionToolDecoder(yamlCWL: YAMLElement_$union): CWLExpressionToolDescription;
185
+ export declare function Decode_operationDecoder(yamlCWL: YAMLElement_$union): CWLOperationDescription;
186
+ export declare function Decode_workflowDecoder(yamlCWL: YAMLElement_$union): CWLWorkflowDescription;
187
+ export declare function Decode_decodeCWLProcessingUnitElement(yamlCWL: YAMLElement_$union): CWLProcessingUnit_$union;
188
+ export declare const Decode_stepArrayDecoder: (value: YAMLElement_$union) => WorkflowStep[];
189
+ export declare const Decode_stepsDecoder: ((arg0: YAMLElement_$union) => WorkflowStep[]);
190
+ /**
191
+ * Decode a CWL file string written in the YAML format into a CWLToolDescription
192
+ */
193
+ export declare function Decode_decodeCommandLineTool(cwl: string): CWLToolDescription;
194
+ /**
195
+ * Decode a CWL file string written in the YAML format into a CWLWorkflowDescription
196
+ */
197
+ export declare function Decode_decodeWorkflow(cwl: string): CWLWorkflowDescription;
198
+ /**
199
+ * Decode a CWL file string written in the YAML format into a CWLExpressionToolDescription
200
+ */
201
+ export declare function Decode_decodeExpressionTool(cwl: string): CWLExpressionToolDescription;
202
+ /**
203
+ * Decode a CWL file string written in the YAML format into a CWLOperationDescription
204
+ */
205
+ export declare function Decode_decodeOperation(cwl: string): CWLOperationDescription;
206
+ export declare function Decode_decodeCWLProcessingUnit(cwl: string): CWLProcessingUnit_$union;
207
+ export declare function DecodeParameters_cwlParameterReferenceDecoder(get$: IGetters, key: string, yEle: YAMLElement_$union): CWLParameterReference;
208
+ export declare const DecodeParameters_cwlparameterReferenceArrayDecoder: (value: YAMLElement_$union) => CWLParameterReference[];
209
+ export declare function DecodeParameters_decodeYAMLParameterFile(yaml: string): CWLParameterReference[];
210
+ //# sourceMappingURL=Decode.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Decode.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/CWL/Decode.ts"],"names":[],"mappings":"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"}