@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,23 +1,23 @@
1
- import { ErrorReason$1_BadPrimitive, ErrorReason$1_BadPrimitiveExtra, ErrorReason$1_BadType, ErrorReason$1_BadPath, ErrorReason$1_BadField, ErrorReason$1_TooSmallArray, ErrorReason$1_BadOneOf, ErrorReason$1_FailMessage } from './Types.fs.js';
2
- import { join } from '../../../node_modules/@fable-org/fable-library-js/String.js';
3
- import { map as map$1, tryLast, fold, empty, append, singleton, ofSeq, reverse as reverse$1, cons, isEmpty, head, tail, length } from '../../../node_modules/@fable-org/fable-library-js/List.js';
4
- import { FSharpResult$2_Error, FSharpResult$2_Ok, Result_MapError, Result_Map } from '../../../node_modules/@fable-org/fable-library-js/Result.js';
5
- import { tryParse } from '../../../node_modules/@fable-org/fable-library-js/Guid.js';
6
- import { FSharpRef } from '../../../node_modules/@fable-org/fable-library-js/Types.js';
7
- import { tryParse as tryParse$1 } from '../../../node_modules/@fable-org/fable-library-js/Int32.js';
8
- import { toFloat64, toInt64, fromFloat64, toUInt64, fromInt32, tryParse as tryParse$3 } from '../../../node_modules/@fable-org/fable-library-js/BigInt.js';
9
- import { tryParse as tryParse$2 } from '../../../node_modules/@fable-org/fable-library-js/Long.js';
10
- import { tryParse as tryParse$4 } from '../../../node_modules/@fable-org/fable-library-js/Decimal.js';
11
- import { minValue, tryParse as tryParse$5, toUniversalTime } from '../../../node_modules/@fable-org/fable-library-js/Date.js';
12
- import { minValue as minValue$1, tryParse as tryParse$6 } from '../../../node_modules/@fable-org/fable-library-js/DateOffset.js';
13
- import { tryParse as tryParse$7 } from '../../../node_modules/@fable-org/fable-library-js/TimeSpan.js';
14
- import { some, defaultArg, value as value$1 } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
15
- import { int32ToString, defaultOf, comparePrimitives, compare } from '../../../node_modules/@fable-org/fable-library-js/Util.js';
16
- import { item, fold as fold$1, setItem, fill } from '../../../node_modules/@fable-org/fable-library-js/Array.js';
17
- import { reverse, append as append$1, toList } from '../../../node_modules/@fable-org/fable-library-js/Seq.js';
18
- import { class_type } from '../../../node_modules/@fable-org/fable-library-js/Reflection.js';
19
- import { ofList, ofSeq as ofSeq$1 } from '../../../node_modules/@fable-org/fable-library-js/Map.js';
20
- import { Big } from '../../../node_modules/@fable-org/fable-library-js/lib/big.js';
1
+ import { ErrorReason$1_BadPrimitive, ErrorReason$1_BadPrimitiveExtra, ErrorReason$1_BadType, ErrorReason$1_BadPath, ErrorReason$1_BadField, ErrorReason$1_TooSmallArray, ErrorReason$1_BadOneOf, Json_Boolean$, Json, Json_String$, Json_Number$, Json_Array$, Json_Object$, ErrorReason$1_FailMessage } from './Types.fs.js';
2
+ import { tryParse as tryParse$1 } from '../../../node_modules/@fable-org/fable-library-ts/Int32.js';
3
+ import { join } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
4
+ import { map as map$1, tryLast, fold, empty, append, singleton, ofSeq, reverse as reverse$1, cons, isEmpty, head, tail, length } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
5
+ import { FSharpResult$2_Error$, FSharpResult$2_Ok, Result_MapError, Result_Map } from '../../../node_modules/@fable-org/fable-library-ts/Result.js';
6
+ import { tryParse } from '../../../node_modules/@fable-org/fable-library-ts/Guid.js';
7
+ import { FSharpRef, Record } from '../../../node_modules/@fable-org/fable-library-ts/Types.js';
8
+ import { toFloat64, toInt64_unchecked, fromFloat64, toUInt64_unchecked, fromInt32, tryParse as tryParse$3 } from '../../../node_modules/@fable-org/fable-library-ts/BigInt.js';
9
+ import { tryParse as tryParse$2 } from '../../../node_modules/@fable-org/fable-library-ts/Long.js';
10
+ import { tryParse as tryParse$4 } from '../../../node_modules/@fable-org/fable-library-ts/Decimal.js';
11
+ import { minValue, tryParse as tryParse$5, toUniversalTime } from '../../../node_modules/@fable-org/fable-library-ts/Date.js';
12
+ import { minValue as minValue$1, tryParse as tryParse$6 } from '../../../node_modules/@fable-org/fable-library-ts/DateOffset.js';
13
+ import { tryParse as tryParse$7 } from '../../../node_modules/@fable-org/fable-library-ts/TimeSpan.js';
14
+ import { some, defaultArg, value as value$1 } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
15
+ import { int32ToString, defaultOf, comparePrimitives, compare } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
16
+ import { item, fold as fold$1, setItem, fill } from '../../../node_modules/@fable-org/fable-library-ts/Array.js';
17
+ import { reverse, append as append$1, toList, toArray } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
18
+ import { class_type } from '../../../node_modules/@fable-org/fable-library-ts/Reflection.js';
19
+ import { ofList, ofSeq as ofSeq$1 } from '../../../node_modules/@fable-org/fable-library-ts/Map.js';
20
+ import { Big } from '../../../node_modules/@fable-org/fable-library-ts/lib/big.js';
21
21
 
22
22
  function Helpers_prependPath(path, err_, err__1) {
23
23
  const err = [err_, err__1];
@@ -52,7 +52,7 @@ function errorToString(helpers, path, error) {
52
52
  case /* BadPath */
53
53
  4: {
54
54
  const fieldName = error.fields[2];
55
- reason_1 = genericMsg(helpers, error.fields[0], error.fields[1], true) + ("\nNode `" + fieldName + "` is unkown.");
55
+ reason_1 = genericMsg(helpers, error.fields[0], error.fields[1], true) + ("\nNode `" + fieldName + "` is unknown.");
56
56
  break;
57
57
  }
58
58
  case /* TooSmallArray */
@@ -89,23 +89,23 @@ function Advanced_fromValue(helpers, decoder, value_1) {
89
89
  if (matchValue.tag === /* Error */
90
90
  1) {
91
91
  const error = matchValue.fields[0];
92
- return FSharpResult$2_Error(errorToString(helpers, error[0], error[1]));
92
+ return FSharpResult$2_Error$(errorToString(helpers, error[0], error[1]));
93
93
  } else {
94
94
  return FSharpResult$2_Ok(matchValue.fields[0]);
95
95
  }
96
96
  }
97
97
  const string = {
98
98
  Decode(helpers, value_1) {
99
- return helpers.isString(value_1) ? FSharpResult$2_Ok(helpers.asString(value_1)) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a string", value_1)]);
99
+ return helpers.isString(value_1) ? FSharpResult$2_Ok(helpers.asString(value_1)) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a string", value_1)]);
100
100
  }
101
101
  };
102
102
  const char = {
103
103
  Decode(helpers, value_1) {
104
104
  if (helpers.isString(value_1)) {
105
105
  const str = helpers.asString(value_1);
106
- return str.length === 1 ? FSharpResult$2_Ok(str[0]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a single character string", value_1)]);
106
+ return str.length === 1 ? FSharpResult$2_Ok(str[0]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a single character string", value_1)]);
107
107
  } else {
108
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a char", value_1)]);
108
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a char", value_1)]);
109
109
  }
110
110
  }
111
111
  };
@@ -117,15 +117,15 @@ const guid = {
117
117
  matchValue = [tryParse(helpers.asString(value_1), new FSharpRef(() => outArg, (v) => {
118
118
  outArg = v;
119
119
  })), outArg];
120
- return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a guid", value_1)]);
120
+ return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a guid", value_1)]);
121
121
  } else {
122
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a guid", value_1)]);
122
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a guid", value_1)]);
123
123
  }
124
124
  }
125
125
  };
126
126
  const unit = {
127
127
  Decode(helpers, value_1) {
128
- return helpers.isNullValue(value_1) ? FSharpResult$2_Ok(void 0) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("null", value_1)]);
128
+ return helpers.isNullValue(value_1) ? FSharpResult$2_Ok(void 0) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("null", value_1)]);
129
129
  }
130
130
  };
131
131
  const sbyte = {
@@ -133,19 +133,19 @@ const sbyte = {
133
133
  if (helpers.isNumber(value_2)) {
134
134
  if (helpers.isIntegralValue(value_2)) {
135
135
  const floatValue = helpers.asFloat(value_2);
136
- return -128 <= floatValue && floatValue <= 127 ? FSharpResult$2_Ok((floatValue + 128 & 255) - 128) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("a sbyte", value_2, "Value was either too large or too small for a sbyte")]);
136
+ return -128 <= floatValue && floatValue <= 127 ? FSharpResult$2_Ok((floatValue + 128 & 255) - 128) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("a sbyte", value_2, "Value was either too large or too small for a sbyte")]);
137
137
  } else {
138
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("a sbyte", value_2, "Value is not an integral value")]);
138
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("a sbyte", value_2, "Value is not an integral value")]);
139
139
  }
140
140
  } else if (helpers.isString(value_2)) {
141
141
  let matchValue;
142
142
  let outArg = 0;
143
- matchValue = [tryParse$1(helpers.asString(value_2), 511, false, 8, new FSharpRef(() => outArg, (v) => {
143
+ matchValue = [tryParse$1(helpers.asString(value_2), 511, false, 8, new FSharpRef(() => outArg | 0, (v) => {
144
144
  outArg = v | 0;
145
145
  })), outArg];
146
- return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a sbyte", value_2)]);
146
+ return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a sbyte", value_2)]);
147
147
  } else {
148
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a sbyte", value_2)]);
148
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a sbyte", value_2)]);
149
149
  }
150
150
  }
151
151
  };
@@ -154,9 +154,9 @@ const byte = {
154
154
  if (helpers.isNumber(value_2)) {
155
155
  if (helpers.isIntegralValue(value_2)) {
156
156
  const floatValue = helpers.asFloat(value_2);
157
- return 0 <= floatValue && floatValue <= 255 ? FSharpResult$2_Ok(floatValue & 255) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("a byte", value_2, "Value was either too large or too small for a byte")]);
157
+ return 0 <= floatValue && floatValue <= 255 ? FSharpResult$2_Ok(floatValue & 255) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("a byte", value_2, "Value was either too large or too small for a byte")]);
158
158
  } else {
159
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("a byte", value_2, "Value is not an integral value")]);
159
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("a byte", value_2, "Value is not an integral value")]);
160
160
  }
161
161
  } else if (helpers.isString(value_2)) {
162
162
  let matchValue;
@@ -164,9 +164,9 @@ const byte = {
164
164
  matchValue = [tryParse$1(helpers.asString(value_2), 511, true, 8, new FSharpRef(() => outArg, (v) => {
165
165
  outArg = v;
166
166
  })), outArg];
167
- return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a byte", value_2)]);
167
+ return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a byte", value_2)]);
168
168
  } else {
169
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a byte", value_2)]);
169
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a byte", value_2)]);
170
170
  }
171
171
  }
172
172
  };
@@ -175,19 +175,19 @@ const int16 = {
175
175
  if (helpers.isNumber(value_2)) {
176
176
  if (helpers.isIntegralValue(value_2)) {
177
177
  const floatValue = helpers.asFloat(value_2);
178
- return -32768 <= floatValue && floatValue <= 32767 ? FSharpResult$2_Ok((floatValue + 32768 & 65535) - 32768) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("an int16", value_2, "Value was either too large or too small for an int16")]);
178
+ return -32768 <= floatValue && floatValue <= 32767 ? FSharpResult$2_Ok((floatValue + 32768 & 65535) - 32768) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("an int16", value_2, "Value was either too large or too small for an int16")]);
179
179
  } else {
180
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("an int16", value_2, "Value is not an integral value")]);
180
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("an int16", value_2, "Value is not an integral value")]);
181
181
  }
182
182
  } else if (helpers.isString(value_2)) {
183
183
  let matchValue;
184
184
  let outArg = 0;
185
- matchValue = [tryParse$1(helpers.asString(value_2), 511, false, 16, new FSharpRef(() => outArg, (v) => {
185
+ matchValue = [tryParse$1(helpers.asString(value_2), 511, false, 16, new FSharpRef(() => outArg | 0, (v) => {
186
186
  outArg = v | 0;
187
187
  })), outArg];
188
- return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an int16", value_2)]);
188
+ return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an int16", value_2)]);
189
189
  } else {
190
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an int16", value_2)]);
190
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an int16", value_2)]);
191
191
  }
192
192
  }
193
193
  };
@@ -196,9 +196,9 @@ const uint16 = {
196
196
  if (helpers.isNumber(value_2)) {
197
197
  if (helpers.isIntegralValue(value_2)) {
198
198
  const floatValue = helpers.asFloat(value_2);
199
- return 0 <= floatValue && floatValue <= 65535 ? FSharpResult$2_Ok(floatValue & 65535) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("an uint16", value_2, "Value was either too large or too small for an uint16")]);
199
+ return 0 <= floatValue && floatValue <= 65535 ? FSharpResult$2_Ok(floatValue & 65535) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("an uint16", value_2, "Value was either too large or too small for an uint16")]);
200
200
  } else {
201
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("an uint16", value_2, "Value is not an integral value")]);
201
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("an uint16", value_2, "Value is not an integral value")]);
202
202
  }
203
203
  } else if (helpers.isString(value_2)) {
204
204
  let matchValue;
@@ -206,9 +206,9 @@ const uint16 = {
206
206
  matchValue = [tryParse$1(helpers.asString(value_2), 511, true, 16, new FSharpRef(() => outArg, (v) => {
207
207
  outArg = v;
208
208
  })), outArg];
209
- return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an uint16", value_2)]);
209
+ return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an uint16", value_2)]);
210
210
  } else {
211
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an uint16", value_2)]);
211
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an uint16", value_2)]);
212
212
  }
213
213
  }
214
214
  };
@@ -217,19 +217,19 @@ const int = {
217
217
  if (helpers.isNumber(value_2)) {
218
218
  if (helpers.isIntegralValue(value_2)) {
219
219
  const floatValue = helpers.asFloat(value_2);
220
- return -2147483648 <= floatValue && floatValue <= 2147483647 ? FSharpResult$2_Ok(~~floatValue) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("an int", value_2, "Value was either too large or too small for an int")]);
220
+ return -2147483648 <= floatValue && floatValue <= 2147483647 ? FSharpResult$2_Ok(~~floatValue) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("an int", value_2, "Value was either too large or too small for an int")]);
221
221
  } else {
222
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("an int", value_2, "Value is not an integral value")]);
222
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("an int", value_2, "Value is not an integral value")]);
223
223
  }
224
224
  } else if (helpers.isString(value_2)) {
225
225
  let matchValue;
226
226
  let outArg = 0;
227
- matchValue = [tryParse$1(helpers.asString(value_2), 511, false, 32, new FSharpRef(() => outArg, (v) => {
227
+ matchValue = [tryParse$1(helpers.asString(value_2), 511, false, 32, new FSharpRef(() => outArg | 0, (v) => {
228
228
  outArg = v | 0;
229
229
  })), outArg];
230
- return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an int", value_2)]);
230
+ return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an int", value_2)]);
231
231
  } else {
232
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an int", value_2)]);
232
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an int", value_2)]);
233
233
  }
234
234
  }
235
235
  };
@@ -238,9 +238,9 @@ const uint32 = {
238
238
  if (helpers.isNumber(value_2)) {
239
239
  if (helpers.isIntegralValue(value_2)) {
240
240
  const floatValue = helpers.asFloat(value_2);
241
- return 0 <= floatValue && floatValue <= 4294967295 ? FSharpResult$2_Ok(floatValue >>> 0) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("an uint32", value_2, "Value was either too large or too small for an uint32")]);
241
+ return 0 <= floatValue && floatValue <= 4294967295 ? FSharpResult$2_Ok(floatValue >>> 0) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("an uint32", value_2, "Value was either too large or too small for an uint32")]);
242
242
  } else {
243
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("an uint32", value_2, "Value is not an integral value")]);
243
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("an uint32", value_2, "Value is not an integral value")]);
244
244
  }
245
245
  } else if (helpers.isString(value_2)) {
246
246
  let matchValue;
@@ -248,9 +248,9 @@ const uint32 = {
248
248
  matchValue = [tryParse$1(helpers.asString(value_2), 511, true, 32, new FSharpRef(() => outArg, (v) => {
249
249
  outArg = v;
250
250
  })), outArg];
251
- return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an uint32", value_2)]);
251
+ return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an uint32", value_2)]);
252
252
  } else {
253
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an uint32", value_2)]);
253
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an uint32", value_2)]);
254
254
  }
255
255
  }
256
256
  };
@@ -259,9 +259,9 @@ const int64 = {
259
259
  if (helpers.isNumber(value_2)) {
260
260
  if (helpers.isIntegralValue(value_2)) {
261
261
  const floatValue = helpers.asFloat(value_2);
262
- return toFloat64(-9223372036854775808n) <= floatValue && floatValue <= toFloat64(9223372036854775807n) ? FSharpResult$2_Ok(toInt64(fromFloat64(floatValue))) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("an int64", value_2, "Value was either too large or too small for an int64")]);
262
+ return toFloat64(-9223372036854775808n) <= floatValue && floatValue <= toFloat64(9223372036854775807n) ? FSharpResult$2_Ok(toInt64_unchecked(fromFloat64(floatValue))) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("an int64", value_2, "Value was either too large or too small for an int64")]);
263
263
  } else {
264
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("an int64", value_2, "Value is not an integral value")]);
264
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("an int64", value_2, "Value is not an integral value")]);
265
265
  }
266
266
  } else if (helpers.isString(value_2)) {
267
267
  let matchValue;
@@ -269,9 +269,9 @@ const int64 = {
269
269
  matchValue = [tryParse$2(helpers.asString(value_2), 511, false, 64, new FSharpRef(() => outArg, (v) => {
270
270
  outArg = v;
271
271
  })), outArg];
272
- return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an int64", value_2)]);
272
+ return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an int64", value_2)]);
273
273
  } else {
274
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an int64", value_2)]);
274
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an int64", value_2)]);
275
275
  }
276
276
  }
277
277
  };
@@ -280,9 +280,9 @@ const uint64 = {
280
280
  if (helpers.isNumber(value_2)) {
281
281
  if (helpers.isIntegralValue(value_2)) {
282
282
  const floatValue = helpers.asFloat(value_2);
283
- return toFloat64(0n) <= floatValue && floatValue <= toFloat64(18446744073709551615n) ? FSharpResult$2_Ok(toUInt64(fromFloat64(floatValue))) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("an uint64", value_2, "Value was either too large or too small for an uint64")]);
283
+ return toFloat64(0n) <= floatValue && floatValue <= toFloat64(18446744073709551615n) ? FSharpResult$2_Ok(toUInt64_unchecked(fromFloat64(floatValue))) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("an uint64", value_2, "Value was either too large or too small for an uint64")]);
284
284
  } else {
285
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitiveExtra("an uint64", value_2, "Value is not an integral value")]);
285
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitiveExtra("an uint64", value_2, "Value is not an integral value")]);
286
286
  }
287
287
  } else if (helpers.isString(value_2)) {
288
288
  let matchValue;
@@ -290,9 +290,9 @@ const uint64 = {
290
290
  matchValue = [tryParse$2(helpers.asString(value_2), 511, true, 64, new FSharpRef(() => outArg, (v) => {
291
291
  outArg = v;
292
292
  })), outArg];
293
- return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an uint64", value_2)]);
293
+ return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an uint64", value_2)]);
294
294
  } else {
295
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an uint64", value_2)]);
295
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an uint64", value_2)]);
296
296
  }
297
297
  }
298
298
  };
@@ -306,25 +306,25 @@ const bigint = {
306
306
  parseResult = [tryParse$3(helpers.asString(value_1), new FSharpRef(() => outArg, (v) => {
307
307
  outArg = v;
308
308
  })), outArg];
309
- return parseResult[0] ? FSharpResult$2_Ok(parseResult[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a bigint", value_1)]);
309
+ return parseResult[0] ? FSharpResult$2_Ok(parseResult[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a bigint", value_1)]);
310
310
  } else {
311
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a bigint", value_1)]);
311
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a bigint", value_1)]);
312
312
  }
313
313
  }
314
314
  };
315
315
  const bool = {
316
316
  Decode(helpers, value_1) {
317
- return helpers.isBoolean(value_1) ? FSharpResult$2_Ok(helpers.asBoolean(value_1)) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a boolean", value_1)]);
317
+ return helpers.isBoolean(value_1) ? FSharpResult$2_Ok(helpers.asBoolean(value_1)) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a boolean", value_1)]);
318
318
  }
319
319
  };
320
320
  const float = {
321
321
  Decode(helpers, value_1) {
322
- return helpers.isNumber(value_1) ? FSharpResult$2_Ok(helpers.asFloat(value_1)) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a float", value_1)]);
322
+ return helpers.isNumber(value_1) ? FSharpResult$2_Ok(helpers.asFloat(value_1)) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a float", value_1)]);
323
323
  }
324
324
  };
325
325
  const float32 = {
326
326
  Decode(helpers, value_1) {
327
- return helpers.isNumber(value_1) ? FSharpResult$2_Ok(helpers.asFloat32(value_1)) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a float32", value_1)]);
327
+ return helpers.isNumber(value_1) ? FSharpResult$2_Ok(helpers.asFloat32(value_1)) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a float32", value_1)]);
328
328
  }
329
329
  };
330
330
  const decimal = {
@@ -337,9 +337,9 @@ const decimal = {
337
337
  matchValue = [tryParse$4(helpers.asString(value_1), new FSharpRef(() => outArg, (v) => {
338
338
  outArg = v;
339
339
  })), outArg];
340
- return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a decimal", value_1)]);
340
+ return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a decimal", value_1)]);
341
341
  } else {
342
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a decimal", value_1)]);
342
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a decimal", value_1)]);
343
343
  }
344
344
  }
345
345
  };
@@ -351,9 +351,9 @@ const datetimeUtc = {
351
351
  matchValue = [tryParse$5(helpers.asString(value_1), new FSharpRef(() => outArg, (v) => {
352
352
  outArg = v;
353
353
  })), outArg];
354
- return matchValue[0] ? FSharpResult$2_Ok(toUniversalTime(matchValue[1])) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a datetime", value_1)]);
354
+ return matchValue[0] ? FSharpResult$2_Ok(toUniversalTime(matchValue[1])) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a datetime", value_1)]);
355
355
  } else {
356
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a datetime", value_1)]);
356
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a datetime", value_1)]);
357
357
  }
358
358
  }
359
359
  };
@@ -365,9 +365,9 @@ const datetimeLocal = {
365
365
  matchValue = [tryParse$5(helpers.asString(value_1), new FSharpRef(() => outArg, (v) => {
366
366
  outArg = v;
367
367
  })), outArg];
368
- return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a datetime", value_1)]);
368
+ return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a datetime", value_1)]);
369
369
  } else {
370
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a datetime", value_1)]);
370
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a datetime", value_1)]);
371
371
  }
372
372
  }
373
373
  };
@@ -379,9 +379,9 @@ const datetimeOffset = {
379
379
  matchValue = [tryParse$6(helpers.asString(value_1), new FSharpRef(() => outArg, (v) => {
380
380
  outArg = v;
381
381
  })), outArg];
382
- return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a datetimeoffset", value_1)]);
382
+ return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a datetimeoffset", value_1)]);
383
383
  } else {
384
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a datetime", value_1)]);
384
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a datetime", value_1)]);
385
385
  }
386
386
  }
387
387
  };
@@ -393,21 +393,21 @@ const timespan = {
393
393
  matchValue = [tryParse$7(helpers.asString(value_1), new FSharpRef(() => outArg, (v) => {
394
394
  outArg = v;
395
395
  })), outArg];
396
- return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a timespan", value_1)]);
396
+ return matchValue[0] ? FSharpResult$2_Ok(matchValue[1]) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a timespan", value_1)]);
397
397
  } else {
398
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a timespan", value_1)]);
398
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a timespan", value_1)]);
399
399
  }
400
400
  }
401
401
  };
402
402
  function decodeMaybeNull(helpers, path, decoder, value_1) {
403
- let tupledArg;
403
+ let tupledArg = void 0;
404
404
  if (helpers.isNullValue(value_1)) {
405
405
  return FSharpResult$2_Ok(void 0);
406
406
  } else {
407
407
  const matchValue = decoder.Decode(helpers, value_1);
408
408
  if (matchValue.tag === /* Error */
409
409
  1) {
410
- return FSharpResult$2_Error((tupledArg = matchValue.fields[0], Helpers_prependPath(path, tupledArg[0], tupledArg[1])));
410
+ return FSharpResult$2_Error$((tupledArg = matchValue.fields[0], Helpers_prependPath(path, tupledArg[0], tupledArg[1])));
411
411
  } else {
412
412
  return FSharpResult$2_Ok(some(matchValue.fields[0]));
413
413
  }
@@ -416,28 +416,28 @@ function decodeMaybeNull(helpers, path, decoder, value_1) {
416
416
  function optional(fieldName, decoder) {
417
417
  return {
418
418
  Decode(helpers, value_1) {
419
- return helpers.isObject(value_1) ? helpers.hasProperty(fieldName, value_1) ? decodeMaybeNull(helpers, "." + fieldName, decoder, helpers.getProperty(fieldName, value_1)) : FSharpResult$2_Ok(void 0) : FSharpResult$2_Error(["", ErrorReason$1_BadType("an object", value_1)]);
419
+ return helpers.isObject(value_1) ? helpers.hasProperty(fieldName, value_1) ? decodeMaybeNull(helpers, "." + fieldName, decoder, helpers.getProperty(fieldName, value_1)) : FSharpResult$2_Ok(void 0) : FSharpResult$2_Error$(["", ErrorReason$1_BadType("an object", value_1)]);
420
420
  }
421
421
  };
422
422
  }
423
423
  function badPathError(fieldNames, currentPath, value_1) {
424
- return FSharpResult$2_Error(["." + defaultArg(currentPath, join(".", fieldNames)), ErrorReason$1_BadPath("an object with path `" + join(".", fieldNames) + "`", value_1, defaultArg(tryLast(fieldNames), ""))]);
424
+ return FSharpResult$2_Error$(["." + defaultArg(currentPath, join(".", fieldNames)), ErrorReason$1_BadPath("an object with path `" + join(".", fieldNames) + "`", value_1, defaultArg(tryLast(fieldNames), ""))]);
425
425
  }
426
426
  function map2(ctor, d1, d2) {
427
427
  return {
428
428
  Decode(helpers, value_1) {
429
- let er_1, v1, v2;
429
+ let er_1 = void 0, v1 = void 0, v2 = void 0;
430
430
  const matchValue = d1.Decode(helpers, value_1);
431
431
  const matchValue_1 = d2.Decode(helpers, value_1);
432
432
  const copyOfStruct = matchValue;
433
433
  if (copyOfStruct.tag === /* Error */
434
434
  1) {
435
435
  const er = copyOfStruct.fields[0];
436
- return FSharpResult$2_Error(er);
436
+ return FSharpResult$2_Error$(er);
437
437
  } else {
438
438
  const copyOfStruct_1 = matchValue_1;
439
439
  return copyOfStruct_1.tag === /* Error */
440
- 1 ? (er_1 = copyOfStruct_1.fields[0], FSharpResult$2_Error(er_1)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], FSharpResult$2_Ok(ctor(v1, v2)));
440
+ 1 ? (er_1 = copyOfStruct_1.fields[0], FSharpResult$2_Error$(er_1)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], FSharpResult$2_Ok(ctor(v1, v2)));
441
441
  }
442
442
  }
443
443
  };
@@ -459,7 +459,7 @@ function optionalAt(fieldNames, decoder) {
459
459
  return [curPath, curValue, FSharpResult$2_Ok(void 0)];
460
460
  }
461
461
  } else {
462
- return [curPath, curValue, FSharpResult$2_Error([curPath, ErrorReason$1_BadType("an object", curValue)])];
462
+ return [curPath, curValue, FSharpResult$2_Error$([curPath, ErrorReason$1_BadType("an object", curValue)])];
463
463
  }
464
464
  } else {
465
465
  return [curPath, curValue, res];
@@ -483,10 +483,10 @@ function field(fieldName, decoder) {
483
483
  const path = "." + fieldName;
484
484
  return Result_MapError((tupledArg) => Helpers_prependPath(path, tupledArg[0], tupledArg[1]), decoder.Decode(helpers, fieldValue));
485
485
  } else {
486
- return FSharpResult$2_Error(["", ErrorReason$1_BadField("an object with a field named `" + fieldName + "`", value_1)]);
486
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadField("an object with a field named `" + fieldName + "`", value_1)]);
487
487
  }
488
488
  } else {
489
- return FSharpResult$2_Error(["", ErrorReason$1_BadType("an object", value_1)]);
489
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadType("an object", value_1)]);
490
490
  }
491
491
  }
492
492
  };
@@ -508,7 +508,7 @@ function at(fieldNames, decoder) {
508
508
  return [curPath, curValue, badPathError(fieldNames, void 0, firstValue)];
509
509
  }
510
510
  } else {
511
- return [curPath, curValue, FSharpResult$2_Error([curPath, ErrorReason$1_BadType("an object", curValue)])];
511
+ return [curPath, curValue, FSharpResult$2_Error$([curPath, ErrorReason$1_BadType("an object", curValue)])];
512
512
  }
513
513
  } else {
514
514
  return [curPath, curValue, res];
@@ -524,9 +524,9 @@ function index(requestedIndex, decoder) {
524
524
  if (helpers.isArray(value_1)) {
525
525
  const vArray = helpers.asArray(value_1);
526
526
  const path = ".[" + int32ToString(requestedIndex) + "]";
527
- return requestedIndex < vArray.length ? Result_MapError((tupledArg) => Helpers_prependPath(path, tupledArg[0], tupledArg[1]), decoder.Decode(helpers, item(requestedIndex, vArray))) : FSharpResult$2_Error([path, ErrorReason$1_TooSmallArray("a longer array. Need index `" + int32ToString(requestedIndex) + "` but there are only `" + int32ToString(vArray.length) + "` entries", value_1)]);
527
+ return requestedIndex < vArray.length ? Result_MapError((tupledArg) => Helpers_prependPath(path, tupledArg[0], tupledArg[1]), decoder.Decode(helpers, item(requestedIndex, vArray))) : FSharpResult$2_Error$([path, ErrorReason$1_TooSmallArray("a longer array. Need index `" + int32ToString(requestedIndex) + "` but there are only `" + int32ToString(vArray.length) + "` entries", value_1)]);
528
528
  } else {
529
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an array", value_1)]);
529
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an array", value_1)]);
530
530
  }
531
531
  }
532
532
  };
@@ -534,13 +534,13 @@ function index(requestedIndex, decoder) {
534
534
  function list(decoder) {
535
535
  return {
536
536
  Decode(helpers, value_1) {
537
- let tupledArg;
538
537
  if (helpers.isArray(value_1)) {
539
538
  const tokens = helpers.asArray(value_1);
540
539
  let i = 0;
541
540
  let result = empty();
542
541
  let error = void 0;
543
542
  while (i < tokens.length && error == null) {
543
+ let tupledArg = void 0;
544
544
  const value_2 = item(i, tokens);
545
545
  const matchValue = decoder.Decode(helpers, value_2);
546
546
  if (matchValue.tag === /* Error */
@@ -553,9 +553,9 @@ function list(decoder) {
553
553
  }
554
554
  i = i + 1 | 0;
555
555
  }
556
- return error == null ? FSharpResult$2_Ok(result) : FSharpResult$2_Error(value$1(error));
556
+ return error == null ? FSharpResult$2_Ok(result) : FSharpResult$2_Error$(value$1(error));
557
557
  } else {
558
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a list", value_1)]);
558
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a list", value_1)]);
559
559
  }
560
560
  }
561
561
  };
@@ -563,13 +563,13 @@ function list(decoder) {
563
563
  function resizeArray(decoder) {
564
564
  return {
565
565
  Decode(helpers, value_1) {
566
- let tupledArg;
567
566
  if (helpers.isArray(value_1)) {
568
567
  const tokens = helpers.asArray(value_1);
569
568
  let i = 0;
570
569
  const result = [];
571
570
  let error = void 0;
572
571
  while (i < tokens.length && error == null) {
572
+ let tupledArg = void 0;
573
573
  const value_2 = item(i, tokens);
574
574
  const matchValue = decoder.Decode(helpers, value_2);
575
575
  if (matchValue.tag === /* Error */
@@ -582,9 +582,9 @@ function resizeArray(decoder) {
582
582
  }
583
583
  i = i + 1 | 0;
584
584
  }
585
- return error == null ? FSharpResult$2_Ok(Array.from(result)) : FSharpResult$2_Error(value$1(error));
585
+ return error == null ? FSharpResult$2_Ok(Array.from(result)) : FSharpResult$2_Error$(value$1(error));
586
586
  } else {
587
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a ResizeArray", value_1)]);
587
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a ResizeArray", value_1)]);
588
588
  }
589
589
  }
590
590
  };
@@ -595,7 +595,7 @@ function seq(decoder) {
595
595
  if (helpers.isArray(value_1)) {
596
596
  let i = -1;
597
597
  return Result_Map(reverse, fold$1((acc, value_2) => {
598
- let tupledArg;
598
+ let tupledArg = void 0;
599
599
  i = i + 1 | 0;
600
600
  if (acc.tag === /* Ok */
601
601
  0) {
@@ -605,14 +605,14 @@ function seq(decoder) {
605
605
  0) {
606
606
  return FSharpResult$2_Ok(append$1([matchValue.fields[0]], acc_1));
607
607
  } else {
608
- return FSharpResult$2_Error((tupledArg = matchValue.fields[0], Helpers_prependPath(".[" + int32ToString(i) + "]", tupledArg[0], tupledArg[1])));
608
+ return FSharpResult$2_Error$((tupledArg = matchValue.fields[0], Helpers_prependPath(".[" + int32ToString(i) + "]", tupledArg[0], tupledArg[1])));
609
609
  }
610
610
  } else {
611
611
  return acc;
612
612
  }
613
613
  }, FSharpResult$2_Ok([]), helpers.asArray(value_1)));
614
614
  } else {
615
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("a seq", value_1)]);
615
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("a seq", value_1)]);
616
616
  }
617
617
  }
618
618
  };
@@ -624,7 +624,7 @@ function array(decoder) {
624
624
  let i = -1;
625
625
  const tokens = helpers.asArray(value_1);
626
626
  return fold$1((acc, value_2) => {
627
- let tupledArg;
627
+ let tupledArg = void 0;
628
628
  i = i + 1 | 0;
629
629
  if (acc.tag === /* Ok */
630
630
  0) {
@@ -636,21 +636,21 @@ function array(decoder) {
636
636
  setItem(acc_1, i, value_3);
637
637
  return FSharpResult$2_Ok(acc_1);
638
638
  } else {
639
- return FSharpResult$2_Error((tupledArg = matchValue.fields[0], Helpers_prependPath(".[" + int32ToString(i) + "]", tupledArg[0], tupledArg[1])));
639
+ return FSharpResult$2_Error$((tupledArg = matchValue.fields[0], Helpers_prependPath(".[" + int32ToString(i) + "]", tupledArg[0], tupledArg[1])));
640
640
  }
641
641
  } else {
642
642
  return acc;
643
643
  }
644
644
  }, FSharpResult$2_Ok(fill(new Array(tokens.length), 0, tokens.length, null)), tokens);
645
645
  } else {
646
- return FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an array", value_1)]);
646
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an array", value_1)]);
647
647
  }
648
648
  }
649
649
  };
650
650
  }
651
651
  const keys = {
652
652
  Decode(helpers, value_1) {
653
- return helpers.isObject(value_1) ? FSharpResult$2_Ok(ofSeq(helpers.getProperties(value_1))) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("an object", value_1)]);
653
+ return helpers.isObject(value_1) ? FSharpResult$2_Ok(ofSeq(helpers.getProperties(value_1))) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("an object", value_1)]);
654
654
  }
655
655
  };
656
656
  function keyValuePairs(decoder) {
@@ -658,7 +658,7 @@ function keyValuePairs(decoder) {
658
658
  Decode(helpers, value_1) {
659
659
  const matchValue = keys.Decode(helpers, value_1);
660
660
  return matchValue.tag === /* Error */
661
- 1 ? FSharpResult$2_Error(matchValue.fields[0]) : Result_Map(reverse$1, fold((acc, prop) => {
661
+ 1 ? FSharpResult$2_Error$(matchValue.fields[0]) : Result_Map(reverse$1, fold((acc, prop) => {
662
662
  if (acc.tag === /* Ok */
663
663
  0) {
664
664
  const acc_1 = acc.fields[0];
@@ -668,7 +668,8 @@ function keyValuePairs(decoder) {
668
668
  0) {
669
669
  return FSharpResult$2_Ok(cons([prop, matchValue_1.fields[0]], acc_1));
670
670
  } else {
671
- return FSharpResult$2_Error(matchValue_1.fields[0]);
671
+ const er = matchValue_1.fields[0];
672
+ return FSharpResult$2_Error$(Helpers_prependPath("." + prop, er[0], er[1]));
672
673
  }
673
674
  } else {
674
675
  return acc;
@@ -685,7 +686,7 @@ function oneOf(decoders) {
685
686
  while (true) {
686
687
  const decoders_1 = decoders_1_mut, errors = errors_mut;
687
688
  if (isEmpty(decoders_1)) {
688
- return FSharpResult$2_Error(["", ErrorReason$1_BadOneOf(errors)]);
689
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadOneOf(errors)]);
689
690
  } else {
690
691
  const matchValue = head(decoders_1).Decode(helpers, value_1);
691
692
  if (matchValue.tag === /* Error */
@@ -707,13 +708,77 @@ function oneOf(decoders) {
707
708
  function nil(output) {
708
709
  return {
709
710
  Decode(helpers, value_1) {
710
- return helpers.isNullValue(value_1) ? FSharpResult$2_Ok(output) : FSharpResult$2_Error(["", ErrorReason$1_BadPrimitive("null", value_1)]);
711
+ return helpers.isNullValue(value_1) ? FSharpResult$2_Ok(output) : FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("null", value_1)]);
711
712
  }
712
713
  };
713
714
  }
714
- function value(_arg, v) {
715
- return FSharpResult$2_Ok(v);
715
+ class ValueDecoder {
716
+ constructor() {
717
+ }
718
+ Decode(helpers, value_1) {
719
+ const this$ = this;
720
+ const decoder = this$;
721
+ if (helpers.isBoolean(value_1)) {
722
+ return FSharpResult$2_Ok(Json_Boolean$(helpers.asBoolean(value_1)));
723
+ } else if (helpers.isNullValue(value_1)) {
724
+ return FSharpResult$2_Ok(Json.Null);
725
+ } else if (helpers.isString(value_1)) {
726
+ return FSharpResult$2_Ok(Json_String$(helpers.asString(value_1)));
727
+ } else if (helpers.isNumber(value_1)) {
728
+ return FSharpResult$2_Ok(Json_Number$(helpers.asFloat(value_1)));
729
+ } else if (helpers.isArray(value_1)) {
730
+ const tokens = helpers.asArray(value_1);
731
+ const result = fill(new Array(tokens.length), 0, tokens.length, null);
732
+ let i = 0;
733
+ let error = void 0;
734
+ while (i < tokens.length && error == null) {
735
+ let tupledArg = void 0;
736
+ const value_2 = item(i, tokens);
737
+ const matchValue = decoder.Decode(helpers, value_2);
738
+ if (matchValue.tag === /* Error */
739
+ 1) {
740
+ const x = (tupledArg = matchValue.fields[0], Helpers_prependPath(`.[${i}]`, tupledArg[0], tupledArg[1]));
741
+ error = x;
742
+ } else {
743
+ const value_3 = matchValue.fields[0];
744
+ setItem(result, i, value_3);
745
+ }
746
+ i = i + 1 | 0;
747
+ }
748
+ return error == null ? FSharpResult$2_Ok(Json_Array$(toList(result))) : FSharpResult$2_Error$(value$1(error));
749
+ } else if (helpers.isObject(value_1)) {
750
+ const props = toArray(helpers.getProperties(value_1));
751
+ const result_1 = fill(new Array(props.length), 0, props.length, null);
752
+ let i_1 = 0;
753
+ let error_1 = void 0;
754
+ while (i_1 < props.length && error_1 == null) {
755
+ let tupledArg_1 = void 0;
756
+ const key = item(i_1, props);
757
+ const value_4 = helpers.getProperty(key, value_1);
758
+ const matchValue_1 = decoder.Decode(helpers, value_4);
759
+ if (matchValue_1.tag === /* Error */
760
+ 1) {
761
+ const x_1 = (tupledArg_1 = matchValue_1.fields[0], Helpers_prependPath("." + key, tupledArg_1[0], tupledArg_1[1]));
762
+ error_1 = x_1;
763
+ } else {
764
+ const value_5 = matchValue_1.fields[0];
765
+ setItem(result_1, i_1, [key, value_5]);
766
+ }
767
+ i_1 = i_1 + 1 | 0;
768
+ }
769
+ return error_1 == null ? FSharpResult$2_Ok(Json_Object$(toList(result_1))) : FSharpResult$2_Error$(value$1(error_1));
770
+ } else {
771
+ return FSharpResult$2_Error$(["", ErrorReason$1_BadPrimitive("any", value_1)]);
772
+ }
773
+ }
716
774
  }
775
+ function ValueDecoder_$reflection() {
776
+ return class_type("Thoth.Json.Core.Decode.ValueDecoder", void 0, ValueDecoder);
777
+ }
778
+ function ValueDecoder_$ctor() {
779
+ return new ValueDecoder();
780
+ }
781
+ const value = ValueDecoder_$ctor();
717
782
  function succeed(output) {
718
783
  return {
719
784
  Decode(_arg, _arg_1) {
@@ -724,7 +789,7 @@ function succeed(output) {
724
789
  function fail(msg) {
725
790
  return {
726
791
  Decode(_arg, _arg_1) {
727
- return FSharpResult$2_Error(["", ErrorReason$1_FailMessage(msg)]);
792
+ return FSharpResult$2_Error$(["", ErrorReason$1_FailMessage(msg)]);
728
793
  }
729
794
  };
730
795
  }
@@ -737,7 +802,7 @@ function andThen(cb, decoder) {
737
802
  const result = matchValue.fields[0];
738
803
  return cb(result).Decode(helpers, value_1);
739
804
  } else {
740
- return FSharpResult$2_Error(matchValue.fields[0]);
805
+ return FSharpResult$2_Error$(matchValue.fields[0]);
741
806
  }
742
807
  }
743
808
  };
@@ -755,7 +820,7 @@ function all(decoders) {
755
820
  const matchValue = head(decoders_1).Decode(helpers, value_1);
756
821
  if (matchValue.tag === /* Error */
757
822
  1) {
758
- return FSharpResult$2_Error(matchValue.fields[0]);
823
+ return FSharpResult$2_Error$(matchValue.fields[0]);
759
824
  } else {
760
825
  decoders_1_mut = tail(decoders_1);
761
826
  values_mut = append(values, singleton(matchValue.fields[0]));
@@ -769,19 +834,39 @@ function all(decoders) {
769
834
  }
770
835
  };
771
836
  }
837
+ class LazyDecoder$1 extends Record {
838
+ constructor(x) {
839
+ super();
840
+ this.x = x;
841
+ }
842
+ Decode(helpers, json) {
843
+ const this$ = this;
844
+ const decoder = this$.x.Value;
845
+ return decoder.Decode(helpers, json);
846
+ }
847
+ }
848
+ function LazyDecoder$1_$reflection(gen0) {
849
+ return class_type("Thoth.Json.Core.Decode.LazyDecoder`1", [gen0], LazyDecoder$1, class_type("System.ValueType"));
850
+ }
851
+ function LazyDecoder$1_$ctor_Z67290E74(x) {
852
+ return new LazyDecoder$1(x);
853
+ }
854
+ function lazily(x) {
855
+ return LazyDecoder$1_$ctor_Z67290E74(x);
856
+ }
772
857
  function map(ctor, d1) {
773
858
  return {
774
859
  Decode(helpers, value_1) {
775
860
  const matchValue = d1.Decode(helpers, value_1);
776
861
  return matchValue.tag === /* Error */
777
- 1 ? FSharpResult$2_Error(matchValue.fields[0]) : FSharpResult$2_Ok(ctor(matchValue.fields[0]));
862
+ 1 ? FSharpResult$2_Error$(matchValue.fields[0]) : FSharpResult$2_Ok(ctor(matchValue.fields[0]));
778
863
  }
779
864
  };
780
865
  }
781
866
  function map3(ctor, d1, d2, d3) {
782
867
  return {
783
868
  Decode(helpers, value_1) {
784
- let er_2, v1, v2, v3;
869
+ let er_2 = void 0, v1 = void 0, v2 = void 0, v3 = void 0;
785
870
  const matchValue = d1.Decode(helpers, value_1);
786
871
  const matchValue_1 = d2.Decode(helpers, value_1);
787
872
  const matchValue_2 = d3.Decode(helpers, value_1);
@@ -789,17 +874,17 @@ function map3(ctor, d1, d2, d3) {
789
874
  if (copyOfStruct.tag === /* Error */
790
875
  1) {
791
876
  const er = copyOfStruct.fields[0];
792
- return FSharpResult$2_Error(er);
877
+ return FSharpResult$2_Error$(er);
793
878
  } else {
794
879
  const copyOfStruct_1 = matchValue_1;
795
880
  if (copyOfStruct_1.tag === /* Error */
796
881
  1) {
797
882
  const er_1 = copyOfStruct_1.fields[0];
798
- return FSharpResult$2_Error(er_1);
883
+ return FSharpResult$2_Error$(er_1);
799
884
  } else {
800
885
  const copyOfStruct_2 = matchValue_2;
801
886
  return copyOfStruct_2.tag === /* Error */
802
- 1 ? (er_2 = copyOfStruct_2.fields[0], FSharpResult$2_Error(er_2)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], v3 = copyOfStruct_2.fields[0], FSharpResult$2_Ok(ctor(v1, v2, v3)));
887
+ 1 ? (er_2 = copyOfStruct_2.fields[0], FSharpResult$2_Error$(er_2)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], v3 = copyOfStruct_2.fields[0], FSharpResult$2_Ok(ctor(v1, v2, v3)));
803
888
  }
804
889
  }
805
890
  }
@@ -808,7 +893,7 @@ function map3(ctor, d1, d2, d3) {
808
893
  function map4(ctor, d1, d2, d3, d4) {
809
894
  return {
810
895
  Decode(helpers, value_1) {
811
- let er_3, v1, v2, v3, v4;
896
+ let er_3 = void 0, v1 = void 0, v2 = void 0, v3 = void 0, v4 = void 0;
812
897
  const matchValue = d1.Decode(helpers, value_1);
813
898
  const matchValue_1 = d2.Decode(helpers, value_1);
814
899
  const matchValue_2 = d3.Decode(helpers, value_1);
@@ -817,23 +902,23 @@ function map4(ctor, d1, d2, d3, d4) {
817
902
  if (copyOfStruct.tag === /* Error */
818
903
  1) {
819
904
  const er = copyOfStruct.fields[0];
820
- return FSharpResult$2_Error(er);
905
+ return FSharpResult$2_Error$(er);
821
906
  } else {
822
907
  const copyOfStruct_1 = matchValue_1;
823
908
  if (copyOfStruct_1.tag === /* Error */
824
909
  1) {
825
910
  const er_1 = copyOfStruct_1.fields[0];
826
- return FSharpResult$2_Error(er_1);
911
+ return FSharpResult$2_Error$(er_1);
827
912
  } else {
828
913
  const copyOfStruct_2 = matchValue_2;
829
914
  if (copyOfStruct_2.tag === /* Error */
830
915
  1) {
831
916
  const er_2 = copyOfStruct_2.fields[0];
832
- return FSharpResult$2_Error(er_2);
917
+ return FSharpResult$2_Error$(er_2);
833
918
  } else {
834
919
  const copyOfStruct_3 = matchValue_3;
835
920
  return copyOfStruct_3.tag === /* Error */
836
- 1 ? (er_3 = copyOfStruct_3.fields[0], FSharpResult$2_Error(er_3)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], v3 = copyOfStruct_2.fields[0], v4 = copyOfStruct_3.fields[0], FSharpResult$2_Ok(ctor(v1, v2, v3, v4)));
921
+ 1 ? (er_3 = copyOfStruct_3.fields[0], FSharpResult$2_Error$(er_3)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], v3 = copyOfStruct_2.fields[0], v4 = copyOfStruct_3.fields[0], FSharpResult$2_Ok(ctor(v1, v2, v3, v4)));
837
922
  }
838
923
  }
839
924
  }
@@ -843,7 +928,7 @@ function map4(ctor, d1, d2, d3, d4) {
843
928
  function map5(ctor, d1, d2, d3, d4, d5) {
844
929
  return {
845
930
  Decode(helpers, value_1) {
846
- let er_4, v1, v2, v3, v4, v5;
931
+ let er_4 = void 0, v1 = void 0, v2 = void 0, v3 = void 0, v4 = void 0, v5 = void 0;
847
932
  const matchValue = d1.Decode(helpers, value_1);
848
933
  const matchValue_1 = d2.Decode(helpers, value_1);
849
934
  const matchValue_2 = d3.Decode(helpers, value_1);
@@ -853,29 +938,29 @@ function map5(ctor, d1, d2, d3, d4, d5) {
853
938
  if (copyOfStruct.tag === /* Error */
854
939
  1) {
855
940
  const er = copyOfStruct.fields[0];
856
- return FSharpResult$2_Error(er);
941
+ return FSharpResult$2_Error$(er);
857
942
  } else {
858
943
  const copyOfStruct_1 = matchValue_1;
859
944
  if (copyOfStruct_1.tag === /* Error */
860
945
  1) {
861
946
  const er_1 = copyOfStruct_1.fields[0];
862
- return FSharpResult$2_Error(er_1);
947
+ return FSharpResult$2_Error$(er_1);
863
948
  } else {
864
949
  const copyOfStruct_2 = matchValue_2;
865
950
  if (copyOfStruct_2.tag === /* Error */
866
951
  1) {
867
952
  const er_2 = copyOfStruct_2.fields[0];
868
- return FSharpResult$2_Error(er_2);
953
+ return FSharpResult$2_Error$(er_2);
869
954
  } else {
870
955
  const copyOfStruct_3 = matchValue_3;
871
956
  if (copyOfStruct_3.tag === /* Error */
872
957
  1) {
873
958
  const er_3 = copyOfStruct_3.fields[0];
874
- return FSharpResult$2_Error(er_3);
959
+ return FSharpResult$2_Error$(er_3);
875
960
  } else {
876
961
  const copyOfStruct_4 = matchValue_4;
877
962
  return copyOfStruct_4.tag === /* Error */
878
- 1 ? (er_4 = copyOfStruct_4.fields[0], FSharpResult$2_Error(er_4)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], v3 = copyOfStruct_2.fields[0], v4 = copyOfStruct_3.fields[0], v5 = copyOfStruct_4.fields[0], FSharpResult$2_Ok(ctor(v1, v2, v3, v4, v5)));
963
+ 1 ? (er_4 = copyOfStruct_4.fields[0], FSharpResult$2_Error$(er_4)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], v3 = copyOfStruct_2.fields[0], v4 = copyOfStruct_3.fields[0], v5 = copyOfStruct_4.fields[0], FSharpResult$2_Ok(ctor(v1, v2, v3, v4, v5)));
879
964
  }
880
965
  }
881
966
  }
@@ -886,7 +971,7 @@ function map5(ctor, d1, d2, d3, d4, d5) {
886
971
  function map6(ctor, d1, d2, d3, d4, d5, d6) {
887
972
  return {
888
973
  Decode(helpers, value_1) {
889
- let er_5, v1, v2, v3, v4, v5, v6;
974
+ let er_5 = void 0, v1 = void 0, v2 = void 0, v3 = void 0, v4 = void 0, v5 = void 0, v6 = void 0;
890
975
  const matchValue = d1.Decode(helpers, value_1);
891
976
  const matchValue_1 = d2.Decode(helpers, value_1);
892
977
  const matchValue_2 = d3.Decode(helpers, value_1);
@@ -897,35 +982,35 @@ function map6(ctor, d1, d2, d3, d4, d5, d6) {
897
982
  if (copyOfStruct.tag === /* Error */
898
983
  1) {
899
984
  const er = copyOfStruct.fields[0];
900
- return FSharpResult$2_Error(er);
985
+ return FSharpResult$2_Error$(er);
901
986
  } else {
902
987
  const copyOfStruct_1 = matchValue_1;
903
988
  if (copyOfStruct_1.tag === /* Error */
904
989
  1) {
905
990
  const er_1 = copyOfStruct_1.fields[0];
906
- return FSharpResult$2_Error(er_1);
991
+ return FSharpResult$2_Error$(er_1);
907
992
  } else {
908
993
  const copyOfStruct_2 = matchValue_2;
909
994
  if (copyOfStruct_2.tag === /* Error */
910
995
  1) {
911
996
  const er_2 = copyOfStruct_2.fields[0];
912
- return FSharpResult$2_Error(er_2);
997
+ return FSharpResult$2_Error$(er_2);
913
998
  } else {
914
999
  const copyOfStruct_3 = matchValue_3;
915
1000
  if (copyOfStruct_3.tag === /* Error */
916
1001
  1) {
917
1002
  const er_3 = copyOfStruct_3.fields[0];
918
- return FSharpResult$2_Error(er_3);
1003
+ return FSharpResult$2_Error$(er_3);
919
1004
  } else {
920
1005
  const copyOfStruct_4 = matchValue_4;
921
1006
  if (copyOfStruct_4.tag === /* Error */
922
1007
  1) {
923
1008
  const er_4 = copyOfStruct_4.fields[0];
924
- return FSharpResult$2_Error(er_4);
1009
+ return FSharpResult$2_Error$(er_4);
925
1010
  } else {
926
1011
  const copyOfStruct_5 = matchValue_5;
927
1012
  return copyOfStruct_5.tag === /* Error */
928
- 1 ? (er_5 = copyOfStruct_5.fields[0], FSharpResult$2_Error(er_5)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], v3 = copyOfStruct_2.fields[0], v4 = copyOfStruct_3.fields[0], v5 = copyOfStruct_4.fields[0], v6 = copyOfStruct_5.fields[0], FSharpResult$2_Ok(ctor(v1, v2, v3, v4, v5, v6)));
1013
+ 1 ? (er_5 = copyOfStruct_5.fields[0], FSharpResult$2_Error$(er_5)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], v3 = copyOfStruct_2.fields[0], v4 = copyOfStruct_3.fields[0], v5 = copyOfStruct_4.fields[0], v6 = copyOfStruct_5.fields[0], FSharpResult$2_Ok(ctor(v1, v2, v3, v4, v5, v6)));
929
1014
  }
930
1015
  }
931
1016
  }
@@ -937,7 +1022,7 @@ function map6(ctor, d1, d2, d3, d4, d5, d6) {
937
1022
  function map7(ctor, d1, d2, d3, d4, d5, d6, d7) {
938
1023
  return {
939
1024
  Decode(helpers, value_1) {
940
- let er_6, v1, v2, v3, v4, v5, v6, v7;
1025
+ let er_6 = void 0, v1 = void 0, v2 = void 0, v3 = void 0, v4 = void 0, v5 = void 0, v6 = void 0, v7 = void 0;
941
1026
  const matchValue = d1.Decode(helpers, value_1);
942
1027
  const matchValue_1 = d2.Decode(helpers, value_1);
943
1028
  const matchValue_2 = d3.Decode(helpers, value_1);
@@ -949,41 +1034,41 @@ function map7(ctor, d1, d2, d3, d4, d5, d6, d7) {
949
1034
  if (copyOfStruct.tag === /* Error */
950
1035
  1) {
951
1036
  const er = copyOfStruct.fields[0];
952
- return FSharpResult$2_Error(er);
1037
+ return FSharpResult$2_Error$(er);
953
1038
  } else {
954
1039
  const copyOfStruct_1 = matchValue_1;
955
1040
  if (copyOfStruct_1.tag === /* Error */
956
1041
  1) {
957
1042
  const er_1 = copyOfStruct_1.fields[0];
958
- return FSharpResult$2_Error(er_1);
1043
+ return FSharpResult$2_Error$(er_1);
959
1044
  } else {
960
1045
  const copyOfStruct_2 = matchValue_2;
961
1046
  if (copyOfStruct_2.tag === /* Error */
962
1047
  1) {
963
1048
  const er_2 = copyOfStruct_2.fields[0];
964
- return FSharpResult$2_Error(er_2);
1049
+ return FSharpResult$2_Error$(er_2);
965
1050
  } else {
966
1051
  const copyOfStruct_3 = matchValue_3;
967
1052
  if (copyOfStruct_3.tag === /* Error */
968
1053
  1) {
969
1054
  const er_3 = copyOfStruct_3.fields[0];
970
- return FSharpResult$2_Error(er_3);
1055
+ return FSharpResult$2_Error$(er_3);
971
1056
  } else {
972
1057
  const copyOfStruct_4 = matchValue_4;
973
1058
  if (copyOfStruct_4.tag === /* Error */
974
1059
  1) {
975
1060
  const er_4 = copyOfStruct_4.fields[0];
976
- return FSharpResult$2_Error(er_4);
1061
+ return FSharpResult$2_Error$(er_4);
977
1062
  } else {
978
1063
  const copyOfStruct_5 = matchValue_5;
979
1064
  if (copyOfStruct_5.tag === /* Error */
980
1065
  1) {
981
1066
  const er_5 = copyOfStruct_5.fields[0];
982
- return FSharpResult$2_Error(er_5);
1067
+ return FSharpResult$2_Error$(er_5);
983
1068
  } else {
984
1069
  const copyOfStruct_6 = matchValue_6;
985
1070
  return copyOfStruct_6.tag === /* Error */
986
- 1 ? (er_6 = copyOfStruct_6.fields[0], FSharpResult$2_Error(er_6)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], v3 = copyOfStruct_2.fields[0], v4 = copyOfStruct_3.fields[0], v5 = copyOfStruct_4.fields[0], v6 = copyOfStruct_5.fields[0], v7 = copyOfStruct_6.fields[0], FSharpResult$2_Ok(ctor(v1, v2, v3, v4, v5, v6, v7)));
1071
+ 1 ? (er_6 = copyOfStruct_6.fields[0], FSharpResult$2_Error$(er_6)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], v3 = copyOfStruct_2.fields[0], v4 = copyOfStruct_3.fields[0], v5 = copyOfStruct_4.fields[0], v6 = copyOfStruct_5.fields[0], v7 = copyOfStruct_6.fields[0], FSharpResult$2_Ok(ctor(v1, v2, v3, v4, v5, v6, v7)));
987
1072
  }
988
1073
  }
989
1074
  }
@@ -996,7 +1081,7 @@ function map7(ctor, d1, d2, d3, d4, d5, d6, d7) {
996
1081
  function map8(ctor, d1, d2, d3, d4, d5, d6, d7, d8) {
997
1082
  return {
998
1083
  Decode(helpers, value_1) {
999
- let er_7, v1, v2, v3, v4, v5, v6, v7, v8;
1084
+ let er_7 = void 0, v1 = void 0, v2 = void 0, v3 = void 0, v4 = void 0, v5 = void 0, v6 = void 0, v7 = void 0, v8 = void 0;
1000
1085
  const matchValue = d1.Decode(helpers, value_1);
1001
1086
  const matchValue_1 = d2.Decode(helpers, value_1);
1002
1087
  const matchValue_2 = d3.Decode(helpers, value_1);
@@ -1009,47 +1094,47 @@ function map8(ctor, d1, d2, d3, d4, d5, d6, d7, d8) {
1009
1094
  if (copyOfStruct.tag === /* Error */
1010
1095
  1) {
1011
1096
  const er = copyOfStruct.fields[0];
1012
- return FSharpResult$2_Error(er);
1097
+ return FSharpResult$2_Error$(er);
1013
1098
  } else {
1014
1099
  const copyOfStruct_1 = matchValue_1;
1015
1100
  if (copyOfStruct_1.tag === /* Error */
1016
1101
  1) {
1017
1102
  const er_1 = copyOfStruct_1.fields[0];
1018
- return FSharpResult$2_Error(er_1);
1103
+ return FSharpResult$2_Error$(er_1);
1019
1104
  } else {
1020
1105
  const copyOfStruct_2 = matchValue_2;
1021
1106
  if (copyOfStruct_2.tag === /* Error */
1022
1107
  1) {
1023
1108
  const er_2 = copyOfStruct_2.fields[0];
1024
- return FSharpResult$2_Error(er_2);
1109
+ return FSharpResult$2_Error$(er_2);
1025
1110
  } else {
1026
1111
  const copyOfStruct_3 = matchValue_3;
1027
1112
  if (copyOfStruct_3.tag === /* Error */
1028
1113
  1) {
1029
1114
  const er_3 = copyOfStruct_3.fields[0];
1030
- return FSharpResult$2_Error(er_3);
1115
+ return FSharpResult$2_Error$(er_3);
1031
1116
  } else {
1032
1117
  const copyOfStruct_4 = matchValue_4;
1033
1118
  if (copyOfStruct_4.tag === /* Error */
1034
1119
  1) {
1035
1120
  const er_4 = copyOfStruct_4.fields[0];
1036
- return FSharpResult$2_Error(er_4);
1121
+ return FSharpResult$2_Error$(er_4);
1037
1122
  } else {
1038
1123
  const copyOfStruct_5 = matchValue_5;
1039
1124
  if (copyOfStruct_5.tag === /* Error */
1040
1125
  1) {
1041
1126
  const er_5 = copyOfStruct_5.fields[0];
1042
- return FSharpResult$2_Error(er_5);
1127
+ return FSharpResult$2_Error$(er_5);
1043
1128
  } else {
1044
1129
  const copyOfStruct_6 = matchValue_6;
1045
1130
  if (copyOfStruct_6.tag === /* Error */
1046
1131
  1) {
1047
1132
  const er_6 = copyOfStruct_6.fields[0];
1048
- return FSharpResult$2_Error(er_6);
1133
+ return FSharpResult$2_Error$(er_6);
1049
1134
  } else {
1050
1135
  const copyOfStruct_7 = matchValue_7;
1051
1136
  return copyOfStruct_7.tag === /* Error */
1052
- 1 ? (er_7 = copyOfStruct_7.fields[0], FSharpResult$2_Error(er_7)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], v3 = copyOfStruct_2.fields[0], v4 = copyOfStruct_3.fields[0], v5 = copyOfStruct_4.fields[0], v6 = copyOfStruct_5.fields[0], v7 = copyOfStruct_6.fields[0], v8 = copyOfStruct_7.fields[0], FSharpResult$2_Ok(ctor(v1, v2, v3, v4, v5, v6, v7, v8)));
1137
+ 1 ? (er_7 = copyOfStruct_7.fields[0], FSharpResult$2_Error$(er_7)) : (v1 = copyOfStruct.fields[0], v2 = copyOfStruct_1.fields[0], v3 = copyOfStruct_2.fields[0], v4 = copyOfStruct_3.fields[0], v5 = copyOfStruct_4.fields[0], v6 = copyOfStruct_5.fields[0], v7 = copyOfStruct_6.fields[0], v8 = copyOfStruct_7.fields[0], FSharpResult$2_Ok(ctor(v1, v2, v3, v4, v5, v6, v7, v8)));
1053
1138
  }
1054
1139
  }
1055
1140
  }
@@ -1101,7 +1186,7 @@ function unwrapWith(errors, helpers, decoder, value_1) {
1101
1186
  }
1102
1187
  class Getters$2 {
1103
1188
  constructor(helpers, value_1) {
1104
- let _this, _this_1;
1189
+ let _this = void 0, _this_1 = void 0;
1105
1190
  this.errors = [];
1106
1191
  this.required = (_this = this, {
1107
1192
  Field(fieldName, decoder) {
@@ -1127,7 +1212,7 @@ class Getters$2 {
1127
1212
  1) {
1128
1213
  const reason = matchValue.fields[0][1];
1129
1214
  const error = matchValue.fields[0];
1130
- let matchResult, v_1;
1215
+ let matchResult = void 0, v_1 = void 0;
1131
1216
  switch (reason.tag) {
1132
1217
  case /* BadField */
1133
1218
  3:
@@ -1209,7 +1294,7 @@ function object(builder) {
1209
1294
  const matchValue = Getters$2__get_Errors(getters);
1210
1295
  if (!isEmpty(matchValue)) {
1211
1296
  const errors = matchValue;
1212
- return length(errors) > 1 ? FSharpResult$2_Error(["", ErrorReason$1_BadOneOf(errors)]) : FSharpResult$2_Error(head(matchValue));
1297
+ return length(errors) > 1 ? FSharpResult$2_Error$(["", ErrorReason$1_BadOneOf(errors)]) : FSharpResult$2_Error$(head(matchValue));
1213
1298
  } else {
1214
1299
  return FSharpResult$2_Ok(result);
1215
1300
  }
@@ -1239,13 +1324,34 @@ function tuple8(decoder1, decoder2, decoder3, decoder4, decoder5, decoder6, deco
1239
1324
  }
1240
1325
  function dict(decoder) {
1241
1326
  return map((elements) => ofList(elements, {
1242
- Compare: comparePrimitives
1327
+ Compare: (x, y) => comparePrimitives(x, y) | 0
1243
1328
  }), keyValuePairs(decoder));
1244
1329
  }
1245
1330
  function map$0027(keyDecoder, valueDecoder) {
1246
1331
  return map((elements) => ofSeq$1(elements, {
1247
- Compare: compare
1332
+ Compare: (x, y) => compare(x, y) | 0
1248
1333
  }), array(tuple2(keyDecoder, valueDecoder)));
1249
1334
  }
1335
+ class FixDecoder$1 {
1336
+ constructor(make) {
1337
+ const this$ = new FSharpRef(defaultOf());
1338
+ this$.contents = this;
1339
+ this.self = make(this$.contents);
1340
+ this["init@1524"] = 1;
1341
+ }
1342
+ Decode(helpers, value_1) {
1343
+ const this$ = this;
1344
+ return this$.self.Decode(helpers, value_1);
1345
+ }
1346
+ }
1347
+ function FixDecoder$1_$reflection(gen0) {
1348
+ return class_type("Thoth.Json.Core.Decode.FixDecoder`1", [gen0], FixDecoder$1);
1349
+ }
1350
+ function FixDecoder$1_$ctor_Z2A44CE2A(make) {
1351
+ return new FixDecoder$1(make);
1352
+ }
1353
+ function fix(make) {
1354
+ return FixDecoder$1_$ctor_Z2A44CE2A(make);
1355
+ }
1250
1356
 
1251
- export { Advanced_fromValue, Getters$2, Getters$2_$ctor_Z4BE6C149, Getters$2_$reflection, Getters$2__get_Errors, Helpers_prependPath, all, andMap, andThen, array, at, bigint, bool, byte, char, datetimeLocal, datetimeOffset, datetimeUtc, decimal, dict, errorToString, fail, field, float, float32, guid, index, int, int16, int64, keyValuePairs, keys, list, losslessOption, lossyOption, map, map$0027, map2, map3, map4, map5, map6, map7, map8, nil, object, oneOf, optional, optionalAt, resizeArray, sbyte, seq, string, succeed, timespan, tuple2, tuple3, tuple4, tuple5, tuple6, tuple7, tuple8, uint16, uint32, uint64, unit, value };
1357
+ export { Advanced_fromValue, Getters$2, Getters$2_$ctor_Z4BE6C149, Getters$2_$reflection, Getters$2__get_Errors, Helpers_prependPath, all, andMap, andThen, array, at, bigint, bool, byte, char, datetimeLocal, datetimeOffset, datetimeUtc, decimal, dict, errorToString, fail, field, fix, float, float32, guid, index, int, int16, int64, keyValuePairs, keys, lazily, list, losslessOption, lossyOption, map, map$0027, map2, map3, map4, map5, map6, map7, map8, nil, object, oneOf, optional, optionalAt, resizeArray, sbyte, seq, string, succeed, timespan, tuple2, tuple3, tuple4, tuple5, tuple6, tuple7, tuple8, uint16, uint32, uint64, unit, value };