@nfdi4plants/arctrl 3.0.0-beta.2 → 3.0.0-beta.4
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.
- package/README.md +2 -0
- package/dist/ts/index.d.ts +61 -0
- package/dist/ts/index.d.ts.map +1 -0
- package/dist/ts/index.js +63 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +354 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +28 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/AsyncBuilder.js +186 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +8 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Boolean.js +24 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +73 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +31 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +574 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +59 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +65 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +30 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +5 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +5 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +48 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +120 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +680 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +40 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +655 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +105 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +320 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +204 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Native.js +10 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Numeric.js +73 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +65 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +23 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +111 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +114 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +36 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +846 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +65 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +1160 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +364 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +40 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +193 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Unicode.13.0.0.js +6 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Uri.js +160 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +367 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +825 -0
- package/dist/ts/ts/ARC.d.ts +80 -0
- package/dist/ts/ts/ARC.d.ts.map +1 -0
- package/dist/ts/ts/ARC.js +914 -0
- package/dist/ts/ts/Contract/ARC.d.ts +7 -0
- package/dist/ts/ts/Contract/ARC.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ARC.js +52 -0
- package/dist/ts/ts/Contract/ArcAssay.d.ts +12 -0
- package/dist/ts/ts/Contract/ArcAssay.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcAssay.js +80 -0
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts +10 -0
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcInvestigation.js +57 -0
- package/dist/ts/ts/Contract/ArcRun.d.ts +12 -0
- package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcRun.js +76 -0
- package/dist/ts/ts/Contract/ArcStudy.d.ts +13 -0
- package/dist/ts/ts/Contract/ArcStudy.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcStudy.js +76 -0
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts +12 -0
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcWorkflow.js +77 -0
- package/dist/ts/ts/Contract/Contract.d.ts +39 -0
- package/dist/ts/ts/Contract/Contract.d.ts.map +1 -0
- package/dist/ts/ts/Contract/Contract.js +45 -0
- package/dist/ts/ts/Contract/Datamap.d.ts +29 -0
- package/dist/ts/ts/Contract/Datamap.d.ts.map +1 -0
- package/dist/ts/ts/Contract/Datamap.js +221 -0
- package/dist/ts/ts/Contract/Git.d.ts +28 -0
- package/dist/ts/ts/Contract/Git.d.ts.map +1 -0
- package/dist/ts/ts/Contract/Git.js +57 -0
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts +12 -0
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ValidationPackagesConfig.js +57 -0
- package/dist/ts/ts/ContractIO/ContractIO.d.ts +11 -0
- package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -0
- package/dist/ts/ts/ContractIO/ContractIO.js +202 -0
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts +44 -0
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts.map +1 -0
- package/dist/ts/ts/ContractIO/FileSystemHelper.js +273 -0
- package/dist/ts/ts/Conversion.d.ts +292 -0
- package/dist/ts/ts/Conversion.d.ts.map +1 -0
- package/dist/ts/ts/Conversion.js +1247 -0
- package/dist/ts/ts/Core/ArcTypes.d.ts +620 -0
- package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -0
- package/dist/ts/ts/Core/ArcTypes.js +3393 -0
- package/dist/ts/ts/Core/Comment.d.ts +35 -0
- package/dist/ts/ts/Core/Comment.d.ts.map +1 -0
- package/dist/ts/ts/Core/Comment.js +91 -0
- package/dist/ts/ts/Core/CommentList.d.ts +28 -0
- package/dist/ts/ts/Core/CommentList.d.ts.map +1 -0
- package/dist/ts/ts/Core/CommentList.js +27 -0
- package/dist/ts/ts/Core/Conversion.d.ts +215 -0
- package/dist/ts/ts/Core/Conversion.d.ts.map +1 -0
- package/dist/ts/ts/Core/Conversion.js +923 -0
- package/dist/ts/ts/Core/Data.d.ts +49 -0
- package/dist/ts/ts/Core/Data.d.ts.map +1 -0
- package/dist/ts/ts/Core/Data.js +179 -0
- package/dist/ts/ts/Core/DataContext.d.ts +47 -0
- package/dist/ts/ts/Core/DataContext.d.ts.map +1 -0
- package/dist/ts/ts/Core/DataContext.js +108 -0
- package/dist/ts/ts/Core/DataFile.d.ts +27 -0
- package/dist/ts/ts/Core/DataFile.d.ts.map +1 -0
- package/dist/ts/ts/Core/DataFile.js +50 -0
- package/dist/ts/ts/Core/DataMap.d.ts +52 -0
- package/dist/ts/ts/Core/DataMap.d.ts.map +1 -0
- package/dist/ts/ts/Core/DataMap.js +53 -0
- package/dist/ts/ts/Core/Helper/Collections.d.ts +61 -0
- package/dist/ts/ts/Core/Helper/Collections.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/Collections.js +323 -0
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts +9 -0
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/HashCodes.js +35 -0
- package/dist/ts/ts/Core/Helper/Identifier.d.ts +119 -0
- package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/Identifier.js +96 -0
- package/dist/ts/ts/Core/Helper/ORCID.d.ts +7 -0
- package/dist/ts/ts/Core/Helper/ORCID.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/ORCID.js +34 -0
- package/dist/ts/ts/Core/Helper/Regex.d.ts +194 -0
- package/dist/ts/ts/Core/Helper/Regex.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/Regex.js +296 -0
- package/dist/ts/ts/Core/Helper/SemVer.d.ts +20 -0
- package/dist/ts/ts/Core/Helper/SemVer.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/SemVer.js +31 -0
- package/dist/ts/ts/Core/Helper/Url.d.ts +10 -0
- package/dist/ts/ts/Core/Helper/Url.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/Url.js +32 -0
- package/dist/ts/ts/Core/IdentifierSetters.d.ts +7 -0
- package/dist/ts/ts/Core/IdentifierSetters.d.ts.map +1 -0
- package/dist/ts/ts/Core/IdentifierSetters.js +9 -0
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts +57 -0
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/ts/Core/OntologyAnnotation.js +207 -0
- package/dist/ts/ts/Core/OntologySourceReference.d.ts +31 -0
- package/dist/ts/ts/Core/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/ts/Core/OntologySourceReference.js +84 -0
- package/dist/ts/ts/Core/Person.d.ts +56 -0
- package/dist/ts/ts/Core/Person.d.ts.map +1 -0
- package/dist/ts/ts/Core/Person.js +183 -0
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts +79 -0
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ColumnIndex.js +73 -0
- package/dist/ts/ts/Core/Process/Component.d.ts +65 -0
- package/dist/ts/ts/Core/Process/Component.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Component.js +121 -0
- package/dist/ts/ts/Core/Process/Factor.d.ts +44 -0
- package/dist/ts/ts/Core/Process/Factor.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Factor.js +104 -0
- package/dist/ts/ts/Core/Process/FactorValue.d.ts +44 -0
- package/dist/ts/ts/Core/Process/FactorValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/FactorValue.js +68 -0
- package/dist/ts/ts/Core/Process/Material.d.ts +27 -0
- package/dist/ts/ts/Core/Process/Material.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Material.js +49 -0
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts +53 -0
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/MaterialAttribute.js +30 -0
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts +55 -0
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +68 -0
- package/dist/ts/ts/Core/Process/MaterialType.d.ts +22 -0
- package/dist/ts/ts/Core/Process/MaterialType.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/MaterialType.js +28 -0
- package/dist/ts/ts/Core/Process/Process.d.ts +113 -0
- package/dist/ts/ts/Core/Process/Process.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Process.js +136 -0
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts +117 -0
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProcessInput.js +207 -0
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts +106 -0
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProcessOutput.js +178 -0
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts +40 -0
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProcessParameterValue.js +135 -0
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts +89 -0
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProcessSequence.js +56 -0
- package/dist/ts/ts/Core/Process/Protocol.d.ts +141 -0
- package/dist/ts/ts/Core/Process/Protocol.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Protocol.js +54 -0
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts +32 -0
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProtocolParameter.js +69 -0
- package/dist/ts/ts/Core/Process/Sample.d.ts +31 -0
- package/dist/ts/ts/Core/Process/Sample.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Sample.js +44 -0
- package/dist/ts/ts/Core/Process/Source.d.ts +24 -0
- package/dist/ts/ts/Core/Process/Source.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Source.js +38 -0
- package/dist/ts/ts/Core/Publication.d.ts +36 -0
- package/dist/ts/ts/Core/Publication.d.ts.map +1 -0
- package/dist/ts/ts/Core/Publication.js +108 -0
- package/dist/ts/ts/Core/Table/ArcTable.d.ts +137 -0
- package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/ArcTable.js +889 -0
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts +154 -0
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/ArcTableAux.js +993 -0
- package/dist/ts/ts/Core/Table/ArcTables.d.ts +91 -0
- package/dist/ts/ts/Core/Table/ArcTables.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/ArcTables.js +415 -0
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts +58 -0
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/CompositeCell.js +334 -0
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts +19 -0
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/CompositeColumn.js +52 -0
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts +130 -0
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/CompositeHeader.js +792 -0
- package/dist/ts/ts/Core/Template.d.ts +69 -0
- package/dist/ts/ts/Core/Template.d.ts.map +1 -0
- package/dist/ts/ts/Core/Template.js +180 -0
- package/dist/ts/ts/Core/Templates.d.ts +18 -0
- package/dist/ts/ts/Core/Templates.d.ts.map +1 -0
- package/dist/ts/ts/Core/Templates.js +75 -0
- package/dist/ts/ts/Core/URI.d.ts.map +1 -0
- package/dist/ts/ts/Core/URI.js +8 -0
- package/dist/ts/ts/Core/Value.d.ts +41 -0
- package/dist/ts/ts/Core/Value.d.ts.map +1 -0
- package/dist/ts/ts/Core/Value.js +194 -0
- package/dist/ts/ts/CrossAsync.d.ts +9 -0
- package/dist/ts/ts/CrossAsync.d.ts.map +1 -0
- package/dist/ts/ts/CrossAsync.js +20 -0
- package/dist/ts/ts/FileSystem/Commit.d.ts +13 -0
- package/dist/ts/ts/FileSystem/Commit.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/DefaultGitattributes.js +3 -0
- package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/DefaultGitignore.js +3 -0
- package/dist/ts/ts/FileSystem/FileSystem.d.ts +21 -0
- package/dist/ts/ts/FileSystem/FileSystem.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/FileSystem.js +48 -0
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +55 -0
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/FileSystemTree.js +339 -0
- package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/Path.js +36 -0
- package/dist/ts/ts/Json/Assay.d.ts +19 -0
- package/dist/ts/ts/Json/Assay.d.ts.map +1 -0
- package/dist/ts/ts/Json/Assay.js +221 -0
- package/dist/ts/ts/Json/Comment.d.ts +14 -0
- package/dist/ts/ts/Json/Comment.d.ts.map +1 -0
- package/dist/ts/ts/Json/Comment.js +112 -0
- package/dist/ts/ts/Json/Data.d.ts +17 -0
- package/dist/ts/ts/Json/Data.d.ts.map +1 -0
- package/dist/ts/ts/Json/Data.js +138 -0
- package/dist/ts/ts/Json/DataFile.d.ts +7 -0
- package/dist/ts/ts/Json/DataFile.d.ts.map +1 -0
- package/dist/ts/ts/Json/DataFile.js +55 -0
- package/dist/ts/ts/Json/DataMap/DataContext.d.ts +5 -0
- package/dist/ts/ts/Json/DataMap/DataContext.d.ts.map +1 -0
- package/dist/ts/ts/Json/DataMap/DataContext.js +39 -0
- package/dist/ts/ts/Json/DataMap/DataMap.d.ts +11 -0
- package/dist/ts/ts/Json/DataMap/DataMap.d.ts.map +1 -0
- package/dist/ts/ts/Json/DataMap/DataMap.js +27 -0
- package/dist/ts/ts/Json/Decode.d.ts +18 -0
- package/dist/ts/ts/Json/Decode.d.ts.map +1 -0
- package/dist/ts/ts/Json/Decode.js +209 -0
- package/dist/ts/ts/Json/Encode.d.ts +23 -0
- package/dist/ts/ts/Json/Encode.d.ts.map +1 -0
- package/dist/ts/ts/Json/Encode.js +65 -0
- package/dist/ts/ts/Json/IDTable.d.ts +5 -0
- package/dist/ts/ts/Json/IDTable.d.ts.map +1 -0
- package/dist/ts/ts/Json/IDTable.js +28 -0
- package/dist/ts/ts/Json/Investigation.d.ts +20 -0
- package/dist/ts/ts/Json/Investigation.d.ts.map +1 -0
- package/dist/ts/ts/Json/Investigation.js +229 -0
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts +18 -0
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/ts/Json/OntologyAnnotation.js +194 -0
- package/dist/ts/ts/Json/OntologySourceReference.d.ts +12 -0
- package/dist/ts/ts/Json/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/ts/Json/OntologySourceReference.js +119 -0
- package/dist/ts/ts/Json/Person.d.ts +22 -0
- package/dist/ts/ts/Json/Person.d.ts.map +1 -0
- package/dist/ts/ts/Json/Person.js +316 -0
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts +7 -0
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/AssayMaterials.js +21 -0
- package/dist/ts/ts/Json/Process/Component.d.ts +11 -0
- package/dist/ts/ts/Json/Process/Component.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Component.js +41 -0
- package/dist/ts/ts/Json/Process/Factor.d.ts +8 -0
- package/dist/ts/ts/Json/Process/Factor.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Factor.js +53 -0
- package/dist/ts/ts/Json/Process/FactorValue.d.ts +11 -0
- package/dist/ts/ts/Json/Process/FactorValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/FactorValue.js +44 -0
- package/dist/ts/ts/Json/Process/Material.d.ts +12 -0
- package/dist/ts/ts/Json/Process/Material.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Material.js +112 -0
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts +8 -0
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/MaterialAttribute.js +43 -0
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts +11 -0
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +44 -0
- package/dist/ts/ts/Json/Process/MaterialType.d.ts +7 -0
- package/dist/ts/ts/Json/Process/MaterialType.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/MaterialType.js +45 -0
- package/dist/ts/ts/Json/Process/Process.d.ts +10 -0
- package/dist/ts/ts/Json/Process/Process.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Process.js +103 -0
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts +9 -0
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/ProcessInput.js +42 -0
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts +9 -0
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/ProcessOutput.js +35 -0
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts +11 -0
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/ProcessParameterValue.js +28 -0
- package/dist/ts/ts/Json/Process/Protocol.d.ts +10 -0
- package/dist/ts/ts/Json/Process/Protocol.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Protocol.js +166 -0
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts +8 -0
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/ProtocolParameter.js +43 -0
- package/dist/ts/ts/Json/Process/Sample.d.ts +15 -0
- package/dist/ts/ts/Json/Process/Sample.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Sample.js +165 -0
- package/dist/ts/ts/Json/Process/Source.d.ts +12 -0
- package/dist/ts/ts/Json/Process/Source.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Source.js +133 -0
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts +7 -0
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/StudyMaterials.js +23 -0
- package/dist/ts/ts/Json/Process/Value.d.ts +7 -0
- package/dist/ts/ts/Json/Process/Value.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Value.js +41 -0
- package/dist/ts/ts/Json/PropertyValue.d.ts +9 -0
- package/dist/ts/ts/Json/PropertyValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/PropertyValue.js +280 -0
- package/dist/ts/ts/Json/Publication.d.ts +14 -0
- package/dist/ts/ts/Json/Publication.d.ts.map +1 -0
- package/dist/ts/ts/Json/Publication.js +123 -0
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts +5 -0
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDContext.js +115 -0
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts +5 -0
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDGraph.js +83 -0
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +13 -0
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDNode.js +190 -0
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts +5 -0
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDRef.js +24 -0
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts +7 -0
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDValue.js +63 -0
- package/dist/ts/ts/Json/StringTable.d.ts +9 -0
- package/dist/ts/ts/Json/StringTable.d.ts.map +1 -0
- package/dist/ts/ts/Json/StringTable.js +66 -0
- package/dist/ts/ts/Json/Study.d.ts +26 -0
- package/dist/ts/ts/Json/Study.d.ts.map +1 -0
- package/dist/ts/ts/Json/Study.js +326 -0
- package/dist/ts/ts/Json/Table/ArcTable.d.ts +15 -0
- package/dist/ts/ts/Json/Table/ArcTable.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/ArcTable.js +210 -0
- package/dist/ts/ts/Json/Table/CellTable.d.ts +11 -0
- package/dist/ts/ts/Json/Table/CellTable.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/CellTable.js +53 -0
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts +10 -0
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/CompositeCell.js +106 -0
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts +5 -0
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/CompositeHeader.js +121 -0
- package/dist/ts/ts/Json/Table/IOType.d.ts +5 -0
- package/dist/ts/ts/Json/Table/IOType.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/IOType.js +15 -0
- package/dist/ts/ts/Json/Table/OATable.d.ts +10 -0
- package/dist/ts/ts/Json/Table/OATable.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/OATable.js +50 -0
- package/dist/ts/ts/Json/Table/Templates.d.ts +15 -0
- package/dist/ts/ts/Json/Table/Templates.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/Templates.js +15 -0
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts +26 -0
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +61 -0
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts +16 -0
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +29 -0
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts +18 -0
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +41 -0
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts +26 -0
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +69 -0
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts +19 -0
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +37 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +17 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +37 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +19 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +41 -0
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts +15 -0
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +25 -0
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts +25 -0
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +86 -0
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts +23 -0
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +57 -0
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts +22 -0
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +61 -0
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts +19 -0
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +45 -0
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts +18 -0
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +33 -0
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts +18 -0
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +33 -0
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts +34 -0
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +77 -0
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts +3 -0
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/property_value_context.js +61 -0
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts +16 -0
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -0
- package/dist/ts/ts/Json.d.ts +90 -0
- package/dist/ts/ts/Json.d.ts.map +1 -0
- package/dist/ts/ts/Json.js +171 -0
- package/dist/ts/ts/JsonIO/Assay.d.ts +19 -0
- package/dist/ts/ts/JsonIO/Assay.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Assay.js +77 -0
- package/dist/ts/ts/JsonIO/Investigation.d.ts +19 -0
- package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Investigation.js +77 -0
- package/dist/ts/ts/JsonIO/LDObject.d.ts +29 -0
- package/dist/ts/ts/JsonIO/LDObject.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/LDObject.js +77 -0
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts +16 -0
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/OntologyAnnotation.js +56 -0
- package/dist/ts/ts/JsonIO/Study.d.ts +20 -0
- package/dist/ts/ts/JsonIO/Study.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Study.js +77 -0
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts +8 -0
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Table/Compression.js +39 -0
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts +15 -0
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Table/Templates.js +25 -0
- package/dist/ts/ts/ROCrate/Generic/Comment.d.ts +21 -0
- package/dist/ts/ts/ROCrate/Generic/Comment.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Comment.js +103 -0
- package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts +92 -0
- package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Dataset.js +624 -0
- package/dist/ts/ts/ROCrate/Generic/DefinedTerm.d.ts +21 -0
- package/dist/ts/ts/ROCrate/Generic/DefinedTerm.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/DefinedTerm.js +103 -0
- package/dist/ts/ts/ROCrate/Generic/File.d.ts +35 -0
- package/dist/ts/ts/ROCrate/Generic/File.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/File.js +184 -0
- package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts +43 -0
- package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/LabProcess.js +222 -0
- package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts +44 -0
- package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/LabProtocol.js +257 -0
- package/dist/ts/ts/ROCrate/Generic/Organization.d.ts +17 -0
- package/dist/ts/ts/ROCrate/Generic/Organization.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Organization.js +63 -0
- package/dist/ts/ts/ROCrate/Generic/Person.d.ts +51 -0
- package/dist/ts/ts/ROCrate/Generic/Person.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Person.js +377 -0
- package/dist/ts/ts/ROCrate/Generic/PostalAddress.d.ts +25 -0
- package/dist/ts/ts/ROCrate/Generic/PostalAddress.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/PostalAddress.js +143 -0
- package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts +73 -0
- package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/PropertyValue.js +512 -0
- package/dist/ts/ts/ROCrate/Generic/Sample.d.ts +30 -0
- package/dist/ts/ts/ROCrate/Generic/Sample.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Sample.js +131 -0
- package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.d.ts +34 -0
- package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.js +173 -0
- package/dist/ts/ts/ROCrate/Helper.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Helper.js +7 -0
- package/dist/ts/ts/ROCrate/LDContext.d.ts +43 -0
- package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDContext.js +288 -0
- package/dist/ts/ts/ROCrate/LDObject.d.ts +97 -0
- package/dist/ts/ts/ROCrate/LDObject.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDObject.js +855 -0
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +7 -0
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/ROCrateContext.js +39 -0
- package/dist/ts/ts/ROCrateIO.d.ts +16 -0
- package/dist/ts/ts/ROCrateIO.d.ts.map +1 -0
- package/dist/ts/ts/ROCrateIO.js +58 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +40 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +149 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +63 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +24 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +108 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +22 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +410 -0
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts +31 -0
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcAssay.js +169 -0
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts +42 -0
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +316 -0
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts +27 -0
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcRun.js +136 -0
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts +26 -0
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcStudy.js +92 -0
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts +27 -0
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +125 -0
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts +23 -0
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/CollectionAux.js +34 -0
- package/dist/ts/ts/Spreadsheet/DataMap.d.ts +8 -0
- package/dist/ts/ts/Spreadsheet/DataMap.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/DataMap.js +33 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts +7 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.js +41 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts +23 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.js +418 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts +23 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.js +85 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts +14 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +90 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts +14 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +58 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts +25 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +85 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts +60 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +133 -0
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +16 -0
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +15 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts +18 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +74 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +12 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +58 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +18 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +62 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts +28 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +94 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts +21 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +81 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts +14 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Run.js +91 -0
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts +37 -0
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +193 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts +38 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Study.js +238 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts +31 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +105 -0
- package/dist/ts/ts/Template.Web.d.ts +11 -0
- package/dist/ts/ts/Template.Web.d.ts.map +1 -0
- package/dist/ts/ts/Template.Web.js +22 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts +21 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackage.js +53 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts +23 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +78 -0
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts +4 -0
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts.map +1 -0
- package/dist/ts/ts/WebRequest/WebRequest.Node.js +13 -0
- package/dist/ts/ts/WebRequest/WebRequest.d.ts +3 -0
- package/dist/ts/ts/WebRequest/WebRequest.d.ts.map +1 -0
- package/dist/ts/ts/WebRequest/WebRequest.js +19 -0
- package/dist/ts/ts/Xlsx.d.ts +50 -0
- package/dist/ts/ts/Xlsx.d.ts.map +1 -0
- package/dist/ts/ts/Xlsx.js +91 -0
- package/dist/ts/ts/Yaml/Encode.d.ts +5 -0
- package/dist/ts/ts/Yaml/Encode.d.ts.map +1 -0
- package/dist/ts/ts/Yaml/Encode.js +8 -0
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts +10 -0
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -0
- package/dist/ts/ts/Yaml/ValidationPackage.js +26 -0
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +10 -0
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +40 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +344 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +103 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +19 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +17 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +7 -0
- package/dist/ts/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +5 -0
- package/dist/ts/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +18 -0
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +44 -0
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +5 -0
- package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +142 -0
- package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +76 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCell.fs.js +359 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCellsCollection.fs.js +344 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js +154 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsColumn.fs.js +116 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsRow.fs.js +126 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorkbook.fs.js +135 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorksheet.fs.js +422 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/HashCodes.fs.js +5 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Value.fs.js +25 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRange.fs.js +28 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeAddress.fs.js +82 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeBase.fs.js +69 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeColumn.fs.js +42 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeRow.fs.js +29 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTable.fs.js +348 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTableField.fs.js +86 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +68 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/FsExtensions.fs.js +12 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Table.fs.js +54 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Workbook.fs.js +33 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Worksheet.fs.js +63 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Xlsx.fs.js +66 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Decode.fs.js +544 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Encode.fs.js +31 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Types.fs.js +38 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js +79 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Encode.fs.js +57 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +235 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +16 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +45 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +89 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +480 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +11 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +212 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +164 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +136 -0
- package/package.json +16 -10
- package/dist/ts/cjs/index.js +0 -85
- package/dist/ts/cjs/ts/ARC.js +0 -976
- package/dist/ts/cjs/ts/Contract/ARC.js +0 -61
- package/dist/ts/cjs/ts/Contract/ArcAssay.js +0 -103
- package/dist/ts/cjs/ts/Contract/ArcInvestigation.js +0 -77
- package/dist/ts/cjs/ts/Contract/ArcRun.js +0 -103
- package/dist/ts/cjs/ts/Contract/ArcStudy.js +0 -103
- package/dist/ts/cjs/ts/Contract/ArcWorkflow.js +0 -104
- package/dist/ts/cjs/ts/Contract/Contract.js +0 -100
- package/dist/ts/cjs/ts/Contract/Datamap.js +0 -314
- package/dist/ts/cjs/ts/Contract/Git.js +0 -94
- package/dist/ts/cjs/ts/Contract/ValidationPackagesConfig.js +0 -97
- package/dist/ts/cjs/ts/ContractIO/ContractIO.js +0 -217
- package/dist/ts/cjs/ts/ContractIO/FileSystemHelper.js +0 -205
- package/dist/ts/cjs/ts/Conversion.js +0 -1774
- package/dist/ts/cjs/ts/Core/ArcTypes.js +0 -3803
- package/dist/ts/cjs/ts/Core/Comment.js +0 -106
- package/dist/ts/cjs/ts/Core/CommentList.js +0 -134
- package/dist/ts/cjs/ts/Core/Conversion.js +0 -1198
- package/dist/ts/cjs/ts/Core/Data.js +0 -196
- package/dist/ts/cjs/ts/Core/DataContext.js +0 -141
- package/dist/ts/cjs/ts/Core/DataFile.js +0 -98
- package/dist/ts/cjs/ts/Core/DataMap.js +0 -185
- package/dist/ts/cjs/ts/Core/Helper/Collections.js +0 -502
- package/dist/ts/cjs/ts/Core/Helper/HashCodes.js +0 -40
- package/dist/ts/cjs/ts/Core/Helper/Identifier.js +0 -329
- package/dist/ts/cjs/ts/Core/Helper/ORCID.js +0 -40
- package/dist/ts/cjs/ts/Core/Helper/Printer.js +0 -2
- package/dist/ts/cjs/ts/Core/Helper/Regex.js +0 -616
- package/dist/ts/cjs/ts/Core/Helper/SemVer.js +0 -59
- package/dist/ts/cjs/ts/Core/Helper/Url.js +0 -40
- package/dist/ts/cjs/ts/Core/IPropertyValue.js +0 -2
- package/dist/ts/cjs/ts/Core/IdentifierSetters.js +0 -27
- package/dist/ts/cjs/ts/Core/OntologyAnnotation.js +0 -219
- package/dist/ts/cjs/ts/Core/OntologySourceReference.js +0 -94
- package/dist/ts/cjs/ts/Core/Person.js +0 -196
- package/dist/ts/cjs/ts/Core/Process/ColumnIndex.js +0 -258
- package/dist/ts/cjs/ts/Core/Process/Component.js +0 -200
- package/dist/ts/cjs/ts/Core/Process/Factor.js +0 -111
- package/dist/ts/cjs/ts/Core/Process/FactorValue.js +0 -143
- package/dist/ts/cjs/ts/Core/Process/Material.js +0 -68
- package/dist/ts/cjs/ts/Core/Process/MaterialAttribute.js +0 -103
- package/dist/ts/cjs/ts/Core/Process/MaterialAttributeValue.js +0 -160
- package/dist/ts/cjs/ts/Core/Process/MaterialType.js +0 -51
- package/dist/ts/cjs/ts/Core/Process/Process.js +0 -371
- package/dist/ts/cjs/ts/Core/Process/ProcessInput.js +0 -321
- package/dist/ts/cjs/ts/Core/Process/ProcessOutput.js +0 -282
- package/dist/ts/cjs/ts/Core/Process/ProcessParameterValue.js +0 -141
- package/dist/ts/cjs/ts/Core/Process/ProcessSequence.js +0 -250
- package/dist/ts/cjs/ts/Core/Process/Protocol.js +0 -248
- package/dist/ts/cjs/ts/Core/Process/ProtocolParameter.js +0 -75
- package/dist/ts/cjs/ts/Core/Process/Sample.js +0 -73
- package/dist/ts/cjs/ts/Core/Process/Source.js +0 -56
- package/dist/ts/cjs/ts/Core/Publication.js +0 -118
- package/dist/ts/cjs/ts/Core/Table/ArcTable.js +0 -923
- package/dist/ts/cjs/ts/Core/Table/ArcTableAux.js +0 -1262
- package/dist/ts/cjs/ts/Core/Table/ArcTables.js +0 -476
- package/dist/ts/cjs/ts/Core/Table/CompositeCell.js +0 -317
- package/dist/ts/cjs/ts/Core/Table/CompositeColumn.js +0 -60
- package/dist/ts/cjs/ts/Core/Table/CompositeHeader.js +0 -718
- package/dist/ts/cjs/ts/Core/Template.js +0 -196
- package/dist/ts/cjs/ts/Core/Templates.js +0 -86
- package/dist/ts/cjs/ts/Core/URI.js +0 -20
- package/dist/ts/cjs/ts/Core/Value.js +0 -191
- package/dist/ts/cjs/ts/CrossAsync.js +0 -35
- package/dist/ts/cjs/ts/FileSystem/Commit.js +0 -20
- package/dist/ts/cjs/ts/FileSystem/DefaultGitattributes.js +0 -4
- package/dist/ts/cjs/ts/FileSystem/DefaultGitignore.js +0 -4
- package/dist/ts/cjs/ts/FileSystem/FileSystem.js +0 -55
- package/dist/ts/cjs/ts/FileSystem/FileSystemTree.js +0 -322
- package/dist/ts/cjs/ts/FileSystem/Path.js +0 -63
- package/dist/ts/cjs/ts/Json/Assay.js +0 -234
- package/dist/ts/cjs/ts/Json/Comment.js +0 -119
- package/dist/ts/cjs/ts/Json/Data.js +0 -147
- package/dist/ts/cjs/ts/Json/DataFile.js +0 -54
- package/dist/ts/cjs/ts/Json/DataMap/DataContext.js +0 -40
- package/dist/ts/cjs/ts/Json/DataMap/DataMap.js +0 -30
- package/dist/ts/cjs/ts/Json/Decode.js +0 -231
- package/dist/ts/cjs/ts/Json/Encode.js +0 -117
- package/dist/ts/cjs/ts/Json/IDTable.js +0 -30
- package/dist/ts/cjs/ts/Json/Investigation.js +0 -254
- package/dist/ts/cjs/ts/Json/OntologyAnnotation.js +0 -207
- package/dist/ts/cjs/ts/Json/OntologySourceReference.js +0 -125
- package/dist/ts/cjs/ts/Json/Person.js +0 -338
- package/dist/ts/cjs/ts/Json/Process/AssayMaterials.js +0 -21
- package/dist/ts/cjs/ts/Json/Process/Component.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/Factor.js +0 -58
- package/dist/ts/cjs/ts/Json/Process/FactorValue.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/Material.js +0 -120
- package/dist/ts/cjs/ts/Json/Process/MaterialAttribute.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/MaterialAttributeValue.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/MaterialType.js +0 -46
- package/dist/ts/cjs/ts/Json/Process/Process.js +0 -109
- package/dist/ts/cjs/ts/Json/Process/ProcessInput.js +0 -38
- package/dist/ts/cjs/ts/Json/Process/ProcessOutput.js +0 -33
- package/dist/ts/cjs/ts/Json/Process/ProcessParameterValue.js +0 -33
- package/dist/ts/cjs/ts/Json/Process/Protocol.js +0 -180
- package/dist/ts/cjs/ts/Json/Process/ProtocolParameter.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/Sample.js +0 -176
- package/dist/ts/cjs/ts/Json/Process/Source.js +0 -145
- package/dist/ts/cjs/ts/Json/Process/StudyMaterials.js +0 -23
- package/dist/ts/cjs/ts/Json/Process/Value.js +0 -39
- package/dist/ts/cjs/ts/Json/PropertyValue.js +0 -300
- package/dist/ts/cjs/ts/Json/Publication.js +0 -130
- package/dist/ts/cjs/ts/Json/ROCrate/LDContext.js +0 -123
- package/dist/ts/cjs/ts/Json/ROCrate/LDGraph.js +0 -88
- package/dist/ts/cjs/ts/Json/ROCrate/LDNode.js +0 -213
- package/dist/ts/cjs/ts/Json/ROCrate/LDRef.js +0 -25
- package/dist/ts/cjs/ts/Json/ROCrate/LDValue.js +0 -70
- package/dist/ts/cjs/ts/Json/StringTable.js +0 -70
- package/dist/ts/cjs/ts/Json/Study.js +0 -347
- package/dist/ts/cjs/ts/Json/Table/ArcTable.js +0 -217
- package/dist/ts/cjs/ts/Json/Table/CellTable.js +0 -58
- package/dist/ts/cjs/ts/Json/Table/CompositeCell.js +0 -103
- package/dist/ts/cjs/ts/Json/Table/CompositeHeader.js +0 -108
- package/dist/ts/cjs/ts/Json/Table/IOType.js +0 -16
- package/dist/ts/cjs/ts/Json/Table/OATable.js +0 -55
- package/dist/ts/cjs/ts/Json/Table/Templates.js +0 -106
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_assay_context.js +0 -89
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_comment_context.js +0 -47
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_data_context.js +0 -61
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_investigation_context.js +0 -97
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_material_context.js +0 -58
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_annotation_context.js +0 -56
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +0 -62
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_organization_context.js +0 -42
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_person_context.js +0 -112
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_process_context.js +0 -82
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_protocol_context.js +0 -85
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_publication_context.js +0 -66
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_sample_context.js +0 -53
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_source_context.js +0 -53
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_study_context.js +0 -113
- package/dist/ts/cjs/ts/Json/context/rocrate/property_value_context.js +0 -61
- package/dist/ts/cjs/ts/Json/context/rocrate/rocrate_context.js +0 -63
- package/dist/ts/cjs/ts/Json.js +0 -240
- package/dist/ts/cjs/ts/JsonIO/Assay.js +0 -104
- package/dist/ts/cjs/ts/JsonIO/Investigation.js +0 -104
- package/dist/ts/cjs/ts/JsonIO/LDObject.js +0 -107
- package/dist/ts/cjs/ts/JsonIO/OntologyAnnotation.js +0 -77
- package/dist/ts/cjs/ts/JsonIO/Study.js +0 -104
- package/dist/ts/cjs/ts/JsonIO/Table/Compression.js +0 -40
- package/dist/ts/cjs/ts/JsonIO/Table/Templates.js +0 -92
- package/dist/ts/cjs/ts/ROCrate/Generic/Comment.js +0 -117
- package/dist/ts/cjs/ts/ROCrate/Generic/Dataset.js +0 -671
- package/dist/ts/cjs/ts/ROCrate/Generic/DefinedTerm.js +0 -117
- package/dist/ts/cjs/ts/ROCrate/Generic/File.js +0 -202
- package/dist/ts/cjs/ts/ROCrate/Generic/LabProcess.js +0 -240
- package/dist/ts/cjs/ts/ROCrate/Generic/LabProtocol.js +0 -277
- package/dist/ts/cjs/ts/ROCrate/Generic/Organization.js +0 -73
- package/dist/ts/cjs/ts/ROCrate/Generic/Person.js +0 -413
- package/dist/ts/cjs/ts/ROCrate/Generic/PostalAddress.js +0 -161
- package/dist/ts/cjs/ts/ROCrate/Generic/PropertyValue.js +0 -550
- package/dist/ts/cjs/ts/ROCrate/Generic/Sample.js +0 -141
- package/dist/ts/cjs/ts/ROCrate/Generic/ScholarlyArticle.js +0 -189
- package/dist/ts/cjs/ts/ROCrate/Helper.js +0 -7
- package/dist/ts/cjs/ts/ROCrate/LDContext.js +0 -322
- package/dist/ts/cjs/ts/ROCrate/LDObject.js +0 -984
- package/dist/ts/cjs/ts/ROCrate/ROCrateContext.js +0 -44
- package/dist/ts/cjs/ts/ROCrateIO.js +0 -75
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/ArcTable.js +0 -176
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeCell.js +0 -68
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -150
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +0 -476
- package/dist/ts/cjs/ts/Spreadsheet/ArcAssay.js +0 -218
- package/dist/ts/cjs/ts/Spreadsheet/ArcInvestigation.js +0 -356
- package/dist/ts/cjs/ts/Spreadsheet/ArcRun.js +0 -177
- package/dist/ts/cjs/ts/Spreadsheet/ArcStudy.js +0 -130
- package/dist/ts/cjs/ts/Spreadsheet/ArcWorkflow.js +0 -166
- package/dist/ts/cjs/ts/Spreadsheet/CollectionAux.js +0 -128
- package/dist/ts/cjs/ts/Spreadsheet/DataMap.js +0 -41
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapColumn.js +0 -43
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapHeader.js +0 -480
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapTable.js +0 -105
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Assays.js +0 -98
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Comment.js +0 -68
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Contacts.js +0 -92
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Conversions.js +0 -187
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/DesignDescriptors.js +0 -25
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Factors.js +0 -83
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologyAnnotation.js +0 -65
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologySourceReference.js +0 -68
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Protocols.js +0 -103
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Publication.js +0 -88
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Run.js +0 -99
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/SparseTable.js +0 -457
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Study.js +0 -259
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Workflow.js +0 -111
- package/dist/ts/cjs/ts/Template.Web.js +0 -29
- package/dist/ts/cjs/ts/ValidationPackages/ValidationPackage.js +0 -63
- package/dist/ts/cjs/ts/ValidationPackages/ValidationPackagesConfig.js +0 -90
- package/dist/ts/cjs/ts/WebRequest/WebRequest.Node.js +0 -17
- package/dist/ts/cjs/ts/WebRequest/WebRequest.js +0 -20
- package/dist/ts/cjs/ts/Xlsx.js +0 -133
- package/dist/ts/cjs/ts/Yaml/Encode.js +0 -9
- package/dist/ts/cjs/ts/Yaml/ValidationPackage.js +0 -49
- package/dist/ts/cjs/ts/Yaml/ValidationPackagesConfig.js +0 -50
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +0 -444
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +0 -142
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +0 -53
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +0 -23
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +0 -87
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +0 -5
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +0 -123
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +0 -360
- package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +0 -220
- package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +0 -20
- package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +0 -431
- package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +0 -186
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +0 -477
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +0 -521
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +0 -211
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +0 -58
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +0 -139
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +0 -365
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +0 -259
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +0 -127
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +0 -137
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +0 -140
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +0 -435
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +0 -69
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +0 -40
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +0 -40
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +0 -31
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +0 -78
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +0 -46
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +0 -134
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +0 -43
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +0 -238
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +0 -93
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +0 -76
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +0 -42
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +0 -332
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +0 -175
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +0 -80
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +0 -65
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +0 -53
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +0 -55
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +0 -34
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +0 -68
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +0 -72
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +0 -1316
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +0 -200
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +0 -103
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +0 -97
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +0 -59
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +0 -1723
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +0 -75
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -13
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -50
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +0 -104
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -527
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -12
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -235
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -166
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -174
- package/dist/ts/esm/index.js +0 -60
- package/dist/ts/esm/ts/ARC.js +0 -959
- package/dist/ts/esm/ts/Contract/ARC.js +0 -58
- package/dist/ts/esm/ts/Contract/ArcAssay.js +0 -93
- package/dist/ts/esm/ts/Contract/ArcInvestigation.js +0 -69
- package/dist/ts/esm/ts/Contract/ArcRun.js +0 -93
- package/dist/ts/esm/ts/Contract/ArcStudy.js +0 -93
- package/dist/ts/esm/ts/Contract/ArcWorkflow.js +0 -94
- package/dist/ts/esm/ts/Contract/Contract.js +0 -87
- package/dist/ts/esm/ts/Contract/Datamap.js +0 -287
- package/dist/ts/esm/ts/Contract/Git.js +0 -72
- package/dist/ts/esm/ts/Contract/ValidationPackagesConfig.js +0 -88
- package/dist/ts/esm/ts/ContractIO/ContractIO.js +0 -207
- package/dist/ts/esm/ts/ContractIO/FileSystemHelper.js +0 -176
- package/dist/ts/esm/ts/Conversion.js +0 -1654
- package/dist/ts/esm/ts/Core/ArcTypes.js +0 -3728
- package/dist/ts/esm/ts/Core/Comment.js +0 -98
- package/dist/ts/esm/ts/Core/CommentList.js +0 -126
- package/dist/ts/esm/ts/Core/Conversion.js +0 -1145
- package/dist/ts/esm/ts/Core/Data.js +0 -188
- package/dist/ts/esm/ts/Core/DataContext.js +0 -119
- package/dist/ts/esm/ts/Core/DataFile.js +0 -82
- package/dist/ts/esm/ts/Core/DataMap.js +0 -156
- package/dist/ts/esm/ts/Core/Helper/Collections.js +0 -462
- package/dist/ts/esm/ts/Core/Helper/HashCodes.js +0 -32
- package/dist/ts/esm/ts/Core/Helper/Identifier.js +0 -298
- package/dist/ts/esm/ts/Core/Helper/ORCID.js +0 -34
- package/dist/ts/esm/ts/Core/Helper/Printer.js +0 -1
- package/dist/ts/esm/ts/Core/Helper/Regex.js +0 -579
- package/dist/ts/esm/ts/Core/Helper/SemVer.js +0 -50
- package/dist/ts/esm/ts/Core/Helper/Url.js +0 -30
- package/dist/ts/esm/ts/Core/IPropertyValue.js +0 -1
- package/dist/ts/esm/ts/Core/IdentifierSetters.js +0 -21
- package/dist/ts/esm/ts/Core/OntologyAnnotation.js +0 -213
- package/dist/ts/esm/ts/Core/OntologySourceReference.js +0 -88
- package/dist/ts/esm/ts/Core/Person.js +0 -190
- package/dist/ts/esm/ts/Core/Process/ColumnIndex.js +0 -204
- package/dist/ts/esm/ts/Core/Process/Component.js +0 -180
- package/dist/ts/esm/ts/Core/Process/Factor.js +0 -106
- package/dist/ts/esm/ts/Core/Process/FactorValue.js +0 -127
- package/dist/ts/esm/ts/Core/Process/Material.js +0 -57
- package/dist/ts/esm/ts/Core/Process/MaterialAttribute.js +0 -86
- package/dist/ts/esm/ts/Core/Process/MaterialAttributeValue.js +0 -142
- package/dist/ts/esm/ts/Core/Process/MaterialType.js +0 -42
- package/dist/ts/esm/ts/Core/Process/Process.js +0 -341
- package/dist/ts/esm/ts/Core/Process/ProcessInput.js +0 -283
- package/dist/ts/esm/ts/Core/Process/ProcessOutput.js +0 -248
- package/dist/ts/esm/ts/Core/Process/ProcessParameterValue.js +0 -136
- package/dist/ts/esm/ts/Core/Process/ProcessSequence.js +0 -227
- package/dist/ts/esm/ts/Core/Process/Protocol.js +0 -210
- package/dist/ts/esm/ts/Core/Process/ProtocolParameter.js +0 -70
- package/dist/ts/esm/ts/Core/Process/Sample.js +0 -59
- package/dist/ts/esm/ts/Core/Process/Source.js +0 -45
- package/dist/ts/esm/ts/Core/Publication.js +0 -112
- package/dist/ts/esm/ts/Core/Table/ArcTable.js +0 -917
- package/dist/ts/esm/ts/Core/Table/ArcTableAux.js +0 -1213
- package/dist/ts/esm/ts/Core/Table/ArcTables.js +0 -461
- package/dist/ts/esm/ts/Core/Table/CompositeCell.js +0 -308
- package/dist/ts/esm/ts/Core/Table/CompositeColumn.js +0 -55
- package/dist/ts/esm/ts/Core/Table/CompositeHeader.js +0 -691
- package/dist/ts/esm/ts/Core/Template.js +0 -186
- package/dist/ts/esm/ts/Core/Templates.js +0 -79
- package/dist/ts/esm/ts/Core/URI.js +0 -16
- package/dist/ts/esm/ts/Core/Value.js +0 -182
- package/dist/ts/esm/ts/CrossAsync.js +0 -27
- package/dist/ts/esm/ts/FileSystem/Commit.js +0 -15
- package/dist/ts/esm/ts/FileSystem/DefaultGitattributes.js +0 -1
- package/dist/ts/esm/ts/FileSystem/DefaultGitignore.js +0 -1
- package/dist/ts/esm/ts/FileSystem/FileSystem.js +0 -50
- package/dist/ts/esm/ts/FileSystem/FileSystemTree.js +0 -315
- package/dist/ts/esm/ts/FileSystem/Path.js +0 -51
- package/dist/ts/esm/ts/Json/Assay.js +0 -225
- package/dist/ts/esm/ts/Json/Comment.js +0 -111
- package/dist/ts/esm/ts/Json/Data.js +0 -138
- package/dist/ts/esm/ts/Json/DataFile.js +0 -50
- package/dist/ts/esm/ts/Json/DataMap/DataContext.js +0 -36
- package/dist/ts/esm/ts/Json/DataMap/DataMap.js +0 -24
- package/dist/ts/esm/ts/Json/Decode.js +0 -219
- package/dist/ts/esm/ts/Json/Encode.js +0 -103
- package/dist/ts/esm/ts/Json/IDTable.js +0 -26
- package/dist/ts/esm/ts/Json/Investigation.js +0 -244
- package/dist/ts/esm/ts/Json/OntologyAnnotation.js +0 -197
- package/dist/ts/esm/ts/Json/OntologySourceReference.js +0 -118
- package/dist/ts/esm/ts/Json/Person.js +0 -329
- package/dist/ts/esm/ts/Json/Process/AssayMaterials.js +0 -18
- package/dist/ts/esm/ts/Json/Process/Component.js +0 -42
- package/dist/ts/esm/ts/Json/Process/Factor.js +0 -53
- package/dist/ts/esm/ts/Json/Process/FactorValue.js +0 -42
- package/dist/ts/esm/ts/Json/Process/Material.js +0 -114
- package/dist/ts/esm/ts/Json/Process/MaterialAttribute.js +0 -42
- package/dist/ts/esm/ts/Json/Process/MaterialAttributeValue.js +0 -42
- package/dist/ts/esm/ts/Json/Process/MaterialType.js +0 -42
- package/dist/ts/esm/ts/Json/Process/Process.js +0 -103
- package/dist/ts/esm/ts/Json/Process/ProcessInput.js +0 -33
- package/dist/ts/esm/ts/Json/Process/ProcessOutput.js +0 -28
- package/dist/ts/esm/ts/Json/Process/ProcessParameterValue.js +0 -28
- package/dist/ts/esm/ts/Json/Process/Protocol.js +0 -174
- package/dist/ts/esm/ts/Json/Process/ProtocolParameter.js +0 -42
- package/dist/ts/esm/ts/Json/Process/Sample.js +0 -170
- package/dist/ts/esm/ts/Json/Process/Source.js +0 -139
- package/dist/ts/esm/ts/Json/Process/StudyMaterials.js +0 -20
- package/dist/ts/esm/ts/Json/Process/Value.js +0 -35
- package/dist/ts/esm/ts/Json/PropertyValue.js +0 -295
- package/dist/ts/esm/ts/Json/Publication.js +0 -123
- package/dist/ts/esm/ts/Json/ROCrate/LDContext.js +0 -119
- package/dist/ts/esm/ts/Json/ROCrate/LDGraph.js +0 -84
- package/dist/ts/esm/ts/Json/ROCrate/LDNode.js +0 -207
- package/dist/ts/esm/ts/Json/ROCrate/LDRef.js +0 -21
- package/dist/ts/esm/ts/Json/ROCrate/LDValue.js +0 -65
- package/dist/ts/esm/ts/Json/StringTable.js +0 -63
- package/dist/ts/esm/ts/Json/Study.js +0 -337
- package/dist/ts/esm/ts/Json/Table/ArcTable.js +0 -208
- package/dist/ts/esm/ts/Json/Table/CellTable.js +0 -51
- package/dist/ts/esm/ts/Json/Table/CompositeCell.js +0 -97
- package/dist/ts/esm/ts/Json/Table/CompositeHeader.js +0 -104
- package/dist/ts/esm/ts/Json/Table/IOType.js +0 -12
- package/dist/ts/esm/ts/Json/Table/OATable.js +0 -48
- package/dist/ts/esm/ts/Json/Table/Templates.js +0 -98
- package/dist/ts/esm/ts/Json/context/rocrate/isa_assay_context.js +0 -84
- package/dist/ts/esm/ts/Json/context/rocrate/isa_comment_context.js +0 -42
- package/dist/ts/esm/ts/Json/context/rocrate/isa_data_context.js +0 -56
- package/dist/ts/esm/ts/Json/context/rocrate/isa_investigation_context.js +0 -92
- package/dist/ts/esm/ts/Json/context/rocrate/isa_material_context.js +0 -53
- package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_annotation_context.js +0 -51
- package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +0 -57
- package/dist/ts/esm/ts/Json/context/rocrate/isa_organization_context.js +0 -37
- package/dist/ts/esm/ts/Json/context/rocrate/isa_person_context.js +0 -107
- package/dist/ts/esm/ts/Json/context/rocrate/isa_process_context.js +0 -77
- package/dist/ts/esm/ts/Json/context/rocrate/isa_protocol_context.js +0 -80
- package/dist/ts/esm/ts/Json/context/rocrate/isa_publication_context.js +0 -61
- package/dist/ts/esm/ts/Json/context/rocrate/isa_sample_context.js +0 -48
- package/dist/ts/esm/ts/Json/context/rocrate/isa_source_context.js +0 -48
- package/dist/ts/esm/ts/Json/context/rocrate/isa_study_context.js +0 -108
- package/dist/ts/esm/ts/Json/context/rocrate/property_value_context.js +0 -58
- package/dist/ts/esm/ts/Json/context/rocrate/rocrate_context.js +0 -58
- package/dist/ts/esm/ts/Json.js +0 -214
- package/dist/ts/esm/ts/JsonIO/Assay.js +0 -90
- package/dist/ts/esm/ts/JsonIO/Investigation.js +0 -90
- package/dist/ts/esm/ts/JsonIO/LDObject.js +0 -94
- package/dist/ts/esm/ts/JsonIO/OntologyAnnotation.js +0 -66
- package/dist/ts/esm/ts/JsonIO/Study.js +0 -90
- package/dist/ts/esm/ts/JsonIO/Table/Compression.js +0 -36
- package/dist/ts/esm/ts/JsonIO/Table/Templates.js +0 -80
- package/dist/ts/esm/ts/ROCrate/Generic/Comment.js +0 -112
- package/dist/ts/esm/ts/ROCrate/Generic/Dataset.js +0 -666
- package/dist/ts/esm/ts/ROCrate/Generic/DefinedTerm.js +0 -112
- package/dist/ts/esm/ts/ROCrate/Generic/File.js +0 -197
- package/dist/ts/esm/ts/ROCrate/Generic/LabProcess.js +0 -235
- package/dist/ts/esm/ts/ROCrate/Generic/LabProtocol.js +0 -272
- package/dist/ts/esm/ts/ROCrate/Generic/Organization.js +0 -68
- package/dist/ts/esm/ts/ROCrate/Generic/Person.js +0 -408
- package/dist/ts/esm/ts/ROCrate/Generic/PostalAddress.js +0 -156
- package/dist/ts/esm/ts/ROCrate/Generic/PropertyValue.js +0 -545
- package/dist/ts/esm/ts/ROCrate/Generic/Sample.js +0 -136
- package/dist/ts/esm/ts/ROCrate/Generic/ScholarlyArticle.js +0 -184
- package/dist/ts/esm/ts/ROCrate/Helper.js +0 -4
- package/dist/ts/esm/ts/ROCrate/LDContext.js +0 -313
- package/dist/ts/esm/ts/ROCrate/LDObject.js +0 -967
- package/dist/ts/esm/ts/ROCrate/ROCrateContext.js +0 -38
- package/dist/ts/esm/ts/ROCrateIO.js +0 -65
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/ArcTable.js +0 -164
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeCell.js +0 -61
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -141
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +0 -460
- package/dist/ts/esm/ts/Spreadsheet/ArcAssay.js +0 -204
- package/dist/ts/esm/ts/Spreadsheet/ArcInvestigation.js +0 -334
- package/dist/ts/esm/ts/Spreadsheet/ArcRun.js +0 -163
- package/dist/ts/esm/ts/Spreadsheet/ArcStudy.js +0 -117
- package/dist/ts/esm/ts/Spreadsheet/ArcWorkflow.js +0 -152
- package/dist/ts/esm/ts/Spreadsheet/CollectionAux.js +0 -117
- package/dist/ts/esm/ts/Spreadsheet/DataMap.js +0 -37
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapColumn.js +0 -39
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapHeader.js +0 -463
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapTable.js +0 -97
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Assays.js +0 -90
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Comment.js +0 -59
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Contacts.js +0 -84
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Conversions.js +0 -176
- package/dist/ts/esm/ts/Spreadsheet/Metadata/DesignDescriptors.js +0 -18
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Factors.js +0 -75
- package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologyAnnotation.js +0 -59
- package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologySourceReference.js +0 -60
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Protocols.js +0 -95
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Publication.js +0 -80
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Run.js +0 -91
- package/dist/ts/esm/ts/Spreadsheet/Metadata/SparseTable.js +0 -434
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Study.js +0 -245
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Workflow.js +0 -103
- package/dist/ts/esm/ts/Template.Web.js +0 -23
- package/dist/ts/esm/ts/ValidationPackages/ValidationPackage.js +0 -57
- package/dist/ts/esm/ts/ValidationPackages/ValidationPackagesConfig.js +0 -84
- package/dist/ts/esm/ts/WebRequest/WebRequest.Node.js +0 -13
- package/dist/ts/esm/ts/WebRequest/WebRequest.js +0 -17
- package/dist/ts/esm/ts/Xlsx.js +0 -116
- package/dist/ts/esm/ts/Yaml/Encode.js +0 -5
- package/dist/ts/esm/ts/Yaml/ValidationPackage.js +0 -41
- package/dist/ts/esm/ts/Yaml/ValidationPackagesConfig.js +0 -42
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +0 -432
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +0 -118
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +0 -43
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +0 -18
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +0 -79
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +0 -2
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +0 -102
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +0 -281
- package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +0 -203
- package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +0 -16
- package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +0 -380
- package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +0 -151
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +0 -463
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +0 -473
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +0 -189
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +0 -43
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +0 -122
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +0 -306
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +0 -224
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +0 -121
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +0 -131
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +0 -134
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +0 -429
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +0 -62
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +0 -35
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +0 -35
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +0 -27
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +0 -74
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +0 -41
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +0 -129
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +0 -33
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +0 -206
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +0 -80
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +0 -60
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +0 -31
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +0 -326
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +0 -152
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +0 -76
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +0 -48
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +0 -48
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +0 -51
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +0 -30
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +0 -64
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +0 -67
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +0 -1269
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +0 -178
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +0 -79
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +0 -91
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +0 -55
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +0 -1692
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +0 -57
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -9
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -43
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +0 -96
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -522
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -9
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -221
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -156
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -148
- package/dist/ts/types/index.d.ts +0 -60
- package/dist/ts/types/index.d.ts.map +0 -1
- package/dist/ts/types/ts/ARC.d.ts +0 -80
- package/dist/ts/types/ts/ARC.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ARC.d.ts +0 -7
- package/dist/ts/types/ts/Contract/ARC.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcAssay.d.ts +0 -12
- package/dist/ts/types/ts/Contract/ArcAssay.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts +0 -10
- package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcRun.d.ts +0 -12
- package/dist/ts/types/ts/Contract/ArcRun.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcStudy.d.ts +0 -13
- package/dist/ts/types/ts/Contract/ArcStudy.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts +0 -12
- package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/Contract.d.ts +0 -39
- package/dist/ts/types/ts/Contract/Contract.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/Datamap.d.ts +0 -29
- package/dist/ts/types/ts/Contract/Datamap.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/Git.d.ts +0 -28
- package/dist/ts/types/ts/Contract/Git.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts +0 -12
- package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts.map +0 -1
- package/dist/ts/types/ts/ContractIO/ContractIO.d.ts +0 -11
- package/dist/ts/types/ts/ContractIO/ContractIO.d.ts.map +0 -1
- package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts +0 -33
- package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts.map +0 -1
- package/dist/ts/types/ts/Conversion.d.ts +0 -291
- package/dist/ts/types/ts/Conversion.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/ArcTypes.d.ts +0 -620
- package/dist/ts/types/ts/Core/ArcTypes.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Comment.d.ts +0 -35
- package/dist/ts/types/ts/Core/Comment.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/CommentList.d.ts +0 -28
- package/dist/ts/types/ts/Core/CommentList.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Conversion.d.ts +0 -215
- package/dist/ts/types/ts/Core/Conversion.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Data.d.ts +0 -49
- package/dist/ts/types/ts/Core/Data.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/DataContext.d.ts +0 -47
- package/dist/ts/types/ts/Core/DataContext.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/DataFile.d.ts +0 -27
- package/dist/ts/types/ts/Core/DataFile.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/DataMap.d.ts +0 -52
- package/dist/ts/types/ts/Core/DataMap.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Collections.d.ts +0 -61
- package/dist/ts/types/ts/Core/Helper/Collections.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts +0 -9
- package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Identifier.d.ts +0 -119
- package/dist/ts/types/ts/Core/Helper/Identifier.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/ORCID.d.ts +0 -7
- package/dist/ts/types/ts/Core/Helper/ORCID.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Printer.d.ts +0 -5
- package/dist/ts/types/ts/Core/Helper/Printer.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Regex.d.ts +0 -194
- package/dist/ts/types/ts/Core/Helper/Regex.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/SemVer.d.ts +0 -20
- package/dist/ts/types/ts/Core/Helper/SemVer.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Url.d.ts +0 -10
- package/dist/ts/types/ts/Core/Helper/Url.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/IPropertyValue.d.ts +0 -13
- package/dist/ts/types/ts/Core/IPropertyValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/IdentifierSetters.d.ts +0 -7
- package/dist/ts/types/ts/Core/IdentifierSetters.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts +0 -57
- package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/OntologySourceReference.d.ts +0 -31
- package/dist/ts/types/ts/Core/OntologySourceReference.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Person.d.ts +0 -56
- package/dist/ts/types/ts/Core/Person.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts +0 -79
- package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Component.d.ts +0 -65
- package/dist/ts/types/ts/Core/Process/Component.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Factor.d.ts +0 -44
- package/dist/ts/types/ts/Core/Process/Factor.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/FactorValue.d.ts +0 -44
- package/dist/ts/types/ts/Core/Process/FactorValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Material.d.ts +0 -27
- package/dist/ts/types/ts/Core/Process/Material.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts +0 -53
- package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts +0 -55
- package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/MaterialType.d.ts +0 -22
- package/dist/ts/types/ts/Core/Process/MaterialType.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Process.d.ts +0 -113
- package/dist/ts/types/ts/Core/Process/Process.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts +0 -117
- package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts +0 -106
- package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts +0 -40
- package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts +0 -89
- package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Protocol.d.ts +0 -141
- package/dist/ts/types/ts/Core/Process/Protocol.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts +0 -32
- package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Sample.d.ts +0 -31
- package/dist/ts/types/ts/Core/Process/Sample.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Source.d.ts +0 -24
- package/dist/ts/types/ts/Core/Process/Source.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Publication.d.ts +0 -36
- package/dist/ts/types/ts/Core/Publication.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/ArcTable.d.ts +0 -137
- package/dist/ts/types/ts/Core/Table/ArcTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts +0 -154
- package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/ArcTables.d.ts +0 -91
- package/dist/ts/types/ts/Core/Table/ArcTables.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts +0 -58
- package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts +0 -19
- package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts +0 -130
- package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Template.d.ts +0 -69
- package/dist/ts/types/ts/Core/Template.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Templates.d.ts +0 -18
- package/dist/ts/types/ts/Core/Templates.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/URI.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Value.d.ts +0 -41
- package/dist/ts/types/ts/Core/Value.d.ts.map +0 -1
- package/dist/ts/types/ts/CrossAsync.d.ts +0 -9
- package/dist/ts/types/ts/CrossAsync.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/Commit.d.ts +0 -13
- package/dist/ts/types/ts/FileSystem/Commit.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/DefaultGitattributes.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/DefaultGitignore.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/FileSystem.d.ts +0 -21
- package/dist/ts/types/ts/FileSystem/FileSystem.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts +0 -54
- package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/Path.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Assay.d.ts +0 -19
- package/dist/ts/types/ts/Json/Assay.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Comment.d.ts +0 -14
- package/dist/ts/types/ts/Json/Comment.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Data.d.ts +0 -17
- package/dist/ts/types/ts/Json/Data.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/DataFile.d.ts +0 -7
- package/dist/ts/types/ts/Json/DataFile.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts +0 -5
- package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts +0 -11
- package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Decode.d.ts +0 -18
- package/dist/ts/types/ts/Json/Decode.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Encode.d.ts +0 -23
- package/dist/ts/types/ts/Json/Encode.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/IDTable.d.ts +0 -5
- package/dist/ts/types/ts/Json/IDTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Investigation.d.ts +0 -20
- package/dist/ts/types/ts/Json/Investigation.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts +0 -18
- package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/OntologySourceReference.d.ts +0 -12
- package/dist/ts/types/ts/Json/OntologySourceReference.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Person.d.ts +0 -22
- package/dist/ts/types/ts/Json/Person.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts +0 -7
- package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Component.d.ts +0 -11
- package/dist/ts/types/ts/Json/Process/Component.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Factor.d.ts +0 -8
- package/dist/ts/types/ts/Json/Process/Factor.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/FactorValue.d.ts +0 -11
- package/dist/ts/types/ts/Json/Process/FactorValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Material.d.ts +0 -12
- package/dist/ts/types/ts/Json/Process/Material.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts +0 -8
- package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts +0 -11
- package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/MaterialType.d.ts +0 -7
- package/dist/ts/types/ts/Json/Process/MaterialType.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Process.d.ts +0 -10
- package/dist/ts/types/ts/Json/Process/Process.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts +0 -9
- package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts +0 -9
- package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts +0 -11
- package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Protocol.d.ts +0 -10
- package/dist/ts/types/ts/Json/Process/Protocol.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts +0 -8
- package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Sample.d.ts +0 -15
- package/dist/ts/types/ts/Json/Process/Sample.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Source.d.ts +0 -12
- package/dist/ts/types/ts/Json/Process/Source.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts +0 -7
- package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Value.d.ts +0 -7
- package/dist/ts/types/ts/Json/Process/Value.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/PropertyValue.d.ts +0 -9
- package/dist/ts/types/ts/Json/PropertyValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Publication.d.ts +0 -14
- package/dist/ts/types/ts/Json/Publication.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts +0 -5
- package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts +0 -5
- package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts +0 -13
- package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts +0 -5
- package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts +0 -7
- package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/StringTable.d.ts +0 -9
- package/dist/ts/types/ts/Json/StringTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Study.d.ts +0 -26
- package/dist/ts/types/ts/Json/Study.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/ArcTable.d.ts +0 -15
- package/dist/ts/types/ts/Json/Table/ArcTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/CellTable.d.ts +0 -11
- package/dist/ts/types/ts/Json/Table/CellTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts +0 -10
- package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts +0 -5
- package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/IOType.d.ts +0 -5
- package/dist/ts/types/ts/Json/Table/IOType.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/OATable.d.ts +0 -10
- package/dist/ts/types/ts/Json/Table/OATable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/Templates.d.ts +0 -15
- package/dist/ts/types/ts/Json/Table/Templates.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts +0 -26
- package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts +0 -16
- package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts +0 -18
- package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts +0 -26
- package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts +0 -19
- package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +0 -17
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +0 -19
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts +0 -15
- package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts +0 -25
- package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts +0 -23
- package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts +0 -22
- package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts +0 -19
- package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts +0 -18
- package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts +0 -18
- package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts +0 -34
- package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts +0 -3
- package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts +0 -16
- package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json.d.ts +0 -90
- package/dist/ts/types/ts/Json.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Assay.d.ts +0 -19
- package/dist/ts/types/ts/JsonIO/Assay.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Investigation.d.ts +0 -19
- package/dist/ts/types/ts/JsonIO/Investigation.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/LDObject.d.ts +0 -29
- package/dist/ts/types/ts/JsonIO/LDObject.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts +0 -16
- package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Study.d.ts +0 -20
- package/dist/ts/types/ts/JsonIO/Study.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts +0 -8
- package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts +0 -15
- package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts +0 -21
- package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts +0 -92
- package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts +0 -21
- package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/File.d.ts +0 -35
- package/dist/ts/types/ts/ROCrate/Generic/File.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts +0 -43
- package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts +0 -44
- package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts +0 -17
- package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts +0 -51
- package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts +0 -25
- package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts +0 -73
- package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts +0 -30
- package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts +0 -34
- package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Helper.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/LDContext.d.ts +0 -43
- package/dist/ts/types/ts/ROCrate/LDContext.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/LDObject.d.ts +0 -97
- package/dist/ts/types/ts/ROCrate/LDObject.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts +0 -7
- package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrateIO.d.ts +0 -15
- package/dist/ts/types/ts/ROCrateIO.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +0 -40
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +0 -9
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +0 -24
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +0 -22
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts +0 -31
- package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts +0 -42
- package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts +0 -27
- package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts +0 -26
- package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts +0 -27
- package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts +0 -23
- package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts +0 -8
- package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts +0 -7
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts +0 -23
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts +0 -23
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts +0 -14
- package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts +0 -14
- package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts +0 -25
- package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts +0 -60
- package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +0 -16
- package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts +0 -18
- package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +0 -12
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +0 -18
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts +0 -28
- package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts +0 -21
- package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts +0 -14
- package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts +0 -37
- package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts +0 -38
- package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts +0 -31
- package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts.map +0 -1
- package/dist/ts/types/ts/Template.Web.d.ts +0 -11
- package/dist/ts/types/ts/Template.Web.d.ts.map +0 -1
- package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts +0 -21
- package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts.map +0 -1
- package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts +0 -23
- package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +0 -1
- package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts +0 -4
- package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts.map +0 -1
- package/dist/ts/types/ts/WebRequest/WebRequest.d.ts +0 -4
- package/dist/ts/types/ts/WebRequest/WebRequest.d.ts.map +0 -1
- package/dist/ts/types/ts/Xlsx.d.ts +0 -50
- package/dist/ts/types/ts/Xlsx.d.ts.map +0 -1
- package/dist/ts/types/ts/Yaml/Encode.d.ts +0 -5
- package/dist/ts/types/ts/Yaml/Encode.d.ts.map +0 -1
- package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts +0 -10
- package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts.map +0 -1
- package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts +0 -10
- package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts +0 -69
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts +0 -25
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts +0 -11
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts +0 -15
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts +0 -15
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts +0 -34
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts +0 -14
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts +0 -4
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts +0 -30
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts +0 -49
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts +0 -35
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts +0 -123
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts +0 -27
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts +0 -253
- package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts +0 -112
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts +0 -8
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts +0 -123
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts +0 -113
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts +0 -91
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts +0 -181
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts +0 -36
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts +0 -23
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts +0 -21
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts +0 -157
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts +0 -97
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts +0 -37
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts +0 -39
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts +0 -36
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts +0 -88
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts +0 -10
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts +0 -9
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts +0 -9
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts +0 -5
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts +0 -6
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts +0 -7
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts +0 -7
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts +0 -15
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts +0 -94
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts +0 -33
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts +0 -31
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts +0 -17
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts +0 -71
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts +0 -89
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts +0 -10
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts +0 -19
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts +0 -15
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts +0 -6
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts +0 -5
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts +0 -7
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts +0 -20
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts +0 -105
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts +0 -26
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts +0 -99
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts +0 -7
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts +0 -5
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts +0 -64
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts +0 -24
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts +0 -3
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts +0 -12
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts +0 -10
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts +0 -6
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts +0 -10
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts +0 -46
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts +0 -12
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts +0 -70
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts.map +0 -1
- /package/dist/ts/{types/ts → ts}/Core/URI.d.ts +0 -0
- /package/dist/ts/{types/ts → ts}/FileSystem/DefaultGitattributes.d.ts +0 -0
- /package/dist/ts/{types/ts → ts}/FileSystem/DefaultGitignore.d.ts +0 -0
- /package/dist/ts/{types/ts → ts}/FileSystem/Path.d.ts +0 -0
- /package/dist/ts/{types/ts → ts}/ROCrate/Helper.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IdentifierSetters.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Core/IdentifierSetters.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAC/C,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAErE,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,GAAG,QAAQ,CAI1E;AAED,wBAAgB,kBAAkB,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,GAAG,QAAQ,CAInF;AAED,wBAAgB,kBAAkB,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,GAAG,QAAQ,CAInF;AAED,wBAAgB,0BAA0B,CAAC,aAAa,EAAE,MAAM,EAAE,aAAa,EAAE,gBAAgB,GAAG,gBAAgB,CAInH"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { checkValidCharacters } from './Helper/Identifier.js';
|
|
2
|
+
|
|
3
|
+
function setInvestigationIdentifier(newIdentifier, investigation) {
|
|
4
|
+
checkValidCharacters(newIdentifier);
|
|
5
|
+
investigation.Identifier = newIdentifier;
|
|
6
|
+
return investigation;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export { setInvestigationIdentifier };
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
2
|
+
import { Comment$ } from './Comment.js';
|
|
3
|
+
import { int32 } from '@fable-org/fable-library-js/Int32.js';
|
|
4
|
+
import { IISAPrintable } from './Helper/Printer.js';
|
|
5
|
+
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
6
|
+
export declare class OntologyAnnotation implements IISAPrintable {
|
|
7
|
+
_name: Option<string>;
|
|
8
|
+
_termSourceREF: Option<string>;
|
|
9
|
+
_termAccessionNumber: Option<string>;
|
|
10
|
+
_comments: Comment$[];
|
|
11
|
+
_tanInfo: Option<{
|
|
12
|
+
IDSpace: string;
|
|
13
|
+
LocalID: string;
|
|
14
|
+
}>;
|
|
15
|
+
constructor(name?: string, tsr?: string, tan?: string, comments?: Comment$[]);
|
|
16
|
+
get Name(): string | undefined;
|
|
17
|
+
set Name(name: Option<string>);
|
|
18
|
+
get TermSourceREF(): string | undefined;
|
|
19
|
+
set TermSourceREF(tsr: Option<string>);
|
|
20
|
+
get TermAccessionNumber(): string | undefined;
|
|
21
|
+
set TermAccessionNumber(tan: Option<string>);
|
|
22
|
+
get Comments(): Comment$[];
|
|
23
|
+
set Comments(comments: Comment$[]);
|
|
24
|
+
static make(name: Option<string>, tsr: Option<string>, tan: Option<string>, comments: Comment$[]): OntologyAnnotation;
|
|
25
|
+
static create(name?: string, tsr?: string, tan?: string, comments?: Comment$[]): OntologyAnnotation;
|
|
26
|
+
get TANInfo(): {
|
|
27
|
+
IDSpace: string;
|
|
28
|
+
LocalID: string;
|
|
29
|
+
} | undefined;
|
|
30
|
+
get NameText(): string;
|
|
31
|
+
static createUriAnnotation(termSourceRef: string, localTAN: string): string;
|
|
32
|
+
static fromTermAnnotation(tan: string, name?: string): OntologyAnnotation;
|
|
33
|
+
get TermAccessionShort(): string;
|
|
34
|
+
get TermAccessionOntobeeUrl(): string;
|
|
35
|
+
get TermAccessionAndOntobeeUrlIfShort(): string;
|
|
36
|
+
static toStringObject(oa: OntologyAnnotation, asOntobeePurlUrlIfShort?: boolean): {
|
|
37
|
+
TermAccessionNumber: string;
|
|
38
|
+
TermName: string;
|
|
39
|
+
TermSourceREF: string;
|
|
40
|
+
};
|
|
41
|
+
toString(): string;
|
|
42
|
+
isEmpty(): boolean;
|
|
43
|
+
GetHashCode(): int32;
|
|
44
|
+
Equals(obj: any): boolean;
|
|
45
|
+
Copy(): OntologyAnnotation;
|
|
46
|
+
static computeTanInfo(tan?: string, tsr?: string): Option<{
|
|
47
|
+
IDSpace: string;
|
|
48
|
+
LocalID: string;
|
|
49
|
+
}>;
|
|
50
|
+
Print(): string;
|
|
51
|
+
PrintCompact(): string;
|
|
52
|
+
CompareTo(obj: any): int32;
|
|
53
|
+
recomputeTanInfo(): void;
|
|
54
|
+
}
|
|
55
|
+
export declare function OntologyAnnotation_$reflection(): TypeInfo;
|
|
56
|
+
export declare function OntologyAnnotation_$ctor_Z54349580(name?: string, tsr?: string, tan?: string, comments?: Comment$[]): OntologyAnnotation;
|
|
57
|
+
//# sourceMappingURL=OntologyAnnotation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OntologyAnnotation.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Core/OntologyAnnotation.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
import { value, defaultArg, unwrap } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
2
|
+
import { createOAUri } from './Helper/Url.js';
|
|
3
|
+
import { tryParseTermAnnotation, ActivePatterns_$007CRegex$007C_$007C, Pattern_TermAnnotationShortPattern } from './Helper/Regex.js';
|
|
4
|
+
import { StringBuilder_$ctor, StringBuilder__Append_Z721C83C5 } from '../../node_modules/@fable-org/fable-library-js/System.Text.js';
|
|
5
|
+
import { join, toText, printf } from '../../node_modules/@fable-org/fable-library-js/String.js';
|
|
6
|
+
import { toList, delay, append, singleton, empty } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
7
|
+
import { toString } from '../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
8
|
+
import { mergeHashes, hash } from './Helper/HashCodes.js';
|
|
9
|
+
import { stringHash, safeHash } from '../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
10
|
+
import { ResizeArray_map } from './Helper/Collections.js';
|
|
11
|
+
import { class_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
12
|
+
|
|
13
|
+
class OntologyAnnotation {
|
|
14
|
+
constructor(name, tsr, tan, comments) {
|
|
15
|
+
this._name = name == null ? void 0 : value(name) === "" ? void 0 : name;
|
|
16
|
+
this._termSourceREF = tsr == null ? void 0 : value(tsr) === "" ? void 0 : tsr;
|
|
17
|
+
this._termAccessionNumber = tan == null ? void 0 : value(tan) === "" ? void 0 : value(tan) === ":" ? void 0 : tan;
|
|
18
|
+
this._comments = defaultArg(comments, []);
|
|
19
|
+
this._tanInfo = OntologyAnnotation.computeTanInfo(unwrap(this._termAccessionNumber), unwrap(this._termSourceREF));
|
|
20
|
+
}
|
|
21
|
+
get Name() {
|
|
22
|
+
const this$ = this;
|
|
23
|
+
return unwrap(this$._name);
|
|
24
|
+
}
|
|
25
|
+
set Name(name) {
|
|
26
|
+
const this$ = this;
|
|
27
|
+
this$._name = name;
|
|
28
|
+
}
|
|
29
|
+
get TermSourceREF() {
|
|
30
|
+
const this$ = this;
|
|
31
|
+
return unwrap(this$._termSourceREF);
|
|
32
|
+
}
|
|
33
|
+
set TermSourceREF(tsr) {
|
|
34
|
+
const this$ = this;
|
|
35
|
+
this$._termSourceREF = tsr;
|
|
36
|
+
this$.recomputeTanInfo();
|
|
37
|
+
}
|
|
38
|
+
get TermAccessionNumber() {
|
|
39
|
+
const this$ = this;
|
|
40
|
+
return unwrap(this$._termAccessionNumber);
|
|
41
|
+
}
|
|
42
|
+
set TermAccessionNumber(tan) {
|
|
43
|
+
const this$ = this;
|
|
44
|
+
this$._termAccessionNumber = tan;
|
|
45
|
+
this$.recomputeTanInfo();
|
|
46
|
+
}
|
|
47
|
+
get Comments() {
|
|
48
|
+
const this$ = this;
|
|
49
|
+
return this$._comments;
|
|
50
|
+
}
|
|
51
|
+
set Comments(comments) {
|
|
52
|
+
const this$ = this;
|
|
53
|
+
this$._comments = comments;
|
|
54
|
+
}
|
|
55
|
+
static make(name, tsr, tan, comments) {
|
|
56
|
+
return new OntologyAnnotation(unwrap(name), unwrap(tsr), unwrap(tan), comments);
|
|
57
|
+
}
|
|
58
|
+
static create(name, tsr, tan, comments) {
|
|
59
|
+
const comments_1 = defaultArg(comments, []);
|
|
60
|
+
return OntologyAnnotation.make(name, tsr, tan, comments_1);
|
|
61
|
+
}
|
|
62
|
+
get TANInfo() {
|
|
63
|
+
const this$ = this;
|
|
64
|
+
return unwrap(this$._tanInfo);
|
|
65
|
+
}
|
|
66
|
+
get NameText() {
|
|
67
|
+
const this$ = this;
|
|
68
|
+
return defaultArg(this$.Name, "");
|
|
69
|
+
}
|
|
70
|
+
static createUriAnnotation(termSourceRef, localTAN) {
|
|
71
|
+
return createOAUri(termSourceRef, localTAN);
|
|
72
|
+
}
|
|
73
|
+
static fromTermAnnotation(tan, name) {
|
|
74
|
+
const matchValue = tryParseTermAnnotation(tan);
|
|
75
|
+
if (matchValue == null) {
|
|
76
|
+
return OntologyAnnotation.create(unwrap(name), void 0, tan);
|
|
77
|
+
} else {
|
|
78
|
+
const r = value(matchValue);
|
|
79
|
+
const accession = r.IDSpace + ":" + r.LocalID;
|
|
80
|
+
return OntologyAnnotation.create(unwrap(name), r.IDSpace, accession);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
get TermAccessionShort() {
|
|
84
|
+
const this$ = this;
|
|
85
|
+
const matchValue = this$.TANInfo;
|
|
86
|
+
if (matchValue != null) {
|
|
87
|
+
const id = value(matchValue);
|
|
88
|
+
return `${id.IDSpace}:${id.LocalID}`;
|
|
89
|
+
} else {
|
|
90
|
+
return "";
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
get TermAccessionOntobeeUrl() {
|
|
94
|
+
const this$ = this;
|
|
95
|
+
const matchValue = this$.TANInfo;
|
|
96
|
+
if (matchValue != null) {
|
|
97
|
+
const id = value(matchValue);
|
|
98
|
+
return OntologyAnnotation.createUriAnnotation(id.IDSpace, id.LocalID);
|
|
99
|
+
} else {
|
|
100
|
+
return "";
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
get TermAccessionAndOntobeeUrlIfShort() {
|
|
104
|
+
const this$ = this;
|
|
105
|
+
const matchValue = this$.TermAccessionNumber;
|
|
106
|
+
if (matchValue != null) {
|
|
107
|
+
const tan = value(matchValue);
|
|
108
|
+
return ActivePatterns_$007CRegex$007C_$007C(Pattern_TermAnnotationShortPattern, tan) != null ? this$.TermAccessionOntobeeUrl : tan;
|
|
109
|
+
} else {
|
|
110
|
+
return "";
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
static toStringObject(oa, asOntobeePurlUrlIfShort) {
|
|
114
|
+
let url;
|
|
115
|
+
const asOntobeePurlUrlIfShort_1 = defaultArg(asOntobeePurlUrlIfShort, false);
|
|
116
|
+
const TermName = defaultArg(oa.Name, "");
|
|
117
|
+
const TermSourceREF = defaultArg(oa.TermSourceREF, "");
|
|
118
|
+
return {
|
|
119
|
+
TermAccessionNumber: asOntobeePurlUrlIfShort_1 ? (url = oa.TermAccessionAndOntobeeUrlIfShort, url === "" ? defaultArg(oa.TermAccessionNumber, "") : url) : defaultArg(oa.TermAccessionNumber, ""),
|
|
120
|
+
TermName,
|
|
121
|
+
TermSourceREF
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
toString() {
|
|
125
|
+
const this$ = this;
|
|
126
|
+
const sb = StringBuilder_$ctor();
|
|
127
|
+
StringBuilder__Append_Z721C83C5(sb, "{");
|
|
128
|
+
StringBuilder__Append_Z721C83C5(sb, join("; ", toList(delay(() => {
|
|
129
|
+
let arg;
|
|
130
|
+
return append(this$.Name != null ? singleton((arg = value(this$.Name), toText(printf("Name = %A"))(arg))) : empty(), delay(() => {
|
|
131
|
+
let arg_1;
|
|
132
|
+
return append(this$.TermSourceREF != null ? singleton((arg_1 = value(this$.TermSourceREF), toText(printf("TSR = %A"))(arg_1))) : empty(), delay(() => {
|
|
133
|
+
let arg_2;
|
|
134
|
+
return append(this$.TermAccessionNumber != null ? singleton((arg_2 = value(this$.TermAccessionNumber), toText(printf("TAN = %A"))(arg_2))) : empty(), delay(() => {
|
|
135
|
+
let arg_3;
|
|
136
|
+
return this$.Comments.length !== 0 ? singleton((arg_3 = this$.Comments, toText(printf("Comments = %A"))(arg_3))) : empty();
|
|
137
|
+
}));
|
|
138
|
+
}));
|
|
139
|
+
}));
|
|
140
|
+
}))));
|
|
141
|
+
StringBuilder__Append_Z721C83C5(sb, "}");
|
|
142
|
+
return toString(sb);
|
|
143
|
+
}
|
|
144
|
+
isEmpty() {
|
|
145
|
+
const this$ = this;
|
|
146
|
+
return this$.Name == null && this$.TermSourceREF == null && this$.TermAccessionNumber == null && this$.Comments.length === 0;
|
|
147
|
+
}
|
|
148
|
+
GetHashCode() {
|
|
149
|
+
let matchValue, matchValue_1, matchValue_2, tsr_1, matchValue_4, tan, taninfo_1, tsr, taninfo;
|
|
150
|
+
const this$ = this;
|
|
151
|
+
return mergeHashes((matchValue = this$.Name, matchValue == null ? 0 : stringHash(value(matchValue))), (matchValue_1 = this$.TermSourceREF, matchValue_2 = this$.TANInfo, matchValue_1 != null ? matchValue_2 == null ? (tsr_1 = value(matchValue_1), matchValue_4 = this$.TermAccessionNumber, matchValue_4 == null ? stringHash(tsr_1.toLocaleLowerCase()) : (tan = value(matchValue_4), mergeHashes(stringHash(tsr_1.toLocaleLowerCase()), stringHash(tan)))) : (taninfo_1 = value(matchValue_2), tsr = value(matchValue_1), mergeHashes(stringHash(tsr.toLocaleLowerCase()), stringHash(taninfo_1.LocalID))) : matchValue_2 == null ? 0 : (taninfo = value(matchValue_2), mergeHashes(stringHash(taninfo.IDSpace.toLocaleLowerCase()), stringHash(taninfo.LocalID))))) | 0;
|
|
152
|
+
}
|
|
153
|
+
Equals(obj) {
|
|
154
|
+
const this$ = this;
|
|
155
|
+
return hash(this$) === hash(obj);
|
|
156
|
+
}
|
|
157
|
+
Copy() {
|
|
158
|
+
const this$ = this;
|
|
159
|
+
const nextComments = ResizeArray_map((c) => c.Copy(), this$.Comments);
|
|
160
|
+
const name = this$.Name;
|
|
161
|
+
const tsr = this$.TermSourceREF;
|
|
162
|
+
const tan = this$.TermAccessionNumber;
|
|
163
|
+
return OntologyAnnotation.make(name, tsr, tan, nextComments);
|
|
164
|
+
}
|
|
165
|
+
static computeTanInfo(tan, tsr) {
|
|
166
|
+
let tsr_1;
|
|
167
|
+
if (tan == null) {
|
|
168
|
+
return void 0;
|
|
169
|
+
} else {
|
|
170
|
+
const tan_1 = value(tan);
|
|
171
|
+
const matchValue = tryParseTermAnnotation(tan_1);
|
|
172
|
+
return matchValue == null ? tsr == null ? void 0 : value(tsr) === "" ? void 0 : (tsr_1 = value(tsr), {
|
|
173
|
+
IDSpace: tsr_1,
|
|
174
|
+
LocalID: tan_1
|
|
175
|
+
}) : value(matchValue);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
Print() {
|
|
179
|
+
const this$ = this;
|
|
180
|
+
return toString(this$);
|
|
181
|
+
}
|
|
182
|
+
PrintCompact() {
|
|
183
|
+
const this$ = this;
|
|
184
|
+
return "OA " + this$.NameText;
|
|
185
|
+
}
|
|
186
|
+
CompareTo(obj) {
|
|
187
|
+
const this$ = this;
|
|
188
|
+
if (obj instanceof OntologyAnnotation) {
|
|
189
|
+
const oa = obj;
|
|
190
|
+
const hash = safeHash(this$) | 0;
|
|
191
|
+
const otherHash = safeHash(oa) | 0;
|
|
192
|
+
return (hash === otherHash ? 0 : hash < otherHash ? -1 : 1) | 0;
|
|
193
|
+
} else {
|
|
194
|
+
return 1;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
recomputeTanInfo() {
|
|
198
|
+
const this$ = this;
|
|
199
|
+
const newTanInfo = OntologyAnnotation.computeTanInfo(unwrap(this$._termAccessionNumber), unwrap(this$._termSourceREF));
|
|
200
|
+
this$._tanInfo = newTanInfo;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
function OntologyAnnotation_$reflection() {
|
|
204
|
+
return class_type("ARCtrl.OntologyAnnotation", void 0, OntologyAnnotation);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
export { OntologyAnnotation, OntologyAnnotation_$reflection };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
2
|
+
import { Comment$ } from './Comment.js';
|
|
3
|
+
import { int32 } from '@fable-org/fable-library-js/Int32.js';
|
|
4
|
+
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
5
|
+
export declare class OntologySourceReference {
|
|
6
|
+
_description: Option<string>;
|
|
7
|
+
_file: Option<string>;
|
|
8
|
+
_name: Option<string>;
|
|
9
|
+
_version: Option<string>;
|
|
10
|
+
_comments: Comment$[];
|
|
11
|
+
constructor(description?: string, file?: string, name?: string, version?: string, comments?: Comment$[]);
|
|
12
|
+
get Description(): string | undefined;
|
|
13
|
+
set Description(description: Option<string>);
|
|
14
|
+
get File(): string | undefined;
|
|
15
|
+
set File(file: Option<string>);
|
|
16
|
+
get Name(): string | undefined;
|
|
17
|
+
set Name(name: Option<string>);
|
|
18
|
+
get Version(): string | undefined;
|
|
19
|
+
set Version(version: Option<string>);
|
|
20
|
+
get Comments(): Comment$[];
|
|
21
|
+
set Comments(comments: Comment$[]);
|
|
22
|
+
static make(description: Option<string>, file: Option<string>, name: Option<string>, version: Option<string>, comments: Comment$[]): OntologySourceReference;
|
|
23
|
+
static create(description?: string, file?: string, name?: string, version?: string, comments?: Comment$[]): OntologySourceReference;
|
|
24
|
+
static get empty(): OntologySourceReference;
|
|
25
|
+
Copy(): OntologySourceReference;
|
|
26
|
+
GetHashCode(): int32;
|
|
27
|
+
Equals(obj: any): boolean;
|
|
28
|
+
}
|
|
29
|
+
export declare function OntologySourceReference_$reflection(): TypeInfo;
|
|
30
|
+
export declare function OntologySourceReference_$ctor_7C9A7CF8(description?: string, file?: string, name?: string, version?: string, comments?: Comment$[]): OntologySourceReference;
|
|
31
|
+
//# sourceMappingURL=OntologySourceReference.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OntologySourceReference.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Core/OntologySourceReference.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,MAAM,EAAU,MAAM,uCAAuC,CAAC;AACnF,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAGxC,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAE7D,OAAO,EAAc,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAEjF,qBAAa,uBAAuB;IAChC,YAAY,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;IAC7B,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;IACtB,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;IACtB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;IACzB,SAAS,EAAE,QAAQ,EAAE,CAAC;gBACV,WAAW,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,QAAQ,EAAE;IAOvG,IAAI,WAAW,IAAI,MAAM,GAAG,SAAS,CAGpC;IACD,IAAI,WAAW,CAAC,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,EAG1C;IACD,IAAI,IAAI,IAAI,MAAM,GAAG,SAAS,CAG7B;IACD,IAAI,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,EAG5B;IACD,IAAI,IAAI,IAAI,MAAM,GAAG,SAAS,CAG7B;IACD,IAAI,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,EAG5B;IACD,IAAI,OAAO,IAAI,MAAM,GAAG,SAAS,CAGhC;IACD,IAAI,OAAO,CAAC,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,EAGlC;IACD,IAAI,QAAQ,IAAI,QAAQ,EAAE,CAGzB;IACD,IAAI,QAAQ,CAAC,QAAQ,EAAE,QAAQ,EAAE,EAGhC;IACD,MAAM,CAAC,IAAI,CAAC,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,GAAG,uBAAuB;IAG5J,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,QAAQ,EAAE,GAAG,uBAAuB;IAInI,MAAM,KAAK,KAAK,IAAI,uBAAuB,CAE1C;IACD,IAAI,IAAI,uBAAuB;IAS/B,WAAW,IAAI,KAAK;IAIpB,MAAM,CAAC,GAAG,EAAE,GAAG,GAAG,OAAO;CAK5B;AAED,wBAAgB,mCAAmC,IAAI,QAAQ,CAE9D;AAED,wBAAgB,sCAAsC,CAAC,WAAW,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,QAAQ,EAAE,GAAG,uBAAuB,CAE3K"}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { defaultArg, unwrap } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
2
|
+
import { ResizeArray_map } from './Helper/Collections.js';
|
|
3
|
+
import { boxHashArray, boxHashOption, boxHashSeq } from './Helper/HashCodes.js';
|
|
4
|
+
import { safeHash } from '../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
5
|
+
|
|
6
|
+
class OntologySourceReference {
|
|
7
|
+
constructor(description, file, name, version, comments) {
|
|
8
|
+
this._description = description;
|
|
9
|
+
this._file = file;
|
|
10
|
+
this._name = name;
|
|
11
|
+
this._version = version;
|
|
12
|
+
this._comments = defaultArg(comments, []);
|
|
13
|
+
}
|
|
14
|
+
get Description() {
|
|
15
|
+
const this$ = this;
|
|
16
|
+
return unwrap(this$._description);
|
|
17
|
+
}
|
|
18
|
+
set Description(description) {
|
|
19
|
+
const this$ = this;
|
|
20
|
+
this$._description = description;
|
|
21
|
+
}
|
|
22
|
+
get File() {
|
|
23
|
+
const this$ = this;
|
|
24
|
+
return unwrap(this$._file);
|
|
25
|
+
}
|
|
26
|
+
set File(file) {
|
|
27
|
+
const this$ = this;
|
|
28
|
+
this$._file = file;
|
|
29
|
+
}
|
|
30
|
+
get Name() {
|
|
31
|
+
const this$ = this;
|
|
32
|
+
return unwrap(this$._name);
|
|
33
|
+
}
|
|
34
|
+
set Name(name) {
|
|
35
|
+
const this$ = this;
|
|
36
|
+
this$._name = name;
|
|
37
|
+
}
|
|
38
|
+
get Version() {
|
|
39
|
+
const this$ = this;
|
|
40
|
+
return unwrap(this$._version);
|
|
41
|
+
}
|
|
42
|
+
set Version(version) {
|
|
43
|
+
const this$ = this;
|
|
44
|
+
this$._version = version;
|
|
45
|
+
}
|
|
46
|
+
get Comments() {
|
|
47
|
+
const this$ = this;
|
|
48
|
+
return this$._comments;
|
|
49
|
+
}
|
|
50
|
+
set Comments(comments) {
|
|
51
|
+
const this$ = this;
|
|
52
|
+
this$._comments = comments;
|
|
53
|
+
}
|
|
54
|
+
static make(description, file, name, version, comments) {
|
|
55
|
+
return new OntologySourceReference(unwrap(description), unwrap(file), unwrap(name), unwrap(version), comments);
|
|
56
|
+
}
|
|
57
|
+
static create(description, file, name, version, comments) {
|
|
58
|
+
const comments_1 = defaultArg(comments, []);
|
|
59
|
+
return OntologySourceReference.make(description, file, name, version, comments_1);
|
|
60
|
+
}
|
|
61
|
+
static get empty() {
|
|
62
|
+
return OntologySourceReference.create();
|
|
63
|
+
}
|
|
64
|
+
Copy() {
|
|
65
|
+
const this$ = this;
|
|
66
|
+
const nextComments = ResizeArray_map((c) => c.Copy(), this$.Comments);
|
|
67
|
+
const description = this$.Description;
|
|
68
|
+
const file = this$.File;
|
|
69
|
+
const name = this$.Name;
|
|
70
|
+
const version = this$.Version;
|
|
71
|
+
return OntologySourceReference.make(description, file, name, version, nextComments);
|
|
72
|
+
}
|
|
73
|
+
GetHashCode() {
|
|
74
|
+
const this$ = this;
|
|
75
|
+
return boxHashArray([boxHashOption(this$.Description), boxHashOption(this$.File), boxHashOption(this$.Name), boxHashOption(this$.Version), boxHashSeq(this$.Comments)]) | 0;
|
|
76
|
+
}
|
|
77
|
+
Equals(obj) {
|
|
78
|
+
let t;
|
|
79
|
+
const this$ = this;
|
|
80
|
+
return obj instanceof OntologySourceReference && (t = obj, safeHash(this$) === safeHash(t));
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export { OntologySourceReference };
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
2
|
+
import { OntologyAnnotation } from './OntologyAnnotation.js';
|
|
3
|
+
import { Comment$ } from './Comment.js';
|
|
4
|
+
import { FSharpList } from '@fable-org/fable-library-js/List.js';
|
|
5
|
+
import { int32 } from '@fable-org/fable-library-js/Int32.js';
|
|
6
|
+
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
7
|
+
export declare class Person {
|
|
8
|
+
_orcid: Option<string>;
|
|
9
|
+
_lastName: Option<string>;
|
|
10
|
+
_firstName: Option<string>;
|
|
11
|
+
_midInitials: Option<string>;
|
|
12
|
+
_email: Option<string>;
|
|
13
|
+
_phone: Option<string>;
|
|
14
|
+
_fax: Option<string>;
|
|
15
|
+
_address: Option<string>;
|
|
16
|
+
_affiliation: Option<string>;
|
|
17
|
+
_roles: OntologyAnnotation[];
|
|
18
|
+
_comments: Comment$[];
|
|
19
|
+
constructor(orcid?: string, lastName?: string, firstName?: string, midInitials?: string, email?: string, phone?: string, fax?: string, address?: string, affiliation?: string, roles?: OntologyAnnotation[], comments?: Comment$[]);
|
|
20
|
+
get ORCID(): string | undefined;
|
|
21
|
+
set ORCID(orcid: Option<string>);
|
|
22
|
+
get FirstName(): string | undefined;
|
|
23
|
+
set FirstName(firstName: Option<string>);
|
|
24
|
+
get LastName(): string | undefined;
|
|
25
|
+
set LastName(lastName: Option<string>);
|
|
26
|
+
get MidInitials(): string | undefined;
|
|
27
|
+
set MidInitials(midInitials: Option<string>);
|
|
28
|
+
get Address(): string | undefined;
|
|
29
|
+
set Address(address: Option<string>);
|
|
30
|
+
get Affiliation(): string | undefined;
|
|
31
|
+
set Affiliation(affiliation: Option<string>);
|
|
32
|
+
get EMail(): string | undefined;
|
|
33
|
+
set EMail(email: Option<string>);
|
|
34
|
+
get Phone(): string | undefined;
|
|
35
|
+
set Phone(phone: Option<string>);
|
|
36
|
+
get Fax(): string | undefined;
|
|
37
|
+
set Fax(fax: Option<string>);
|
|
38
|
+
get Roles(): OntologyAnnotation[];
|
|
39
|
+
set Roles(roles: OntologyAnnotation[]);
|
|
40
|
+
get Comments(): Comment$[];
|
|
41
|
+
set Comments(comments: Comment$[]);
|
|
42
|
+
static make(orcid: Option<string>, lastName: Option<string>, firstName: Option<string>, midInitials: Option<string>, email: Option<string>, phone: Option<string>, fax: Option<string>, address: Option<string>, affiliation: Option<string>, roles: OntologyAnnotation[], comments: Comment$[]): Person;
|
|
43
|
+
static create(orcid?: string, lastName?: string, firstName?: string, midInitials?: string, email?: string, phone?: string, fax?: string, address?: string, affiliation?: string, roles?: OntologyAnnotation[], comments?: Comment$[]): Person;
|
|
44
|
+
static get empty(): Person;
|
|
45
|
+
static tryGetByFullName(firstName: string, midInitials: string, lastName: string, persons: Person[]): Option<Person>;
|
|
46
|
+
static existsByFullName(firstName: string, midInitials: string, lastName: string, persons: Person[]): boolean;
|
|
47
|
+
static add(persons: FSharpList<Person>, person: Person): FSharpList<Person>;
|
|
48
|
+
static removeByFullName(firstName: string, midInitials: string, lastName: string, persons: Person[]): Person[];
|
|
49
|
+
Copy(): Person;
|
|
50
|
+
GetHashCode(): int32;
|
|
51
|
+
Equals(obj: any): boolean;
|
|
52
|
+
toString(): string;
|
|
53
|
+
}
|
|
54
|
+
export declare function Person_$reflection(): TypeInfo;
|
|
55
|
+
export declare function Person_$ctor_Z2F6491B5(orcid?: string, lastName?: string, firstName?: string, midInitials?: string, email?: string, phone?: string, fax?: string, address?: string, affiliation?: string, roles?: OntologyAnnotation[], comments?: Comment$[]): Person;
|
|
56
|
+
//# sourceMappingURL=Person.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Person.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Core/Person.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
import { defaultArg, unwrap, map as map$1 } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
2
|
+
import { tryFind } from '../../node_modules/@fable-org/fable-library-js/Array.js';
|
|
3
|
+
import { equals } from '../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
4
|
+
import { append, singleton, map, choose, ofArray } from '../../node_modules/@fable-org/fable-library-js/List.js';
|
|
5
|
+
import { ResizeArray_map } from './Helper/Collections.js';
|
|
6
|
+
import { boxHashArray, boxHashOption, boxHashSeq, hash } from './Helper/HashCodes.js';
|
|
7
|
+
import { StringBuilder_$ctor, StringBuilder__Append_Z721C83C5 } from '../../node_modules/@fable-org/fable-library-js/System.Text.js';
|
|
8
|
+
import { join, toText, printf } from '../../node_modules/@fable-org/fable-library-js/String.js';
|
|
9
|
+
import { length } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
10
|
+
import { toString } from '../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
11
|
+
|
|
12
|
+
class Person {
|
|
13
|
+
constructor(orcid, lastName, firstName, midInitials, email, phone, fax, address, affiliation, roles, comments) {
|
|
14
|
+
this._orcid = orcid;
|
|
15
|
+
this._lastName = lastName;
|
|
16
|
+
this._firstName = firstName;
|
|
17
|
+
this._midInitials = midInitials;
|
|
18
|
+
this._email = email;
|
|
19
|
+
this._phone = phone;
|
|
20
|
+
this._fax = fax;
|
|
21
|
+
this._address = address;
|
|
22
|
+
this._affiliation = affiliation;
|
|
23
|
+
this._roles = defaultArg(roles, []);
|
|
24
|
+
this._comments = defaultArg(comments, []);
|
|
25
|
+
}
|
|
26
|
+
get ORCID() {
|
|
27
|
+
const this$ = this;
|
|
28
|
+
return unwrap(this$._orcid);
|
|
29
|
+
}
|
|
30
|
+
set ORCID(orcid) {
|
|
31
|
+
const this$ = this;
|
|
32
|
+
this$._orcid = orcid;
|
|
33
|
+
}
|
|
34
|
+
get FirstName() {
|
|
35
|
+
const this$ = this;
|
|
36
|
+
return unwrap(this$._firstName);
|
|
37
|
+
}
|
|
38
|
+
set FirstName(firstName) {
|
|
39
|
+
const this$ = this;
|
|
40
|
+
this$._firstName = firstName;
|
|
41
|
+
}
|
|
42
|
+
get LastName() {
|
|
43
|
+
const this$ = this;
|
|
44
|
+
return unwrap(this$._lastName);
|
|
45
|
+
}
|
|
46
|
+
set LastName(lastName) {
|
|
47
|
+
const this$ = this;
|
|
48
|
+
this$._lastName = lastName;
|
|
49
|
+
}
|
|
50
|
+
get MidInitials() {
|
|
51
|
+
const this$ = this;
|
|
52
|
+
return unwrap(this$._midInitials);
|
|
53
|
+
}
|
|
54
|
+
set MidInitials(midInitials) {
|
|
55
|
+
const this$ = this;
|
|
56
|
+
this$._midInitials = midInitials;
|
|
57
|
+
}
|
|
58
|
+
get Address() {
|
|
59
|
+
const this$ = this;
|
|
60
|
+
return unwrap(this$._address);
|
|
61
|
+
}
|
|
62
|
+
set Address(address) {
|
|
63
|
+
const this$ = this;
|
|
64
|
+
this$._address = address;
|
|
65
|
+
}
|
|
66
|
+
get Affiliation() {
|
|
67
|
+
const this$ = this;
|
|
68
|
+
return unwrap(this$._affiliation);
|
|
69
|
+
}
|
|
70
|
+
set Affiliation(affiliation) {
|
|
71
|
+
const this$ = this;
|
|
72
|
+
this$._affiliation = affiliation;
|
|
73
|
+
}
|
|
74
|
+
get EMail() {
|
|
75
|
+
const this$ = this;
|
|
76
|
+
return unwrap(this$._email);
|
|
77
|
+
}
|
|
78
|
+
set EMail(email) {
|
|
79
|
+
const this$ = this;
|
|
80
|
+
this$._email = email;
|
|
81
|
+
}
|
|
82
|
+
get Phone() {
|
|
83
|
+
const this$ = this;
|
|
84
|
+
return unwrap(this$._phone);
|
|
85
|
+
}
|
|
86
|
+
set Phone(phone) {
|
|
87
|
+
const this$ = this;
|
|
88
|
+
this$._phone = phone;
|
|
89
|
+
}
|
|
90
|
+
get Fax() {
|
|
91
|
+
const this$ = this;
|
|
92
|
+
return unwrap(this$._fax);
|
|
93
|
+
}
|
|
94
|
+
set Fax(fax) {
|
|
95
|
+
const this$ = this;
|
|
96
|
+
this$._fax = fax;
|
|
97
|
+
}
|
|
98
|
+
get Roles() {
|
|
99
|
+
const this$ = this;
|
|
100
|
+
return this$._roles;
|
|
101
|
+
}
|
|
102
|
+
set Roles(roles) {
|
|
103
|
+
const this$ = this;
|
|
104
|
+
this$._roles = roles;
|
|
105
|
+
}
|
|
106
|
+
get Comments() {
|
|
107
|
+
const this$ = this;
|
|
108
|
+
return this$._comments;
|
|
109
|
+
}
|
|
110
|
+
set Comments(comments) {
|
|
111
|
+
const this$ = this;
|
|
112
|
+
this$._comments = comments;
|
|
113
|
+
}
|
|
114
|
+
static make(orcid, lastName, firstName, midInitials, email, phone, fax, address, affiliation, roles, comments) {
|
|
115
|
+
return new Person(unwrap(orcid), unwrap(lastName), unwrap(firstName), unwrap(midInitials), unwrap(email), unwrap(phone), unwrap(fax), unwrap(address), unwrap(affiliation), roles, comments);
|
|
116
|
+
}
|
|
117
|
+
static create(orcid, lastName, firstName, midInitials, email, phone, fax, address, affiliation, roles, comments) {
|
|
118
|
+
const roles_1 = defaultArg(roles, []);
|
|
119
|
+
const comments_1 = defaultArg(comments, []);
|
|
120
|
+
return Person.make(orcid, lastName, firstName, midInitials, email, phone, fax, address, affiliation, roles_1, comments_1);
|
|
121
|
+
}
|
|
122
|
+
static get empty() {
|
|
123
|
+
return Person.create();
|
|
124
|
+
}
|
|
125
|
+
static tryGetByFullName(firstName, midInitials, lastName, persons) {
|
|
126
|
+
return tryFind((p) => {
|
|
127
|
+
if (midInitials === "") {
|
|
128
|
+
if (equals(p.FirstName, firstName)) {
|
|
129
|
+
return equals(p.LastName, lastName);
|
|
130
|
+
} else {
|
|
131
|
+
return false;
|
|
132
|
+
}
|
|
133
|
+
} else if (equals(p.FirstName, firstName) && equals(p.MidInitials, midInitials)) {
|
|
134
|
+
return equals(p.LastName, lastName);
|
|
135
|
+
} else {
|
|
136
|
+
return false;
|
|
137
|
+
}
|
|
138
|
+
}, persons);
|
|
139
|
+
}
|
|
140
|
+
static existsByFullName(firstName, midInitials, lastName, persons) {
|
|
141
|
+
return persons.some((p) => midInitials === "" ? equals(p.FirstName, firstName) && equals(p.LastName, lastName) : equals(p.FirstName, firstName) && equals(p.MidInitials, midInitials) && equals(p.LastName, lastName));
|
|
142
|
+
}
|
|
143
|
+
static add(persons, person) {
|
|
144
|
+
return append(persons, singleton(person));
|
|
145
|
+
}
|
|
146
|
+
static removeByFullName(firstName, midInitials, lastName, persons) {
|
|
147
|
+
return persons.filter((p) => midInitials === "" ? !(equals(p.FirstName, firstName) && equals(p.LastName, lastName)) : !(equals(p.FirstName, firstName) && equals(p.MidInitials, midInitials) && equals(p.LastName, lastName)));
|
|
148
|
+
}
|
|
149
|
+
Copy() {
|
|
150
|
+
const this$ = this;
|
|
151
|
+
const nextComments = ResizeArray_map((c) => c.Copy(), this$.Comments);
|
|
152
|
+
const nextRoles = ResizeArray_map((c_1) => c_1.Copy(), this$.Roles);
|
|
153
|
+
const orcid = this$.ORCID;
|
|
154
|
+
const lastName = this$.LastName;
|
|
155
|
+
const firstName = this$.FirstName;
|
|
156
|
+
const midInitials = this$.MidInitials;
|
|
157
|
+
const email = this$.EMail;
|
|
158
|
+
const phone = this$.Phone;
|
|
159
|
+
const fax = this$.Fax;
|
|
160
|
+
const address = this$.Address;
|
|
161
|
+
const affiliation = this$.Affiliation;
|
|
162
|
+
return Person.make(orcid, lastName, firstName, midInitials, email, phone, fax, address, affiliation, nextRoles, nextComments);
|
|
163
|
+
}
|
|
164
|
+
GetHashCode() {
|
|
165
|
+
const this$ = this;
|
|
166
|
+
return boxHashArray([boxHashOption(this$.ORCID), boxHashOption(this$.LastName), boxHashOption(this$.FirstName), boxHashOption(this$.MidInitials), boxHashOption(this$.EMail), boxHashOption(this$.Phone), boxHashOption(this$.Fax), boxHashOption(this$.Address), boxHashOption(this$.Affiliation), boxHashSeq(this$.Roles), boxHashSeq(this$.Comments)]) | 0;
|
|
167
|
+
}
|
|
168
|
+
Equals(obj) {
|
|
169
|
+
const this$ = this;
|
|
170
|
+
return hash(this$) === hash(obj);
|
|
171
|
+
}
|
|
172
|
+
toString() {
|
|
173
|
+
let arg, arg_1;
|
|
174
|
+
const this$ = this;
|
|
175
|
+
const sb = StringBuilder_$ctor();
|
|
176
|
+
StringBuilder__Append_Z721C83C5(sb, "Person {\n ");
|
|
177
|
+
StringBuilder__Append_Z721C83C5(sb, join(",\n ", map((tupledArg_1) => toText(printf("%s = %A"))(tupledArg_1[0])(tupledArg_1[1]), choose((tupledArg) => map$1((o) => [tupledArg[0], o], tupledArg[1]), ofArray([["FirstName", this$.FirstName], ["LastName", this$.LastName], ["MidInitials", this$.MidInitials], ["EMail", this$.EMail], ["Phone", this$.Phone], ["Address", this$.Address], ["Affiliation", this$.Affiliation], ["Fax", this$.Fax], ["ORCID", this$.ORCID], ["Roles", length(this$.Roles) > 0 ? (arg = this$.Roles, toText(printf("%A"))(arg)) : void 0], ["Comments", length(this$.Comments) > 0 ? (arg_1 = this$.Comments, toText(printf("%A"))(arg_1)) : void 0]])))));
|
|
178
|
+
StringBuilder__Append_Z721C83C5(sb, "\n}");
|
|
179
|
+
return toString(sb);
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
export { Person };
|