@nfdi4plants/arctrl 3.0.0-beta.1 → 3.0.0-beta.11

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 (1755) hide show
  1. package/README.md +2 -0
  2. package/dist/ts/index.d.ts +62 -0
  3. package/dist/ts/index.d.ts.map +1 -0
  4. package/dist/ts/index.js +64 -0
  5. package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +1244 -0
  6. package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +146 -0
  7. package/dist/ts/node_modules/@fable-org/fable-library-js/AsyncBuilder.js +186 -0
  8. package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +286 -0
  9. package/dist/ts/node_modules/@fable-org/fable-library-js/Boolean.js +24 -0
  10. package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +172 -0
  11. package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +187 -0
  12. package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +185 -0
  13. package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +750 -0
  14. package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +271 -0
  15. package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +214 -0
  16. package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +49 -0
  17. package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +30 -0
  18. package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +72 -0
  19. package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +10 -0
  20. package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +145 -0
  21. package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +137 -0
  22. package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +1276 -0
  23. package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +49 -0
  24. package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +1399 -0
  25. package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +130 -0
  26. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +330 -0
  27. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +236 -0
  28. package/dist/ts/node_modules/@fable-org/fable-library-js/Native.js +10 -0
  29. package/dist/ts/node_modules/@fable-org/fable-library-js/Numeric.js +73 -0
  30. package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +99 -0
  31. package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +48 -0
  32. package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +465 -0
  33. package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +133 -0
  34. package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +168 -0
  35. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +1381 -0
  36. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +114 -0
  37. package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +1792 -0
  38. package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +557 -0
  39. package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +165 -0
  40. package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +8 -0
  41. package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +180 -0
  42. package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +211 -0
  43. package/dist/ts/node_modules/@fable-org/fable-library-js/Unicode.13.0.0.js +6 -0
  44. package/dist/ts/node_modules/@fable-org/fable-library-js/Uri.js +160 -0
  45. package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +771 -0
  46. package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +825 -0
  47. package/dist/ts/ts/ARC.d.ts +97 -0
  48. package/dist/ts/ts/ARC.d.ts.map +1 -0
  49. package/dist/ts/ts/ARC.js +1118 -0
  50. package/dist/ts/ts/Contract/ARC.d.ts +7 -0
  51. package/dist/ts/ts/Contract/ARC.d.ts.map +1 -0
  52. package/dist/ts/ts/Contract/ARC.js +59 -0
  53. package/dist/ts/ts/Contract/ArcAssay.d.ts +12 -0
  54. package/dist/ts/ts/Contract/ArcAssay.d.ts.map +1 -0
  55. package/dist/ts/ts/Contract/ArcAssay.js +89 -0
  56. package/dist/ts/ts/Contract/ArcInvestigation.d.ts +10 -0
  57. package/dist/ts/ts/Contract/ArcInvestigation.d.ts.map +1 -0
  58. package/dist/ts/ts/Contract/ArcInvestigation.js +66 -0
  59. package/dist/ts/ts/Contract/ArcRun.d.ts +12 -0
  60. package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -0
  61. package/dist/ts/ts/Contract/ArcRun.js +89 -0
  62. package/dist/ts/ts/Contract/ArcStudy.d.ts +13 -0
  63. package/dist/ts/ts/Contract/ArcStudy.d.ts.map +1 -0
  64. package/dist/ts/ts/Contract/ArcStudy.js +89 -0
  65. package/dist/ts/ts/Contract/ArcWorkflow.d.ts +12 -0
  66. package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -0
  67. package/dist/ts/ts/Contract/ArcWorkflow.js +89 -0
  68. package/dist/ts/ts/Contract/Contract.d.ts +39 -0
  69. package/dist/ts/ts/Contract/Contract.d.ts.map +1 -0
  70. package/dist/ts/ts/Contract/Contract.js +86 -0
  71. package/dist/ts/ts/Contract/Datamap.d.ts +29 -0
  72. package/dist/ts/ts/Contract/Datamap.d.ts.map +1 -0
  73. package/dist/ts/ts/Contract/Datamap.js +284 -0
  74. package/dist/ts/ts/Contract/Git.d.ts +28 -0
  75. package/dist/ts/ts/Contract/Git.d.ts.map +1 -0
  76. package/dist/ts/ts/Contract/Git.js +73 -0
  77. package/dist/ts/ts/Contract/License.d.ts +5 -0
  78. package/dist/ts/ts/Contract/License.d.ts.map +1 -0
  79. package/dist/ts/ts/Contract/License.js +34 -0
  80. package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts +12 -0
  81. package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -0
  82. package/dist/ts/ts/Contract/ValidationPackagesConfig.js +82 -0
  83. package/dist/ts/ts/ContractIO/ContractIO.d.ts +11 -0
  84. package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -0
  85. package/dist/ts/ts/ContractIO/ContractIO.js +202 -0
  86. package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts +44 -0
  87. package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts.map +1 -0
  88. package/dist/ts/ts/ContractIO/FileSystemHelper.js +285 -0
  89. package/dist/ts/ts/Conversion.d.ts +292 -0
  90. package/dist/ts/ts/Conversion.d.ts.map +1 -0
  91. package/dist/ts/ts/Conversion.js +1520 -0
  92. package/dist/ts/ts/Core/ArcTypes.d.ts +585 -0
  93. package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -0
  94. package/dist/ts/ts/Core/ArcTypes.js +3708 -0
  95. package/dist/ts/ts/Core/Comment.d.ts +35 -0
  96. package/dist/ts/ts/Core/Comment.d.ts.map +1 -0
  97. package/dist/ts/ts/Core/Comment.js +101 -0
  98. package/dist/ts/ts/Core/CommentList.d.ts +28 -0
  99. package/dist/ts/ts/Core/CommentList.d.ts.map +1 -0
  100. package/dist/ts/ts/Core/CommentList.js +102 -0
  101. package/dist/ts/ts/Core/Conversion.d.ts +215 -0
  102. package/dist/ts/ts/Core/Conversion.d.ts.map +1 -0
  103. package/dist/ts/ts/Core/Conversion.js +1003 -0
  104. package/dist/ts/ts/Core/Data.d.ts +49 -0
  105. package/dist/ts/ts/Core/Data.d.ts.map +1 -0
  106. package/dist/ts/ts/Core/Data.js +186 -0
  107. package/dist/ts/ts/Core/DataContext.d.ts +47 -0
  108. package/dist/ts/ts/Core/DataContext.d.ts.map +1 -0
  109. package/dist/ts/ts/Core/DataContext.js +123 -0
  110. package/dist/ts/ts/Core/DataFile.d.ts +27 -0
  111. package/dist/ts/ts/Core/DataFile.d.ts.map +1 -0
  112. package/dist/ts/ts/Core/DataFile.js +87 -0
  113. package/dist/ts/ts/Core/DataMap.d.ts +53 -0
  114. package/dist/ts/ts/Core/DataMap.d.ts.map +1 -0
  115. package/dist/ts/ts/Core/DataMap.js +177 -0
  116. package/dist/ts/ts/Core/Helper/Collections.d.ts +61 -0
  117. package/dist/ts/ts/Core/Helper/Collections.d.ts.map +1 -0
  118. package/dist/ts/ts/Core/Helper/Collections.js +424 -0
  119. package/dist/ts/ts/Core/Helper/HashCodes.d.ts +9 -0
  120. package/dist/ts/ts/Core/Helper/HashCodes.d.ts.map +1 -0
  121. package/dist/ts/ts/Core/Helper/HashCodes.js +35 -0
  122. package/dist/ts/ts/Core/Helper/Identifier.d.ts +119 -0
  123. package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -0
  124. package/dist/ts/ts/Core/Helper/Identifier.js +194 -0
  125. package/dist/ts/ts/Core/Helper/ORCID.d.ts +7 -0
  126. package/dist/ts/ts/Core/Helper/ORCID.d.ts.map +1 -0
  127. package/dist/ts/ts/Core/Helper/ORCID.js +34 -0
  128. package/dist/ts/ts/Core/Helper/Regex.d.ts +194 -0
  129. package/dist/ts/ts/Core/Helper/Regex.d.ts.map +1 -0
  130. package/dist/ts/ts/Core/Helper/Regex.js +428 -0
  131. package/dist/ts/ts/Core/Helper/SemVer.d.ts +20 -0
  132. package/dist/ts/ts/Core/Helper/SemVer.d.ts.map +1 -0
  133. package/dist/ts/ts/Core/Helper/SemVer.js +52 -0
  134. package/dist/ts/ts/Core/Helper/Url.d.ts +10 -0
  135. package/dist/ts/ts/Core/Helper/Url.d.ts.map +1 -0
  136. package/dist/ts/ts/Core/Helper/Url.js +32 -0
  137. package/dist/ts/ts/Core/IdentifierSetters.d.ts +9 -0
  138. package/dist/ts/ts/Core/IdentifierSetters.d.ts.map +1 -0
  139. package/dist/ts/ts/Core/IdentifierSetters.js +34 -0
  140. package/dist/ts/ts/Core/OntologyAnnotation.d.ts +57 -0
  141. package/dist/ts/ts/Core/OntologyAnnotation.d.ts.map +1 -0
  142. package/dist/ts/ts/Core/OntologyAnnotation.js +210 -0
  143. package/dist/ts/ts/Core/OntologySourceReference.d.ts +31 -0
  144. package/dist/ts/ts/Core/OntologySourceReference.d.ts.map +1 -0
  145. package/dist/ts/ts/Core/OntologySourceReference.js +91 -0
  146. package/dist/ts/ts/Core/Person.d.ts +56 -0
  147. package/dist/ts/ts/Core/Person.d.ts.map +1 -0
  148. package/dist/ts/ts/Core/Person.js +190 -0
  149. package/dist/ts/ts/Core/Process/ColumnIndex.d.ts +79 -0
  150. package/dist/ts/ts/Core/Process/ColumnIndex.d.ts.map +1 -0
  151. package/dist/ts/ts/Core/Process/ColumnIndex.js +190 -0
  152. package/dist/ts/ts/Core/Process/Component.d.ts +65 -0
  153. package/dist/ts/ts/Core/Process/Component.d.ts.map +1 -0
  154. package/dist/ts/ts/Core/Process/Component.js +154 -0
  155. package/dist/ts/ts/Core/Process/Factor.d.ts +44 -0
  156. package/dist/ts/ts/Core/Process/Factor.d.ts.map +1 -0
  157. package/dist/ts/ts/Core/Process/Factor.js +109 -0
  158. package/dist/ts/ts/Core/Process/FactorValue.d.ts +44 -0
  159. package/dist/ts/ts/Core/Process/FactorValue.d.ts.map +1 -0
  160. package/dist/ts/ts/Core/Process/FactorValue.js +125 -0
  161. package/dist/ts/ts/Core/Process/Material.d.ts +27 -0
  162. package/dist/ts/ts/Core/Process/Material.d.ts.map +1 -0
  163. package/dist/ts/ts/Core/Process/Material.js +59 -0
  164. package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts +53 -0
  165. package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts.map +1 -0
  166. package/dist/ts/ts/Core/Process/MaterialAttribute.js +68 -0
  167. package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts +55 -0
  168. package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -0
  169. package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +131 -0
  170. package/dist/ts/ts/Core/Process/MaterialType.d.ts +22 -0
  171. package/dist/ts/ts/Core/Process/MaterialType.d.ts.map +1 -0
  172. package/dist/ts/ts/Core/Process/MaterialType.js +42 -0
  173. package/dist/ts/ts/Core/Process/Process.d.ts +113 -0
  174. package/dist/ts/ts/Core/Process/Process.d.ts.map +1 -0
  175. package/dist/ts/ts/Core/Process/Process.js +279 -0
  176. package/dist/ts/ts/Core/Process/ProcessInput.d.ts +117 -0
  177. package/dist/ts/ts/Core/Process/ProcessInput.d.ts.map +1 -0
  178. package/dist/ts/ts/Core/Process/ProcessInput.js +247 -0
  179. package/dist/ts/ts/Core/Process/ProcessOutput.d.ts +106 -0
  180. package/dist/ts/ts/Core/Process/ProcessOutput.d.ts.map +1 -0
  181. package/dist/ts/ts/Core/Process/ProcessOutput.js +215 -0
  182. package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts +40 -0
  183. package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -0
  184. package/dist/ts/ts/Core/Process/ProcessParameterValue.js +140 -0
  185. package/dist/ts/ts/Core/Process/ProcessSequence.d.ts +89 -0
  186. package/dist/ts/ts/Core/Process/ProcessSequence.d.ts.map +1 -0
  187. package/dist/ts/ts/Core/Process/ProcessSequence.js +177 -0
  188. package/dist/ts/ts/Core/Process/Protocol.d.ts +141 -0
  189. package/dist/ts/ts/Core/Process/Protocol.d.ts.map +1 -0
  190. package/dist/ts/ts/Core/Process/Protocol.js +128 -0
  191. package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts +32 -0
  192. package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts.map +1 -0
  193. package/dist/ts/ts/Core/Process/ProtocolParameter.js +73 -0
  194. package/dist/ts/ts/Core/Process/Sample.d.ts +31 -0
  195. package/dist/ts/ts/Core/Process/Sample.d.ts.map +1 -0
  196. package/dist/ts/ts/Core/Process/Sample.js +62 -0
  197. package/dist/ts/ts/Core/Process/Source.d.ts +24 -0
  198. package/dist/ts/ts/Core/Process/Source.d.ts.map +1 -0
  199. package/dist/ts/ts/Core/Process/Source.js +48 -0
  200. package/dist/ts/ts/Core/Publication.d.ts +36 -0
  201. package/dist/ts/ts/Core/Publication.d.ts.map +1 -0
  202. package/dist/ts/ts/Core/Publication.js +115 -0
  203. package/dist/ts/ts/Core/Table/ArcTable.d.ts +137 -0
  204. package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -0
  205. package/dist/ts/ts/Core/Table/ArcTable.js +898 -0
  206. package/dist/ts/ts/Core/Table/ArcTableAux.d.ts +154 -0
  207. package/dist/ts/ts/Core/Table/ArcTableAux.d.ts.map +1 -0
  208. package/dist/ts/ts/Core/Table/ArcTableAux.js +1120 -0
  209. package/dist/ts/ts/Core/Table/ArcTables.d.ts +91 -0
  210. package/dist/ts/ts/Core/Table/ArcTables.d.ts.map +1 -0
  211. package/dist/ts/ts/Core/Table/ArcTables.js +424 -0
  212. package/dist/ts/ts/Core/Table/CompositeCell.d.ts +58 -0
  213. package/dist/ts/ts/Core/Table/CompositeCell.d.ts.map +1 -0
  214. package/dist/ts/ts/Core/Table/CompositeCell.js +338 -0
  215. package/dist/ts/ts/Core/Table/CompositeColumn.d.ts +19 -0
  216. package/dist/ts/ts/Core/Table/CompositeColumn.d.ts.map +1 -0
  217. package/dist/ts/ts/Core/Table/CompositeColumn.js +56 -0
  218. package/dist/ts/ts/Core/Table/CompositeHeader.d.ts +130 -0
  219. package/dist/ts/ts/Core/Table/CompositeHeader.d.ts.map +1 -0
  220. package/dist/ts/ts/Core/Table/CompositeHeader.js +795 -0
  221. package/dist/ts/ts/Core/Template.d.ts +69 -0
  222. package/dist/ts/ts/Core/Template.d.ts.map +1 -0
  223. package/dist/ts/ts/Core/Template.js +190 -0
  224. package/dist/ts/ts/Core/Templates.d.ts +18 -0
  225. package/dist/ts/ts/Core/Templates.d.ts.map +1 -0
  226. package/dist/ts/ts/Core/Templates.js +79 -0
  227. package/dist/ts/ts/Core/URI.d.ts.map +1 -0
  228. package/dist/ts/ts/Core/URI.js +8 -0
  229. package/dist/ts/ts/Core/Value.d.ts +41 -0
  230. package/dist/ts/ts/Core/Value.d.ts.map +1 -0
  231. package/dist/ts/ts/Core/Value.js +198 -0
  232. package/dist/ts/ts/CrossAsync.d.ts +9 -0
  233. package/dist/ts/ts/CrossAsync.d.ts.map +1 -0
  234. package/dist/ts/ts/CrossAsync.js +30 -0
  235. package/dist/ts/ts/FileSystem/Commit.d.ts +13 -0
  236. package/dist/ts/ts/FileSystem/Commit.d.ts.map +1 -0
  237. package/dist/ts/ts/FileSystem/Commit.js +18 -0
  238. package/dist/ts/ts/FileSystem/FileSystem.d.ts +21 -0
  239. package/dist/ts/ts/FileSystem/FileSystem.d.ts.map +1 -0
  240. package/dist/ts/ts/FileSystem/FileSystem.js +53 -0
  241. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +56 -0
  242. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -0
  243. package/dist/ts/ts/FileSystem/FileSystemTree.js +346 -0
  244. package/dist/ts/ts/FileSystem/Path.d.ts +16 -0
  245. package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -0
  246. package/dist/ts/ts/FileSystem/Path.js +50 -0
  247. package/dist/ts/ts/Json/Assay.d.ts +19 -0
  248. package/dist/ts/ts/Json/Assay.d.ts.map +1 -0
  249. package/dist/ts/ts/Json/Assay.js +221 -0
  250. package/dist/ts/ts/Json/Comment.d.ts +14 -0
  251. package/dist/ts/ts/Json/Comment.d.ts.map +1 -0
  252. package/dist/ts/ts/Json/Comment.js +112 -0
  253. package/dist/ts/ts/Json/Data.d.ts +17 -0
  254. package/dist/ts/ts/Json/Data.d.ts.map +1 -0
  255. package/dist/ts/ts/Json/Data.js +138 -0
  256. package/dist/ts/ts/Json/DataFile.d.ts +7 -0
  257. package/dist/ts/ts/Json/DataFile.d.ts.map +1 -0
  258. package/dist/ts/ts/Json/DataFile.js +55 -0
  259. package/dist/ts/ts/Json/DataMap/DataContext.d.ts +5 -0
  260. package/dist/ts/ts/Json/DataMap/DataContext.d.ts.map +1 -0
  261. package/dist/ts/ts/Json/DataMap/DataContext.js +39 -0
  262. package/dist/ts/ts/Json/DataMap/DataMap.d.ts +11 -0
  263. package/dist/ts/ts/Json/DataMap/DataMap.d.ts.map +1 -0
  264. package/dist/ts/ts/Json/DataMap/DataMap.js +27 -0
  265. package/dist/ts/ts/Json/Decode.d.ts +18 -0
  266. package/dist/ts/ts/Json/Decode.d.ts.map +1 -0
  267. package/dist/ts/ts/Json/Decode.js +214 -0
  268. package/dist/ts/ts/Json/Encode.d.ts +23 -0
  269. package/dist/ts/ts/Json/Encode.d.ts.map +1 -0
  270. package/dist/ts/ts/Json/Encode.js +97 -0
  271. package/dist/ts/ts/Json/IDTable.d.ts +5 -0
  272. package/dist/ts/ts/Json/IDTable.d.ts.map +1 -0
  273. package/dist/ts/ts/Json/IDTable.js +28 -0
  274. package/dist/ts/ts/Json/Investigation.d.ts +20 -0
  275. package/dist/ts/ts/Json/Investigation.d.ts.map +1 -0
  276. package/dist/ts/ts/Json/Investigation.js +247 -0
  277. package/dist/ts/ts/Json/OntologyAnnotation.d.ts +18 -0
  278. package/dist/ts/ts/Json/OntologyAnnotation.d.ts.map +1 -0
  279. package/dist/ts/ts/Json/OntologyAnnotation.js +194 -0
  280. package/dist/ts/ts/Json/OntologySourceReference.d.ts +12 -0
  281. package/dist/ts/ts/Json/OntologySourceReference.d.ts.map +1 -0
  282. package/dist/ts/ts/Json/OntologySourceReference.js +119 -0
  283. package/dist/ts/ts/Json/Person.d.ts +22 -0
  284. package/dist/ts/ts/Json/Person.d.ts.map +1 -0
  285. package/dist/ts/ts/Json/Person.js +316 -0
  286. package/dist/ts/ts/Json/Process/AssayMaterials.d.ts +7 -0
  287. package/dist/ts/ts/Json/Process/AssayMaterials.d.ts.map +1 -0
  288. package/dist/ts/ts/Json/Process/AssayMaterials.js +21 -0
  289. package/dist/ts/ts/Json/Process/Component.d.ts +13 -0
  290. package/dist/ts/ts/Json/Process/Component.d.ts.map +1 -0
  291. package/dist/ts/ts/Json/Process/Component.js +61 -0
  292. package/dist/ts/ts/Json/Process/Factor.d.ts +8 -0
  293. package/dist/ts/ts/Json/Process/Factor.d.ts.map +1 -0
  294. package/dist/ts/ts/Json/Process/Factor.js +53 -0
  295. package/dist/ts/ts/Json/Process/FactorValue.d.ts +11 -0
  296. package/dist/ts/ts/Json/Process/FactorValue.d.ts.map +1 -0
  297. package/dist/ts/ts/Json/Process/FactorValue.js +44 -0
  298. package/dist/ts/ts/Json/Process/Material.d.ts +12 -0
  299. package/dist/ts/ts/Json/Process/Material.d.ts.map +1 -0
  300. package/dist/ts/ts/Json/Process/Material.js +112 -0
  301. package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts +8 -0
  302. package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts.map +1 -0
  303. package/dist/ts/ts/Json/Process/MaterialAttribute.js +43 -0
  304. package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts +11 -0
  305. package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -0
  306. package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +44 -0
  307. package/dist/ts/ts/Json/Process/MaterialType.d.ts +7 -0
  308. package/dist/ts/ts/Json/Process/MaterialType.d.ts.map +1 -0
  309. package/dist/ts/ts/Json/Process/MaterialType.js +45 -0
  310. package/dist/ts/ts/Json/Process/Process.d.ts +10 -0
  311. package/dist/ts/ts/Json/Process/Process.d.ts.map +1 -0
  312. package/dist/ts/ts/Json/Process/Process.js +103 -0
  313. package/dist/ts/ts/Json/Process/ProcessInput.d.ts +9 -0
  314. package/dist/ts/ts/Json/Process/ProcessInput.d.ts.map +1 -0
  315. package/dist/ts/ts/Json/Process/ProcessInput.js +42 -0
  316. package/dist/ts/ts/Json/Process/ProcessOutput.d.ts +9 -0
  317. package/dist/ts/ts/Json/Process/ProcessOutput.d.ts.map +1 -0
  318. package/dist/ts/ts/Json/Process/ProcessOutput.js +35 -0
  319. package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts +11 -0
  320. package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -0
  321. package/dist/ts/ts/Json/Process/ProcessParameterValue.js +31 -0
  322. package/dist/ts/ts/Json/Process/Protocol.d.ts +10 -0
  323. package/dist/ts/ts/Json/Process/Protocol.d.ts.map +1 -0
  324. package/dist/ts/ts/Json/Process/Protocol.js +166 -0
  325. package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts +10 -0
  326. package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts.map +1 -0
  327. package/dist/ts/ts/Json/Process/ProtocolParameter.js +52 -0
  328. package/dist/ts/ts/Json/Process/Sample.d.ts +15 -0
  329. package/dist/ts/ts/Json/Process/Sample.d.ts.map +1 -0
  330. package/dist/ts/ts/Json/Process/Sample.js +165 -0
  331. package/dist/ts/ts/Json/Process/Source.d.ts +12 -0
  332. package/dist/ts/ts/Json/Process/Source.d.ts.map +1 -0
  333. package/dist/ts/ts/Json/Process/Source.js +133 -0
  334. package/dist/ts/ts/Json/Process/StudyMaterials.d.ts +7 -0
  335. package/dist/ts/ts/Json/Process/StudyMaterials.d.ts.map +1 -0
  336. package/dist/ts/ts/Json/Process/StudyMaterials.js +23 -0
  337. package/dist/ts/ts/Json/Process/Value.d.ts +7 -0
  338. package/dist/ts/ts/Json/Process/Value.d.ts.map +1 -0
  339. package/dist/ts/ts/Json/Process/Value.js +41 -0
  340. package/dist/ts/ts/Json/PropertyValue.d.ts +9 -0
  341. package/dist/ts/ts/Json/PropertyValue.d.ts.map +1 -0
  342. package/dist/ts/ts/Json/PropertyValue.js +280 -0
  343. package/dist/ts/ts/Json/Publication.d.ts +14 -0
  344. package/dist/ts/ts/Json/Publication.d.ts.map +1 -0
  345. package/dist/ts/ts/Json/Publication.js +123 -0
  346. package/dist/ts/ts/Json/ROCrate/LDContext.d.ts +5 -0
  347. package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -0
  348. package/dist/ts/ts/Json/ROCrate/LDContext.js +116 -0
  349. package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts +5 -0
  350. package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts.map +1 -0
  351. package/dist/ts/ts/Json/ROCrate/LDGraph.js +83 -0
  352. package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +13 -0
  353. package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -0
  354. package/dist/ts/ts/Json/ROCrate/LDNode.js +190 -0
  355. package/dist/ts/ts/Json/ROCrate/LDRef.d.ts +5 -0
  356. package/dist/ts/ts/Json/ROCrate/LDRef.d.ts.map +1 -0
  357. package/dist/ts/ts/Json/ROCrate/LDRef.js +24 -0
  358. package/dist/ts/ts/Json/ROCrate/LDValue.d.ts +7 -0
  359. package/dist/ts/ts/Json/ROCrate/LDValue.d.ts.map +1 -0
  360. package/dist/ts/ts/Json/ROCrate/LDValue.js +63 -0
  361. package/dist/ts/ts/Json/Run.d.ts +11 -0
  362. package/dist/ts/ts/Json/Run.d.ts.map +1 -0
  363. package/dist/ts/ts/Json/Run.js +76 -0
  364. package/dist/ts/ts/Json/StringTable.d.ts +9 -0
  365. package/dist/ts/ts/Json/StringTable.d.ts.map +1 -0
  366. package/dist/ts/ts/Json/StringTable.js +66 -0
  367. package/dist/ts/ts/Json/Study.d.ts +26 -0
  368. package/dist/ts/ts/Json/Study.d.ts.map +1 -0
  369. package/dist/ts/ts/Json/Study.js +326 -0
  370. package/dist/ts/ts/Json/Table/ArcTable.d.ts +15 -0
  371. package/dist/ts/ts/Json/Table/ArcTable.d.ts.map +1 -0
  372. package/dist/ts/ts/Json/Table/ArcTable.js +210 -0
  373. package/dist/ts/ts/Json/Table/CellTable.d.ts +11 -0
  374. package/dist/ts/ts/Json/Table/CellTable.d.ts.map +1 -0
  375. package/dist/ts/ts/Json/Table/CellTable.js +53 -0
  376. package/dist/ts/ts/Json/Table/CompositeCell.d.ts +10 -0
  377. package/dist/ts/ts/Json/Table/CompositeCell.d.ts.map +1 -0
  378. package/dist/ts/ts/Json/Table/CompositeCell.js +106 -0
  379. package/dist/ts/ts/Json/Table/CompositeHeader.d.ts +5 -0
  380. package/dist/ts/ts/Json/Table/CompositeHeader.d.ts.map +1 -0
  381. package/dist/ts/ts/Json/Table/CompositeHeader.js +121 -0
  382. package/dist/ts/ts/Json/Table/IOType.d.ts +5 -0
  383. package/dist/ts/ts/Json/Table/IOType.d.ts.map +1 -0
  384. package/dist/ts/ts/Json/Table/IOType.js +15 -0
  385. package/dist/ts/ts/Json/Table/OATable.d.ts +10 -0
  386. package/dist/ts/ts/Json/Table/OATable.d.ts.map +1 -0
  387. package/dist/ts/ts/Json/Table/OATable.js +50 -0
  388. package/dist/ts/ts/Json/Table/Templates.d.ts +15 -0
  389. package/dist/ts/ts/Json/Table/Templates.d.ts.map +1 -0
  390. package/dist/ts/ts/Json/Table/Templates.js +101 -0
  391. package/dist/ts/ts/Json/Workflow.d.ts +11 -0
  392. package/dist/ts/ts/Json/Workflow.d.ts.map +1 -0
  393. package/dist/ts/ts/Json/Workflow.js +93 -0
  394. package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts +26 -0
  395. package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -0
  396. package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +87 -0
  397. package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts +16 -0
  398. package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -0
  399. package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +45 -0
  400. package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts +18 -0
  401. package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -0
  402. package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +59 -0
  403. package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts +26 -0
  404. package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -0
  405. package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +95 -0
  406. package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts +19 -0
  407. package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -0
  408. package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +56 -0
  409. package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +17 -0
  410. package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -0
  411. package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +54 -0
  412. package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +19 -0
  413. package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -0
  414. package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +60 -0
  415. package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts +15 -0
  416. package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -0
  417. package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +40 -0
  418. package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts +25 -0
  419. package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -0
  420. package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +110 -0
  421. package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts +23 -0
  422. package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -0
  423. package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +80 -0
  424. package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts +22 -0
  425. package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -0
  426. package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +83 -0
  427. package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts +19 -0
  428. package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -0
  429. package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +64 -0
  430. package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts +18 -0
  431. package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -0
  432. package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +51 -0
  433. package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts +18 -0
  434. package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -0
  435. package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +51 -0
  436. package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts +34 -0
  437. package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -0
  438. package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +111 -0
  439. package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts +3 -0
  440. package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -0
  441. package/dist/ts/ts/Json/context/rocrate/property_value_context.js +61 -0
  442. package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts +16 -0
  443. package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -0
  444. package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +61 -0
  445. package/dist/ts/ts/Json.d.ts +132 -0
  446. package/dist/ts/ts/Json.d.ts.map +1 -0
  447. package/dist/ts/ts/Json.js +321 -0
  448. package/dist/ts/ts/JsonIO/Assay.d.ts +19 -0
  449. package/dist/ts/ts/JsonIO/Assay.d.ts.map +1 -0
  450. package/dist/ts/ts/JsonIO/Assay.js +89 -0
  451. package/dist/ts/ts/JsonIO/Datamap.d.ts +7 -0
  452. package/dist/ts/ts/JsonIO/Datamap.d.ts.map +1 -0
  453. package/dist/ts/ts/JsonIO/Datamap.js +28 -0
  454. package/dist/ts/ts/JsonIO/Investigation.d.ts +19 -0
  455. package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -0
  456. package/dist/ts/ts/JsonIO/Investigation.js +89 -0
  457. package/dist/ts/ts/JsonIO/LDObject.d.ts +29 -0
  458. package/dist/ts/ts/JsonIO/LDObject.d.ts.map +1 -0
  459. package/dist/ts/ts/JsonIO/LDObject.js +91 -0
  460. package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts +16 -0
  461. package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -0
  462. package/dist/ts/ts/JsonIO/OntologyAnnotation.js +66 -0
  463. package/dist/ts/ts/JsonIO/Person.d.ts +16 -0
  464. package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -0
  465. package/dist/ts/ts/JsonIO/Person.js +67 -0
  466. package/dist/ts/ts/JsonIO/Run.d.ts +10 -0
  467. package/dist/ts/ts/JsonIO/Run.d.ts.map +1 -0
  468. package/dist/ts/ts/JsonIO/Run.js +50 -0
  469. package/dist/ts/ts/JsonIO/Study.d.ts +20 -0
  470. package/dist/ts/ts/JsonIO/Study.d.ts.map +1 -0
  471. package/dist/ts/ts/JsonIO/Study.js +89 -0
  472. package/dist/ts/ts/JsonIO/Table/Compression.d.ts +8 -0
  473. package/dist/ts/ts/JsonIO/Table/Compression.d.ts.map +1 -0
  474. package/dist/ts/ts/JsonIO/Table/Compression.js +39 -0
  475. package/dist/ts/ts/JsonIO/Table/Templates.d.ts +15 -0
  476. package/dist/ts/ts/JsonIO/Table/Templates.d.ts.map +1 -0
  477. package/dist/ts/ts/JsonIO/Table/Templates.js +80 -0
  478. package/dist/ts/ts/JsonIO/Workflow.d.ts +10 -0
  479. package/dist/ts/ts/JsonIO/Workflow.d.ts.map +1 -0
  480. package/dist/ts/ts/JsonIO/Workflow.js +50 -0
  481. package/dist/ts/ts/License.d.ts +39 -0
  482. package/dist/ts/ts/License.d.ts.map +1 -0
  483. package/dist/ts/ts/License.js +123 -0
  484. package/dist/ts/ts/ROCrate/Generic/Comment.d.ts +21 -0
  485. package/dist/ts/ts/ROCrate/Generic/Comment.d.ts.map +1 -0
  486. package/dist/ts/ts/ROCrate/Generic/Comment.js +107 -0
  487. package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts +69 -0
  488. package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts.map +1 -0
  489. package/dist/ts/ts/ROCrate/Generic/CreativeWork.js +450 -0
  490. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts +93 -0
  491. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +1 -0
  492. package/dist/ts/ts/ROCrate/Generic/Dataset.js +650 -0
  493. package/dist/ts/ts/ROCrate/Generic/DefinedTerm.d.ts +21 -0
  494. package/dist/ts/ts/ROCrate/Generic/DefinedTerm.d.ts.map +1 -0
  495. package/dist/ts/ts/ROCrate/Generic/DefinedTerm.js +107 -0
  496. package/dist/ts/ts/ROCrate/Generic/File.d.ts +35 -0
  497. package/dist/ts/ts/ROCrate/Generic/File.d.ts.map +1 -0
  498. package/dist/ts/ts/ROCrate/Generic/File.js +188 -0
  499. package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts +43 -0
  500. package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts.map +1 -0
  501. package/dist/ts/ts/ROCrate/Generic/LabProcess.js +226 -0
  502. package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts +44 -0
  503. package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts.map +1 -0
  504. package/dist/ts/ts/ROCrate/Generic/LabProtocol.js +261 -0
  505. package/dist/ts/ts/ROCrate/Generic/Organization.d.ts +17 -0
  506. package/dist/ts/ts/ROCrate/Generic/Organization.d.ts.map +1 -0
  507. package/dist/ts/ts/ROCrate/Generic/Organization.js +67 -0
  508. package/dist/ts/ts/ROCrate/Generic/Person.d.ts +51 -0
  509. package/dist/ts/ts/ROCrate/Generic/Person.d.ts.map +1 -0
  510. package/dist/ts/ts/ROCrate/Generic/Person.js +382 -0
  511. package/dist/ts/ts/ROCrate/Generic/PostalAddress.d.ts +25 -0
  512. package/dist/ts/ts/ROCrate/Generic/PostalAddress.d.ts.map +1 -0
  513. package/dist/ts/ts/ROCrate/Generic/PostalAddress.js +147 -0
  514. package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts +73 -0
  515. package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts.map +1 -0
  516. package/dist/ts/ts/ROCrate/Generic/PropertyValue.js +516 -0
  517. package/dist/ts/ts/ROCrate/Generic/Sample.d.ts +30 -0
  518. package/dist/ts/ts/ROCrate/Generic/Sample.d.ts.map +1 -0
  519. package/dist/ts/ts/ROCrate/Generic/Sample.js +135 -0
  520. package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.d.ts +34 -0
  521. package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.d.ts.map +1 -0
  522. package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.js +177 -0
  523. package/dist/ts/ts/ROCrate/Helper.d.ts.map +1 -0
  524. package/dist/ts/ts/ROCrate/Helper.js +7 -0
  525. package/dist/ts/ts/ROCrate/LDContext.d.ts +43 -0
  526. package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -0
  527. package/dist/ts/ts/ROCrate/LDContext.js +297 -0
  528. package/dist/ts/ts/ROCrate/LDObject.d.ts +97 -0
  529. package/dist/ts/ts/ROCrate/LDObject.d.ts.map +1 -0
  530. package/dist/ts/ts/ROCrate/LDObject.js +891 -0
  531. package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +7 -0
  532. package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -0
  533. package/dist/ts/ts/ROCrate/ROCrateContext.js +39 -0
  534. package/dist/ts/ts/ROCrateIO.d.ts +22 -0
  535. package/dist/ts/ts/ROCrateIO.d.ts.map +1 -0
  536. package/dist/ts/ts/ROCrateIO.js +111 -0
  537. package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +40 -0
  538. package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -0
  539. package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +152 -0
  540. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -0
  541. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -0
  542. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +64 -0
  543. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +24 -0
  544. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -0
  545. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +131 -0
  546. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +22 -0
  547. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -0
  548. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +410 -0
  549. package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts +31 -0
  550. package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts.map +1 -0
  551. package/dist/ts/ts/Spreadsheet/ArcAssay.js +184 -0
  552. package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts +42 -0
  553. package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -0
  554. package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +330 -0
  555. package/dist/ts/ts/Spreadsheet/ArcRun.d.ts +27 -0
  556. package/dist/ts/ts/Spreadsheet/ArcRun.d.ts.map +1 -0
  557. package/dist/ts/ts/Spreadsheet/ArcRun.js +151 -0
  558. package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts +26 -0
  559. package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts.map +1 -0
  560. package/dist/ts/ts/Spreadsheet/ArcStudy.js +107 -0
  561. package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts +27 -0
  562. package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -0
  563. package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +141 -0
  564. package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts +23 -0
  565. package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts.map +1 -0
  566. package/dist/ts/ts/Spreadsheet/CollectionAux.js +104 -0
  567. package/dist/ts/ts/Spreadsheet/DataMap.d.ts +8 -0
  568. package/dist/ts/ts/Spreadsheet/DataMap.d.ts.map +1 -0
  569. package/dist/ts/ts/Spreadsheet/DataMap.js +33 -0
  570. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts +7 -0
  571. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts.map +1 -0
  572. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.js +41 -0
  573. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts +23 -0
  574. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts.map +1 -0
  575. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.js +418 -0
  576. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts +23 -0
  577. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +1 -0
  578. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.js +85 -0
  579. package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts +14 -0
  580. package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -0
  581. package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +90 -0
  582. package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts +14 -0
  583. package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -0
  584. package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +58 -0
  585. package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts +25 -0
  586. package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -0
  587. package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +85 -0
  588. package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts +60 -0
  589. package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -0
  590. package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +136 -0
  591. package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +16 -0
  592. package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -0
  593. package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +21 -0
  594. package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts +18 -0
  595. package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -0
  596. package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +76 -0
  597. package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +12 -0
  598. package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -0
  599. package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +60 -0
  600. package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +18 -0
  601. package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -0
  602. package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +62 -0
  603. package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts +28 -0
  604. package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -0
  605. package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +96 -0
  606. package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts +21 -0
  607. package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -0
  608. package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +81 -0
  609. package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts +14 -0
  610. package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -0
  611. package/dist/ts/ts/Spreadsheet/Metadata/Run.js +91 -0
  612. package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts +37 -0
  613. package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -0
  614. package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +429 -0
  615. package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts +38 -0
  616. package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -0
  617. package/dist/ts/ts/Spreadsheet/Metadata/Study.js +244 -0
  618. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts +31 -0
  619. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -0
  620. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +115 -0
  621. package/dist/ts/ts/Template.Web.d.ts +11 -0
  622. package/dist/ts/ts/Template.Web.d.ts.map +1 -0
  623. package/dist/ts/ts/Template.Web.js +26 -0
  624. package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts +21 -0
  625. package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -0
  626. package/dist/ts/ts/ValidationPackages/ValidationPackage.js +60 -0
  627. package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts +23 -0
  628. package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -0
  629. package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +85 -0
  630. package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts +4 -0
  631. package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts.map +1 -0
  632. package/dist/ts/ts/WebRequest/WebRequest.Node.js +14 -0
  633. package/dist/ts/ts/WebRequest/WebRequest.d.ts +3 -0
  634. package/dist/ts/ts/WebRequest/WebRequest.d.ts.map +1 -0
  635. package/dist/ts/ts/WebRequest/WebRequest.js +19 -0
  636. package/dist/ts/ts/Xlsx.d.ts +70 -0
  637. package/dist/ts/ts/Xlsx.d.ts.map +1 -0
  638. package/dist/ts/ts/Xlsx.js +171 -0
  639. package/dist/ts/ts/Yaml/Encode.d.ts +5 -0
  640. package/dist/ts/ts/Yaml/Encode.d.ts.map +1 -0
  641. package/dist/ts/ts/Yaml/Encode.js +8 -0
  642. package/dist/ts/ts/Yaml/ValidationPackage.d.ts +10 -0
  643. package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -0
  644. package/dist/ts/ts/Yaml/ValidationPackage.js +42 -0
  645. package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +10 -0
  646. package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -0
  647. package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +43 -0
  648. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +367 -0
  649. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +114 -0
  650. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +45 -0
  651. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +21 -0
  652. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +70 -0
  653. package/dist/ts/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +5 -0
  654. package/dist/ts/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +274 -0
  655. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +114 -0
  656. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +15 -0
  657. package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +319 -0
  658. package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +154 -0
  659. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCell.fs.js +418 -0
  660. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCellsCollection.fs.js +354 -0
  661. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/CellBuilder.fs.js +198 -0
  662. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Expression.fs.js +46 -0
  663. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/RowBuilder.fs.js +131 -0
  664. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Types.fs.js +307 -0
  665. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js +190 -0
  666. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsColumn.fs.js +123 -0
  667. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsRow.fs.js +133 -0
  668. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorkbook.fs.js +142 -0
  669. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorksheet.fs.js +429 -0
  670. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/HashCodes.fs.js +35 -0
  671. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Cell.fs.js +65 -0
  672. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Column.fs.js +38 -0
  673. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Row.fs.js +38 -0
  674. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Table.fs.js +34 -0
  675. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Value.fs.js +71 -0
  676. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Workbook.fs.js +44 -0
  677. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Worksheet.fs.js +129 -0
  678. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRange.fs.js +35 -0
  679. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeAddress.fs.js +161 -0
  680. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeBase.fs.js +78 -0
  681. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeColumn.fs.js +57 -0
  682. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeRow.fs.js +36 -0
  683. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTable.fs.js +355 -0
  684. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTableField.fs.js +95 -0
  685. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +68 -0
  686. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/FsExtensions.fs.js +51 -0
  687. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Json.fs.js +53 -0
  688. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Table.fs.js +54 -0
  689. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Workbook.fs.js +33 -0
  690. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Worksheet.fs.js +63 -0
  691. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Xlsx.fs.js +70 -0
  692. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Decode.fs.js +1251 -0
  693. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Encode.fs.js +216 -0
  694. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Types.fs.js +82 -0
  695. package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js +92 -0
  696. package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Encode.fs.js +57 -0
  697. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +1603 -0
  698. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +57 -0
  699. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +10 -0
  700. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +45 -0
  701. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +99 -0
  702. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +483 -0
  703. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +11 -0
  704. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +212 -0
  705. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +164 -0
  706. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +152 -0
  707. package/package.json +16 -10
  708. package/dist/ts/cjs/index.js +0 -85
  709. package/dist/ts/cjs/ts/ARC.js +0 -973
  710. package/dist/ts/cjs/ts/Contract/ARC.js +0 -61
  711. package/dist/ts/cjs/ts/Contract/ArcAssay.js +0 -103
  712. package/dist/ts/cjs/ts/Contract/ArcInvestigation.js +0 -77
  713. package/dist/ts/cjs/ts/Contract/ArcRun.js +0 -103
  714. package/dist/ts/cjs/ts/Contract/ArcStudy.js +0 -103
  715. package/dist/ts/cjs/ts/Contract/ArcWorkflow.js +0 -104
  716. package/dist/ts/cjs/ts/Contract/Contract.js +0 -100
  717. package/dist/ts/cjs/ts/Contract/Datamap.js +0 -314
  718. package/dist/ts/cjs/ts/Contract/Git.js +0 -94
  719. package/dist/ts/cjs/ts/Contract/ValidationPackagesConfig.js +0 -97
  720. package/dist/ts/cjs/ts/ContractIO/ContractIO.js +0 -217
  721. package/dist/ts/cjs/ts/ContractIO/FileSystemHelper.js +0 -205
  722. package/dist/ts/cjs/ts/Conversion.js +0 -1774
  723. package/dist/ts/cjs/ts/Core/ArcTypes.js +0 -3803
  724. package/dist/ts/cjs/ts/Core/Comment.js +0 -106
  725. package/dist/ts/cjs/ts/Core/CommentList.js +0 -134
  726. package/dist/ts/cjs/ts/Core/Conversion.js +0 -1198
  727. package/dist/ts/cjs/ts/Core/Data.js +0 -194
  728. package/dist/ts/cjs/ts/Core/DataContext.js +0 -141
  729. package/dist/ts/cjs/ts/Core/DataFile.js +0 -98
  730. package/dist/ts/cjs/ts/Core/DataMap.js +0 -185
  731. package/dist/ts/cjs/ts/Core/Helper/Collections.js +0 -502
  732. package/dist/ts/cjs/ts/Core/Helper/HashCodes.js +0 -40
  733. package/dist/ts/cjs/ts/Core/Helper/Identifier.js +0 -329
  734. package/dist/ts/cjs/ts/Core/Helper/ORCID.js +0 -40
  735. package/dist/ts/cjs/ts/Core/Helper/Printer.js +0 -2
  736. package/dist/ts/cjs/ts/Core/Helper/Regex.js +0 -616
  737. package/dist/ts/cjs/ts/Core/Helper/SemVer.js +0 -59
  738. package/dist/ts/cjs/ts/Core/Helper/Url.js +0 -40
  739. package/dist/ts/cjs/ts/Core/IPropertyValue.js +0 -2
  740. package/dist/ts/cjs/ts/Core/IdentifierSetters.js +0 -27
  741. package/dist/ts/cjs/ts/Core/OntologyAnnotation.js +0 -219
  742. package/dist/ts/cjs/ts/Core/OntologySourceReference.js +0 -94
  743. package/dist/ts/cjs/ts/Core/Person.js +0 -196
  744. package/dist/ts/cjs/ts/Core/Process/ColumnIndex.js +0 -258
  745. package/dist/ts/cjs/ts/Core/Process/Component.js +0 -200
  746. package/dist/ts/cjs/ts/Core/Process/Factor.js +0 -111
  747. package/dist/ts/cjs/ts/Core/Process/FactorValue.js +0 -143
  748. package/dist/ts/cjs/ts/Core/Process/Material.js +0 -68
  749. package/dist/ts/cjs/ts/Core/Process/MaterialAttribute.js +0 -103
  750. package/dist/ts/cjs/ts/Core/Process/MaterialAttributeValue.js +0 -160
  751. package/dist/ts/cjs/ts/Core/Process/MaterialType.js +0 -51
  752. package/dist/ts/cjs/ts/Core/Process/Process.js +0 -371
  753. package/dist/ts/cjs/ts/Core/Process/ProcessInput.js +0 -321
  754. package/dist/ts/cjs/ts/Core/Process/ProcessOutput.js +0 -282
  755. package/dist/ts/cjs/ts/Core/Process/ProcessParameterValue.js +0 -141
  756. package/dist/ts/cjs/ts/Core/Process/ProcessSequence.js +0 -250
  757. package/dist/ts/cjs/ts/Core/Process/Protocol.js +0 -248
  758. package/dist/ts/cjs/ts/Core/Process/ProtocolParameter.js +0 -75
  759. package/dist/ts/cjs/ts/Core/Process/Sample.js +0 -73
  760. package/dist/ts/cjs/ts/Core/Process/Source.js +0 -56
  761. package/dist/ts/cjs/ts/Core/Publication.js +0 -118
  762. package/dist/ts/cjs/ts/Core/Table/ArcTable.js +0 -923
  763. package/dist/ts/cjs/ts/Core/Table/ArcTableAux.js +0 -1262
  764. package/dist/ts/cjs/ts/Core/Table/ArcTables.js +0 -476
  765. package/dist/ts/cjs/ts/Core/Table/CompositeCell.js +0 -317
  766. package/dist/ts/cjs/ts/Core/Table/CompositeColumn.js +0 -60
  767. package/dist/ts/cjs/ts/Core/Table/CompositeHeader.js +0 -718
  768. package/dist/ts/cjs/ts/Core/Template.js +0 -196
  769. package/dist/ts/cjs/ts/Core/Templates.js +0 -86
  770. package/dist/ts/cjs/ts/Core/URI.js +0 -20
  771. package/dist/ts/cjs/ts/Core/Value.js +0 -191
  772. package/dist/ts/cjs/ts/CrossAsync.js +0 -35
  773. package/dist/ts/cjs/ts/FileSystem/Commit.js +0 -20
  774. package/dist/ts/cjs/ts/FileSystem/DefaultGitattributes.js +0 -4
  775. package/dist/ts/cjs/ts/FileSystem/DefaultGitignore.js +0 -4
  776. package/dist/ts/cjs/ts/FileSystem/FileSystem.js +0 -55
  777. package/dist/ts/cjs/ts/FileSystem/FileSystemTree.js +0 -322
  778. package/dist/ts/cjs/ts/FileSystem/Path.js +0 -63
  779. package/dist/ts/cjs/ts/Json/Assay.js +0 -234
  780. package/dist/ts/cjs/ts/Json/Comment.js +0 -119
  781. package/dist/ts/cjs/ts/Json/Data.js +0 -147
  782. package/dist/ts/cjs/ts/Json/DataFile.js +0 -54
  783. package/dist/ts/cjs/ts/Json/DataMap/DataContext.js +0 -40
  784. package/dist/ts/cjs/ts/Json/DataMap/DataMap.js +0 -30
  785. package/dist/ts/cjs/ts/Json/Decode.js +0 -231
  786. package/dist/ts/cjs/ts/Json/Encode.js +0 -117
  787. package/dist/ts/cjs/ts/Json/IDTable.js +0 -30
  788. package/dist/ts/cjs/ts/Json/Investigation.js +0 -254
  789. package/dist/ts/cjs/ts/Json/OntologyAnnotation.js +0 -207
  790. package/dist/ts/cjs/ts/Json/OntologySourceReference.js +0 -125
  791. package/dist/ts/cjs/ts/Json/Person.js +0 -338
  792. package/dist/ts/cjs/ts/Json/Process/AssayMaterials.js +0 -21
  793. package/dist/ts/cjs/ts/Json/Process/Component.js +0 -47
  794. package/dist/ts/cjs/ts/Json/Process/Factor.js +0 -58
  795. package/dist/ts/cjs/ts/Json/Process/FactorValue.js +0 -47
  796. package/dist/ts/cjs/ts/Json/Process/Material.js +0 -120
  797. package/dist/ts/cjs/ts/Json/Process/MaterialAttribute.js +0 -47
  798. package/dist/ts/cjs/ts/Json/Process/MaterialAttributeValue.js +0 -47
  799. package/dist/ts/cjs/ts/Json/Process/MaterialType.js +0 -46
  800. package/dist/ts/cjs/ts/Json/Process/Process.js +0 -109
  801. package/dist/ts/cjs/ts/Json/Process/ProcessInput.js +0 -38
  802. package/dist/ts/cjs/ts/Json/Process/ProcessOutput.js +0 -33
  803. package/dist/ts/cjs/ts/Json/Process/ProcessParameterValue.js +0 -33
  804. package/dist/ts/cjs/ts/Json/Process/Protocol.js +0 -180
  805. package/dist/ts/cjs/ts/Json/Process/ProtocolParameter.js +0 -47
  806. package/dist/ts/cjs/ts/Json/Process/Sample.js +0 -176
  807. package/dist/ts/cjs/ts/Json/Process/Source.js +0 -145
  808. package/dist/ts/cjs/ts/Json/Process/StudyMaterials.js +0 -23
  809. package/dist/ts/cjs/ts/Json/Process/Value.js +0 -39
  810. package/dist/ts/cjs/ts/Json/PropertyValue.js +0 -300
  811. package/dist/ts/cjs/ts/Json/Publication.js +0 -130
  812. package/dist/ts/cjs/ts/Json/ROCrate/LDContext.js +0 -123
  813. package/dist/ts/cjs/ts/Json/ROCrate/LDGraph.js +0 -88
  814. package/dist/ts/cjs/ts/Json/ROCrate/LDNode.js +0 -213
  815. package/dist/ts/cjs/ts/Json/ROCrate/LDRef.js +0 -25
  816. package/dist/ts/cjs/ts/Json/ROCrate/LDValue.js +0 -70
  817. package/dist/ts/cjs/ts/Json/StringTable.js +0 -70
  818. package/dist/ts/cjs/ts/Json/Study.js +0 -347
  819. package/dist/ts/cjs/ts/Json/Table/ArcTable.js +0 -217
  820. package/dist/ts/cjs/ts/Json/Table/CellTable.js +0 -58
  821. package/dist/ts/cjs/ts/Json/Table/CompositeCell.js +0 -103
  822. package/dist/ts/cjs/ts/Json/Table/CompositeHeader.js +0 -108
  823. package/dist/ts/cjs/ts/Json/Table/IOType.js +0 -16
  824. package/dist/ts/cjs/ts/Json/Table/OATable.js +0 -55
  825. package/dist/ts/cjs/ts/Json/Table/Templates.js +0 -106
  826. package/dist/ts/cjs/ts/Json/context/rocrate/isa_assay_context.js +0 -89
  827. package/dist/ts/cjs/ts/Json/context/rocrate/isa_comment_context.js +0 -47
  828. package/dist/ts/cjs/ts/Json/context/rocrate/isa_data_context.js +0 -61
  829. package/dist/ts/cjs/ts/Json/context/rocrate/isa_investigation_context.js +0 -97
  830. package/dist/ts/cjs/ts/Json/context/rocrate/isa_material_context.js +0 -58
  831. package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_annotation_context.js +0 -56
  832. package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +0 -62
  833. package/dist/ts/cjs/ts/Json/context/rocrate/isa_organization_context.js +0 -42
  834. package/dist/ts/cjs/ts/Json/context/rocrate/isa_person_context.js +0 -112
  835. package/dist/ts/cjs/ts/Json/context/rocrate/isa_process_context.js +0 -82
  836. package/dist/ts/cjs/ts/Json/context/rocrate/isa_protocol_context.js +0 -85
  837. package/dist/ts/cjs/ts/Json/context/rocrate/isa_publication_context.js +0 -66
  838. package/dist/ts/cjs/ts/Json/context/rocrate/isa_sample_context.js +0 -53
  839. package/dist/ts/cjs/ts/Json/context/rocrate/isa_source_context.js +0 -53
  840. package/dist/ts/cjs/ts/Json/context/rocrate/isa_study_context.js +0 -113
  841. package/dist/ts/cjs/ts/Json/context/rocrate/property_value_context.js +0 -61
  842. package/dist/ts/cjs/ts/Json/context/rocrate/rocrate_context.js +0 -63
  843. package/dist/ts/cjs/ts/Json.js +0 -195
  844. package/dist/ts/cjs/ts/JsonIO/Assay.js +0 -104
  845. package/dist/ts/cjs/ts/JsonIO/Investigation.js +0 -104
  846. package/dist/ts/cjs/ts/JsonIO/LDObject.js +0 -107
  847. package/dist/ts/cjs/ts/JsonIO/OntologyAnnotation.js +0 -77
  848. package/dist/ts/cjs/ts/JsonIO/Study.js +0 -104
  849. package/dist/ts/cjs/ts/JsonIO/Table/Compression.js +0 -40
  850. package/dist/ts/cjs/ts/JsonIO/Table/Templates.js +0 -92
  851. package/dist/ts/cjs/ts/ROCrate/Generic/Comment.js +0 -117
  852. package/dist/ts/cjs/ts/ROCrate/Generic/Dataset.js +0 -671
  853. package/dist/ts/cjs/ts/ROCrate/Generic/DefinedTerm.js +0 -117
  854. package/dist/ts/cjs/ts/ROCrate/Generic/File.js +0 -202
  855. package/dist/ts/cjs/ts/ROCrate/Generic/LabProcess.js +0 -240
  856. package/dist/ts/cjs/ts/ROCrate/Generic/LabProtocol.js +0 -277
  857. package/dist/ts/cjs/ts/ROCrate/Generic/Organization.js +0 -73
  858. package/dist/ts/cjs/ts/ROCrate/Generic/Person.js +0 -413
  859. package/dist/ts/cjs/ts/ROCrate/Generic/PostalAddress.js +0 -161
  860. package/dist/ts/cjs/ts/ROCrate/Generic/PropertyValue.js +0 -550
  861. package/dist/ts/cjs/ts/ROCrate/Generic/Sample.js +0 -141
  862. package/dist/ts/cjs/ts/ROCrate/Generic/ScholarlyArticle.js +0 -189
  863. package/dist/ts/cjs/ts/ROCrate/Helper.js +0 -7
  864. package/dist/ts/cjs/ts/ROCrate/LDContext.js +0 -322
  865. package/dist/ts/cjs/ts/ROCrate/LDObject.js +0 -984
  866. package/dist/ts/cjs/ts/ROCrate/ROCrateContext.js +0 -44
  867. package/dist/ts/cjs/ts/ROCrateIO.js +0 -64
  868. package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/ArcTable.js +0 -176
  869. package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeCell.js +0 -68
  870. package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -150
  871. package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +0 -476
  872. package/dist/ts/cjs/ts/Spreadsheet/ArcAssay.js +0 -218
  873. package/dist/ts/cjs/ts/Spreadsheet/ArcInvestigation.js +0 -356
  874. package/dist/ts/cjs/ts/Spreadsheet/ArcRun.js +0 -177
  875. package/dist/ts/cjs/ts/Spreadsheet/ArcStudy.js +0 -130
  876. package/dist/ts/cjs/ts/Spreadsheet/ArcWorkflow.js +0 -166
  877. package/dist/ts/cjs/ts/Spreadsheet/CollectionAux.js +0 -128
  878. package/dist/ts/cjs/ts/Spreadsheet/DataMap.js +0 -41
  879. package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapColumn.js +0 -43
  880. package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapHeader.js +0 -480
  881. package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapTable.js +0 -105
  882. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Assays.js +0 -98
  883. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Comment.js +0 -68
  884. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Contacts.js +0 -92
  885. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Conversions.js +0 -187
  886. package/dist/ts/cjs/ts/Spreadsheet/Metadata/DesignDescriptors.js +0 -25
  887. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Factors.js +0 -83
  888. package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologyAnnotation.js +0 -65
  889. package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologySourceReference.js +0 -68
  890. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Protocols.js +0 -103
  891. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Publication.js +0 -88
  892. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Run.js +0 -99
  893. package/dist/ts/cjs/ts/Spreadsheet/Metadata/SparseTable.js +0 -457
  894. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Study.js +0 -259
  895. package/dist/ts/cjs/ts/Spreadsheet/Metadata/Workflow.js +0 -111
  896. package/dist/ts/cjs/ts/Template.Web.js +0 -29
  897. package/dist/ts/cjs/ts/ValidationPackages/ValidationPackage.js +0 -63
  898. package/dist/ts/cjs/ts/ValidationPackages/ValidationPackagesConfig.js +0 -90
  899. package/dist/ts/cjs/ts/WebRequest/WebRequest.Node.js +0 -17
  900. package/dist/ts/cjs/ts/WebRequest/WebRequest.js +0 -20
  901. package/dist/ts/cjs/ts/Xlsx.js +0 -133
  902. package/dist/ts/cjs/ts/Yaml/Encode.js +0 -9
  903. package/dist/ts/cjs/ts/Yaml/ValidationPackage.js +0 -49
  904. package/dist/ts/cjs/ts/Yaml/ValidationPackagesConfig.js +0 -50
  905. package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +0 -444
  906. package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +0 -142
  907. package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +0 -53
  908. package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +0 -23
  909. package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +0 -87
  910. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +0 -2
  911. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +0 -2
  912. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +0 -5
  913. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +0 -2
  914. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +0 -123
  915. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +0 -2
  916. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +0 -2
  917. package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +0 -2
  918. package/dist/ts/cjs/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +0 -360
  919. package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +0 -220
  920. package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +0 -20
  921. package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +0 -431
  922. package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +0 -186
  923. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +0 -477
  924. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +0 -521
  925. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +0 -211
  926. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +0 -58
  927. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +0 -139
  928. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +0 -365
  929. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +0 -259
  930. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +0 -127
  931. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +0 -137
  932. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +0 -140
  933. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +0 -435
  934. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +0 -69
  935. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +0 -40
  936. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +0 -40
  937. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +0 -31
  938. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +0 -78
  939. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +0 -46
  940. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +0 -134
  941. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +0 -43
  942. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +0 -238
  943. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +0 -93
  944. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +0 -76
  945. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +0 -42
  946. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +0 -332
  947. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +0 -175
  948. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +0 -80
  949. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +0 -65
  950. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +0 -53
  951. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +0 -55
  952. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +0 -34
  953. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +0 -68
  954. package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +0 -72
  955. package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +0 -1316
  956. package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +0 -200
  957. package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +0 -103
  958. package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +0 -97
  959. package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +0 -59
  960. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +0 -1723
  961. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +0 -75
  962. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -13
  963. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -50
  964. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +0 -104
  965. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -527
  966. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -12
  967. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -235
  968. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -166
  969. package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -174
  970. package/dist/ts/esm/index.js +0 -60
  971. package/dist/ts/esm/ts/ARC.js +0 -956
  972. package/dist/ts/esm/ts/Contract/ARC.js +0 -58
  973. package/dist/ts/esm/ts/Contract/ArcAssay.js +0 -93
  974. package/dist/ts/esm/ts/Contract/ArcInvestigation.js +0 -69
  975. package/dist/ts/esm/ts/Contract/ArcRun.js +0 -93
  976. package/dist/ts/esm/ts/Contract/ArcStudy.js +0 -93
  977. package/dist/ts/esm/ts/Contract/ArcWorkflow.js +0 -94
  978. package/dist/ts/esm/ts/Contract/Contract.js +0 -87
  979. package/dist/ts/esm/ts/Contract/Datamap.js +0 -287
  980. package/dist/ts/esm/ts/Contract/Git.js +0 -72
  981. package/dist/ts/esm/ts/Contract/ValidationPackagesConfig.js +0 -88
  982. package/dist/ts/esm/ts/ContractIO/ContractIO.js +0 -207
  983. package/dist/ts/esm/ts/ContractIO/FileSystemHelper.js +0 -176
  984. package/dist/ts/esm/ts/Conversion.js +0 -1654
  985. package/dist/ts/esm/ts/Core/ArcTypes.js +0 -3728
  986. package/dist/ts/esm/ts/Core/Comment.js +0 -98
  987. package/dist/ts/esm/ts/Core/CommentList.js +0 -126
  988. package/dist/ts/esm/ts/Core/Conversion.js +0 -1145
  989. package/dist/ts/esm/ts/Core/Data.js +0 -186
  990. package/dist/ts/esm/ts/Core/DataContext.js +0 -119
  991. package/dist/ts/esm/ts/Core/DataFile.js +0 -82
  992. package/dist/ts/esm/ts/Core/DataMap.js +0 -156
  993. package/dist/ts/esm/ts/Core/Helper/Collections.js +0 -462
  994. package/dist/ts/esm/ts/Core/Helper/HashCodes.js +0 -32
  995. package/dist/ts/esm/ts/Core/Helper/Identifier.js +0 -298
  996. package/dist/ts/esm/ts/Core/Helper/ORCID.js +0 -34
  997. package/dist/ts/esm/ts/Core/Helper/Printer.js +0 -1
  998. package/dist/ts/esm/ts/Core/Helper/Regex.js +0 -579
  999. package/dist/ts/esm/ts/Core/Helper/SemVer.js +0 -50
  1000. package/dist/ts/esm/ts/Core/Helper/Url.js +0 -30
  1001. package/dist/ts/esm/ts/Core/IPropertyValue.js +0 -1
  1002. package/dist/ts/esm/ts/Core/IdentifierSetters.js +0 -21
  1003. package/dist/ts/esm/ts/Core/OntologyAnnotation.js +0 -213
  1004. package/dist/ts/esm/ts/Core/OntologySourceReference.js +0 -88
  1005. package/dist/ts/esm/ts/Core/Person.js +0 -190
  1006. package/dist/ts/esm/ts/Core/Process/ColumnIndex.js +0 -204
  1007. package/dist/ts/esm/ts/Core/Process/Component.js +0 -180
  1008. package/dist/ts/esm/ts/Core/Process/Factor.js +0 -106
  1009. package/dist/ts/esm/ts/Core/Process/FactorValue.js +0 -127
  1010. package/dist/ts/esm/ts/Core/Process/Material.js +0 -57
  1011. package/dist/ts/esm/ts/Core/Process/MaterialAttribute.js +0 -86
  1012. package/dist/ts/esm/ts/Core/Process/MaterialAttributeValue.js +0 -142
  1013. package/dist/ts/esm/ts/Core/Process/MaterialType.js +0 -42
  1014. package/dist/ts/esm/ts/Core/Process/Process.js +0 -341
  1015. package/dist/ts/esm/ts/Core/Process/ProcessInput.js +0 -283
  1016. package/dist/ts/esm/ts/Core/Process/ProcessOutput.js +0 -248
  1017. package/dist/ts/esm/ts/Core/Process/ProcessParameterValue.js +0 -136
  1018. package/dist/ts/esm/ts/Core/Process/ProcessSequence.js +0 -227
  1019. package/dist/ts/esm/ts/Core/Process/Protocol.js +0 -210
  1020. package/dist/ts/esm/ts/Core/Process/ProtocolParameter.js +0 -70
  1021. package/dist/ts/esm/ts/Core/Process/Sample.js +0 -59
  1022. package/dist/ts/esm/ts/Core/Process/Source.js +0 -45
  1023. package/dist/ts/esm/ts/Core/Publication.js +0 -112
  1024. package/dist/ts/esm/ts/Core/Table/ArcTable.js +0 -917
  1025. package/dist/ts/esm/ts/Core/Table/ArcTableAux.js +0 -1213
  1026. package/dist/ts/esm/ts/Core/Table/ArcTables.js +0 -461
  1027. package/dist/ts/esm/ts/Core/Table/CompositeCell.js +0 -308
  1028. package/dist/ts/esm/ts/Core/Table/CompositeColumn.js +0 -55
  1029. package/dist/ts/esm/ts/Core/Table/CompositeHeader.js +0 -691
  1030. package/dist/ts/esm/ts/Core/Template.js +0 -186
  1031. package/dist/ts/esm/ts/Core/Templates.js +0 -79
  1032. package/dist/ts/esm/ts/Core/URI.js +0 -16
  1033. package/dist/ts/esm/ts/Core/Value.js +0 -182
  1034. package/dist/ts/esm/ts/CrossAsync.js +0 -27
  1035. package/dist/ts/esm/ts/FileSystem/Commit.js +0 -15
  1036. package/dist/ts/esm/ts/FileSystem/DefaultGitattributes.js +0 -1
  1037. package/dist/ts/esm/ts/FileSystem/DefaultGitignore.js +0 -1
  1038. package/dist/ts/esm/ts/FileSystem/FileSystem.js +0 -50
  1039. package/dist/ts/esm/ts/FileSystem/FileSystemTree.js +0 -315
  1040. package/dist/ts/esm/ts/FileSystem/Path.js +0 -51
  1041. package/dist/ts/esm/ts/Json/Assay.js +0 -225
  1042. package/dist/ts/esm/ts/Json/Comment.js +0 -111
  1043. package/dist/ts/esm/ts/Json/Data.js +0 -138
  1044. package/dist/ts/esm/ts/Json/DataFile.js +0 -50
  1045. package/dist/ts/esm/ts/Json/DataMap/DataContext.js +0 -36
  1046. package/dist/ts/esm/ts/Json/DataMap/DataMap.js +0 -24
  1047. package/dist/ts/esm/ts/Json/Decode.js +0 -219
  1048. package/dist/ts/esm/ts/Json/Encode.js +0 -103
  1049. package/dist/ts/esm/ts/Json/IDTable.js +0 -26
  1050. package/dist/ts/esm/ts/Json/Investigation.js +0 -244
  1051. package/dist/ts/esm/ts/Json/OntologyAnnotation.js +0 -197
  1052. package/dist/ts/esm/ts/Json/OntologySourceReference.js +0 -118
  1053. package/dist/ts/esm/ts/Json/Person.js +0 -329
  1054. package/dist/ts/esm/ts/Json/Process/AssayMaterials.js +0 -18
  1055. package/dist/ts/esm/ts/Json/Process/Component.js +0 -42
  1056. package/dist/ts/esm/ts/Json/Process/Factor.js +0 -53
  1057. package/dist/ts/esm/ts/Json/Process/FactorValue.js +0 -42
  1058. package/dist/ts/esm/ts/Json/Process/Material.js +0 -114
  1059. package/dist/ts/esm/ts/Json/Process/MaterialAttribute.js +0 -42
  1060. package/dist/ts/esm/ts/Json/Process/MaterialAttributeValue.js +0 -42
  1061. package/dist/ts/esm/ts/Json/Process/MaterialType.js +0 -42
  1062. package/dist/ts/esm/ts/Json/Process/Process.js +0 -103
  1063. package/dist/ts/esm/ts/Json/Process/ProcessInput.js +0 -33
  1064. package/dist/ts/esm/ts/Json/Process/ProcessOutput.js +0 -28
  1065. package/dist/ts/esm/ts/Json/Process/ProcessParameterValue.js +0 -28
  1066. package/dist/ts/esm/ts/Json/Process/Protocol.js +0 -174
  1067. package/dist/ts/esm/ts/Json/Process/ProtocolParameter.js +0 -42
  1068. package/dist/ts/esm/ts/Json/Process/Sample.js +0 -170
  1069. package/dist/ts/esm/ts/Json/Process/Source.js +0 -139
  1070. package/dist/ts/esm/ts/Json/Process/StudyMaterials.js +0 -20
  1071. package/dist/ts/esm/ts/Json/Process/Value.js +0 -35
  1072. package/dist/ts/esm/ts/Json/PropertyValue.js +0 -295
  1073. package/dist/ts/esm/ts/Json/Publication.js +0 -123
  1074. package/dist/ts/esm/ts/Json/ROCrate/LDContext.js +0 -119
  1075. package/dist/ts/esm/ts/Json/ROCrate/LDGraph.js +0 -84
  1076. package/dist/ts/esm/ts/Json/ROCrate/LDNode.js +0 -207
  1077. package/dist/ts/esm/ts/Json/ROCrate/LDRef.js +0 -21
  1078. package/dist/ts/esm/ts/Json/ROCrate/LDValue.js +0 -65
  1079. package/dist/ts/esm/ts/Json/StringTable.js +0 -63
  1080. package/dist/ts/esm/ts/Json/Study.js +0 -337
  1081. package/dist/ts/esm/ts/Json/Table/ArcTable.js +0 -208
  1082. package/dist/ts/esm/ts/Json/Table/CellTable.js +0 -51
  1083. package/dist/ts/esm/ts/Json/Table/CompositeCell.js +0 -97
  1084. package/dist/ts/esm/ts/Json/Table/CompositeHeader.js +0 -104
  1085. package/dist/ts/esm/ts/Json/Table/IOType.js +0 -12
  1086. package/dist/ts/esm/ts/Json/Table/OATable.js +0 -48
  1087. package/dist/ts/esm/ts/Json/Table/Templates.js +0 -98
  1088. package/dist/ts/esm/ts/Json/context/rocrate/isa_assay_context.js +0 -84
  1089. package/dist/ts/esm/ts/Json/context/rocrate/isa_comment_context.js +0 -42
  1090. package/dist/ts/esm/ts/Json/context/rocrate/isa_data_context.js +0 -56
  1091. package/dist/ts/esm/ts/Json/context/rocrate/isa_investigation_context.js +0 -92
  1092. package/dist/ts/esm/ts/Json/context/rocrate/isa_material_context.js +0 -53
  1093. package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_annotation_context.js +0 -51
  1094. package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +0 -57
  1095. package/dist/ts/esm/ts/Json/context/rocrate/isa_organization_context.js +0 -37
  1096. package/dist/ts/esm/ts/Json/context/rocrate/isa_person_context.js +0 -107
  1097. package/dist/ts/esm/ts/Json/context/rocrate/isa_process_context.js +0 -77
  1098. package/dist/ts/esm/ts/Json/context/rocrate/isa_protocol_context.js +0 -80
  1099. package/dist/ts/esm/ts/Json/context/rocrate/isa_publication_context.js +0 -61
  1100. package/dist/ts/esm/ts/Json/context/rocrate/isa_sample_context.js +0 -48
  1101. package/dist/ts/esm/ts/Json/context/rocrate/isa_source_context.js +0 -48
  1102. package/dist/ts/esm/ts/Json/context/rocrate/isa_study_context.js +0 -108
  1103. package/dist/ts/esm/ts/Json/context/rocrate/property_value_context.js +0 -58
  1104. package/dist/ts/esm/ts/Json/context/rocrate/rocrate_context.js +0 -58
  1105. package/dist/ts/esm/ts/Json.js +0 -175
  1106. package/dist/ts/esm/ts/JsonIO/Assay.js +0 -90
  1107. package/dist/ts/esm/ts/JsonIO/Investigation.js +0 -90
  1108. package/dist/ts/esm/ts/JsonIO/LDObject.js +0 -94
  1109. package/dist/ts/esm/ts/JsonIO/OntologyAnnotation.js +0 -66
  1110. package/dist/ts/esm/ts/JsonIO/Study.js +0 -90
  1111. package/dist/ts/esm/ts/JsonIO/Table/Compression.js +0 -36
  1112. package/dist/ts/esm/ts/JsonIO/Table/Templates.js +0 -80
  1113. package/dist/ts/esm/ts/ROCrate/Generic/Comment.js +0 -112
  1114. package/dist/ts/esm/ts/ROCrate/Generic/Dataset.js +0 -666
  1115. package/dist/ts/esm/ts/ROCrate/Generic/DefinedTerm.js +0 -112
  1116. package/dist/ts/esm/ts/ROCrate/Generic/File.js +0 -197
  1117. package/dist/ts/esm/ts/ROCrate/Generic/LabProcess.js +0 -235
  1118. package/dist/ts/esm/ts/ROCrate/Generic/LabProtocol.js +0 -272
  1119. package/dist/ts/esm/ts/ROCrate/Generic/Organization.js +0 -68
  1120. package/dist/ts/esm/ts/ROCrate/Generic/Person.js +0 -408
  1121. package/dist/ts/esm/ts/ROCrate/Generic/PostalAddress.js +0 -156
  1122. package/dist/ts/esm/ts/ROCrate/Generic/PropertyValue.js +0 -545
  1123. package/dist/ts/esm/ts/ROCrate/Generic/Sample.js +0 -136
  1124. package/dist/ts/esm/ts/ROCrate/Generic/ScholarlyArticle.js +0 -184
  1125. package/dist/ts/esm/ts/ROCrate/Helper.js +0 -4
  1126. package/dist/ts/esm/ts/ROCrate/LDContext.js +0 -313
  1127. package/dist/ts/esm/ts/ROCrate/LDObject.js +0 -967
  1128. package/dist/ts/esm/ts/ROCrate/ROCrateContext.js +0 -38
  1129. package/dist/ts/esm/ts/ROCrateIO.js +0 -54
  1130. package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/ArcTable.js +0 -164
  1131. package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeCell.js +0 -61
  1132. package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -141
  1133. package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +0 -460
  1134. package/dist/ts/esm/ts/Spreadsheet/ArcAssay.js +0 -204
  1135. package/dist/ts/esm/ts/Spreadsheet/ArcInvestigation.js +0 -334
  1136. package/dist/ts/esm/ts/Spreadsheet/ArcRun.js +0 -163
  1137. package/dist/ts/esm/ts/Spreadsheet/ArcStudy.js +0 -117
  1138. package/dist/ts/esm/ts/Spreadsheet/ArcWorkflow.js +0 -152
  1139. package/dist/ts/esm/ts/Spreadsheet/CollectionAux.js +0 -117
  1140. package/dist/ts/esm/ts/Spreadsheet/DataMap.js +0 -37
  1141. package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapColumn.js +0 -39
  1142. package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapHeader.js +0 -463
  1143. package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapTable.js +0 -97
  1144. package/dist/ts/esm/ts/Spreadsheet/Metadata/Assays.js +0 -90
  1145. package/dist/ts/esm/ts/Spreadsheet/Metadata/Comment.js +0 -59
  1146. package/dist/ts/esm/ts/Spreadsheet/Metadata/Contacts.js +0 -84
  1147. package/dist/ts/esm/ts/Spreadsheet/Metadata/Conversions.js +0 -176
  1148. package/dist/ts/esm/ts/Spreadsheet/Metadata/DesignDescriptors.js +0 -18
  1149. package/dist/ts/esm/ts/Spreadsheet/Metadata/Factors.js +0 -75
  1150. package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologyAnnotation.js +0 -59
  1151. package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologySourceReference.js +0 -60
  1152. package/dist/ts/esm/ts/Spreadsheet/Metadata/Protocols.js +0 -95
  1153. package/dist/ts/esm/ts/Spreadsheet/Metadata/Publication.js +0 -80
  1154. package/dist/ts/esm/ts/Spreadsheet/Metadata/Run.js +0 -91
  1155. package/dist/ts/esm/ts/Spreadsheet/Metadata/SparseTable.js +0 -434
  1156. package/dist/ts/esm/ts/Spreadsheet/Metadata/Study.js +0 -245
  1157. package/dist/ts/esm/ts/Spreadsheet/Metadata/Workflow.js +0 -103
  1158. package/dist/ts/esm/ts/Template.Web.js +0 -23
  1159. package/dist/ts/esm/ts/ValidationPackages/ValidationPackage.js +0 -57
  1160. package/dist/ts/esm/ts/ValidationPackages/ValidationPackagesConfig.js +0 -84
  1161. package/dist/ts/esm/ts/WebRequest/WebRequest.Node.js +0 -13
  1162. package/dist/ts/esm/ts/WebRequest/WebRequest.js +0 -17
  1163. package/dist/ts/esm/ts/Xlsx.js +0 -116
  1164. package/dist/ts/esm/ts/Yaml/Encode.js +0 -5
  1165. package/dist/ts/esm/ts/Yaml/ValidationPackage.js +0 -41
  1166. package/dist/ts/esm/ts/Yaml/ValidationPackagesConfig.js +0 -42
  1167. package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +0 -432
  1168. package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +0 -118
  1169. package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +0 -43
  1170. package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +0 -18
  1171. package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +0 -79
  1172. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +0 -1
  1173. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +0 -1
  1174. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +0 -2
  1175. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +0 -1
  1176. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +0 -102
  1177. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +0 -1
  1178. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +0 -1
  1179. package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +0 -1
  1180. package/dist/ts/esm/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +0 -281
  1181. package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +0 -203
  1182. package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +0 -16
  1183. package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +0 -380
  1184. package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +0 -151
  1185. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +0 -463
  1186. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +0 -473
  1187. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +0 -189
  1188. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +0 -43
  1189. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +0 -122
  1190. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +0 -306
  1191. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +0 -224
  1192. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +0 -121
  1193. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +0 -131
  1194. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +0 -134
  1195. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +0 -429
  1196. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +0 -62
  1197. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +0 -35
  1198. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +0 -35
  1199. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +0 -27
  1200. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +0 -74
  1201. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +0 -41
  1202. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +0 -129
  1203. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +0 -33
  1204. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +0 -206
  1205. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +0 -80
  1206. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +0 -60
  1207. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +0 -31
  1208. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +0 -326
  1209. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +0 -152
  1210. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +0 -76
  1211. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +0 -48
  1212. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +0 -48
  1213. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +0 -51
  1214. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +0 -30
  1215. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +0 -64
  1216. package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +0 -67
  1217. package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +0 -1269
  1218. package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +0 -178
  1219. package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +0 -79
  1220. package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +0 -91
  1221. package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +0 -55
  1222. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +0 -1692
  1223. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +0 -57
  1224. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -9
  1225. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -43
  1226. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +0 -96
  1227. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -522
  1228. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -9
  1229. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -221
  1230. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -156
  1231. package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -148
  1232. package/dist/ts/types/index.d.ts +0 -60
  1233. package/dist/ts/types/index.d.ts.map +0 -1
  1234. package/dist/ts/types/ts/ARC.d.ts +0 -80
  1235. package/dist/ts/types/ts/ARC.d.ts.map +0 -1
  1236. package/dist/ts/types/ts/Contract/ARC.d.ts +0 -7
  1237. package/dist/ts/types/ts/Contract/ARC.d.ts.map +0 -1
  1238. package/dist/ts/types/ts/Contract/ArcAssay.d.ts +0 -12
  1239. package/dist/ts/types/ts/Contract/ArcAssay.d.ts.map +0 -1
  1240. package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts +0 -10
  1241. package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts.map +0 -1
  1242. package/dist/ts/types/ts/Contract/ArcRun.d.ts +0 -12
  1243. package/dist/ts/types/ts/Contract/ArcRun.d.ts.map +0 -1
  1244. package/dist/ts/types/ts/Contract/ArcStudy.d.ts +0 -13
  1245. package/dist/ts/types/ts/Contract/ArcStudy.d.ts.map +0 -1
  1246. package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts +0 -12
  1247. package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts.map +0 -1
  1248. package/dist/ts/types/ts/Contract/Contract.d.ts +0 -39
  1249. package/dist/ts/types/ts/Contract/Contract.d.ts.map +0 -1
  1250. package/dist/ts/types/ts/Contract/Datamap.d.ts +0 -29
  1251. package/dist/ts/types/ts/Contract/Datamap.d.ts.map +0 -1
  1252. package/dist/ts/types/ts/Contract/Git.d.ts +0 -28
  1253. package/dist/ts/types/ts/Contract/Git.d.ts.map +0 -1
  1254. package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts +0 -12
  1255. package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts.map +0 -1
  1256. package/dist/ts/types/ts/ContractIO/ContractIO.d.ts +0 -11
  1257. package/dist/ts/types/ts/ContractIO/ContractIO.d.ts.map +0 -1
  1258. package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts +0 -33
  1259. package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts.map +0 -1
  1260. package/dist/ts/types/ts/Conversion.d.ts +0 -291
  1261. package/dist/ts/types/ts/Conversion.d.ts.map +0 -1
  1262. package/dist/ts/types/ts/Core/ArcTypes.d.ts +0 -620
  1263. package/dist/ts/types/ts/Core/ArcTypes.d.ts.map +0 -1
  1264. package/dist/ts/types/ts/Core/Comment.d.ts +0 -35
  1265. package/dist/ts/types/ts/Core/Comment.d.ts.map +0 -1
  1266. package/dist/ts/types/ts/Core/CommentList.d.ts +0 -28
  1267. package/dist/ts/types/ts/Core/CommentList.d.ts.map +0 -1
  1268. package/dist/ts/types/ts/Core/Conversion.d.ts +0 -215
  1269. package/dist/ts/types/ts/Core/Conversion.d.ts.map +0 -1
  1270. package/dist/ts/types/ts/Core/Data.d.ts +0 -49
  1271. package/dist/ts/types/ts/Core/Data.d.ts.map +0 -1
  1272. package/dist/ts/types/ts/Core/DataContext.d.ts +0 -47
  1273. package/dist/ts/types/ts/Core/DataContext.d.ts.map +0 -1
  1274. package/dist/ts/types/ts/Core/DataFile.d.ts +0 -27
  1275. package/dist/ts/types/ts/Core/DataFile.d.ts.map +0 -1
  1276. package/dist/ts/types/ts/Core/DataMap.d.ts +0 -52
  1277. package/dist/ts/types/ts/Core/DataMap.d.ts.map +0 -1
  1278. package/dist/ts/types/ts/Core/Helper/Collections.d.ts +0 -61
  1279. package/dist/ts/types/ts/Core/Helper/Collections.d.ts.map +0 -1
  1280. package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts +0 -9
  1281. package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts.map +0 -1
  1282. package/dist/ts/types/ts/Core/Helper/Identifier.d.ts +0 -119
  1283. package/dist/ts/types/ts/Core/Helper/Identifier.d.ts.map +0 -1
  1284. package/dist/ts/types/ts/Core/Helper/ORCID.d.ts +0 -7
  1285. package/dist/ts/types/ts/Core/Helper/ORCID.d.ts.map +0 -1
  1286. package/dist/ts/types/ts/Core/Helper/Printer.d.ts +0 -5
  1287. package/dist/ts/types/ts/Core/Helper/Printer.d.ts.map +0 -1
  1288. package/dist/ts/types/ts/Core/Helper/Regex.d.ts +0 -194
  1289. package/dist/ts/types/ts/Core/Helper/Regex.d.ts.map +0 -1
  1290. package/dist/ts/types/ts/Core/Helper/SemVer.d.ts +0 -20
  1291. package/dist/ts/types/ts/Core/Helper/SemVer.d.ts.map +0 -1
  1292. package/dist/ts/types/ts/Core/Helper/Url.d.ts +0 -10
  1293. package/dist/ts/types/ts/Core/Helper/Url.d.ts.map +0 -1
  1294. package/dist/ts/types/ts/Core/IPropertyValue.d.ts +0 -13
  1295. package/dist/ts/types/ts/Core/IPropertyValue.d.ts.map +0 -1
  1296. package/dist/ts/types/ts/Core/IdentifierSetters.d.ts +0 -7
  1297. package/dist/ts/types/ts/Core/IdentifierSetters.d.ts.map +0 -1
  1298. package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts +0 -57
  1299. package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts.map +0 -1
  1300. package/dist/ts/types/ts/Core/OntologySourceReference.d.ts +0 -31
  1301. package/dist/ts/types/ts/Core/OntologySourceReference.d.ts.map +0 -1
  1302. package/dist/ts/types/ts/Core/Person.d.ts +0 -56
  1303. package/dist/ts/types/ts/Core/Person.d.ts.map +0 -1
  1304. package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts +0 -79
  1305. package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts.map +0 -1
  1306. package/dist/ts/types/ts/Core/Process/Component.d.ts +0 -65
  1307. package/dist/ts/types/ts/Core/Process/Component.d.ts.map +0 -1
  1308. package/dist/ts/types/ts/Core/Process/Factor.d.ts +0 -44
  1309. package/dist/ts/types/ts/Core/Process/Factor.d.ts.map +0 -1
  1310. package/dist/ts/types/ts/Core/Process/FactorValue.d.ts +0 -44
  1311. package/dist/ts/types/ts/Core/Process/FactorValue.d.ts.map +0 -1
  1312. package/dist/ts/types/ts/Core/Process/Material.d.ts +0 -27
  1313. package/dist/ts/types/ts/Core/Process/Material.d.ts.map +0 -1
  1314. package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts +0 -53
  1315. package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts.map +0 -1
  1316. package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts +0 -55
  1317. package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts.map +0 -1
  1318. package/dist/ts/types/ts/Core/Process/MaterialType.d.ts +0 -22
  1319. package/dist/ts/types/ts/Core/Process/MaterialType.d.ts.map +0 -1
  1320. package/dist/ts/types/ts/Core/Process/Process.d.ts +0 -113
  1321. package/dist/ts/types/ts/Core/Process/Process.d.ts.map +0 -1
  1322. package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts +0 -117
  1323. package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts.map +0 -1
  1324. package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts +0 -106
  1325. package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts.map +0 -1
  1326. package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts +0 -40
  1327. package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts.map +0 -1
  1328. package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts +0 -89
  1329. package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts.map +0 -1
  1330. package/dist/ts/types/ts/Core/Process/Protocol.d.ts +0 -141
  1331. package/dist/ts/types/ts/Core/Process/Protocol.d.ts.map +0 -1
  1332. package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts +0 -32
  1333. package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts.map +0 -1
  1334. package/dist/ts/types/ts/Core/Process/Sample.d.ts +0 -31
  1335. package/dist/ts/types/ts/Core/Process/Sample.d.ts.map +0 -1
  1336. package/dist/ts/types/ts/Core/Process/Source.d.ts +0 -24
  1337. package/dist/ts/types/ts/Core/Process/Source.d.ts.map +0 -1
  1338. package/dist/ts/types/ts/Core/Publication.d.ts +0 -36
  1339. package/dist/ts/types/ts/Core/Publication.d.ts.map +0 -1
  1340. package/dist/ts/types/ts/Core/Table/ArcTable.d.ts +0 -137
  1341. package/dist/ts/types/ts/Core/Table/ArcTable.d.ts.map +0 -1
  1342. package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts +0 -154
  1343. package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts.map +0 -1
  1344. package/dist/ts/types/ts/Core/Table/ArcTables.d.ts +0 -91
  1345. package/dist/ts/types/ts/Core/Table/ArcTables.d.ts.map +0 -1
  1346. package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts +0 -58
  1347. package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts.map +0 -1
  1348. package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts +0 -19
  1349. package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts.map +0 -1
  1350. package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts +0 -130
  1351. package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts.map +0 -1
  1352. package/dist/ts/types/ts/Core/Template.d.ts +0 -69
  1353. package/dist/ts/types/ts/Core/Template.d.ts.map +0 -1
  1354. package/dist/ts/types/ts/Core/Templates.d.ts +0 -18
  1355. package/dist/ts/types/ts/Core/Templates.d.ts.map +0 -1
  1356. package/dist/ts/types/ts/Core/URI.d.ts.map +0 -1
  1357. package/dist/ts/types/ts/Core/Value.d.ts +0 -41
  1358. package/dist/ts/types/ts/Core/Value.d.ts.map +0 -1
  1359. package/dist/ts/types/ts/CrossAsync.d.ts +0 -9
  1360. package/dist/ts/types/ts/CrossAsync.d.ts.map +0 -1
  1361. package/dist/ts/types/ts/FileSystem/Commit.d.ts +0 -13
  1362. package/dist/ts/types/ts/FileSystem/Commit.d.ts.map +0 -1
  1363. package/dist/ts/types/ts/FileSystem/DefaultGitattributes.d.ts +0 -2
  1364. package/dist/ts/types/ts/FileSystem/DefaultGitattributes.d.ts.map +0 -1
  1365. package/dist/ts/types/ts/FileSystem/DefaultGitignore.d.ts +0 -2
  1366. package/dist/ts/types/ts/FileSystem/DefaultGitignore.d.ts.map +0 -1
  1367. package/dist/ts/types/ts/FileSystem/FileSystem.d.ts +0 -21
  1368. package/dist/ts/types/ts/FileSystem/FileSystem.d.ts.map +0 -1
  1369. package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts +0 -54
  1370. package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts.map +0 -1
  1371. package/dist/ts/types/ts/FileSystem/Path.d.ts +0 -14
  1372. package/dist/ts/types/ts/FileSystem/Path.d.ts.map +0 -1
  1373. package/dist/ts/types/ts/Json/Assay.d.ts +0 -19
  1374. package/dist/ts/types/ts/Json/Assay.d.ts.map +0 -1
  1375. package/dist/ts/types/ts/Json/Comment.d.ts +0 -14
  1376. package/dist/ts/types/ts/Json/Comment.d.ts.map +0 -1
  1377. package/dist/ts/types/ts/Json/Data.d.ts +0 -17
  1378. package/dist/ts/types/ts/Json/Data.d.ts.map +0 -1
  1379. package/dist/ts/types/ts/Json/DataFile.d.ts +0 -7
  1380. package/dist/ts/types/ts/Json/DataFile.d.ts.map +0 -1
  1381. package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts +0 -5
  1382. package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts.map +0 -1
  1383. package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts +0 -11
  1384. package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts.map +0 -1
  1385. package/dist/ts/types/ts/Json/Decode.d.ts +0 -18
  1386. package/dist/ts/types/ts/Json/Decode.d.ts.map +0 -1
  1387. package/dist/ts/types/ts/Json/Encode.d.ts +0 -23
  1388. package/dist/ts/types/ts/Json/Encode.d.ts.map +0 -1
  1389. package/dist/ts/types/ts/Json/IDTable.d.ts +0 -5
  1390. package/dist/ts/types/ts/Json/IDTable.d.ts.map +0 -1
  1391. package/dist/ts/types/ts/Json/Investigation.d.ts +0 -20
  1392. package/dist/ts/types/ts/Json/Investigation.d.ts.map +0 -1
  1393. package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts +0 -18
  1394. package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts.map +0 -1
  1395. package/dist/ts/types/ts/Json/OntologySourceReference.d.ts +0 -12
  1396. package/dist/ts/types/ts/Json/OntologySourceReference.d.ts.map +0 -1
  1397. package/dist/ts/types/ts/Json/Person.d.ts +0 -22
  1398. package/dist/ts/types/ts/Json/Person.d.ts.map +0 -1
  1399. package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts +0 -7
  1400. package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts.map +0 -1
  1401. package/dist/ts/types/ts/Json/Process/Component.d.ts +0 -11
  1402. package/dist/ts/types/ts/Json/Process/Component.d.ts.map +0 -1
  1403. package/dist/ts/types/ts/Json/Process/Factor.d.ts +0 -8
  1404. package/dist/ts/types/ts/Json/Process/Factor.d.ts.map +0 -1
  1405. package/dist/ts/types/ts/Json/Process/FactorValue.d.ts +0 -11
  1406. package/dist/ts/types/ts/Json/Process/FactorValue.d.ts.map +0 -1
  1407. package/dist/ts/types/ts/Json/Process/Material.d.ts +0 -12
  1408. package/dist/ts/types/ts/Json/Process/Material.d.ts.map +0 -1
  1409. package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts +0 -8
  1410. package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts.map +0 -1
  1411. package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts +0 -11
  1412. package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts.map +0 -1
  1413. package/dist/ts/types/ts/Json/Process/MaterialType.d.ts +0 -7
  1414. package/dist/ts/types/ts/Json/Process/MaterialType.d.ts.map +0 -1
  1415. package/dist/ts/types/ts/Json/Process/Process.d.ts +0 -10
  1416. package/dist/ts/types/ts/Json/Process/Process.d.ts.map +0 -1
  1417. package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts +0 -9
  1418. package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts.map +0 -1
  1419. package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts +0 -9
  1420. package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts.map +0 -1
  1421. package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts +0 -11
  1422. package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts.map +0 -1
  1423. package/dist/ts/types/ts/Json/Process/Protocol.d.ts +0 -10
  1424. package/dist/ts/types/ts/Json/Process/Protocol.d.ts.map +0 -1
  1425. package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts +0 -8
  1426. package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts.map +0 -1
  1427. package/dist/ts/types/ts/Json/Process/Sample.d.ts +0 -15
  1428. package/dist/ts/types/ts/Json/Process/Sample.d.ts.map +0 -1
  1429. package/dist/ts/types/ts/Json/Process/Source.d.ts +0 -12
  1430. package/dist/ts/types/ts/Json/Process/Source.d.ts.map +0 -1
  1431. package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts +0 -7
  1432. package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts.map +0 -1
  1433. package/dist/ts/types/ts/Json/Process/Value.d.ts +0 -7
  1434. package/dist/ts/types/ts/Json/Process/Value.d.ts.map +0 -1
  1435. package/dist/ts/types/ts/Json/PropertyValue.d.ts +0 -9
  1436. package/dist/ts/types/ts/Json/PropertyValue.d.ts.map +0 -1
  1437. package/dist/ts/types/ts/Json/Publication.d.ts +0 -14
  1438. package/dist/ts/types/ts/Json/Publication.d.ts.map +0 -1
  1439. package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts +0 -5
  1440. package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts.map +0 -1
  1441. package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts +0 -5
  1442. package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts.map +0 -1
  1443. package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts +0 -13
  1444. package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts.map +0 -1
  1445. package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts +0 -5
  1446. package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts.map +0 -1
  1447. package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts +0 -7
  1448. package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts.map +0 -1
  1449. package/dist/ts/types/ts/Json/StringTable.d.ts +0 -9
  1450. package/dist/ts/types/ts/Json/StringTable.d.ts.map +0 -1
  1451. package/dist/ts/types/ts/Json/Study.d.ts +0 -26
  1452. package/dist/ts/types/ts/Json/Study.d.ts.map +0 -1
  1453. package/dist/ts/types/ts/Json/Table/ArcTable.d.ts +0 -15
  1454. package/dist/ts/types/ts/Json/Table/ArcTable.d.ts.map +0 -1
  1455. package/dist/ts/types/ts/Json/Table/CellTable.d.ts +0 -11
  1456. package/dist/ts/types/ts/Json/Table/CellTable.d.ts.map +0 -1
  1457. package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts +0 -10
  1458. package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts.map +0 -1
  1459. package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts +0 -5
  1460. package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts.map +0 -1
  1461. package/dist/ts/types/ts/Json/Table/IOType.d.ts +0 -5
  1462. package/dist/ts/types/ts/Json/Table/IOType.d.ts.map +0 -1
  1463. package/dist/ts/types/ts/Json/Table/OATable.d.ts +0 -10
  1464. package/dist/ts/types/ts/Json/Table/OATable.d.ts.map +0 -1
  1465. package/dist/ts/types/ts/Json/Table/Templates.d.ts +0 -15
  1466. package/dist/ts/types/ts/Json/Table/Templates.d.ts.map +0 -1
  1467. package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts +0 -26
  1468. package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts.map +0 -1
  1469. package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts +0 -16
  1470. package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts.map +0 -1
  1471. package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts +0 -18
  1472. package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts.map +0 -1
  1473. package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts +0 -26
  1474. package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +0 -1
  1475. package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts +0 -19
  1476. package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts.map +0 -1
  1477. package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +0 -17
  1478. package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +0 -1
  1479. package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +0 -19
  1480. package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +0 -1
  1481. package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts +0 -15
  1482. package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts.map +0 -1
  1483. package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts +0 -25
  1484. package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts.map +0 -1
  1485. package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts +0 -23
  1486. package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts.map +0 -1
  1487. package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts +0 -22
  1488. package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +0 -1
  1489. package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts +0 -19
  1490. package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts.map +0 -1
  1491. package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts +0 -18
  1492. package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts.map +0 -1
  1493. package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts +0 -18
  1494. package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts.map +0 -1
  1495. package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts +0 -34
  1496. package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts.map +0 -1
  1497. package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts +0 -3
  1498. package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts.map +0 -1
  1499. package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts +0 -16
  1500. package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts.map +0 -1
  1501. package/dist/ts/types/ts/Json.d.ts +0 -73
  1502. package/dist/ts/types/ts/Json.d.ts.map +0 -1
  1503. package/dist/ts/types/ts/JsonIO/Assay.d.ts +0 -19
  1504. package/dist/ts/types/ts/JsonIO/Assay.d.ts.map +0 -1
  1505. package/dist/ts/types/ts/JsonIO/Investigation.d.ts +0 -19
  1506. package/dist/ts/types/ts/JsonIO/Investigation.d.ts.map +0 -1
  1507. package/dist/ts/types/ts/JsonIO/LDObject.d.ts +0 -29
  1508. package/dist/ts/types/ts/JsonIO/LDObject.d.ts.map +0 -1
  1509. package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts +0 -16
  1510. package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts.map +0 -1
  1511. package/dist/ts/types/ts/JsonIO/Study.d.ts +0 -20
  1512. package/dist/ts/types/ts/JsonIO/Study.d.ts.map +0 -1
  1513. package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts +0 -8
  1514. package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts.map +0 -1
  1515. package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts +0 -15
  1516. package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts.map +0 -1
  1517. package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts +0 -21
  1518. package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts.map +0 -1
  1519. package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts +0 -92
  1520. package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts.map +0 -1
  1521. package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts +0 -21
  1522. package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts.map +0 -1
  1523. package/dist/ts/types/ts/ROCrate/Generic/File.d.ts +0 -35
  1524. package/dist/ts/types/ts/ROCrate/Generic/File.d.ts.map +0 -1
  1525. package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts +0 -43
  1526. package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts.map +0 -1
  1527. package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts +0 -44
  1528. package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts.map +0 -1
  1529. package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts +0 -17
  1530. package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts.map +0 -1
  1531. package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts +0 -51
  1532. package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts.map +0 -1
  1533. package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts +0 -25
  1534. package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts.map +0 -1
  1535. package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts +0 -73
  1536. package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts.map +0 -1
  1537. package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts +0 -30
  1538. package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts.map +0 -1
  1539. package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts +0 -34
  1540. package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts.map +0 -1
  1541. package/dist/ts/types/ts/ROCrate/Helper.d.ts.map +0 -1
  1542. package/dist/ts/types/ts/ROCrate/LDContext.d.ts +0 -43
  1543. package/dist/ts/types/ts/ROCrate/LDContext.d.ts.map +0 -1
  1544. package/dist/ts/types/ts/ROCrate/LDObject.d.ts +0 -97
  1545. package/dist/ts/types/ts/ROCrate/LDObject.d.ts.map +0 -1
  1546. package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts +0 -7
  1547. package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts.map +0 -1
  1548. package/dist/ts/types/ts/ROCrateIO.d.ts +0 -15
  1549. package/dist/ts/types/ts/ROCrateIO.d.ts.map +0 -1
  1550. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +0 -40
  1551. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +0 -1
  1552. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +0 -9
  1553. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +0 -1
  1554. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +0 -24
  1555. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +0 -1
  1556. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +0 -22
  1557. package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +0 -1
  1558. package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts +0 -31
  1559. package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts.map +0 -1
  1560. package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts +0 -42
  1561. package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts.map +0 -1
  1562. package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts +0 -27
  1563. package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts.map +0 -1
  1564. package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts +0 -26
  1565. package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts.map +0 -1
  1566. package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts +0 -27
  1567. package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts.map +0 -1
  1568. package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts +0 -23
  1569. package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts.map +0 -1
  1570. package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts +0 -8
  1571. package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts.map +0 -1
  1572. package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts +0 -7
  1573. package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts.map +0 -1
  1574. package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts +0 -23
  1575. package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts.map +0 -1
  1576. package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts +0 -23
  1577. package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +0 -1
  1578. package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts +0 -14
  1579. package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts.map +0 -1
  1580. package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts +0 -14
  1581. package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts.map +0 -1
  1582. package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts +0 -25
  1583. package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts.map +0 -1
  1584. package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts +0 -60
  1585. package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts.map +0 -1
  1586. package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +0 -16
  1587. package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +0 -1
  1588. package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts +0 -18
  1589. package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts.map +0 -1
  1590. package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +0 -12
  1591. package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +0 -1
  1592. package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +0 -18
  1593. package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +0 -1
  1594. package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts +0 -28
  1595. package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts.map +0 -1
  1596. package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts +0 -21
  1597. package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts.map +0 -1
  1598. package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts +0 -14
  1599. package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts.map +0 -1
  1600. package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts +0 -37
  1601. package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +0 -1
  1602. package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts +0 -38
  1603. package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts.map +0 -1
  1604. package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts +0 -31
  1605. package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts.map +0 -1
  1606. package/dist/ts/types/ts/Template.Web.d.ts +0 -11
  1607. package/dist/ts/types/ts/Template.Web.d.ts.map +0 -1
  1608. package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts +0 -21
  1609. package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts.map +0 -1
  1610. package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts +0 -23
  1611. package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +0 -1
  1612. package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts +0 -4
  1613. package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts.map +0 -1
  1614. package/dist/ts/types/ts/WebRequest/WebRequest.d.ts +0 -4
  1615. package/dist/ts/types/ts/WebRequest/WebRequest.d.ts.map +0 -1
  1616. package/dist/ts/types/ts/Xlsx.d.ts +0 -50
  1617. package/dist/ts/types/ts/Xlsx.d.ts.map +0 -1
  1618. package/dist/ts/types/ts/Yaml/Encode.d.ts +0 -5
  1619. package/dist/ts/types/ts/Yaml/Encode.d.ts.map +0 -1
  1620. package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts +0 -10
  1621. package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts.map +0 -1
  1622. package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts +0 -10
  1623. package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts.map +0 -1
  1624. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts +0 -69
  1625. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts.map +0 -1
  1626. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts +0 -25
  1627. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts.map +0 -1
  1628. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts +0 -11
  1629. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts.map +0 -1
  1630. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts +0 -15
  1631. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts.map +0 -1
  1632. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts +0 -15
  1633. package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts.map +0 -1
  1634. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts +0 -34
  1635. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts.map +0 -1
  1636. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts +0 -14
  1637. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts.map +0 -1
  1638. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts +0 -4
  1639. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts.map +0 -1
  1640. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts +0 -30
  1641. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts.map +0 -1
  1642. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts +0 -49
  1643. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts.map +0 -1
  1644. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts +0 -35
  1645. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts.map +0 -1
  1646. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts +0 -123
  1647. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts.map +0 -1
  1648. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts +0 -27
  1649. package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts.map +0 -1
  1650. package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts +0 -253
  1651. package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts.map +0 -1
  1652. package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts +0 -112
  1653. package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts.map +0 -1
  1654. package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts +0 -8
  1655. package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts.map +0 -1
  1656. package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts +0 -123
  1657. package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts.map +0 -1
  1658. package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts +0 -113
  1659. package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts.map +0 -1
  1660. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts +0 -91
  1661. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts.map +0 -1
  1662. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts +0 -181
  1663. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts.map +0 -1
  1664. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts +0 -36
  1665. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts.map +0 -1
  1666. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts +0 -23
  1667. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts.map +0 -1
  1668. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts +0 -21
  1669. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts.map +0 -1
  1670. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts +0 -157
  1671. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts.map +0 -1
  1672. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts +0 -97
  1673. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts.map +0 -1
  1674. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts +0 -37
  1675. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts.map +0 -1
  1676. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts +0 -39
  1677. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts.map +0 -1
  1678. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts +0 -36
  1679. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts.map +0 -1
  1680. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts +0 -88
  1681. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts.map +0 -1
  1682. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts +0 -10
  1683. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts.map +0 -1
  1684. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts +0 -9
  1685. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts.map +0 -1
  1686. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts +0 -9
  1687. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts.map +0 -1
  1688. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts +0 -5
  1689. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts.map +0 -1
  1690. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts +0 -6
  1691. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts.map +0 -1
  1692. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts +0 -7
  1693. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts.map +0 -1
  1694. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts +0 -7
  1695. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts.map +0 -1
  1696. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts +0 -15
  1697. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts.map +0 -1
  1698. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts +0 -94
  1699. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts.map +0 -1
  1700. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts +0 -33
  1701. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts.map +0 -1
  1702. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts +0 -31
  1703. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts.map +0 -1
  1704. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts +0 -17
  1705. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts.map +0 -1
  1706. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts +0 -71
  1707. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts.map +0 -1
  1708. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts +0 -89
  1709. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts.map +0 -1
  1710. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts +0 -10
  1711. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts.map +0 -1
  1712. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts +0 -19
  1713. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts.map +0 -1
  1714. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts +0 -15
  1715. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts.map +0 -1
  1716. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts +0 -6
  1717. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts.map +0 -1
  1718. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts +0 -5
  1719. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts.map +0 -1
  1720. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts +0 -7
  1721. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts.map +0 -1
  1722. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts +0 -20
  1723. package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts.map +0 -1
  1724. package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts +0 -105
  1725. package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts.map +0 -1
  1726. package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts +0 -26
  1727. package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts.map +0 -1
  1728. package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts +0 -99
  1729. package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts.map +0 -1
  1730. package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts +0 -7
  1731. package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts.map +0 -1
  1732. package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts +0 -5
  1733. package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts.map +0 -1
  1734. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts +0 -64
  1735. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts.map +0 -1
  1736. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts +0 -24
  1737. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts.map +0 -1
  1738. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts +0 -3
  1739. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts.map +0 -1
  1740. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts +0 -12
  1741. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts.map +0 -1
  1742. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts +0 -10
  1743. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts.map +0 -1
  1744. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts +0 -6
  1745. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts.map +0 -1
  1746. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts +0 -10
  1747. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts.map +0 -1
  1748. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts +0 -46
  1749. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts.map +0 -1
  1750. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts +0 -12
  1751. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts.map +0 -1
  1752. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts +0 -70
  1753. package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts.map +0 -1
  1754. /package/dist/ts/{types/ts → ts}/Core/URI.d.ts +0 -0
  1755. /package/dist/ts/{types/ts → ts}/ROCrate/Helper.d.ts +0 -0
@@ -0,0 +1,1792 @@
1
+ import { class_type, record_type, list_type, bool_type, option_type } from './Reflection.js';
2
+ import { value, some } from './Option.js';
3
+ import { isArrayLike, getEnumerator, disposeSafe, toIterator, structuralHash } from './Util.js';
4
+ import { Record, toString } from './Types.js';
5
+ import { isEmpty as isEmpty$1, head, tail, ofArrayWithTail, empty as empty$1, singleton as singleton$1, cons, fold as fold$2, FSharpList } from './List.js';
6
+ import { setItem, fill, fold as fold$1 } from './Array.js';
7
+ import { join } from './String.js';
8
+ import { map as map$1, iterate as iterate$1, reduce, fold as fold$3, forAll as forAll$1, cache, exists as exists$1 } from './Seq.js';
9
+ import { HashSet, HashSet_$ctor_Z6150332D, HashSet__get_Comparer } from './MutableSet.js';
10
+
11
+ class SetTreeLeaf$1 {
12
+ constructor(k) {
13
+ this.k = k;
14
+ }
15
+ }
16
+ function SetTreeLeaf$1_$reflection(gen0) {
17
+ return class_type("Set.SetTreeLeaf`1", [gen0], SetTreeLeaf$1);
18
+ }
19
+ function SetTreeLeaf$1_$ctor_2B595(k) {
20
+ return new SetTreeLeaf$1(k);
21
+ }
22
+ function SetTreeLeaf$1__get_Key(_) {
23
+ return _.k;
24
+ }
25
+ class SetTreeNode$1 extends SetTreeLeaf$1 {
26
+ constructor(v, left, right, h) {
27
+ super(v);
28
+ this.left = left;
29
+ this.right = right;
30
+ this.h = (h | 0);
31
+ }
32
+ }
33
+ function SetTreeNode$1_$reflection(gen0) {
34
+ return class_type("Set.SetTreeNode`1", [gen0], SetTreeNode$1, SetTreeLeaf$1_$reflection(gen0));
35
+ }
36
+ function SetTreeNode$1_$ctor_5F465FC9(v, left, right, h) {
37
+ return new SetTreeNode$1(v, left, right, h);
38
+ }
39
+ function SetTreeNode$1__get_Left(_) {
40
+ return _.left;
41
+ }
42
+ function SetTreeNode$1__get_Right(_) {
43
+ return _.right;
44
+ }
45
+ function SetTreeNode$1__get_Height(_) {
46
+ return _.h;
47
+ }
48
+ function SetTreeModule_empty() {
49
+ return undefined;
50
+ }
51
+ function SetTreeModule_countAux(t_mut, acc_mut) {
52
+ SetTreeModule_countAux: while (true) {
53
+ const t = t_mut, acc = acc_mut;
54
+ if (t != null) {
55
+ const t2 = value(t);
56
+ if (t2 instanceof SetTreeNode$1) {
57
+ const tn = t2;
58
+ t_mut = SetTreeNode$1__get_Left(tn);
59
+ acc_mut = SetTreeModule_countAux(SetTreeNode$1__get_Right(tn), acc + 1);
60
+ continue SetTreeModule_countAux;
61
+ }
62
+ else {
63
+ return (acc + 1) | 0;
64
+ }
65
+ }
66
+ else {
67
+ return acc | 0;
68
+ }
69
+ break;
70
+ }
71
+ }
72
+ function SetTreeModule_count(s) {
73
+ return SetTreeModule_countAux(s, 0);
74
+ }
75
+ function SetTreeModule_mk(l, k, r) {
76
+ let tn, tn_1;
77
+ let hl;
78
+ const t = l;
79
+ if (t != null) {
80
+ const t2 = value(t);
81
+ hl = ((t2 instanceof SetTreeNode$1) ? ((tn = t2, SetTreeNode$1__get_Height(tn))) : 1);
82
+ }
83
+ else {
84
+ hl = 0;
85
+ }
86
+ let hr;
87
+ const t_1 = r;
88
+ if (t_1 != null) {
89
+ const t2_1 = value(t_1);
90
+ hr = ((t2_1 instanceof SetTreeNode$1) ? ((tn_1 = t2_1, SetTreeNode$1__get_Height(tn_1))) : 1);
91
+ }
92
+ else {
93
+ hr = 0;
94
+ }
95
+ const m = ((hl < hr) ? hr : hl) | 0;
96
+ if (m === 0) {
97
+ return SetTreeLeaf$1_$ctor_2B595(k);
98
+ }
99
+ else {
100
+ return SetTreeNode$1_$ctor_5F465FC9(k, l, r, m + 1);
101
+ }
102
+ }
103
+ function SetTreeModule_rebalance(t1, v, t2) {
104
+ let tn, tn_1, t_2, t2_3, tn_2, t_3, t2_4, tn_3;
105
+ let t1h;
106
+ const t = t1;
107
+ if (t != null) {
108
+ const t2_1 = value(t);
109
+ t1h = ((t2_1 instanceof SetTreeNode$1) ? ((tn = t2_1, SetTreeNode$1__get_Height(tn))) : 1);
110
+ }
111
+ else {
112
+ t1h = 0;
113
+ }
114
+ let t2h;
115
+ const t_1 = t2;
116
+ if (t_1 != null) {
117
+ const t2_2 = value(t_1);
118
+ t2h = ((t2_2 instanceof SetTreeNode$1) ? ((tn_1 = t2_2, SetTreeNode$1__get_Height(tn_1))) : 1);
119
+ }
120
+ else {
121
+ t2h = 0;
122
+ }
123
+ if (t2h > (t1h + 2)) {
124
+ const matchValue = value(t2);
125
+ if (matchValue instanceof SetTreeNode$1) {
126
+ const t2$0027 = matchValue;
127
+ if (((t_2 = SetTreeNode$1__get_Left(t2$0027), (t_2 != null) ? ((t2_3 = value(t_2), (t2_3 instanceof SetTreeNode$1) ? ((tn_2 = t2_3, SetTreeNode$1__get_Height(tn_2))) : 1)) : 0)) > (t1h + 1)) {
128
+ const matchValue_1 = value(SetTreeNode$1__get_Left(t2$0027));
129
+ if (matchValue_1 instanceof SetTreeNode$1) {
130
+ const t2l = matchValue_1;
131
+ return SetTreeModule_mk(SetTreeModule_mk(t1, v, SetTreeNode$1__get_Left(t2l)), SetTreeLeaf$1__get_Key(t2l), SetTreeModule_mk(SetTreeNode$1__get_Right(t2l), SetTreeLeaf$1__get_Key(t2$0027), SetTreeNode$1__get_Right(t2$0027)));
132
+ }
133
+ else {
134
+ throw new Error("internal error: Set.rebalance");
135
+ }
136
+ }
137
+ else {
138
+ return SetTreeModule_mk(SetTreeModule_mk(t1, v, SetTreeNode$1__get_Left(t2$0027)), SetTreeLeaf$1__get_Key(t2$0027), SetTreeNode$1__get_Right(t2$0027));
139
+ }
140
+ }
141
+ else {
142
+ throw new Error("internal error: Set.rebalance");
143
+ }
144
+ }
145
+ else if (t1h > (t2h + 2)) {
146
+ const matchValue_2 = value(t1);
147
+ if (matchValue_2 instanceof SetTreeNode$1) {
148
+ const t1$0027 = matchValue_2;
149
+ if (((t_3 = SetTreeNode$1__get_Right(t1$0027), (t_3 != null) ? ((t2_4 = value(t_3), (t2_4 instanceof SetTreeNode$1) ? ((tn_3 = t2_4, SetTreeNode$1__get_Height(tn_3))) : 1)) : 0)) > (t2h + 1)) {
150
+ const matchValue_3 = value(SetTreeNode$1__get_Right(t1$0027));
151
+ if (matchValue_3 instanceof SetTreeNode$1) {
152
+ const t1r = matchValue_3;
153
+ return SetTreeModule_mk(SetTreeModule_mk(SetTreeNode$1__get_Left(t1$0027), SetTreeLeaf$1__get_Key(t1$0027), SetTreeNode$1__get_Left(t1r)), SetTreeLeaf$1__get_Key(t1r), SetTreeModule_mk(SetTreeNode$1__get_Right(t1r), v, t2));
154
+ }
155
+ else {
156
+ throw new Error("internal error: Set.rebalance");
157
+ }
158
+ }
159
+ else {
160
+ return SetTreeModule_mk(SetTreeNode$1__get_Left(t1$0027), SetTreeLeaf$1__get_Key(t1$0027), SetTreeModule_mk(SetTreeNode$1__get_Right(t1$0027), v, t2));
161
+ }
162
+ }
163
+ else {
164
+ throw new Error("internal error: Set.rebalance");
165
+ }
166
+ }
167
+ else {
168
+ return SetTreeModule_mk(t1, v, t2);
169
+ }
170
+ }
171
+ function SetTreeModule_add(comparer, k, t) {
172
+ if (t != null) {
173
+ const t2 = value(t);
174
+ const c = comparer.Compare(k, SetTreeLeaf$1__get_Key(t2)) | 0;
175
+ if (t2 instanceof SetTreeNode$1) {
176
+ const tn = t2;
177
+ if (c < 0) {
178
+ return SetTreeModule_rebalance(SetTreeModule_add(comparer, k, SetTreeNode$1__get_Left(tn)), SetTreeLeaf$1__get_Key(tn), SetTreeNode$1__get_Right(tn));
179
+ }
180
+ else if (c === 0) {
181
+ return t;
182
+ }
183
+ else {
184
+ return SetTreeModule_rebalance(SetTreeNode$1__get_Left(tn), SetTreeLeaf$1__get_Key(tn), SetTreeModule_add(comparer, k, SetTreeNode$1__get_Right(tn)));
185
+ }
186
+ }
187
+ else {
188
+ const c_1 = comparer.Compare(k, SetTreeLeaf$1__get_Key(t2)) | 0;
189
+ if (c_1 < 0) {
190
+ return SetTreeNode$1_$ctor_5F465FC9(k, SetTreeModule_empty(), t, 2);
191
+ }
192
+ else if (c_1 === 0) {
193
+ return t;
194
+ }
195
+ else {
196
+ return SetTreeNode$1_$ctor_5F465FC9(k, t, SetTreeModule_empty(), 2);
197
+ }
198
+ }
199
+ }
200
+ else {
201
+ return SetTreeLeaf$1_$ctor_2B595(k);
202
+ }
203
+ }
204
+ function SetTreeModule_balance(comparer, t1, k, t2) {
205
+ if (t1 != null) {
206
+ const t1$0027 = value(t1);
207
+ if (t2 != null) {
208
+ const t2$0027 = value(t2);
209
+ if (t1$0027 instanceof SetTreeNode$1) {
210
+ const t1n = t1$0027;
211
+ if (t2$0027 instanceof SetTreeNode$1) {
212
+ const t2n = t2$0027;
213
+ if ((SetTreeNode$1__get_Height(t1n) + 2) < SetTreeNode$1__get_Height(t2n)) {
214
+ return SetTreeModule_rebalance(SetTreeModule_balance(comparer, t1, k, SetTreeNode$1__get_Left(t2n)), SetTreeLeaf$1__get_Key(t2n), SetTreeNode$1__get_Right(t2n));
215
+ }
216
+ else if ((SetTreeNode$1__get_Height(t2n) + 2) < SetTreeNode$1__get_Height(t1n)) {
217
+ return SetTreeModule_rebalance(SetTreeNode$1__get_Left(t1n), SetTreeLeaf$1__get_Key(t1n), SetTreeModule_balance(comparer, SetTreeNode$1__get_Right(t1n), k, t2));
218
+ }
219
+ else {
220
+ return SetTreeModule_mk(t1, k, t2);
221
+ }
222
+ }
223
+ else {
224
+ return SetTreeModule_add(comparer, k, SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(t2$0027), t1));
225
+ }
226
+ }
227
+ else {
228
+ return SetTreeModule_add(comparer, k, SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(t1$0027), t2));
229
+ }
230
+ }
231
+ else {
232
+ return SetTreeModule_add(comparer, k, t1);
233
+ }
234
+ }
235
+ else {
236
+ return SetTreeModule_add(comparer, k, t2);
237
+ }
238
+ }
239
+ function SetTreeModule_split(comparer, pivot, t) {
240
+ if (t != null) {
241
+ const t2 = value(t);
242
+ if (t2 instanceof SetTreeNode$1) {
243
+ const tn = t2;
244
+ const c = comparer.Compare(pivot, SetTreeLeaf$1__get_Key(tn)) | 0;
245
+ if (c < 0) {
246
+ const patternInput = SetTreeModule_split(comparer, pivot, SetTreeNode$1__get_Left(tn));
247
+ return [patternInput[0], patternInput[1], SetTreeModule_balance(comparer, patternInput[2], SetTreeLeaf$1__get_Key(tn), SetTreeNode$1__get_Right(tn))];
248
+ }
249
+ else if (c === 0) {
250
+ return [SetTreeNode$1__get_Left(tn), true, SetTreeNode$1__get_Right(tn)];
251
+ }
252
+ else {
253
+ const patternInput_1 = SetTreeModule_split(comparer, pivot, SetTreeNode$1__get_Right(tn));
254
+ return [SetTreeModule_balance(comparer, SetTreeNode$1__get_Left(tn), SetTreeLeaf$1__get_Key(tn), patternInput_1[0]), patternInput_1[1], patternInput_1[2]];
255
+ }
256
+ }
257
+ else {
258
+ const c_1 = comparer.Compare(SetTreeLeaf$1__get_Key(t2), pivot) | 0;
259
+ if (c_1 < 0) {
260
+ return [t, false, SetTreeModule_empty()];
261
+ }
262
+ else if (c_1 === 0) {
263
+ return [SetTreeModule_empty(), true, SetTreeModule_empty()];
264
+ }
265
+ else {
266
+ return [SetTreeModule_empty(), false, t];
267
+ }
268
+ }
269
+ }
270
+ else {
271
+ return [SetTreeModule_empty(), false, SetTreeModule_empty()];
272
+ }
273
+ }
274
+ function SetTreeModule_spliceOutSuccessor(t) {
275
+ if (t != null) {
276
+ const t2 = value(t);
277
+ if (t2 instanceof SetTreeNode$1) {
278
+ const tn = t2;
279
+ if (SetTreeNode$1__get_Left(tn) == null) {
280
+ return [SetTreeLeaf$1__get_Key(tn), SetTreeNode$1__get_Right(tn)];
281
+ }
282
+ else {
283
+ const patternInput = SetTreeModule_spliceOutSuccessor(SetTreeNode$1__get_Left(tn));
284
+ return [patternInput[0], SetTreeModule_mk(patternInput[1], SetTreeLeaf$1__get_Key(tn), SetTreeNode$1__get_Right(tn))];
285
+ }
286
+ }
287
+ else {
288
+ return [SetTreeLeaf$1__get_Key(t2), SetTreeModule_empty()];
289
+ }
290
+ }
291
+ else {
292
+ throw new Error("internal error: Set.spliceOutSuccessor");
293
+ }
294
+ }
295
+ function SetTreeModule_remove(comparer, k, t) {
296
+ if (t != null) {
297
+ const t2 = value(t);
298
+ const c = comparer.Compare(k, SetTreeLeaf$1__get_Key(t2)) | 0;
299
+ if (t2 instanceof SetTreeNode$1) {
300
+ const tn = t2;
301
+ if (c < 0) {
302
+ return SetTreeModule_rebalance(SetTreeModule_remove(comparer, k, SetTreeNode$1__get_Left(tn)), SetTreeLeaf$1__get_Key(tn), SetTreeNode$1__get_Right(tn));
303
+ }
304
+ else if (c === 0) {
305
+ if (SetTreeNode$1__get_Left(tn) == null) {
306
+ return SetTreeNode$1__get_Right(tn);
307
+ }
308
+ else if (SetTreeNode$1__get_Right(tn) == null) {
309
+ return SetTreeNode$1__get_Left(tn);
310
+ }
311
+ else {
312
+ const patternInput = SetTreeModule_spliceOutSuccessor(SetTreeNode$1__get_Right(tn));
313
+ return SetTreeModule_mk(SetTreeNode$1__get_Left(tn), patternInput[0], patternInput[1]);
314
+ }
315
+ }
316
+ else {
317
+ return SetTreeModule_rebalance(SetTreeNode$1__get_Left(tn), SetTreeLeaf$1__get_Key(tn), SetTreeModule_remove(comparer, k, SetTreeNode$1__get_Right(tn)));
318
+ }
319
+ }
320
+ else if (c === 0) {
321
+ return SetTreeModule_empty();
322
+ }
323
+ else {
324
+ return t;
325
+ }
326
+ }
327
+ else {
328
+ return t;
329
+ }
330
+ }
331
+ function SetTreeModule_mem(comparer_mut, k_mut, t_mut) {
332
+ SetTreeModule_mem: while (true) {
333
+ const comparer = comparer_mut, k = k_mut, t = t_mut;
334
+ if (t != null) {
335
+ const t2 = value(t);
336
+ const c = comparer.Compare(k, SetTreeLeaf$1__get_Key(t2)) | 0;
337
+ if (t2 instanceof SetTreeNode$1) {
338
+ const tn = t2;
339
+ if (c < 0) {
340
+ comparer_mut = comparer;
341
+ k_mut = k;
342
+ t_mut = SetTreeNode$1__get_Left(tn);
343
+ continue SetTreeModule_mem;
344
+ }
345
+ else if (c === 0) {
346
+ return true;
347
+ }
348
+ else {
349
+ comparer_mut = comparer;
350
+ k_mut = k;
351
+ t_mut = SetTreeNode$1__get_Right(tn);
352
+ continue SetTreeModule_mem;
353
+ }
354
+ }
355
+ else {
356
+ return c === 0;
357
+ }
358
+ }
359
+ else {
360
+ return false;
361
+ }
362
+ break;
363
+ }
364
+ }
365
+ function SetTreeModule_iter(f_mut, t_mut) {
366
+ SetTreeModule_iter: while (true) {
367
+ const f = f_mut, t = t_mut;
368
+ if (t != null) {
369
+ const t2 = value(t);
370
+ if (t2 instanceof SetTreeNode$1) {
371
+ const tn = t2;
372
+ SetTreeModule_iter(f, SetTreeNode$1__get_Left(tn));
373
+ f(SetTreeLeaf$1__get_Key(tn));
374
+ f_mut = f;
375
+ t_mut = SetTreeNode$1__get_Right(tn);
376
+ continue SetTreeModule_iter;
377
+ }
378
+ else {
379
+ f(SetTreeLeaf$1__get_Key(t2));
380
+ }
381
+ }
382
+ break;
383
+ }
384
+ }
385
+ function SetTreeModule_foldBackOpt(f_mut, t_mut, x_mut) {
386
+ SetTreeModule_foldBackOpt: while (true) {
387
+ const f = f_mut, t = t_mut, x = x_mut;
388
+ if (t != null) {
389
+ const t2 = value(t);
390
+ if (t2 instanceof SetTreeNode$1) {
391
+ const tn = t2;
392
+ f_mut = f;
393
+ t_mut = SetTreeNode$1__get_Left(tn);
394
+ x_mut = f(SetTreeLeaf$1__get_Key(tn), SetTreeModule_foldBackOpt(f, SetTreeNode$1__get_Right(tn), x));
395
+ continue SetTreeModule_foldBackOpt;
396
+ }
397
+ else {
398
+ return f(SetTreeLeaf$1__get_Key(t2), x);
399
+ }
400
+ }
401
+ else {
402
+ return x;
403
+ }
404
+ break;
405
+ }
406
+ }
407
+ function SetTreeModule_foldBack(f, m, x) {
408
+ return SetTreeModule_foldBackOpt(f, m, x);
409
+ }
410
+ function SetTreeModule_foldOpt(f_mut, x_mut, t_mut) {
411
+ SetTreeModule_foldOpt: while (true) {
412
+ const f = f_mut, x = x_mut, t = t_mut;
413
+ if (t != null) {
414
+ const t2 = value(t);
415
+ if (t2 instanceof SetTreeNode$1) {
416
+ const tn = t2;
417
+ f_mut = f;
418
+ x_mut = f(SetTreeModule_foldOpt(f, x, SetTreeNode$1__get_Left(tn)), SetTreeLeaf$1__get_Key(tn));
419
+ t_mut = SetTreeNode$1__get_Right(tn);
420
+ continue SetTreeModule_foldOpt;
421
+ }
422
+ else {
423
+ return f(x, SetTreeLeaf$1__get_Key(t2));
424
+ }
425
+ }
426
+ else {
427
+ return x;
428
+ }
429
+ break;
430
+ }
431
+ }
432
+ function SetTreeModule_fold(f, x, m) {
433
+ return SetTreeModule_foldOpt(f, x, m);
434
+ }
435
+ function SetTreeModule_forall(f_mut, t_mut) {
436
+ SetTreeModule_forall: while (true) {
437
+ const f = f_mut, t = t_mut;
438
+ if (t != null) {
439
+ const t2 = value(t);
440
+ if (t2 instanceof SetTreeNode$1) {
441
+ const tn = t2;
442
+ if (f(SetTreeLeaf$1__get_Key(tn)) && SetTreeModule_forall(f, SetTreeNode$1__get_Left(tn))) {
443
+ f_mut = f;
444
+ t_mut = SetTreeNode$1__get_Right(tn);
445
+ continue SetTreeModule_forall;
446
+ }
447
+ else {
448
+ return false;
449
+ }
450
+ }
451
+ else {
452
+ return f(SetTreeLeaf$1__get_Key(t2));
453
+ }
454
+ }
455
+ else {
456
+ return true;
457
+ }
458
+ break;
459
+ }
460
+ }
461
+ function SetTreeModule_exists(f_mut, t_mut) {
462
+ SetTreeModule_exists: while (true) {
463
+ const f = f_mut, t = t_mut;
464
+ if (t != null) {
465
+ const t2 = value(t);
466
+ if (t2 instanceof SetTreeNode$1) {
467
+ const tn = t2;
468
+ if (f(SetTreeLeaf$1__get_Key(tn)) ? true : SetTreeModule_exists(f, SetTreeNode$1__get_Left(tn))) {
469
+ return true;
470
+ }
471
+ else {
472
+ f_mut = f;
473
+ t_mut = SetTreeNode$1__get_Right(tn);
474
+ continue SetTreeModule_exists;
475
+ }
476
+ }
477
+ else {
478
+ return f(SetTreeLeaf$1__get_Key(t2));
479
+ }
480
+ }
481
+ else {
482
+ return false;
483
+ }
484
+ break;
485
+ }
486
+ }
487
+ function SetTreeModule_subset(comparer, a, b) {
488
+ return SetTreeModule_forall((x) => SetTreeModule_mem(comparer, x, b), a);
489
+ }
490
+ function SetTreeModule_properSubset(comparer, a, b) {
491
+ if (SetTreeModule_forall((x) => SetTreeModule_mem(comparer, x, b), a)) {
492
+ return SetTreeModule_exists((x_1) => !SetTreeModule_mem(comparer, x_1, a), b);
493
+ }
494
+ else {
495
+ return false;
496
+ }
497
+ }
498
+ function SetTreeModule_filterAux(comparer_mut, f_mut, t_mut, acc_mut) {
499
+ SetTreeModule_filterAux: while (true) {
500
+ const comparer = comparer_mut, f = f_mut, t = t_mut, acc = acc_mut;
501
+ if (t != null) {
502
+ const t2 = value(t);
503
+ if (t2 instanceof SetTreeNode$1) {
504
+ const tn = t2;
505
+ const acc_1 = f(SetTreeLeaf$1__get_Key(tn)) ? SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(tn), acc) : acc;
506
+ comparer_mut = comparer;
507
+ f_mut = f;
508
+ t_mut = SetTreeNode$1__get_Left(tn);
509
+ acc_mut = SetTreeModule_filterAux(comparer, f, SetTreeNode$1__get_Right(tn), acc_1);
510
+ continue SetTreeModule_filterAux;
511
+ }
512
+ else if (f(SetTreeLeaf$1__get_Key(t2))) {
513
+ return SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(t2), acc);
514
+ }
515
+ else {
516
+ return acc;
517
+ }
518
+ }
519
+ else {
520
+ return acc;
521
+ }
522
+ break;
523
+ }
524
+ }
525
+ function SetTreeModule_filter(comparer, f, s) {
526
+ return SetTreeModule_filterAux(comparer, f, s, SetTreeModule_empty());
527
+ }
528
+ function SetTreeModule_diffAux(comparer_mut, t_mut, acc_mut) {
529
+ SetTreeModule_diffAux: while (true) {
530
+ const comparer = comparer_mut, t = t_mut, acc = acc_mut;
531
+ if (acc == null) {
532
+ return acc;
533
+ }
534
+ else if (t != null) {
535
+ const t2 = value(t);
536
+ if (t2 instanceof SetTreeNode$1) {
537
+ const tn = t2;
538
+ comparer_mut = comparer;
539
+ t_mut = SetTreeNode$1__get_Left(tn);
540
+ acc_mut = SetTreeModule_diffAux(comparer, SetTreeNode$1__get_Right(tn), SetTreeModule_remove(comparer, SetTreeLeaf$1__get_Key(tn), acc));
541
+ continue SetTreeModule_diffAux;
542
+ }
543
+ else {
544
+ return SetTreeModule_remove(comparer, SetTreeLeaf$1__get_Key(t2), acc);
545
+ }
546
+ }
547
+ else {
548
+ return acc;
549
+ }
550
+ break;
551
+ }
552
+ }
553
+ function SetTreeModule_diff(comparer, a, b) {
554
+ return SetTreeModule_diffAux(comparer, b, a);
555
+ }
556
+ function SetTreeModule_union(comparer, t1, t2) {
557
+ if (t1 != null) {
558
+ const t1$0027 = value(t1);
559
+ if (t2 != null) {
560
+ const t2$0027 = value(t2);
561
+ if (t1$0027 instanceof SetTreeNode$1) {
562
+ const t1n = t1$0027;
563
+ if (t2$0027 instanceof SetTreeNode$1) {
564
+ const t2n = t2$0027;
565
+ if (SetTreeNode$1__get_Height(t1n) > SetTreeNode$1__get_Height(t2n)) {
566
+ const patternInput = SetTreeModule_split(comparer, SetTreeLeaf$1__get_Key(t1n), t2);
567
+ return SetTreeModule_balance(comparer, SetTreeModule_union(comparer, SetTreeNode$1__get_Left(t1n), patternInput[0]), SetTreeLeaf$1__get_Key(t1n), SetTreeModule_union(comparer, SetTreeNode$1__get_Right(t1n), patternInput[2]));
568
+ }
569
+ else {
570
+ const patternInput_1 = SetTreeModule_split(comparer, SetTreeLeaf$1__get_Key(t2n), t1);
571
+ return SetTreeModule_balance(comparer, SetTreeModule_union(comparer, SetTreeNode$1__get_Left(t2n), patternInput_1[0]), SetTreeLeaf$1__get_Key(t2n), SetTreeModule_union(comparer, SetTreeNode$1__get_Right(t2n), patternInput_1[2]));
572
+ }
573
+ }
574
+ else {
575
+ return SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(t2$0027), t1);
576
+ }
577
+ }
578
+ else {
579
+ return SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(t1$0027), t2);
580
+ }
581
+ }
582
+ else {
583
+ return t1;
584
+ }
585
+ }
586
+ else {
587
+ return t2;
588
+ }
589
+ }
590
+ function SetTreeModule_intersectionAux(comparer_mut, b_mut, t_mut, acc_mut) {
591
+ SetTreeModule_intersectionAux: while (true) {
592
+ const comparer = comparer_mut, b = b_mut, t = t_mut, acc = acc_mut;
593
+ if (t != null) {
594
+ const t2 = value(t);
595
+ if (t2 instanceof SetTreeNode$1) {
596
+ const tn = t2;
597
+ const acc_1 = SetTreeModule_intersectionAux(comparer, b, SetTreeNode$1__get_Right(tn), acc);
598
+ const acc_2 = SetTreeModule_mem(comparer, SetTreeLeaf$1__get_Key(tn), b) ? SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(tn), acc_1) : acc_1;
599
+ comparer_mut = comparer;
600
+ b_mut = b;
601
+ t_mut = SetTreeNode$1__get_Left(tn);
602
+ acc_mut = acc_2;
603
+ continue SetTreeModule_intersectionAux;
604
+ }
605
+ else if (SetTreeModule_mem(comparer, SetTreeLeaf$1__get_Key(t2), b)) {
606
+ return SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(t2), acc);
607
+ }
608
+ else {
609
+ return acc;
610
+ }
611
+ }
612
+ else {
613
+ return acc;
614
+ }
615
+ break;
616
+ }
617
+ }
618
+ function SetTreeModule_intersection(comparer, a, b) {
619
+ return SetTreeModule_intersectionAux(comparer, b, a, SetTreeModule_empty());
620
+ }
621
+ function SetTreeModule_partition1(comparer, f, k, acc1, acc2) {
622
+ if (f(k)) {
623
+ return [SetTreeModule_add(comparer, k, acc1), acc2];
624
+ }
625
+ else {
626
+ return [acc1, SetTreeModule_add(comparer, k, acc2)];
627
+ }
628
+ }
629
+ function SetTreeModule_partitionAux(comparer_mut, f_mut, t_mut, acc__mut, acc__1_mut) {
630
+ SetTreeModule_partitionAux: while (true) {
631
+ const comparer = comparer_mut, f = f_mut, t = t_mut, acc_ = acc__mut, acc__1 = acc__1_mut;
632
+ const acc = [acc_, acc__1];
633
+ if (t != null) {
634
+ const t2 = value(t);
635
+ if (t2 instanceof SetTreeNode$1) {
636
+ const tn = t2;
637
+ const acc_1 = SetTreeModule_partitionAux(comparer, f, SetTreeNode$1__get_Right(tn), acc[0], acc[1]);
638
+ const acc_4 = SetTreeModule_partition1(comparer, f, SetTreeLeaf$1__get_Key(tn), acc_1[0], acc_1[1]);
639
+ comparer_mut = comparer;
640
+ f_mut = f;
641
+ t_mut = SetTreeNode$1__get_Left(tn);
642
+ acc__mut = acc_4[0];
643
+ acc__1_mut = acc_4[1];
644
+ continue SetTreeModule_partitionAux;
645
+ }
646
+ else {
647
+ return SetTreeModule_partition1(comparer, f, SetTreeLeaf$1__get_Key(t2), acc[0], acc[1]);
648
+ }
649
+ }
650
+ else {
651
+ return acc;
652
+ }
653
+ break;
654
+ }
655
+ }
656
+ function SetTreeModule_partition(comparer, f, s) {
657
+ return SetTreeModule_partitionAux(comparer, f, s, SetTreeModule_empty(), SetTreeModule_empty());
658
+ }
659
+ function SetTreeModule_minimumElementAux(t_mut, n_mut) {
660
+ SetTreeModule_minimumElementAux: while (true) {
661
+ const t = t_mut, n = n_mut;
662
+ if (t != null) {
663
+ const t2 = value(t);
664
+ if (t2 instanceof SetTreeNode$1) {
665
+ const tn = t2;
666
+ t_mut = SetTreeNode$1__get_Left(tn);
667
+ n_mut = SetTreeLeaf$1__get_Key(tn);
668
+ continue SetTreeModule_minimumElementAux;
669
+ }
670
+ else {
671
+ return SetTreeLeaf$1__get_Key(t2);
672
+ }
673
+ }
674
+ else {
675
+ return n;
676
+ }
677
+ break;
678
+ }
679
+ }
680
+ function SetTreeModule_minimumElementOpt(t) {
681
+ if (t != null) {
682
+ const t2 = value(t);
683
+ if (t2 instanceof SetTreeNode$1) {
684
+ const tn = t2;
685
+ return some(SetTreeModule_minimumElementAux(SetTreeNode$1__get_Left(tn), SetTreeLeaf$1__get_Key(tn)));
686
+ }
687
+ else {
688
+ return some(SetTreeLeaf$1__get_Key(t2));
689
+ }
690
+ }
691
+ else {
692
+ return undefined;
693
+ }
694
+ }
695
+ function SetTreeModule_maximumElementAux(t_mut, n_mut) {
696
+ SetTreeModule_maximumElementAux: while (true) {
697
+ const t = t_mut, n = n_mut;
698
+ if (t != null) {
699
+ const t2 = value(t);
700
+ if (t2 instanceof SetTreeNode$1) {
701
+ const tn = t2;
702
+ t_mut = SetTreeNode$1__get_Right(tn);
703
+ n_mut = SetTreeLeaf$1__get_Key(tn);
704
+ continue SetTreeModule_maximumElementAux;
705
+ }
706
+ else {
707
+ return SetTreeLeaf$1__get_Key(t2);
708
+ }
709
+ }
710
+ else {
711
+ return n;
712
+ }
713
+ break;
714
+ }
715
+ }
716
+ function SetTreeModule_maximumElementOpt(t) {
717
+ if (t != null) {
718
+ const t2 = value(t);
719
+ if (t2 instanceof SetTreeNode$1) {
720
+ const tn = t2;
721
+ return some(SetTreeModule_maximumElementAux(SetTreeNode$1__get_Right(tn), SetTreeLeaf$1__get_Key(tn)));
722
+ }
723
+ else {
724
+ return some(SetTreeLeaf$1__get_Key(t2));
725
+ }
726
+ }
727
+ else {
728
+ return undefined;
729
+ }
730
+ }
731
+ function SetTreeModule_minimumElement(s) {
732
+ const matchValue = SetTreeModule_minimumElementOpt(s);
733
+ if (matchValue == null) {
734
+ throw new Error("Set contains no elements");
735
+ }
736
+ else {
737
+ return value(matchValue);
738
+ }
739
+ }
740
+ function SetTreeModule_maximumElement(s) {
741
+ const matchValue = SetTreeModule_maximumElementOpt(s);
742
+ if (matchValue == null) {
743
+ throw new Error("Set contains no elements");
744
+ }
745
+ else {
746
+ return value(matchValue);
747
+ }
748
+ }
749
+ class SetTreeModule_SetIterator$1 extends Record {
750
+ constructor(stack, started) {
751
+ super();
752
+ this.stack = stack;
753
+ this.started = started;
754
+ }
755
+ }
756
+ function SetTreeModule_SetIterator$1_$reflection(gen0) {
757
+ return record_type("Set.SetTreeModule.SetIterator`1", [gen0], SetTreeModule_SetIterator$1, () => [["stack", list_type(option_type(SetTreeLeaf$1_$reflection(gen0)))], ["started", bool_type]]);
758
+ }
759
+ function SetTreeModule_collapseLHS(stack_mut) {
760
+ SetTreeModule_collapseLHS: while (true) {
761
+ const stack = stack_mut;
762
+ if (!isEmpty$1(stack)) {
763
+ const x = head(stack);
764
+ const rest = tail(stack);
765
+ if (x != null) {
766
+ const x2 = value(x);
767
+ if (x2 instanceof SetTreeNode$1) {
768
+ const xn = x2;
769
+ stack_mut = ofArrayWithTail([SetTreeNode$1__get_Left(xn), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(xn)), SetTreeNode$1__get_Right(xn)], rest);
770
+ continue SetTreeModule_collapseLHS;
771
+ }
772
+ else {
773
+ return stack;
774
+ }
775
+ }
776
+ else {
777
+ stack_mut = rest;
778
+ continue SetTreeModule_collapseLHS;
779
+ }
780
+ }
781
+ else {
782
+ return empty$1();
783
+ }
784
+ break;
785
+ }
786
+ }
787
+ function SetTreeModule_mkIterator(s) {
788
+ return new SetTreeModule_SetIterator$1(SetTreeModule_collapseLHS(singleton$1(s)), false);
789
+ }
790
+ function SetTreeModule_notStarted() {
791
+ throw new Error("Enumeration not started");
792
+ }
793
+ function SetTreeModule_alreadyFinished() {
794
+ throw new Error("Enumeration already started");
795
+ }
796
+ function SetTreeModule_current(i) {
797
+ if (i.started) {
798
+ const matchValue = i.stack;
799
+ if (isEmpty$1(matchValue)) {
800
+ return SetTreeModule_alreadyFinished();
801
+ }
802
+ else if (head(matchValue) != null) {
803
+ const t = value(head(matchValue));
804
+ return SetTreeLeaf$1__get_Key(t);
805
+ }
806
+ else {
807
+ throw new Error("Please report error: Set iterator, unexpected stack for current");
808
+ }
809
+ }
810
+ else {
811
+ return SetTreeModule_notStarted();
812
+ }
813
+ }
814
+ function SetTreeModule_moveNext(i) {
815
+ if (i.started) {
816
+ const matchValue = i.stack;
817
+ if (!isEmpty$1(matchValue)) {
818
+ if (head(matchValue) != null) {
819
+ const t = value(head(matchValue));
820
+ if (t instanceof SetTreeNode$1) {
821
+ throw new Error("Please report error: Set iterator, unexpected stack for moveNext");
822
+ }
823
+ else {
824
+ i.stack = SetTreeModule_collapseLHS(tail(matchValue));
825
+ return !isEmpty$1(i.stack);
826
+ }
827
+ }
828
+ else {
829
+ throw new Error("Please report error: Set iterator, unexpected stack for moveNext");
830
+ }
831
+ }
832
+ else {
833
+ return false;
834
+ }
835
+ }
836
+ else {
837
+ i.started = true;
838
+ return !isEmpty$1(i.stack);
839
+ }
840
+ }
841
+ function SetTreeModule_mkIEnumerator(s) {
842
+ let i = SetTreeModule_mkIterator(s);
843
+ return {
844
+ "System.Collections.Generic.IEnumerator`1.get_Current"() {
845
+ return SetTreeModule_current(i);
846
+ },
847
+ "System.Collections.IEnumerator.get_Current"() {
848
+ return SetTreeModule_current(i);
849
+ },
850
+ "System.Collections.IEnumerator.MoveNext"() {
851
+ return SetTreeModule_moveNext(i);
852
+ },
853
+ "System.Collections.IEnumerator.Reset"() {
854
+ i = SetTreeModule_mkIterator(s);
855
+ },
856
+ Dispose() {
857
+ },
858
+ };
859
+ }
860
+ /**
861
+ * Set comparison. Note this can be expensive.
862
+ */
863
+ function SetTreeModule_compareStacks(comparer_mut, l1_mut, l2_mut) {
864
+ SetTreeModule_compareStacks: while (true) {
865
+ const comparer = comparer_mut, l1 = l1_mut, l2 = l2_mut;
866
+ if (!isEmpty$1(l1)) {
867
+ if (!isEmpty$1(l2)) {
868
+ if (head(l2) != null) {
869
+ if (head(l1) != null) {
870
+ const x1_3 = value(head(l1));
871
+ const x2_3 = value(head(l2));
872
+ if (x1_3 instanceof SetTreeNode$1) {
873
+ const x1n_2 = x1_3;
874
+ if (SetTreeNode$1__get_Left(x1n_2) == null) {
875
+ if (x2_3 instanceof SetTreeNode$1) {
876
+ const x2n_2 = x2_3;
877
+ if (SetTreeNode$1__get_Left(x2n_2) == null) {
878
+ const c = comparer.Compare(SetTreeLeaf$1__get_Key(x1n_2), SetTreeLeaf$1__get_Key(x2n_2)) | 0;
879
+ if (c !== 0) {
880
+ return c | 0;
881
+ }
882
+ else {
883
+ comparer_mut = comparer;
884
+ l1_mut = cons(SetTreeNode$1__get_Right(x1n_2), tail(l1));
885
+ l2_mut = cons(SetTreeNode$1__get_Right(x2n_2), tail(l2));
886
+ continue SetTreeModule_compareStacks;
887
+ }
888
+ }
889
+ else {
890
+ let matchResult, t1_6, x1_4, t2_6, x2_4;
891
+ if (!isEmpty$1(l1)) {
892
+ if (head(l1) != null) {
893
+ matchResult = 0;
894
+ t1_6 = tail(l1);
895
+ x1_4 = value(head(l1));
896
+ }
897
+ else if (!isEmpty$1(l2)) {
898
+ if (head(l2) != null) {
899
+ matchResult = 1;
900
+ t2_6 = tail(l2);
901
+ x2_4 = value(head(l2));
902
+ }
903
+ else {
904
+ matchResult = 2;
905
+ }
906
+ }
907
+ else {
908
+ matchResult = 2;
909
+ }
910
+ }
911
+ else if (!isEmpty$1(l2)) {
912
+ if (head(l2) != null) {
913
+ matchResult = 1;
914
+ t2_6 = tail(l2);
915
+ x2_4 = value(head(l2));
916
+ }
917
+ else {
918
+ matchResult = 2;
919
+ }
920
+ }
921
+ else {
922
+ matchResult = 2;
923
+ }
924
+ switch (matchResult) {
925
+ case 0:
926
+ if (x1_4 instanceof SetTreeNode$1) {
927
+ const x1n_3 = x1_4;
928
+ comparer_mut = comparer;
929
+ l1_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x1n_3), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x1n_3), SetTreeModule_empty(), SetTreeNode$1__get_Right(x1n_3), 0)], t1_6);
930
+ l2_mut = l2;
931
+ continue SetTreeModule_compareStacks;
932
+ }
933
+ else {
934
+ comparer_mut = comparer;
935
+ l1_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x1_4))], t1_6);
936
+ l2_mut = l2;
937
+ continue SetTreeModule_compareStacks;
938
+ }
939
+ case 1:
940
+ if (x2_4 instanceof SetTreeNode$1) {
941
+ const x2n_3 = x2_4;
942
+ comparer_mut = comparer;
943
+ l1_mut = l1;
944
+ l2_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x2n_3), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x2n_3), SetTreeModule_empty(), SetTreeNode$1__get_Right(x2n_3), 0)], t2_6);
945
+ continue SetTreeModule_compareStacks;
946
+ }
947
+ else {
948
+ comparer_mut = comparer;
949
+ l1_mut = l1;
950
+ l2_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x2_4))], t2_6);
951
+ continue SetTreeModule_compareStacks;
952
+ }
953
+ default:
954
+ throw new Error("unexpected state in SetTree.compareStacks");
955
+ }
956
+ }
957
+ }
958
+ else {
959
+ const c_1 = comparer.Compare(SetTreeLeaf$1__get_Key(x1n_2), SetTreeLeaf$1__get_Key(x2_3)) | 0;
960
+ if (c_1 !== 0) {
961
+ return c_1 | 0;
962
+ }
963
+ else {
964
+ comparer_mut = comparer;
965
+ l1_mut = cons(SetTreeNode$1__get_Right(x1n_2), tail(l1));
966
+ l2_mut = cons(SetTreeModule_empty(), tail(l2));
967
+ continue SetTreeModule_compareStacks;
968
+ }
969
+ }
970
+ }
971
+ else {
972
+ let matchResult_1, t1_7, x1_5, t2_7, x2_5;
973
+ if (!isEmpty$1(l1)) {
974
+ if (head(l1) != null) {
975
+ matchResult_1 = 0;
976
+ t1_7 = tail(l1);
977
+ x1_5 = value(head(l1));
978
+ }
979
+ else if (!isEmpty$1(l2)) {
980
+ if (head(l2) != null) {
981
+ matchResult_1 = 1;
982
+ t2_7 = tail(l2);
983
+ x2_5 = value(head(l2));
984
+ }
985
+ else {
986
+ matchResult_1 = 2;
987
+ }
988
+ }
989
+ else {
990
+ matchResult_1 = 2;
991
+ }
992
+ }
993
+ else if (!isEmpty$1(l2)) {
994
+ if (head(l2) != null) {
995
+ matchResult_1 = 1;
996
+ t2_7 = tail(l2);
997
+ x2_5 = value(head(l2));
998
+ }
999
+ else {
1000
+ matchResult_1 = 2;
1001
+ }
1002
+ }
1003
+ else {
1004
+ matchResult_1 = 2;
1005
+ }
1006
+ switch (matchResult_1) {
1007
+ case 0:
1008
+ if (x1_5 instanceof SetTreeNode$1) {
1009
+ const x1n_4 = x1_5;
1010
+ comparer_mut = comparer;
1011
+ l1_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x1n_4), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x1n_4), SetTreeModule_empty(), SetTreeNode$1__get_Right(x1n_4), 0)], t1_7);
1012
+ l2_mut = l2;
1013
+ continue SetTreeModule_compareStacks;
1014
+ }
1015
+ else {
1016
+ comparer_mut = comparer;
1017
+ l1_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x1_5))], t1_7);
1018
+ l2_mut = l2;
1019
+ continue SetTreeModule_compareStacks;
1020
+ }
1021
+ case 1:
1022
+ if (x2_5 instanceof SetTreeNode$1) {
1023
+ const x2n_4 = x2_5;
1024
+ comparer_mut = comparer;
1025
+ l1_mut = l1;
1026
+ l2_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x2n_4), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x2n_4), SetTreeModule_empty(), SetTreeNode$1__get_Right(x2n_4), 0)], t2_7);
1027
+ continue SetTreeModule_compareStacks;
1028
+ }
1029
+ else {
1030
+ comparer_mut = comparer;
1031
+ l1_mut = l1;
1032
+ l2_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x2_5))], t2_7);
1033
+ continue SetTreeModule_compareStacks;
1034
+ }
1035
+ default:
1036
+ throw new Error("unexpected state in SetTree.compareStacks");
1037
+ }
1038
+ }
1039
+ }
1040
+ else if (x2_3 instanceof SetTreeNode$1) {
1041
+ const x2n_5 = x2_3;
1042
+ if (SetTreeNode$1__get_Left(x2n_5) == null) {
1043
+ const c_2 = comparer.Compare(SetTreeLeaf$1__get_Key(x1_3), SetTreeLeaf$1__get_Key(x2n_5)) | 0;
1044
+ if (c_2 !== 0) {
1045
+ return c_2 | 0;
1046
+ }
1047
+ else {
1048
+ comparer_mut = comparer;
1049
+ l1_mut = cons(SetTreeModule_empty(), tail(l1));
1050
+ l2_mut = cons(SetTreeNode$1__get_Right(x2n_5), tail(l2));
1051
+ continue SetTreeModule_compareStacks;
1052
+ }
1053
+ }
1054
+ else {
1055
+ let matchResult_2, t1_8, x1_6, t2_8, x2_6;
1056
+ if (!isEmpty$1(l1)) {
1057
+ if (head(l1) != null) {
1058
+ matchResult_2 = 0;
1059
+ t1_8 = tail(l1);
1060
+ x1_6 = value(head(l1));
1061
+ }
1062
+ else if (!isEmpty$1(l2)) {
1063
+ if (head(l2) != null) {
1064
+ matchResult_2 = 1;
1065
+ t2_8 = tail(l2);
1066
+ x2_6 = value(head(l2));
1067
+ }
1068
+ else {
1069
+ matchResult_2 = 2;
1070
+ }
1071
+ }
1072
+ else {
1073
+ matchResult_2 = 2;
1074
+ }
1075
+ }
1076
+ else if (!isEmpty$1(l2)) {
1077
+ if (head(l2) != null) {
1078
+ matchResult_2 = 1;
1079
+ t2_8 = tail(l2);
1080
+ x2_6 = value(head(l2));
1081
+ }
1082
+ else {
1083
+ matchResult_2 = 2;
1084
+ }
1085
+ }
1086
+ else {
1087
+ matchResult_2 = 2;
1088
+ }
1089
+ switch (matchResult_2) {
1090
+ case 0:
1091
+ if (x1_6 instanceof SetTreeNode$1) {
1092
+ const x1n_5 = x1_6;
1093
+ comparer_mut = comparer;
1094
+ l1_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x1n_5), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x1n_5), SetTreeModule_empty(), SetTreeNode$1__get_Right(x1n_5), 0)], t1_8);
1095
+ l2_mut = l2;
1096
+ continue SetTreeModule_compareStacks;
1097
+ }
1098
+ else {
1099
+ comparer_mut = comparer;
1100
+ l1_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x1_6))], t1_8);
1101
+ l2_mut = l2;
1102
+ continue SetTreeModule_compareStacks;
1103
+ }
1104
+ case 1:
1105
+ if (x2_6 instanceof SetTreeNode$1) {
1106
+ const x2n_6 = x2_6;
1107
+ comparer_mut = comparer;
1108
+ l1_mut = l1;
1109
+ l2_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x2n_6), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x2n_6), SetTreeModule_empty(), SetTreeNode$1__get_Right(x2n_6), 0)], t2_8);
1110
+ continue SetTreeModule_compareStacks;
1111
+ }
1112
+ else {
1113
+ comparer_mut = comparer;
1114
+ l1_mut = l1;
1115
+ l2_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x2_6))], t2_8);
1116
+ continue SetTreeModule_compareStacks;
1117
+ }
1118
+ default:
1119
+ throw new Error("unexpected state in SetTree.compareStacks");
1120
+ }
1121
+ }
1122
+ }
1123
+ else {
1124
+ const c_3 = comparer.Compare(SetTreeLeaf$1__get_Key(x1_3), SetTreeLeaf$1__get_Key(x2_3)) | 0;
1125
+ if (c_3 !== 0) {
1126
+ return c_3 | 0;
1127
+ }
1128
+ else {
1129
+ comparer_mut = comparer;
1130
+ l1_mut = tail(l1);
1131
+ l2_mut = tail(l2);
1132
+ continue SetTreeModule_compareStacks;
1133
+ }
1134
+ }
1135
+ }
1136
+ else {
1137
+ const x2 = value(head(l2));
1138
+ let matchResult_3, t1_2, x1, t2_2, x2_1;
1139
+ if (!isEmpty$1(l1)) {
1140
+ if (head(l1) != null) {
1141
+ matchResult_3 = 0;
1142
+ t1_2 = tail(l1);
1143
+ x1 = value(head(l1));
1144
+ }
1145
+ else if (!isEmpty$1(l2)) {
1146
+ if (head(l2) != null) {
1147
+ matchResult_3 = 1;
1148
+ t2_2 = tail(l2);
1149
+ x2_1 = value(head(l2));
1150
+ }
1151
+ else {
1152
+ matchResult_3 = 2;
1153
+ }
1154
+ }
1155
+ else {
1156
+ matchResult_3 = 2;
1157
+ }
1158
+ }
1159
+ else if (!isEmpty$1(l2)) {
1160
+ if (head(l2) != null) {
1161
+ matchResult_3 = 1;
1162
+ t2_2 = tail(l2);
1163
+ x2_1 = value(head(l2));
1164
+ }
1165
+ else {
1166
+ matchResult_3 = 2;
1167
+ }
1168
+ }
1169
+ else {
1170
+ matchResult_3 = 2;
1171
+ }
1172
+ switch (matchResult_3) {
1173
+ case 0:
1174
+ if (x1 instanceof SetTreeNode$1) {
1175
+ const x1n = x1;
1176
+ comparer_mut = comparer;
1177
+ l1_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x1n), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x1n), SetTreeModule_empty(), SetTreeNode$1__get_Right(x1n), 0)], t1_2);
1178
+ l2_mut = l2;
1179
+ continue SetTreeModule_compareStacks;
1180
+ }
1181
+ else {
1182
+ comparer_mut = comparer;
1183
+ l1_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x1))], t1_2);
1184
+ l2_mut = l2;
1185
+ continue SetTreeModule_compareStacks;
1186
+ }
1187
+ case 1:
1188
+ if (x2_1 instanceof SetTreeNode$1) {
1189
+ const x2n = x2_1;
1190
+ comparer_mut = comparer;
1191
+ l1_mut = l1;
1192
+ l2_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x2n), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x2n), SetTreeModule_empty(), SetTreeNode$1__get_Right(x2n), 0)], t2_2);
1193
+ continue SetTreeModule_compareStacks;
1194
+ }
1195
+ else {
1196
+ comparer_mut = comparer;
1197
+ l1_mut = l1;
1198
+ l2_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x2_1))], t2_2);
1199
+ continue SetTreeModule_compareStacks;
1200
+ }
1201
+ default:
1202
+ throw new Error("unexpected state in SetTree.compareStacks");
1203
+ }
1204
+ }
1205
+ }
1206
+ else if (head(l1) != null) {
1207
+ const x1_1 = value(head(l1));
1208
+ let matchResult_4, t1_4, x1_2, t2_4, x2_2;
1209
+ if (!isEmpty$1(l1)) {
1210
+ if (head(l1) != null) {
1211
+ matchResult_4 = 0;
1212
+ t1_4 = tail(l1);
1213
+ x1_2 = value(head(l1));
1214
+ }
1215
+ else if (!isEmpty$1(l2)) {
1216
+ if (head(l2) != null) {
1217
+ matchResult_4 = 1;
1218
+ t2_4 = tail(l2);
1219
+ x2_2 = value(head(l2));
1220
+ }
1221
+ else {
1222
+ matchResult_4 = 2;
1223
+ }
1224
+ }
1225
+ else {
1226
+ matchResult_4 = 2;
1227
+ }
1228
+ }
1229
+ else if (!isEmpty$1(l2)) {
1230
+ if (head(l2) != null) {
1231
+ matchResult_4 = 1;
1232
+ t2_4 = tail(l2);
1233
+ x2_2 = value(head(l2));
1234
+ }
1235
+ else {
1236
+ matchResult_4 = 2;
1237
+ }
1238
+ }
1239
+ else {
1240
+ matchResult_4 = 2;
1241
+ }
1242
+ switch (matchResult_4) {
1243
+ case 0:
1244
+ if (x1_2 instanceof SetTreeNode$1) {
1245
+ const x1n_1 = x1_2;
1246
+ comparer_mut = comparer;
1247
+ l1_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x1n_1), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x1n_1), SetTreeModule_empty(), SetTreeNode$1__get_Right(x1n_1), 0)], t1_4);
1248
+ l2_mut = l2;
1249
+ continue SetTreeModule_compareStacks;
1250
+ }
1251
+ else {
1252
+ comparer_mut = comparer;
1253
+ l1_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x1_2))], t1_4);
1254
+ l2_mut = l2;
1255
+ continue SetTreeModule_compareStacks;
1256
+ }
1257
+ case 1:
1258
+ if (x2_2 instanceof SetTreeNode$1) {
1259
+ const x2n_1 = x2_2;
1260
+ comparer_mut = comparer;
1261
+ l1_mut = l1;
1262
+ l2_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x2n_1), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x2n_1), SetTreeModule_empty(), SetTreeNode$1__get_Right(x2n_1), 0)], t2_4);
1263
+ continue SetTreeModule_compareStacks;
1264
+ }
1265
+ else {
1266
+ comparer_mut = comparer;
1267
+ l1_mut = l1;
1268
+ l2_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x2_2))], t2_4);
1269
+ continue SetTreeModule_compareStacks;
1270
+ }
1271
+ default:
1272
+ throw new Error("unexpected state in SetTree.compareStacks");
1273
+ }
1274
+ }
1275
+ else {
1276
+ comparer_mut = comparer;
1277
+ l1_mut = tail(l1);
1278
+ l2_mut = tail(l2);
1279
+ continue SetTreeModule_compareStacks;
1280
+ }
1281
+ }
1282
+ else {
1283
+ return 1;
1284
+ }
1285
+ }
1286
+ else if (isEmpty$1(l2)) {
1287
+ return 0;
1288
+ }
1289
+ else {
1290
+ return -1;
1291
+ }
1292
+ break;
1293
+ }
1294
+ }
1295
+ function SetTreeModule_compare(comparer, t1, t2) {
1296
+ if (t1 == null) {
1297
+ if (t2 == null) {
1298
+ return 0;
1299
+ }
1300
+ else {
1301
+ return -1;
1302
+ }
1303
+ }
1304
+ else if (t2 == null) {
1305
+ return 1;
1306
+ }
1307
+ else {
1308
+ return SetTreeModule_compareStacks(comparer, singleton$1(t1), singleton$1(t2)) | 0;
1309
+ }
1310
+ }
1311
+ function SetTreeModule_choose(s) {
1312
+ return SetTreeModule_minimumElement(s);
1313
+ }
1314
+ function SetTreeModule_toList(t) {
1315
+ const loop = (t$0027_mut, acc_mut) => {
1316
+ loop: while (true) {
1317
+ const t$0027 = t$0027_mut, acc = acc_mut;
1318
+ if (t$0027 != null) {
1319
+ const t2 = value(t$0027);
1320
+ if (t2 instanceof SetTreeNode$1) {
1321
+ const tn = t2;
1322
+ t$0027_mut = SetTreeNode$1__get_Left(tn);
1323
+ acc_mut = cons(SetTreeLeaf$1__get_Key(tn), loop(SetTreeNode$1__get_Right(tn), acc));
1324
+ continue loop;
1325
+ }
1326
+ else {
1327
+ return cons(SetTreeLeaf$1__get_Key(t2), acc);
1328
+ }
1329
+ }
1330
+ else {
1331
+ return acc;
1332
+ }
1333
+ break;
1334
+ }
1335
+ };
1336
+ return loop(t, empty$1());
1337
+ }
1338
+ function SetTreeModule_copyToArray(s, arr, i) {
1339
+ let j = i;
1340
+ SetTreeModule_iter((x) => {
1341
+ setItem(arr, j, x);
1342
+ j = ((j + 1) | 0);
1343
+ }, s);
1344
+ }
1345
+ function SetTreeModule_toArray(s) {
1346
+ const n = SetTreeModule_count(s) | 0;
1347
+ const res = fill(new Array(n), 0, n, null);
1348
+ SetTreeModule_copyToArray(s, res, 0);
1349
+ return res;
1350
+ }
1351
+ function SetTreeModule_mkFromEnumerator(comparer_mut, acc_mut, e_mut) {
1352
+ SetTreeModule_mkFromEnumerator: while (true) {
1353
+ const comparer = comparer_mut, acc = acc_mut, e = e_mut;
1354
+ if (e["System.Collections.IEnumerator.MoveNext"]()) {
1355
+ comparer_mut = comparer;
1356
+ acc_mut = SetTreeModule_add(comparer, e["System.Collections.Generic.IEnumerator`1.get_Current"](), acc);
1357
+ e_mut = e;
1358
+ continue SetTreeModule_mkFromEnumerator;
1359
+ }
1360
+ else {
1361
+ return acc;
1362
+ }
1363
+ break;
1364
+ }
1365
+ }
1366
+ function SetTreeModule_ofArray(comparer, l) {
1367
+ return fold$1((acc, k) => SetTreeModule_add(comparer, k, acc), SetTreeModule_empty(), l);
1368
+ }
1369
+ function SetTreeModule_ofList(comparer, l) {
1370
+ return fold$2((acc, k) => SetTreeModule_add(comparer, k, acc), SetTreeModule_empty(), l);
1371
+ }
1372
+ function SetTreeModule_ofSeq(comparer, c) {
1373
+ if (isArrayLike(c)) {
1374
+ return SetTreeModule_ofArray(comparer, c);
1375
+ }
1376
+ else if (c instanceof FSharpList) {
1377
+ return SetTreeModule_ofList(comparer, c);
1378
+ }
1379
+ else {
1380
+ const ie = getEnumerator(c);
1381
+ try {
1382
+ return SetTreeModule_mkFromEnumerator(comparer, SetTreeModule_empty(), ie);
1383
+ }
1384
+ finally {
1385
+ disposeSafe(ie);
1386
+ }
1387
+ }
1388
+ }
1389
+ class FSharpSet {
1390
+ constructor(comparer, tree) {
1391
+ this.comparer = comparer;
1392
+ this.tree = tree;
1393
+ }
1394
+ GetHashCode() {
1395
+ const this$ = this;
1396
+ return FSharpSet__ComputeHashCode(this$) | 0;
1397
+ }
1398
+ Equals(that) {
1399
+ let that_1;
1400
+ const this$ = this;
1401
+ return (that instanceof FSharpSet) && ((that_1 = that, SetTreeModule_compare(FSharpSet__get_Comparer(this$), FSharpSet__get_Tree(this$), FSharpSet__get_Tree(that_1)) === 0));
1402
+ }
1403
+ toString() {
1404
+ const this$ = this;
1405
+ return ("set [" + join("; ", map$1((x) => {
1406
+ let copyOfStruct = x;
1407
+ return toString(copyOfStruct);
1408
+ }, this$))) + "]";
1409
+ }
1410
+ get [Symbol.toStringTag]() {
1411
+ return "FSharpSet";
1412
+ }
1413
+ toJSON() {
1414
+ const this$ = this;
1415
+ return Array.from(this$);
1416
+ }
1417
+ CompareTo(that) {
1418
+ const s = this;
1419
+ return SetTreeModule_compare(FSharpSet__get_Comparer(s), FSharpSet__get_Tree(s), FSharpSet__get_Tree(that)) | 0;
1420
+ }
1421
+ "System.Collections.Generic.ICollection`1.Add2B595"(x) {
1422
+ throw new Error("ReadOnlyCollection");
1423
+ }
1424
+ "System.Collections.Generic.ICollection`1.Clear"() {
1425
+ throw new Error("ReadOnlyCollection");
1426
+ }
1427
+ "System.Collections.Generic.ICollection`1.Remove2B595"(x) {
1428
+ throw new Error("ReadOnlyCollection");
1429
+ }
1430
+ "System.Collections.Generic.ICollection`1.Contains2B595"(x) {
1431
+ const s = this;
1432
+ return SetTreeModule_mem(FSharpSet__get_Comparer(s), x, FSharpSet__get_Tree(s));
1433
+ }
1434
+ "System.Collections.Generic.ICollection`1.CopyToZ3B4C077E"(arr, i) {
1435
+ const s = this;
1436
+ SetTreeModule_copyToArray(FSharpSet__get_Tree(s), arr, i);
1437
+ }
1438
+ "System.Collections.Generic.ICollection`1.get_IsReadOnly"() {
1439
+ return true;
1440
+ }
1441
+ "System.Collections.Generic.ICollection`1.get_Count"() {
1442
+ const s = this;
1443
+ return FSharpSet__get_Count(s) | 0;
1444
+ }
1445
+ "System.Collections.Generic.IReadOnlyCollection`1.get_Count"() {
1446
+ const s = this;
1447
+ return FSharpSet__get_Count(s) | 0;
1448
+ }
1449
+ GetEnumerator() {
1450
+ const s = this;
1451
+ return SetTreeModule_mkIEnumerator(FSharpSet__get_Tree(s));
1452
+ }
1453
+ [Symbol.iterator]() {
1454
+ return toIterator(getEnumerator(this));
1455
+ }
1456
+ "System.Collections.IEnumerable.GetEnumerator"() {
1457
+ const s = this;
1458
+ return SetTreeModule_mkIEnumerator(FSharpSet__get_Tree(s));
1459
+ }
1460
+ get size() {
1461
+ const s = this;
1462
+ return FSharpSet__get_Count(s) | 0;
1463
+ }
1464
+ add(k) {
1465
+ const s = this;
1466
+ throw new Error("Set cannot be mutated");
1467
+ return s;
1468
+ }
1469
+ clear() {
1470
+ throw new Error("Set cannot be mutated");
1471
+ }
1472
+ delete(k) {
1473
+ throw new Error("Set cannot be mutated");
1474
+ return false;
1475
+ }
1476
+ has(k) {
1477
+ const s = this;
1478
+ return FSharpSet__Contains(s, k);
1479
+ }
1480
+ keys() {
1481
+ const s = this;
1482
+ return map$1((x) => x, s);
1483
+ }
1484
+ values() {
1485
+ const s = this;
1486
+ return map$1((x) => x, s);
1487
+ }
1488
+ entries() {
1489
+ const s = this;
1490
+ return map$1((v) => [v, v], s);
1491
+ }
1492
+ forEach(f, thisArg) {
1493
+ const s = this;
1494
+ iterate$1((x) => {
1495
+ f(x, x, s);
1496
+ }, s);
1497
+ }
1498
+ }
1499
+ function FSharpSet_$reflection(gen0) {
1500
+ return class_type("Set.FSharpSet", [gen0], FSharpSet);
1501
+ }
1502
+ function FSharpSet_$ctor(comparer, tree) {
1503
+ return new FSharpSet(comparer, tree);
1504
+ }
1505
+ function FSharpSet__get_Comparer(set$) {
1506
+ return set$.comparer;
1507
+ }
1508
+ function FSharpSet__get_Tree(set$) {
1509
+ return set$.tree;
1510
+ }
1511
+ function FSharpSet_Empty(comparer) {
1512
+ return FSharpSet_$ctor(comparer, SetTreeModule_empty());
1513
+ }
1514
+ function FSharpSet__Add(s, value) {
1515
+ return FSharpSet_$ctor(FSharpSet__get_Comparer(s), SetTreeModule_add(FSharpSet__get_Comparer(s), value, FSharpSet__get_Tree(s)));
1516
+ }
1517
+ function FSharpSet__Remove(s, value) {
1518
+ return FSharpSet_$ctor(FSharpSet__get_Comparer(s), SetTreeModule_remove(FSharpSet__get_Comparer(s), value, FSharpSet__get_Tree(s)));
1519
+ }
1520
+ function FSharpSet__get_Count(s) {
1521
+ return SetTreeModule_count(FSharpSet__get_Tree(s));
1522
+ }
1523
+ function FSharpSet__Contains(s, value) {
1524
+ return SetTreeModule_mem(FSharpSet__get_Comparer(s), value, FSharpSet__get_Tree(s));
1525
+ }
1526
+ function FSharpSet__Iterate(s, x) {
1527
+ SetTreeModule_iter(x, FSharpSet__get_Tree(s));
1528
+ }
1529
+ function FSharpSet__Fold(s, f, z) {
1530
+ const f_1 = f;
1531
+ return SetTreeModule_fold((x, z_1) => f_1(z_1, x), z, FSharpSet__get_Tree(s));
1532
+ }
1533
+ function FSharpSet__get_IsEmpty(s) {
1534
+ return FSharpSet__get_Tree(s) == null;
1535
+ }
1536
+ function FSharpSet__Partition(s, f) {
1537
+ if (FSharpSet__get_Tree(s) == null) {
1538
+ return [s, s];
1539
+ }
1540
+ else {
1541
+ const patternInput = SetTreeModule_partition(FSharpSet__get_Comparer(s), f, FSharpSet__get_Tree(s));
1542
+ return [FSharpSet_$ctor(FSharpSet__get_Comparer(s), patternInput[0]), FSharpSet_$ctor(FSharpSet__get_Comparer(s), patternInput[1])];
1543
+ }
1544
+ }
1545
+ function FSharpSet__Filter(s, f) {
1546
+ if (FSharpSet__get_Tree(s) == null) {
1547
+ return s;
1548
+ }
1549
+ else {
1550
+ return FSharpSet_$ctor(FSharpSet__get_Comparer(s), SetTreeModule_filter(FSharpSet__get_Comparer(s), f, FSharpSet__get_Tree(s)));
1551
+ }
1552
+ }
1553
+ function FSharpSet__Map(s, f, comparer) {
1554
+ return FSharpSet_$ctor(comparer, SetTreeModule_fold((acc, k) => SetTreeModule_add(comparer, f(k), acc), SetTreeModule_empty(), FSharpSet__get_Tree(s)));
1555
+ }
1556
+ function FSharpSet__Exists(s, f) {
1557
+ return SetTreeModule_exists(f, FSharpSet__get_Tree(s));
1558
+ }
1559
+ function FSharpSet__ForAll(s, f) {
1560
+ return SetTreeModule_forall(f, FSharpSet__get_Tree(s));
1561
+ }
1562
+ function FSharpSet_op_Subtraction(set1, set2) {
1563
+ if (FSharpSet__get_Tree(set1) == null) {
1564
+ return set1;
1565
+ }
1566
+ else if (FSharpSet__get_Tree(set2) == null) {
1567
+ return set1;
1568
+ }
1569
+ else {
1570
+ return FSharpSet_$ctor(FSharpSet__get_Comparer(set1), SetTreeModule_diff(FSharpSet__get_Comparer(set1), FSharpSet__get_Tree(set1), FSharpSet__get_Tree(set2)));
1571
+ }
1572
+ }
1573
+ function FSharpSet_op_Addition(set1, set2) {
1574
+ if (FSharpSet__get_Tree(set2) == null) {
1575
+ return set1;
1576
+ }
1577
+ else if (FSharpSet__get_Tree(set1) == null) {
1578
+ return set2;
1579
+ }
1580
+ else {
1581
+ return FSharpSet_$ctor(FSharpSet__get_Comparer(set1), SetTreeModule_union(FSharpSet__get_Comparer(set1), FSharpSet__get_Tree(set1), FSharpSet__get_Tree(set2)));
1582
+ }
1583
+ }
1584
+ function FSharpSet_Intersection(a, b) {
1585
+ if (FSharpSet__get_Tree(b) == null) {
1586
+ return b;
1587
+ }
1588
+ else if (FSharpSet__get_Tree(a) == null) {
1589
+ return a;
1590
+ }
1591
+ else {
1592
+ return FSharpSet_$ctor(FSharpSet__get_Comparer(a), SetTreeModule_intersection(FSharpSet__get_Comparer(a), FSharpSet__get_Tree(a), FSharpSet__get_Tree(b)));
1593
+ }
1594
+ }
1595
+ function FSharpSet_IntersectionMany(sets) {
1596
+ return reduce(FSharpSet_Intersection, sets);
1597
+ }
1598
+ function FSharpSet_Equality(a, b) {
1599
+ return SetTreeModule_compare(FSharpSet__get_Comparer(a), FSharpSet__get_Tree(a), FSharpSet__get_Tree(b)) === 0;
1600
+ }
1601
+ function FSharpSet_Compare(a, b) {
1602
+ return SetTreeModule_compare(FSharpSet__get_Comparer(a), FSharpSet__get_Tree(a), FSharpSet__get_Tree(b));
1603
+ }
1604
+ function FSharpSet__get_Choose(x) {
1605
+ return SetTreeModule_choose(FSharpSet__get_Tree(x));
1606
+ }
1607
+ function FSharpSet__get_MinimumElement(x) {
1608
+ return SetTreeModule_minimumElement(FSharpSet__get_Tree(x));
1609
+ }
1610
+ function FSharpSet__get_MaximumElement(x) {
1611
+ return SetTreeModule_maximumElement(FSharpSet__get_Tree(x));
1612
+ }
1613
+ function FSharpSet__IsSubsetOf(x, otherSet) {
1614
+ return SetTreeModule_subset(FSharpSet__get_Comparer(x), FSharpSet__get_Tree(x), FSharpSet__get_Tree(otherSet));
1615
+ }
1616
+ function FSharpSet__IsSupersetOf(x, otherSet) {
1617
+ return SetTreeModule_subset(FSharpSet__get_Comparer(x), FSharpSet__get_Tree(otherSet), FSharpSet__get_Tree(x));
1618
+ }
1619
+ function FSharpSet__IsProperSubsetOf(x, otherSet) {
1620
+ return SetTreeModule_properSubset(FSharpSet__get_Comparer(x), FSharpSet__get_Tree(x), FSharpSet__get_Tree(otherSet));
1621
+ }
1622
+ function FSharpSet__IsProperSupersetOf(x, otherSet) {
1623
+ return SetTreeModule_properSubset(FSharpSet__get_Comparer(x), FSharpSet__get_Tree(otherSet), FSharpSet__get_Tree(x));
1624
+ }
1625
+ function FSharpSet__ToList(x) {
1626
+ return SetTreeModule_toList(FSharpSet__get_Tree(x));
1627
+ }
1628
+ function FSharpSet__ToArray(x) {
1629
+ return SetTreeModule_toArray(FSharpSet__get_Tree(x));
1630
+ }
1631
+ function FSharpSet__ComputeHashCode(this$) {
1632
+ let res = 0;
1633
+ const enumerator = getEnumerator(this$);
1634
+ try {
1635
+ while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
1636
+ const x_1 = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
1637
+ res = ((((res << 1) + structuralHash(x_1)) + 631) | 0);
1638
+ }
1639
+ }
1640
+ finally {
1641
+ disposeSafe(enumerator);
1642
+ }
1643
+ return Math.abs(res) | 0;
1644
+ }
1645
+ function isEmpty(set$) {
1646
+ return FSharpSet__get_IsEmpty(set$);
1647
+ }
1648
+ function contains(element, set$) {
1649
+ return FSharpSet__Contains(set$, element);
1650
+ }
1651
+ function add(value, set$) {
1652
+ return FSharpSet__Add(set$, value);
1653
+ }
1654
+ function singleton(value, comparer) {
1655
+ return FSharpSet__Add(FSharpSet_Empty(comparer), value);
1656
+ }
1657
+ function remove(value, set$) {
1658
+ return FSharpSet__Remove(set$, value);
1659
+ }
1660
+ function union(set1, set2) {
1661
+ return FSharpSet_op_Addition(set1, set2);
1662
+ }
1663
+ function unionMany(sets, comparer) {
1664
+ return fold$3(FSharpSet_op_Addition, FSharpSet_Empty(comparer), sets);
1665
+ }
1666
+ function intersect(set1, set2) {
1667
+ return FSharpSet_Intersection(set1, set2);
1668
+ }
1669
+ function intersectMany(sets) {
1670
+ return FSharpSet_IntersectionMany(sets);
1671
+ }
1672
+ function iterate(action, set$) {
1673
+ FSharpSet__Iterate(set$, action);
1674
+ }
1675
+ function empty(comparer) {
1676
+ return FSharpSet_Empty(comparer);
1677
+ }
1678
+ function forAll(predicate, set$) {
1679
+ return FSharpSet__ForAll(set$, predicate);
1680
+ }
1681
+ function exists(predicate, set$) {
1682
+ return FSharpSet__Exists(set$, predicate);
1683
+ }
1684
+ function filter(predicate, set$) {
1685
+ return FSharpSet__Filter(set$, predicate);
1686
+ }
1687
+ function partition(predicate, set$) {
1688
+ return FSharpSet__Partition(set$, predicate);
1689
+ }
1690
+ function fold(folder, state, set$) {
1691
+ return SetTreeModule_fold(folder, state, FSharpSet__get_Tree(set$));
1692
+ }
1693
+ function foldBack(folder, set$, state) {
1694
+ return SetTreeModule_foldBack(folder, FSharpSet__get_Tree(set$), state);
1695
+ }
1696
+ function map(mapping, set$, comparer) {
1697
+ return FSharpSet__Map(set$, mapping, comparer);
1698
+ }
1699
+ function count(set$) {
1700
+ return FSharpSet__get_Count(set$);
1701
+ }
1702
+ function ofList(elements, comparer) {
1703
+ return FSharpSet_$ctor(comparer, SetTreeModule_ofSeq(comparer, elements));
1704
+ }
1705
+ function ofArray(array, comparer) {
1706
+ return FSharpSet_$ctor(comparer, SetTreeModule_ofArray(comparer, array));
1707
+ }
1708
+ function toList(set$) {
1709
+ return FSharpSet__ToList(set$);
1710
+ }
1711
+ function toArray(set$) {
1712
+ return FSharpSet__ToArray(set$);
1713
+ }
1714
+ function toSeq(set$) {
1715
+ return map$1((x) => x, set$);
1716
+ }
1717
+ function ofSeq(elements, comparer) {
1718
+ return FSharpSet_$ctor(comparer, SetTreeModule_ofSeq(comparer, elements));
1719
+ }
1720
+ function difference(set1, set2) {
1721
+ return FSharpSet_op_Subtraction(set1, set2);
1722
+ }
1723
+ function isSubset(set1, set2) {
1724
+ return SetTreeModule_subset(FSharpSet__get_Comparer(set1), FSharpSet__get_Tree(set1), FSharpSet__get_Tree(set2));
1725
+ }
1726
+ function isSuperset(set1, set2) {
1727
+ return SetTreeModule_subset(FSharpSet__get_Comparer(set1), FSharpSet__get_Tree(set2), FSharpSet__get_Tree(set1));
1728
+ }
1729
+ function isProperSubset(set1, set2) {
1730
+ return SetTreeModule_properSubset(FSharpSet__get_Comparer(set1), FSharpSet__get_Tree(set1), FSharpSet__get_Tree(set2));
1731
+ }
1732
+ function isProperSuperset(set1, set2) {
1733
+ return SetTreeModule_properSubset(FSharpSet__get_Comparer(set1), FSharpSet__get_Tree(set2), FSharpSet__get_Tree(set1));
1734
+ }
1735
+ function minElement(set$) {
1736
+ return FSharpSet__get_MinimumElement(set$);
1737
+ }
1738
+ function maxElement(set$) {
1739
+ return FSharpSet__get_MaximumElement(set$);
1740
+ }
1741
+ function unionWith(s1, s2) {
1742
+ return fold$3((acc, x) => acc.add(x), s1, s2);
1743
+ }
1744
+ function newMutableSetWith(s1, s2) {
1745
+ if (s1 instanceof HashSet) {
1746
+ const s1_1 = s1;
1747
+ return HashSet_$ctor_Z6150332D(s2, HashSet__get_Comparer(s1_1));
1748
+ }
1749
+ else {
1750
+ return new Set(s2);
1751
+ }
1752
+ }
1753
+ function intersectWith(s1, s2) {
1754
+ const s2_1 = newMutableSetWith(s1, s2);
1755
+ iterate$1((x) => {
1756
+ if (!s2_1.has(x)) {
1757
+ s1.delete(x);
1758
+ }
1759
+ }, s1.values());
1760
+ }
1761
+ function exceptWith(s1, s2) {
1762
+ iterate$1((x) => {
1763
+ s1.delete(x);
1764
+ }, s2);
1765
+ }
1766
+ function isSubsetOf(s1, s2) {
1767
+ const s2_1 = newMutableSetWith(s1, s2);
1768
+ return forAll$1((value) => s2_1.has(value), s1.values());
1769
+ }
1770
+ function isSupersetOf(s1, s2) {
1771
+ return forAll$1((value) => s1.has(value), s2);
1772
+ }
1773
+ function isProperSubsetOf(s1, s2) {
1774
+ const s2_1 = newMutableSetWith(s1, s2);
1775
+ if (s2_1.size > s1.size) {
1776
+ return forAll$1((value) => s2_1.has(value), s1.values());
1777
+ }
1778
+ else {
1779
+ return false;
1780
+ }
1781
+ }
1782
+ function isProperSupersetOf(s1, s2) {
1783
+ const s2_1 = cache(s2);
1784
+ if (exists$1((arg) => !s1.has(arg), s2_1)) {
1785
+ return forAll$1((value_2) => s1.has(value_2), s2_1);
1786
+ }
1787
+ else {
1788
+ return false;
1789
+ }
1790
+ }
1791
+
1792
+ export { FSharpSet, FSharpSet_$ctor, FSharpSet_$reflection, FSharpSet_Compare, FSharpSet_Empty, FSharpSet_Equality, FSharpSet_Intersection, FSharpSet_IntersectionMany, FSharpSet__Add, FSharpSet__ComputeHashCode, FSharpSet__Contains, FSharpSet__Exists, FSharpSet__Filter, FSharpSet__Fold, FSharpSet__ForAll, FSharpSet__IsProperSubsetOf, FSharpSet__IsProperSupersetOf, FSharpSet__IsSubsetOf, FSharpSet__IsSupersetOf, FSharpSet__Iterate, FSharpSet__Map, FSharpSet__Partition, FSharpSet__Remove, FSharpSet__ToArray, FSharpSet__ToList, FSharpSet__get_Choose, FSharpSet__get_Comparer, FSharpSet__get_Count, FSharpSet__get_IsEmpty, FSharpSet__get_MaximumElement, FSharpSet__get_MinimumElement, FSharpSet__get_Tree, FSharpSet_op_Addition, FSharpSet_op_Subtraction, SetTreeLeaf$1, SetTreeLeaf$1_$ctor_2B595, SetTreeLeaf$1_$reflection, SetTreeLeaf$1__get_Key, SetTreeModule_SetIterator$1, SetTreeModule_SetIterator$1_$reflection, SetTreeModule_add, SetTreeModule_alreadyFinished, SetTreeModule_balance, SetTreeModule_choose, SetTreeModule_collapseLHS, SetTreeModule_compare, SetTreeModule_compareStacks, SetTreeModule_copyToArray, SetTreeModule_count, SetTreeModule_countAux, SetTreeModule_current, SetTreeModule_diff, SetTreeModule_diffAux, SetTreeModule_empty, SetTreeModule_exists, SetTreeModule_filter, SetTreeModule_filterAux, SetTreeModule_fold, SetTreeModule_foldBack, SetTreeModule_foldBackOpt, SetTreeModule_foldOpt, SetTreeModule_forall, SetTreeModule_intersection, SetTreeModule_intersectionAux, SetTreeModule_iter, SetTreeModule_maximumElement, SetTreeModule_maximumElementAux, SetTreeModule_maximumElementOpt, SetTreeModule_mem, SetTreeModule_minimumElement, SetTreeModule_minimumElementAux, SetTreeModule_minimumElementOpt, SetTreeModule_mk, SetTreeModule_mkFromEnumerator, SetTreeModule_mkIEnumerator, SetTreeModule_mkIterator, SetTreeModule_moveNext, SetTreeModule_notStarted, SetTreeModule_ofArray, SetTreeModule_ofList, SetTreeModule_ofSeq, SetTreeModule_partition, SetTreeModule_partition1, SetTreeModule_partitionAux, SetTreeModule_properSubset, SetTreeModule_rebalance, SetTreeModule_remove, SetTreeModule_spliceOutSuccessor, SetTreeModule_split, SetTreeModule_subset, SetTreeModule_toArray, SetTreeModule_toList, SetTreeModule_union, SetTreeNode$1, SetTreeNode$1_$ctor_5F465FC9, SetTreeNode$1_$reflection, SetTreeNode$1__get_Height, SetTreeNode$1__get_Left, SetTreeNode$1__get_Right, add, contains, count, difference, empty, exceptWith, exists, filter, fold, foldBack, forAll, intersect, intersectMany, intersectWith, isEmpty, isProperSubset, isProperSubsetOf, isProperSuperset, isProperSupersetOf, isSubset, isSubsetOf, isSuperset, isSupersetOf, iterate, map, maxElement, minElement, newMutableSetWith, ofArray, ofList, ofSeq, partition, remove, singleton, toArray, toList, toSeq, union, unionMany, unionWith };