@nfdi4plants/arctrl 3.1.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ts/index.d.ts +3 -0
- package/dist/ts/index.d.ts.map +1 -1
- package/dist/ts/index.js +3 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Array.js +1296 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Async.js +174 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/AsyncBuilder.js +190 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/BigInt.js +479 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Boolean.js +23 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Char.js +172 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Choice.js +187 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/CollectionUtil.js +148 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Date.js +843 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/DateOffset.js +247 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Decimal.js +279 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Double.js +53 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Collections.js +48 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Core.js +148 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Global.js +31 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Guid.js +140 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Int32.js +165 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/List.js +1282 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Long.js +40 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Map.js +1298 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MapUtil.js +126 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableMap.js +323 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableSet.js +225 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Native.js +14 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Numeric.js +63 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Option.js +81 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Random.js +174 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Range.js +47 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Reflection.js +471 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/RegExp.js +137 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Result.js +169 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq.js +1398 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq2.js +110 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Set.js +1670 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/String.js +660 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Collections.Generic.js +328 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Text.js +201 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.js +292 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/TimeSpan.js +170 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Types.js +199 -0
- package/dist/ts/node_modules/@fable-org/{fable-library-js → fable-library-ts}/Unicode.13.0.0.js +0 -2
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Uri.js +154 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Util.js +747 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/lib/big.js +1052 -0
- package/dist/ts/ts/ARC.d.ts +122 -62
- package/dist/ts/ts/ARC.d.ts.map +1 -1
- package/dist/ts/ts/ARC.js +142 -86
- package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts +32 -0
- package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts.map +1 -0
- package/dist/ts/ts/CWL/CWLKnownFieldNames.js +95 -0
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts +12 -12
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLProcessingUnit.js +7 -7
- package/dist/ts/ts/CWL/CWLTypes.d.ts +219 -59
- package/dist/ts/ts/CWL/CWLTypes.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLTypes.js +696 -124
- package/dist/ts/ts/CWL/Decode.d.ts +303 -61
- package/dist/ts/ts/CWL/Decode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Decode.js +1162 -679
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts +37 -0
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts.map +1 -0
- package/dist/ts/ts/CWL/DynamicObjHelpers.js +57 -0
- package/dist/ts/ts/CWL/Encode.d.ts +138 -14
- package/dist/ts/ts/CWL/Encode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Encode.js +798 -522
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts +32 -6
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ExpressionToolDescription.js +31 -3
- package/dist/ts/ts/CWL/HashHelpers.d.ts +4 -3
- package/dist/ts/ts/CWL/HashHelpers.d.ts.map +1 -1
- package/dist/ts/ts/CWL/HashHelpers.js +9 -9
- package/dist/ts/ts/CWL/Inputs.d.ts +69 -18
- package/dist/ts/ts/CWL/Inputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Inputs.js +191 -52
- package/dist/ts/ts/CWL/OperationDescription.d.ts +8 -6
- package/dist/ts/ts/CWL/OperationDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/OperationDescription.js +7 -3
- package/dist/ts/ts/CWL/Outputs.d.ts +55 -16
- package/dist/ts/ts/CWL/Outputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Outputs.js +170 -75
- package/dist/ts/ts/CWL/ParameterReference.d.ts +15 -9
- package/dist/ts/ts/CWL/ParameterReference.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ParameterReference.js +36 -17
- package/dist/ts/ts/CWL/ParameterValue.d.ts +57 -0
- package/dist/ts/ts/CWL/ParameterValue.d.ts.map +1 -0
- package/dist/ts/ts/CWL/ParameterValue.js +321 -0
- package/dist/ts/ts/CWL/Requirements.d.ts +183 -66
- package/dist/ts/ts/CWL/Requirements.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Requirements.js +475 -137
- package/dist/ts/ts/CWL/ToolDescription.d.ts +57 -8
- package/dist/ts/ts/CWL/ToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ToolDescription.js +98 -7
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts +30 -7
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowDescription.js +28 -3
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts +91 -36
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowSteps.js +206 -41
- package/dist/ts/ts/CWLRunResolver.d.ts +11 -11
- package/dist/ts/ts/CWLRunResolver.d.ts.map +1 -1
- package/dist/ts/ts/CWLRunResolver.js +16 -16
- package/dist/ts/ts/Contract/ARC.d.ts +2 -2
- package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ARC.js +1 -1
- package/dist/ts/ts/Contract/ArcAssay.d.ts +7 -6
- package/dist/ts/ts/Contract/ArcAssay.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcAssay.js +15 -10
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts +5 -4
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcInvestigation.js +12 -7
- package/dist/ts/ts/Contract/ArcRun.d.ts +11 -10
- package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcRun.js +24 -21
- package/dist/ts/ts/Contract/ArcStudy.d.ts +8 -7
- package/dist/ts/ts/Contract/ArcStudy.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcStudy.js +15 -10
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts +9 -8
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcWorkflow.js +20 -16
- package/dist/ts/ts/Contract/Contract.d.ts +38 -8
- package/dist/ts/ts/Contract/Contract.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Contract.js +46 -7
- package/dist/ts/ts/Contract/Datamap.d.ts +5 -4
- package/dist/ts/ts/Contract/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Datamap.js +45 -32
- package/dist/ts/ts/Contract/Git.d.ts +6 -5
- package/dist/ts/ts/Contract/Git.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Git.js +4 -4
- package/dist/ts/ts/Contract/License.d.ts +4 -3
- package/dist/ts/ts/Contract/License.d.ts.map +1 -1
- package/dist/ts/ts/Contract/License.js +5 -5
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts +5 -4
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ValidationPackagesConfig.js +6 -7
- package/dist/ts/ts/ContractIO/ContractIO.d.ts +5 -4
- package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/ContractIO.js +49 -44
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts +13 -12
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/FileSystemHelper.js +6 -6
- package/dist/ts/ts/Conversion/Assay.d.ts +5 -5
- package/dist/ts/ts/Conversion/Assay.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Assay.js +38 -18
- package/dist/ts/ts/Conversion/Basic.d.ts +16 -13
- package/dist/ts/ts/Conversion/Basic.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Basic.js +69 -38
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts +3 -3
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/ColumnIndex.js +8 -8
- package/dist/ts/ts/Conversion/Datamap.d.ts +4 -4
- package/dist/ts/ts/Conversion/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Datamap.js +2 -2
- package/dist/ts/ts/Conversion/DateTime.d.ts +1 -1
- package/dist/ts/ts/Conversion/DateTime.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/DateTime.js +7 -6
- package/dist/ts/ts/Conversion/Investigation.d.ts +5 -5
- package/dist/ts/ts/Conversion/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Investigation.js +19 -12
- package/dist/ts/ts/Conversion/Person.d.ts +5 -5
- package/dist/ts/ts/Conversion/Person.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Person.js +57 -25
- package/dist/ts/ts/Conversion/Process.d.ts +14 -11
- package/dist/ts/ts/Conversion/Process.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Process.js +57 -46
- package/dist/ts/ts/Conversion/Run.d.ts +12 -17
- package/dist/ts/ts/Conversion/Run.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Run.js +452 -69
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts +4 -4
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/ScholarlyArticle.js +26 -17
- package/dist/ts/ts/Conversion/Study.d.ts +5 -5
- package/dist/ts/ts/Conversion/Study.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Study.js +30 -15
- package/dist/ts/ts/Conversion/Table.d.ts +10 -11
- package/dist/ts/ts/Conversion/Table.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Table.js +17 -24
- package/dist/ts/ts/Conversion/Workflow.d.ts +17 -17
- package/dist/ts/ts/Conversion/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Workflow.js +86 -47
- package/dist/ts/ts/Conversion.d.ts +24 -21
- package/dist/ts/ts/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Conversion.js +20 -13
- package/dist/ts/ts/Core/ArcTypes.d.ts +331 -76
- package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -1
- package/dist/ts/ts/Core/ArcTypes.js +585 -299
- package/dist/ts/ts/Core/Comment.d.ts +5 -5
- package/dist/ts/ts/Core/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Core/Comment.js +17 -10
- package/dist/ts/ts/Core/CommentList.d.ts +3 -3
- package/dist/ts/ts/Core/CommentList.d.ts.map +1 -1
- package/dist/ts/ts/Core/CommentList.js +8 -8
- package/dist/ts/ts/Core/Conversion.d.ts +25 -25
- package/dist/ts/ts/Core/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Core/Conversion.js +102 -102
- package/dist/ts/ts/Core/Data.d.ts +6 -6
- package/dist/ts/ts/Core/Data.d.ts.map +1 -1
- package/dist/ts/ts/Core/Data.js +11 -10
- package/dist/ts/ts/Core/DataContext.d.ts +10 -10
- package/dist/ts/ts/Core/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Core/DataContext.js +3 -3
- package/dist/ts/ts/Core/DataFile.d.ts +9 -6
- package/dist/ts/ts/Core/DataFile.d.ts.map +1 -1
- package/dist/ts/ts/Core/DataFile.js +20 -9
- package/dist/ts/ts/Core/Datamap.d.ts +17 -16
- package/dist/ts/ts/Core/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Core/Datamap.js +16 -14
- package/dist/ts/ts/Core/Helper/Collections.d.ts +4 -4
- package/dist/ts/ts/Core/Helper/Collections.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Collections.js +30 -37
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts +15 -4
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/HashCodes.js +33 -14
- package/dist/ts/ts/Core/Helper/Identifier.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.js +10 -8
- package/dist/ts/ts/Core/Helper/ORCID.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/ORCID.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/ORCID.js +4 -3
- package/dist/ts/ts/Core/Helper/Regex.d.ts +7 -7
- package/dist/ts/ts/Core/Helper/Regex.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Regex.js +20 -12
- package/dist/ts/ts/Core/Helper/SemVer.d.ts +5 -5
- package/dist/ts/ts/Core/Helper/SemVer.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/SemVer.js +7 -7
- package/dist/ts/ts/Core/Helper/Url.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/Url.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Url.js +8 -7
- package/dist/ts/ts/Core/IdentifierSetters.d.ts +2 -2
- package/dist/ts/ts/Core/IdentifierSetters.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts +23 -5
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologyAnnotation.js +116 -45
- package/dist/ts/ts/Core/OntologySourceReference.d.ts +4 -4
- package/dist/ts/ts/Core/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologySourceReference.js +4 -4
- package/dist/ts/ts/Core/Person.d.ts +19 -9
- package/dist/ts/ts/Core/Person.d.ts.map +1 -1
- package/dist/ts/ts/Core/Person.js +27 -11
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts +11 -11
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ColumnIndex.js +68 -29
- package/dist/ts/ts/Core/Process/Component.d.ts +16 -16
- package/dist/ts/ts/Core/Process/Component.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Component.js +38 -25
- package/dist/ts/ts/Core/Process/Factor.d.ts +53 -8
- package/dist/ts/ts/Core/Process/Factor.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Factor.js +62 -11
- package/dist/ts/ts/Core/Process/FactorValue.d.ts +15 -15
- package/dist/ts/ts/Core/Process/FactorValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/FactorValue.js +39 -47
- package/dist/ts/ts/Core/Process/Material.d.ts +9 -9
- package/dist/ts/ts/Core/Process/Material.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Material.js +5 -5
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts +7 -7
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialAttribute.js +17 -8
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts +15 -15
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +45 -48
- package/dist/ts/ts/Core/Process/MaterialType.d.ts +7 -5
- package/dist/ts/ts/Core/Process/MaterialType.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialType.js +14 -7
- package/dist/ts/ts/Core/Process/Process.d.ts +22 -22
- package/dist/ts/ts/Core/Process/Process.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Process.js +42 -26
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts +14 -14
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessInput.js +15 -10
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts +14 -14
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessOutput.js +15 -10
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts +30 -15
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessParameterValue.js +56 -46
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts +16 -16
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessSequence.js +33 -26
- package/dist/ts/ts/Core/Process/Protocol.d.ts +9 -9
- package/dist/ts/ts/Core/Process/Protocol.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Protocol.js +21 -13
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts +28 -7
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProtocolParameter.js +33 -8
- package/dist/ts/ts/Core/Process/Sample.d.ts +10 -10
- package/dist/ts/ts/Core/Process/Sample.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Sample.js +5 -5
- package/dist/ts/ts/Core/Process/Source.d.ts +8 -8
- package/dist/ts/ts/Core/Process/Source.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Source.js +5 -5
- package/dist/ts/ts/Core/Publication.d.ts +5 -5
- package/dist/ts/ts/Core/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Core/Publication.js +18 -11
- package/dist/ts/ts/Core/ScalarValue.d.ts +41 -0
- package/dist/ts/ts/Core/ScalarValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/{Value.js → ScalarValue.js} +56 -29
- package/dist/ts/ts/Core/Table/ArcTable.d.ts +134 -15
- package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTable.js +204 -68
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts +15 -10
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTableAux.js +75 -71
- package/dist/ts/ts/Core/Table/ArcTables.d.ts +12 -9
- package/dist/ts/ts/Core/Table/ArcTables.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTables.js +42 -38
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts +46 -7
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeCell.js +52 -12
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts +20 -7
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeColumn.js +17 -4
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts +116 -22
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeHeader.js +219 -65
- package/dist/ts/ts/Core/Template.d.ts +15 -9
- package/dist/ts/ts/Core/Template.d.ts.map +1 -1
- package/dist/ts/ts/Core/Template.js +19 -11
- package/dist/ts/ts/Core/Templates.d.ts +24 -5
- package/dist/ts/ts/Core/Templates.d.ts.map +1 -1
- package/dist/ts/ts/Core/Templates.js +26 -8
- package/dist/ts/ts/Core/URI.d.ts.map +1 -1
- package/dist/ts/ts/CrossAsync.d.ts +6 -5
- package/dist/ts/ts/CrossAsync.d.ts.map +1 -1
- package/dist/ts/ts/CrossAsync.js +6 -6
- package/dist/ts/ts/FileSystem/Commit.d.ts +3 -3
- package/dist/ts/ts/FileSystem/Commit.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Commit.js +2 -2
- package/dist/ts/ts/FileSystem/FileSystem.d.ts +9 -9
- package/dist/ts/ts/FileSystem/FileSystem.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystem.js +4 -4
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +35 -16
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystemTree.js +36 -18
- package/dist/ts/ts/FileSystem/Path.d.ts +9 -8
- package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Path.js +13 -13
- package/dist/ts/ts/Json/Assay.d.ts +9 -9
- package/dist/ts/ts/Json/Assay.d.ts.map +1 -1
- package/dist/ts/ts/Json/Assay.js +86 -50
- package/dist/ts/ts/Json/Comment.d.ts +4 -4
- package/dist/ts/ts/Json/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Json/Comment.js +38 -17
- package/dist/ts/ts/Json/Data.d.ts +7 -7
- package/dist/ts/ts/Json/Data.d.ts.map +1 -1
- package/dist/ts/ts/Json/Data.js +48 -20
- package/dist/ts/ts/Json/DataFile.d.ts +2 -2
- package/dist/ts/ts/Json/DataFile.d.ts.map +1 -1
- package/dist/ts/ts/Json/DataFile.js +10 -9
- package/dist/ts/ts/Json/Datamap/DataContext.d.ts +2 -2
- package/dist/ts/ts/Json/Datamap/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/Datamap/DataContext.js +14 -7
- package/dist/ts/ts/Json/Datamap/Datamap.d.ts +7 -7
- package/dist/ts/ts/Json/Datamap/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Json/Datamap/Datamap.js +4 -4
- package/dist/ts/ts/Json/Decode.d.ts +6 -6
- package/dist/ts/ts/Json/Decode.d.ts.map +1 -1
- package/dist/ts/ts/Json/Decode.js +32 -32
- package/dist/ts/ts/Json/Encode.d.ts +6 -5
- package/dist/ts/ts/Json/Encode.d.ts.map +1 -1
- package/dist/ts/ts/Json/Encode.js +28 -26
- package/dist/ts/ts/Json/IDTable.d.ts +2 -2
- package/dist/ts/ts/Json/IDTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/IDTable.js +2 -2
- package/dist/ts/ts/Json/Investigation.d.ts +9 -9
- package/dist/ts/ts/Json/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/Json/Investigation.js +68 -33
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts +6 -6
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Json/OntologyAnnotation.js +60 -25
- package/dist/ts/ts/Json/OntologySourceReference.d.ts +4 -4
- package/dist/ts/ts/Json/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Json/OntologySourceReference.js +36 -15
- package/dist/ts/ts/Json/Person.d.ts +5 -5
- package/dist/ts/ts/Json/Person.d.ts.map +1 -1
- package/dist/ts/ts/Json/Person.js +57 -29
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts +5 -5
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/AssayMaterials.js +12 -5
- package/dist/ts/ts/Json/Process/Component.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Component.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Component.js +25 -11
- package/dist/ts/ts/Json/Process/Factor.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Factor.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Factor.js +17 -9
- package/dist/ts/ts/Json/Process/FactorValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/FactorValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/FactorValue.js +14 -7
- package/dist/ts/ts/Json/Process/Material.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Material.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Material.js +31 -31
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts +4 -4
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttribute.js +16 -8
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +14 -7
- package/dist/ts/ts/Json/Process/MaterialType.d.ts +2 -2
- package/dist/ts/ts/Json/Process/MaterialType.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialType.js +9 -8
- package/dist/ts/ts/Json/Process/Process.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Process.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Process.js +28 -14
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessInput.js +2 -2
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessOutput.js +2 -2
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessParameterValue.js +16 -8
- package/dist/ts/ts/Json/Process/Protocol.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Protocol.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Protocol.js +30 -16
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProtocolParameter.js +16 -8
- package/dist/ts/ts/Json/Process/Sample.d.ts +7 -7
- package/dist/ts/ts/Json/Process/Sample.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Sample.js +37 -60
- package/dist/ts/ts/Json/Process/Source.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Source.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Source.js +34 -57
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts +5 -5
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/StudyMaterials.js +12 -5
- package/dist/ts/ts/Json/Process/Value.d.ts +6 -6
- package/dist/ts/ts/Json/Process/Value.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Value.js +4 -4
- package/dist/ts/ts/Json/PropertyValue.d.ts +6 -6
- package/dist/ts/ts/Json/PropertyValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/PropertyValue.js +31 -22
- package/dist/ts/ts/Json/Publication.d.ts +5 -5
- package/dist/ts/ts/Json/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Json/Publication.js +36 -15
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDContext.js +17 -16
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDGraph.js +21 -14
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDNode.js +94 -29
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDRef.js +4 -4
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDValue.js +8 -7
- package/dist/ts/ts/Json/Run.d.ts +7 -7
- package/dist/ts/ts/Json/Run.d.ts.map +1 -1
- package/dist/ts/ts/Json/Run.js +28 -14
- package/dist/ts/ts/Json/StringTable.d.ts +7 -7
- package/dist/ts/ts/Json/StringTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/StringTable.js +10 -10
- package/dist/ts/ts/Json/Study.d.ts +9 -9
- package/dist/ts/ts/Json/Study.d.ts.map +1 -1
- package/dist/ts/ts/Json/Study.js +79 -45
- package/dist/ts/ts/Json/Table/ArcTable.d.ts +10 -10
- package/dist/ts/ts/Json/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/ArcTable.js +28 -28
- package/dist/ts/ts/Json/Table/CellTable.d.ts +9 -9
- package/dist/ts/ts/Json/Table/CellTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CellTable.js +8 -8
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts +6 -6
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CompositeCell.js +7 -7
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts +2 -2
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CompositeHeader.js +7 -7
- package/dist/ts/ts/Json/Table/IOType.d.ts +2 -2
- package/dist/ts/ts/Json/Table/IOType.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/IOType.js +2 -2
- package/dist/ts/ts/Json/Table/OATable.d.ts +8 -8
- package/dist/ts/ts/Json/Table/OATable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/OATable.js +8 -8
- package/dist/ts/ts/Json/Table/Templates.d.ts +9 -9
- package/dist/ts/ts/Json/Table/Templates.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/Templates.js +11 -11
- package/dist/ts/ts/Json/Workflow.d.ts +7 -7
- package/dist/ts/ts/Json/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Json/Workflow.js +28 -14
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts +1 -1
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/property_value_context.js +1 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +3 -3
- package/dist/ts/ts/Json.d.ts +10 -10
- package/dist/ts/ts/Json.d.ts.map +1 -1
- package/dist/ts/ts/Json.js +5 -5
- package/dist/ts/ts/JsonIO/Assay.d.ts +6 -7
- package/dist/ts/ts/JsonIO/Assay.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Assay.js +13 -12
- package/dist/ts/ts/JsonIO/Datamap.d.ts +3 -4
- package/dist/ts/ts/JsonIO/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Datamap.js +7 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts +5 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Investigation.js +11 -10
- package/dist/ts/ts/JsonIO/LDObject.d.ts +5 -6
- package/dist/ts/ts/JsonIO/LDObject.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/LDObject.js +14 -13
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts +5 -6
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/OntologyAnnotation.js +11 -10
- package/dist/ts/ts/JsonIO/Person.d.ts +5 -6
- package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Person.js +11 -10
- package/dist/ts/ts/JsonIO/Run.d.ts +4 -5
- package/dist/ts/ts/JsonIO/Run.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Run.js +9 -8
- package/dist/ts/ts/JsonIO/Study.d.ts +7 -8
- package/dist/ts/ts/JsonIO/Study.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Study.js +13 -12
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts +6 -6
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Table/Compression.js +4 -4
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts +10 -10
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Table/Templates.js +13 -12
- package/dist/ts/ts/JsonIO/Workflow.d.ts +4 -5
- package/dist/ts/ts/JsonIO/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Workflow.js +9 -8
- package/dist/ts/ts/License.d.ts +12 -6
- package/dist/ts/ts/License.d.ts.map +1 -1
- package/dist/ts/ts/License.js +49 -14
- package/dist/ts/ts/ROCrate/Helper.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/Helper.js +1 -1
- package/dist/ts/ts/ROCrate/LDContext.d.ts +15 -4
- package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDContext.js +27 -16
- package/dist/ts/ts/ROCrate/LDObject.d.ts +19 -10
- package/dist/ts/ts/ROCrate/LDObject.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDObject.js +76 -38
- package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Comment.js +11 -9
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts +5 -5
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.js +18 -16
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.js +22 -16
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.js +15 -13
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.js +25 -23
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.js +48 -45
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.js +11 -9
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/File.js +15 -13
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.js +18 -16
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.js +16 -14
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.js +17 -16
- package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Organization.js +8 -6
- package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Person.js +28 -25
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.js +17 -16
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts +10 -6
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.js +104 -61
- package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Sample.js +14 -13
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.js +12 -10
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts +5 -5
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.js +11 -10
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts +3 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.js +4 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts +3 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.js +4 -3
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.js +2 -2
- package/dist/ts/ts/ROCrateIO.d.ts +13 -8
- package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
- package/dist/ts/ts/ROCrateIO.js +16 -13
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +13 -12
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +15 -15
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -8
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +23 -12
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +17 -18
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +18 -17
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +37 -29
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts +6 -6
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcAssay.js +16 -15
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +21 -21
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcRun.js +9 -9
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcStudy.js +13 -12
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +9 -9
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts +8 -8
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/CollectionAux.js +11 -11
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts +2 -2
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Datamap.js +6 -5
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts +4 -4
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.js +14 -10
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.js +30 -21
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.js +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +12 -9
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +11 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +8 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts +9 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +9 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +11 -9
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Run.js +13 -10
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +55 -49
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Study.js +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +8 -8
- package/dist/ts/ts/Template.Web.d.ts +10 -6
- package/dist/ts/ts/Template.Web.d.ts.map +1 -1
- package/dist/ts/ts/Template.Web.js +4 -4
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts +6 -3
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackage.js +10 -7
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts +7 -4
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +29 -24
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts.map +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.Node.js +4 -4
- package/dist/ts/ts/WebRequest/WebRequest.d.ts +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.d.ts.map +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.js +3 -3
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts +6 -6
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/Adapters.js +13 -13
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts +7 -4
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/BuildOptions.js +2 -2
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts +25 -19
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/Builder.js +82 -68
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts +52 -32
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/GraphTypes.js +90 -30
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts +5 -5
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.js +6 -5
- package/dist/ts/ts/Xlsx.d.ts +5 -5
- package/dist/ts/ts/Xlsx.d.ts.map +1 -1
- package/dist/ts/ts/Xlsx.js +8 -6
- package/dist/ts/ts/Yaml/Encode.d.ts +2 -2
- package/dist/ts/ts/Yaml/Encode.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/Encode.js +2 -2
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts +4 -5
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackage.js +12 -12
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +4 -5
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +12 -12
- package/dist/ts/ts/Yaml.d.ts +3 -3
- package/dist/ts/ts/Yaml.d.ts.map +1 -1
- package/dist/ts/ts/Yaml.js +3 -8
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/DynObj.fs.js +6 -6
- package/dist/ts/ts/fable_modules/DynamicObj.8.0.0/DynamicObj.fs.js +515 -0
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/FableJS.fs.js +23 -8
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/HashCodes.fs.js +11 -11
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/PropertyHelper.fs.js +2 -2
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/ReflectionUtils.fs.js +16 -6
- package/dist/ts/ts/fable_modules/{Fable.Fetch.2.6.0 → Fable.Fetch.2.7.0}/Fetch.fs.js +11 -11
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +8 -7
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Http.fs.js +21 -21
- package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Types.fs.js +52 -19
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCell.fs.js +255 -126
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCellsCollection.fs.js +135 -18
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/CellBuilder.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Expression.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/RowBuilder.fs.js +5 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Types.fs.js +16 -16
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsAddress.fs.js +41 -17
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsColumn.fs.js +70 -7
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsRow.fs.js +76 -8
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorkbook.fs.js +77 -11
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorksheet.fs.js +237 -32
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/HashCodes.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Cell.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Column.fs.js +6 -6
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Row.fs.js +6 -6
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Table.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Value.fs.js +11 -11
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Workbook.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Worksheet.fs.js +8 -8
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRange.fs.js +6 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeAddress.fs.js +11 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeBase.fs.js +18 -13
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeColumn.fs.js +9 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeRow.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTable.fs.js +185 -26
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTableField.fs.js +48 -5
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.1/Cell.fs.js +65 -0
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/FsExtensions.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Json.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Table.fs.js +15 -14
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Workbook.fs.js +4 -4
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Worksheet.fs.js +4 -4
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Xlsx.fs.js +2 -2
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Decode.fs.js +265 -159
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Encode.fs.js +94 -36
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Types.fs.js +16 -22
- package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Decode.fs.js +9 -7
- package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Encode.fs.js +2 -3
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Decode.fs.js +100 -134
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Encode.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Escapes.fs.js +41 -34
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Persil.fs.js +56 -204
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Preprocessing.fs.js +319 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Reader.fs.js +1884 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Regex.fs.js +23 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/RegexActivePatterns.fs.js +16 -16
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Syntax.fs.js +840 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Writer.fs.js +106 -76
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/YAMLiciousTypes.fs.js +74 -32
- package/package.json +3 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +0 -1244
- package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +0 -146
- package/dist/ts/node_modules/@fable-org/fable-library-js/AsyncBuilder.js +0 -186
- package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +0 -286
- package/dist/ts/node_modules/@fable-org/fable-library-js/Boolean.js +0 -24
- package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +0 -172
- package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +0 -187
- package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +0 -185
- package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +0 -750
- package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +0 -271
- package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +0 -214
- package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +0 -49
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +0 -30
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +0 -72
- package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +0 -10
- package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +0 -145
- package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +0 -137
- package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +0 -1276
- package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +0 -49
- package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +0 -1399
- package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +0 -130
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +0 -330
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +0 -236
- package/dist/ts/node_modules/@fable-org/fable-library-js/Native.js +0 -10
- package/dist/ts/node_modules/@fable-org/fable-library-js/Numeric.js +0 -73
- package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +0 -99
- package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +0 -48
- package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +0 -465
- package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +0 -133
- package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +0 -168
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +0 -1381
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +0 -114
- package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +0 -1792
- package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +0 -557
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Collections.Generic.js +0 -320
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +0 -165
- package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +0 -8
- package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +0 -180
- package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +0 -211
- package/dist/ts/node_modules/@fable-org/fable-library-js/Uri.js +0 -160
- package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +0 -771
- package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +0 -825
- package/dist/ts/ts/Core/Value.d.ts +0 -41
- package/dist/ts/ts/Core/Value.d.ts.map +0 -1
- package/dist/ts/ts/fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js +0 -367
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +0 -68
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/FlowToBlock.fs.js +0 -956
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/Preprocessing.fs.js +0 -181
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/Reader.fs.js +0 -1493
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/Regex.fs.js +0 -21
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/StringBuffer.fs.js +0 -60
- /package/dist/ts/ts/fable_modules/{Fable.Exceljs.1.6.0 → Fable.Exceljs.2.0.0_565fc3e-alpha.1}/ExcelJs.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Interop/JsInterop.fs.js +0 -0
|
@@ -1,30 +1,38 @@
|
|
|
1
1
|
import { encoder, decoder } from '../PropertyValue.js';
|
|
2
2
|
import { ProcessParameterValue } from '../../Core/Process/ProcessParameterValue.js';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { value } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
4
|
+
import { Exception } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
5
|
+
import { choose, ofArray } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
5
6
|
import { tryInclude } from '../Encode.js';
|
|
6
7
|
import { ISAJson_encoder as ISAJson_encoder$1, ISAJson_decoder as ISAJson_decoder$1 } from './ProtocolParameter.js';
|
|
7
8
|
import { encoder as encoder$1, decoder as decoder$1 } from './Value.js';
|
|
8
9
|
import { OntologyAnnotation_ISAJson_encoder, OntologyAnnotation_ISAJson_decoder } from '../OntologyAnnotation.js';
|
|
9
|
-
import { map
|
|
10
|
-
import { object } from '../../fable_modules/Thoth.Json.Core.0.
|
|
10
|
+
import { map } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
11
|
+
import { object } from '../../fable_modules/Thoth.Json.Core.0.9.1/Decode.fs.js';
|
|
11
12
|
|
|
12
13
|
const ROCrate_encoder = encoder;
|
|
13
14
|
const ROCrate_decoder = decoder((alternateName, measurementMethod, description, category, value, unit) => ProcessParameterValue.createAsPV(alternateName, measurementMethod, description, category, value, unit));
|
|
14
15
|
function ISAJson_genID(oa) {
|
|
15
|
-
throw new
|
|
16
|
+
throw new Exception("Not implemented");
|
|
16
17
|
}
|
|
17
18
|
function ISAJson_encoder(idMap, oa) {
|
|
18
|
-
const values_1 = choose((tupledArg) =>
|
|
19
|
+
const values_1 = choose((tupledArg) => {
|
|
20
|
+
const option_1 = tupledArg[1];
|
|
21
|
+
if (option_1 != null) {
|
|
22
|
+
return [tupledArg[0], value(option_1)];
|
|
23
|
+
} else {
|
|
24
|
+
return void 0;
|
|
25
|
+
}
|
|
26
|
+
}, ofArray([tryInclude("category", (value) => ISAJson_encoder$1(idMap, value), oa.Category), tryInclude("value", (value_1) => encoder$1(idMap, value_1), oa.Value), tryInclude("unit", (oa_1) => OntologyAnnotation_ISAJson_encoder(idMap, oa_1), oa.Unit)]));
|
|
19
27
|
return {
|
|
20
28
|
Encode(helpers) {
|
|
21
|
-
const arg = map
|
|
29
|
+
const arg = map((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers)], values_1);
|
|
22
30
|
return helpers.encodeObject(arg);
|
|
23
31
|
}
|
|
24
32
|
};
|
|
25
33
|
}
|
|
26
34
|
const ISAJson_decoder = object((get$) => {
|
|
27
|
-
let objectArg, objectArg_1, objectArg_2;
|
|
35
|
+
let objectArg = void 0, objectArg_1 = void 0, objectArg_2 = void 0;
|
|
28
36
|
return new ProcessParameterValue((objectArg = get$.Optional, objectArg.Field("category", ISAJson_decoder$1)), (objectArg_1 = get$.Optional, objectArg_1.Field("value", decoder$1)), (objectArg_2 = get$.Optional, objectArg_2.Field("unit", OntologyAnnotation_ISAJson_decoder)));
|
|
29
37
|
});
|
|
30
38
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Option } from '@fable-org/fable-library-
|
|
2
|
-
import { Protocol } from '../../Core/Process/Protocol.
|
|
3
|
-
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.
|
|
4
|
-
import { IMap } from '@fable-org/fable-library-
|
|
1
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
2
|
+
import { Protocol } from '../../Core/Process/Protocol.ts';
|
|
3
|
+
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.9.1/Types.fs.js';
|
|
4
|
+
import { IMap } from '@fable-org/fable-library-ts/Util.ts';
|
|
5
5
|
export declare function ROCrate_genID(studyName: Option<string>, assayName: Option<string>, processName: Option<string>, p: Protocol): string;
|
|
6
6
|
export declare function ROCrate_encoder(studyName: Option<string>, assayName: Option<string>, processName: Option<string>, oa: Protocol): IEncodable;
|
|
7
7
|
export declare const ROCrate_decoder: Decoder$1<Protocol>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Protocol.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Process/Protocol.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Protocol.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Process/Protocol.ts"],"names":[],"mappings":"AACA,OAAO,EAAiC,MAAM,EAAE,MAAM,uCAAuC,CAAC;AAG9F,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAE1D,OAAO,EAAE,SAAS,EAAqB,UAAU,EAAE,MAAM,uDAAuD,CAAC;AAiBjH,OAAO,EAAE,IAAI,EAAE,MAAM,qCAAqC,CAAC;AAE3D,wBAAgB,aAAa,CAAC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,QAAQ,GAAG,MAAM,CA6EpI;AAED,wBAAgB,eAAe,CAAC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,QAAQ,GAAG,UAAU,CAyC3I;AAED,eAAO,MAAM,eAAe,EAAE,SAAS,CAAC,QAAQ,CAI9C,CAAC;AAEH,wBAAgB,eAAe,CAAC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC,EAAE,EAAE,EAAE,QAAQ,GAAG,UAAU,CA4CpL;AAED,eAAO,MAAM,eAAe,EAAE,SAAS,CAAC,QAAQ,CAG9C,CAAC"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { value,
|
|
2
|
-
import { replace } from '../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { value, defaultArg } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
2
|
+
import { replace } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
3
3
|
import { Protocol } from '../../Core/Process/Protocol.js';
|
|
4
|
-
import { choose, ofArray, singleton, empty, append } from '../../../node_modules/@fable-org/fable-library-
|
|
5
|
-
import { list } from '../../fable_modules/Thoth.Json.Core.0.
|
|
4
|
+
import { choose, ofArray, singleton, empty, append } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
5
|
+
import { list } from '../../fable_modules/Thoth.Json.Core.0.9.1/Encode.fs.js';
|
|
6
6
|
import { tryInclude, tryIncludeListOpt } from '../Encode.js';
|
|
7
7
|
import { OntologyAnnotation_ROCrate_encoderDefinedTerm, OntologyAnnotation_ROCrate_decoderDefinedTerm, OntologyAnnotation_ISAJson_encoder, OntologyAnnotation_ISAJson_decoder } from '../OntologyAnnotation.js';
|
|
8
8
|
import { ROCrate_encoder as ROCrate_encoder$1, ROCrate_decoder as ROCrate_decoder$1, ISAJson_encoder as ISAJson_encoder$2, ISAJson_decoder as ISAJson_decoder$2 } from './Component.js';
|
|
9
9
|
import { ROCrate_encoder as ROCrate_encoder$2, ROCrate_decoder as ROCrate_decoder$2, ISAJson_encoder as ISAJson_encoder$3, ISAJson_decoder as ISAJson_decoder$3 } from '../Comment.js';
|
|
10
10
|
import { context_jsonvalue } from '../context/rocrate/isa_protocol_context.js';
|
|
11
|
-
import { map
|
|
12
|
-
import { object, list as list$1, string } from '../../fable_modules/Thoth.Json.Core.0.
|
|
11
|
+
import { map } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
12
|
+
import { object, list as list$1, string } from '../../fable_modules/Thoth.Json.Core.0.9.1/Decode.fs.js';
|
|
13
13
|
import { Option_fromValueWithDefault } from '../../Core/Helper/Collections.js';
|
|
14
14
|
import { Decode_uri } from '../Decode.js';
|
|
15
15
|
import { ISAJson_encoder as ISAJson_encoder$1, ISAJson_decoder as ISAJson_decoder$1 } from './ProtocolParameter.js';
|
|
@@ -17,7 +17,7 @@ import { encode } from '../IDTable.js';
|
|
|
17
17
|
|
|
18
18
|
function ROCrate_genID(studyName, assayName, processName, p) {
|
|
19
19
|
const matchValue = p.ID;
|
|
20
|
-
let matchResult, id_1;
|
|
20
|
+
let matchResult = void 0, id_1 = void 0;
|
|
21
21
|
if (matchValue != null) {
|
|
22
22
|
if (value(matchValue) !== "") {
|
|
23
23
|
matchResult = 0;
|
|
@@ -36,7 +36,7 @@ function ROCrate_genID(studyName, assayName, processName, p) {
|
|
|
36
36
|
if (matchValue_1 == null) {
|
|
37
37
|
const matchValue_2 = p.Name;
|
|
38
38
|
if (matchValue_2 == null) {
|
|
39
|
-
let matchResult_1, an, pn, sn, pn_1, sn_1, pn_2;
|
|
39
|
+
let matchResult_1 = void 0, an = void 0, pn = void 0, sn = void 0, pn_1 = void 0, sn_1 = void 0, pn_2 = void 0;
|
|
40
40
|
if (studyName == null) {
|
|
41
41
|
if (assayName == null) {
|
|
42
42
|
if (processName != null) {
|
|
@@ -84,10 +84,17 @@ function ROCrate_genID(studyName, assayName, processName, p) {
|
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
function ROCrate_encoder(studyName, assayName, processName, oa) {
|
|
87
|
-
let value;
|
|
88
|
-
const values_1 = choose((tupledArg) =>
|
|
87
|
+
let value$1 = void 0;
|
|
88
|
+
const values_1 = choose((tupledArg) => {
|
|
89
|
+
const option_1 = tupledArg[1];
|
|
90
|
+
if (option_1 != null) {
|
|
91
|
+
return [tupledArg[0], value(option_1)];
|
|
92
|
+
} else {
|
|
93
|
+
return void 0;
|
|
94
|
+
}
|
|
95
|
+
}, ofArray([["@id", (value$1 = ROCrate_genID(studyName, assayName, processName, oa), {
|
|
89
96
|
Encode(helpers) {
|
|
90
|
-
return helpers.encodeString(value);
|
|
97
|
+
return helpers.encodeString(value$1);
|
|
91
98
|
}
|
|
92
99
|
})], ["@type", list(singleton({
|
|
93
100
|
Encode(helpers_1) {
|
|
@@ -112,19 +119,26 @@ function ROCrate_encoder(studyName, assayName, processName, oa) {
|
|
|
112
119
|
}), oa.Version), tryIncludeListOpt("components", ROCrate_encoder$1, oa.Components), tryIncludeListOpt("comments", ROCrate_encoder$2, oa.Comments), ["@context", context_jsonvalue]]));
|
|
113
120
|
return {
|
|
114
121
|
Encode(helpers_6) {
|
|
115
|
-
const arg = map
|
|
122
|
+
const arg = map((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_6)], values_1);
|
|
116
123
|
return helpers_6.encodeObject(arg);
|
|
117
124
|
}
|
|
118
125
|
};
|
|
119
126
|
}
|
|
120
127
|
const ROCrate_decoder = object((get$) => {
|
|
121
|
-
let list_3, list_1, arg_1, objectArg, arg_3, objectArg_1, arg_5, objectArg_2, objectArg_3, objectArg_4, objectArg_5, objectArg_6, objectArg_7, objectArg_8, arg_19, objectArg_9;
|
|
128
|
+
let list_3 = void 0, list_1 = void 0, arg_1 = void 0, objectArg = void 0, arg_3 = void 0, objectArg_1 = void 0, arg_5 = void 0, objectArg_2 = void 0, objectArg_3 = void 0, objectArg_4 = void 0, objectArg_5 = void 0, objectArg_6 = void 0, objectArg_7 = void 0, objectArg_8 = void 0, arg_19 = void 0, objectArg_9 = void 0;
|
|
122
129
|
const components = Option_fromValueWithDefault(empty(), (list_3 = (list_1 = defaultArg((arg_1 = list$1(ROCrate_decoder$1), objectArg = get$.Optional, objectArg.Field("components", arg_1)), empty()), append(defaultArg((arg_3 = list$1(ROCrate_decoder$1), objectArg_1 = get$.Optional, objectArg_1.Field("reagents", arg_3)), empty()), list_1)), append(defaultArg((arg_5 = list$1(ROCrate_decoder$1), objectArg_2 = get$.Optional, objectArg_2.Field("computationalTools", arg_5)), empty()), list_3)));
|
|
123
130
|
return new Protocol((objectArg_3 = get$.Optional, objectArg_3.Field("@id", Decode_uri)), (objectArg_4 = get$.Optional, objectArg_4.Field("name", string)), (objectArg_5 = get$.Optional, objectArg_5.Field("protocolType", OntologyAnnotation_ROCrate_decoderDefinedTerm)), (objectArg_6 = get$.Optional, objectArg_6.Field("description", string)), (objectArg_7 = get$.Optional, objectArg_7.Field("uri", Decode_uri)), (objectArg_8 = get$.Optional, objectArg_8.Field("version", string)), void 0, components, (arg_19 = list$1(ROCrate_decoder$2), objectArg_9 = get$.Optional, objectArg_9.Field("comments", arg_19)));
|
|
124
131
|
});
|
|
125
132
|
function ISAJson_encoder(studyName, assayName, processName, idMap, oa) {
|
|
126
133
|
const f = (oa_1) => {
|
|
127
|
-
const values_1 = choose((tupledArg) =>
|
|
134
|
+
const values_1 = choose((tupledArg) => {
|
|
135
|
+
const option_1 = tupledArg[1];
|
|
136
|
+
if (option_1 != null) {
|
|
137
|
+
return [tupledArg[0], value(option_1)];
|
|
138
|
+
} else {
|
|
139
|
+
return void 0;
|
|
140
|
+
}
|
|
141
|
+
}, ofArray([tryInclude("@id", (value) => ({
|
|
128
142
|
Encode(helpers) {
|
|
129
143
|
return helpers.encodeString(value);
|
|
130
144
|
}
|
|
@@ -147,7 +161,7 @@ function ISAJson_encoder(studyName, assayName, processName, idMap, oa) {
|
|
|
147
161
|
}), oa_1.Version), tryIncludeListOpt("parameters", (value_10) => ISAJson_encoder$1(idMap, value_10), oa_1.Parameters), tryIncludeListOpt("components", (c) => ISAJson_encoder$2(idMap, c), oa_1.Components), tryIncludeListOpt("comments", (comment) => ISAJson_encoder$3(idMap, comment), oa_1.Comments)]));
|
|
148
162
|
return {
|
|
149
163
|
Encode(helpers_5) {
|
|
150
|
-
const arg = map
|
|
164
|
+
const arg = map((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_5)], values_1);
|
|
151
165
|
return helpers_5.encodeObject(arg);
|
|
152
166
|
}
|
|
153
167
|
};
|
|
@@ -159,7 +173,7 @@ function ISAJson_encoder(studyName, assayName, processName, idMap, oa) {
|
|
|
159
173
|
}
|
|
160
174
|
}
|
|
161
175
|
const ISAJson_decoder = object((get$) => {
|
|
162
|
-
let objectArg, objectArg_1, objectArg_2, objectArg_3, objectArg_4, objectArg_5, arg_13, objectArg_6, arg_15, objectArg_7, arg_17, objectArg_8;
|
|
176
|
+
let objectArg = void 0, objectArg_1 = void 0, objectArg_2 = void 0, objectArg_3 = void 0, objectArg_4 = void 0, objectArg_5 = void 0, arg_13 = void 0, objectArg_6 = void 0, arg_15 = void 0, objectArg_7 = void 0, arg_17 = void 0, objectArg_8 = void 0;
|
|
163
177
|
return new Protocol((objectArg = get$.Optional, objectArg.Field("@id", Decode_uri)), (objectArg_1 = get$.Optional, objectArg_1.Field("name", string)), (objectArg_2 = get$.Optional, objectArg_2.Field("protocolType", OntologyAnnotation_ISAJson_decoder)), (objectArg_3 = get$.Optional, objectArg_3.Field("description", string)), (objectArg_4 = get$.Optional, objectArg_4.Field("uri", Decode_uri)), (objectArg_5 = get$.Optional, objectArg_5.Field("version", string)), (arg_13 = list$1(ISAJson_decoder$1), objectArg_6 = get$.Optional, objectArg_6.Field("parameters", arg_13)), (arg_15 = list$1(ISAJson_decoder$2), objectArg_7 = get$.Optional, objectArg_7.Field("components", arg_15)), (arg_17 = list$1(ISAJson_decoder$3), objectArg_8 = get$.Optional, objectArg_8.Field("comments", arg_17)));
|
|
164
178
|
});
|
|
165
179
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Option } from '@fable-org/fable-library-
|
|
2
|
-
import { ProtocolParameter } from '../../Core/Process/ProtocolParameter.
|
|
3
|
-
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.
|
|
4
|
-
import { IMap } from '@fable-org/fable-library-
|
|
1
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
2
|
+
import { ProtocolParameter } from '../../Core/Process/ProtocolParameter.ts';
|
|
3
|
+
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.9.1/Types.fs.js';
|
|
4
|
+
import { IMap } from '@fable-org/fable-library-ts/Util.ts';
|
|
5
5
|
export declare function encoder(value: ProtocolParameter): IEncodable;
|
|
6
6
|
export declare const decoder: Decoder$1<ProtocolParameter>;
|
|
7
7
|
export declare function ISAJson_genID(p: ProtocolParameter): string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProtocolParameter.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Process/ProtocolParameter.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ProtocolParameter.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Process/ProtocolParameter.ts"],"names":[],"mappings":"AAEA,OAAO,EAA4B,MAAM,EAAc,MAAM,uCAAuC,CAAC;AAErG,OAAO,EAAE,iBAAiB,EAAE,MAAM,yCAAyC,CAAC;AAC5E,OAAO,EAAqB,SAAS,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AAQjH,OAAO,EAAE,IAAI,EAAE,MAAM,qCAAqC,CAAC;AAE3D,wBAAgB,OAAO,CAAC,KAAK,EAAE,iBAAiB,GAAG,UAAU,CAE5D;AAED,eAAO,MAAM,OAAO,EAAE,SAAS,CAAC,iBAAiB,CAGnB,CAAC;AAE/B,wBAAgB,aAAa,CAAC,CAAC,EAAE,iBAAiB,GAAG,MAAM,CAQ1D;AAED,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC,EAAE,KAAK,EAAE,iBAAiB,GAAG,UAAU,CA4B7G;AAED,eAAO,MAAM,eAAe,EAAE,SAAS,CAAC,iBAAiB,CAGvD,CAAC"}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { OntologyAnnotation_encoder, OntologyAnnotation_decoder, OntologyAnnotation_ROCrate_genID, OntologyAnnotation_ISAJson_encoder, OntologyAnnotation_ISAJson_decoder } from '../OntologyAnnotation.js';
|
|
2
|
-
import { defaultArg, unwrap, value
|
|
2
|
+
import { defaultArg, unwrap, value } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
3
3
|
import { OntologyAnnotation } from '../../Core/OntologyAnnotation.js';
|
|
4
4
|
import { ProtocolParameter } from '../../Core/Process/ProtocolParameter.js';
|
|
5
|
-
import { map, object } from '../../fable_modules/Thoth.Json.Core.0.
|
|
5
|
+
import { map, object } from '../../fable_modules/Thoth.Json.Core.0.9.1/Decode.fs.js';
|
|
6
6
|
import { Option_fromValueWithDefault } from '../../Core/Helper/Collections.js';
|
|
7
|
-
import {
|
|
7
|
+
import { concat } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
8
|
+
import { choose, ofArray } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
8
9
|
import { tryInclude } from '../Encode.js';
|
|
9
|
-
import { map as map$
|
|
10
|
+
import { map as map$1 } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
10
11
|
import { encode } from '../IDTable.js';
|
|
11
12
|
|
|
12
13
|
function encoder(value) {
|
|
@@ -21,19 +22,26 @@ function ISAJson_genID(p) {
|
|
|
21
22
|
if (matchValue == null) {
|
|
22
23
|
return "#EmptyProtocolParameter";
|
|
23
24
|
} else {
|
|
24
|
-
return
|
|
25
|
+
return concat("#ProtocolParameter/", OntologyAnnotation_ROCrate_genID(value(matchValue)));
|
|
25
26
|
}
|
|
26
27
|
}
|
|
27
28
|
function ISAJson_encoder(idMap, value$1) {
|
|
28
29
|
const f = (value_1) => {
|
|
29
|
-
const values_1 = choose((tupledArg) =>
|
|
30
|
+
const values_1 = choose((tupledArg) => {
|
|
31
|
+
const option_1 = tupledArg[1];
|
|
32
|
+
if (option_1 != null) {
|
|
33
|
+
return [tupledArg[0], value(option_1)];
|
|
34
|
+
} else {
|
|
35
|
+
return void 0;
|
|
36
|
+
}
|
|
37
|
+
}, ofArray([tryInclude("@id", (value_2) => ({
|
|
30
38
|
Encode(helpers) {
|
|
31
39
|
return helpers.encodeString(value_2);
|
|
32
40
|
}
|
|
33
41
|
}), ISAJson_genID(value_1)), tryInclude("parameterName", (oa) => OntologyAnnotation_ISAJson_encoder(idMap, oa), value_1.ParameterName)]));
|
|
34
42
|
return {
|
|
35
43
|
Encode(helpers_1) {
|
|
36
|
-
const arg = map$
|
|
44
|
+
const arg = map$1((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_1)], values_1);
|
|
37
45
|
return helpers_1.encodeObject(arg);
|
|
38
46
|
}
|
|
39
47
|
};
|
|
@@ -45,7 +53,7 @@ function ISAJson_encoder(idMap, value$1) {
|
|
|
45
53
|
}
|
|
46
54
|
}
|
|
47
55
|
const ISAJson_decoder = object((get$) => {
|
|
48
|
-
let objectArg;
|
|
56
|
+
let objectArg = void 0;
|
|
49
57
|
return new ProtocolParameter(void 0, (objectArg = get$.Optional, objectArg.Field("parameterName", OntologyAnnotation_ISAJson_decoder)));
|
|
50
58
|
});
|
|
51
59
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { Option } from '@fable-org/fable-library-
|
|
2
|
-
import { Sample } from '../../Core/Process/Sample.
|
|
3
|
-
import { FSharpList } from '@fable-org/fable-library-
|
|
4
|
-
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.
|
|
5
|
-
import { MaterialAttributeValue } from '../../Core/Process/MaterialAttributeValue.
|
|
6
|
-
import { FactorValue } from '../../Core/Process/FactorValue.
|
|
7
|
-
import { IMap } from '@fable-org/fable-library-
|
|
1
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
2
|
+
import { Sample } from '../../Core/Process/Sample.ts';
|
|
3
|
+
import { FSharpList } from '@fable-org/fable-library-ts/List.ts';
|
|
4
|
+
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.9.1/Types.fs.js';
|
|
5
|
+
import { MaterialAttributeValue } from '../../Core/Process/MaterialAttributeValue.ts';
|
|
6
|
+
import { FactorValue } from '../../Core/Process/FactorValue.ts';
|
|
7
|
+
import { IMap } from '@fable-org/fable-library-ts/Util.ts';
|
|
8
8
|
export declare function ROCrate_genID(s: Sample): string;
|
|
9
9
|
export declare function ROCrate_encoder(oa: Sample): IEncodable;
|
|
10
10
|
export declare const ROCrate_additionalPropertyDecoder: Decoder$1<[Option<MaterialAttributeValue>, Option<FactorValue>]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Sample.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Process/Sample.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Sample.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Process/Sample.ts"],"names":[],"mappings":"AACA,OAAO,EAAgC,MAAM,EAAE,MAAM,uCAAuC,CAAC;AAE7F,OAAO,EAAE,MAAM,EAAE,MAAM,8BAA8B,CAAC;AACtD,OAAO,EAAuE,UAAU,EAAE,MAAM,qCAAqC,CAAC;AACtI,OAAO,EAAE,SAAS,EAA8D,UAAU,EAAE,MAAM,uDAAuD,CAAC;AAE1J,OAAO,EAAE,sBAAsB,EAAE,MAAM,8CAA8C,CAAC;AAEtF,OAAO,EAAE,WAAW,EAAE,MAAM,mCAAmC,CAAC;AAahE,OAAO,EAAE,IAAI,EAAE,MAAM,qCAAqC,CAAC;AAE3D,wBAAgB,aAAa,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAc/C;AAED,wBAAgB,eAAe,CAAC,EAAE,EAAE,MAAM,GAAG,UAAU,CAoCtD;AAED,eAAO,MAAM,iCAAiC,EAAE,SAAS,CAAC,CAAC,MAAM,CAAC,sBAAsB,CAAC,EAAE,MAAM,CAAC,WAAW,CAAC,CAAC,CAY9G,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,SAAS,CAAC,MAAM,CAuB5C,CAAC;AAEH,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,GAAG,UAAU,CAgC/F;AAED,eAAO,MAAM,qBAAqB,EAAE,UAAU,CAAC,MAAM,CAAmG,CAAC;AAEzJ,eAAO,MAAM,eAAe,EAAE,SAAS,CAAC,MAAM,CAG5C,CAAC"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { value, defaultArg
|
|
2
|
-
import { replace } from '../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { value, defaultArg } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
2
|
+
import { replace } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
3
3
|
import { Sample } from '../../Core/Process/Sample.js';
|
|
4
|
-
import { map, empty, append, choose, ofArray, singleton, isEmpty, head, tail } from '../../../node_modules/@fable-org/fable-library-
|
|
4
|
+
import { map, empty, append, choose, ofArray, singleton, isEmpty, head, tail } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
5
5
|
import { ROCrate_encoder as ROCrate_encoder$1, ROCrate_decoder as ROCrate_decoder$2, ISAJson_encoder as ISAJson_encoder$1, ISAJson_decoder as ISAJson_decoder$1 } from './MaterialAttributeValue.js';
|
|
6
6
|
import { ROCrate_encoder as ROCrate_encoder$2, ROCrate_decoder as ROCrate_decoder$1, ISAJson_encoder as ISAJson_encoder$2, ISAJson_decoder as ISAJson_decoder$2 } from './FactorValue.js';
|
|
7
|
-
import { list } from '../../fable_modules/Thoth.Json.Core.0.
|
|
7
|
+
import { list } from '../../fable_modules/Thoth.Json.Core.0.9.1/Encode.fs.js';
|
|
8
8
|
import { tryInclude, tryIncludeList, tryIncludeListOpt } from '../Encode.js';
|
|
9
9
|
import { context_jsonvalue } from '../context/rocrate/isa_sample_context.js';
|
|
10
|
-
import { map as map$
|
|
11
|
-
import { string, object, unit, list as list$1 } from '../../fable_modules/Thoth.Json.Core.0.
|
|
12
|
-
import { FSharpResult$2_Error
|
|
10
|
+
import { map as map$1 } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
11
|
+
import { string, object, unit, list as list$1 } from '../../fable_modules/Thoth.Json.Core.0.9.1/Decode.fs.js';
|
|
12
|
+
import { FSharpResult$2_Error$, FSharpResult$2_Ok } from '../../../node_modules/@fable-org/fable-library-ts/Result.js';
|
|
13
13
|
import { Decode_uri, Decode_objectNoAdditionalProperties } from '../Decode.js';
|
|
14
14
|
import { Option_fromValueWithDefault } from '../../Core/Helper/Collections.js';
|
|
15
15
|
import { ROCrate_decoder as ROCrate_decoder$3, ISAJson_encoder as ISAJson_encoder$3, ISAJson_decoder as ISAJson_decoder$3 } from './Source.js';
|
|
@@ -29,11 +29,18 @@ function ROCrate_genID(s) {
|
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
function ROCrate_encoder(oa) {
|
|
32
|
-
let value_2;
|
|
32
|
+
let value_2 = void 0;
|
|
33
33
|
let additionalProperties;
|
|
34
34
|
const list_3 = map(ROCrate_encoder$1, defaultArg(oa.Characteristics, empty()));
|
|
35
35
|
additionalProperties = append(map(ROCrate_encoder$2, defaultArg(oa.FactorValues, empty())), list_3);
|
|
36
|
-
const values_1 = choose((tupledArg) =>
|
|
36
|
+
const values_1 = choose((tupledArg) => {
|
|
37
|
+
const option_3 = tupledArg[1];
|
|
38
|
+
if (option_3 != null) {
|
|
39
|
+
return [tupledArg[0], value(option_3)];
|
|
40
|
+
} else {
|
|
41
|
+
return void 0;
|
|
42
|
+
}
|
|
43
|
+
}, ofArray([["@id", (value_2 = ROCrate_genID(oa), {
|
|
37
44
|
Encode(helpers) {
|
|
38
45
|
return helpers.encodeString(value_2);
|
|
39
46
|
}
|
|
@@ -52,72 +59,35 @@ function ROCrate_encoder(oa) {
|
|
|
52
59
|
}), oa.Name), tryIncludeList("additionalProperties", (x) => x, additionalProperties), ["@context", context_jsonvalue]]));
|
|
53
60
|
return {
|
|
54
61
|
Encode(helpers_4) {
|
|
55
|
-
const arg = map$
|
|
62
|
+
const arg = map$1((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_4)], values_1);
|
|
56
63
|
return helpers_4.encodeObject(arg);
|
|
57
64
|
}
|
|
58
65
|
};
|
|
59
66
|
}
|
|
60
67
|
const ROCrate_additionalPropertyDecoder = {
|
|
61
68
|
Decode(s, json) {
|
|
62
|
-
let matchValue;
|
|
69
|
+
let matchValue = void 0;
|
|
63
70
|
if ((s.hasProperty("additionalType", json) ? (matchValue = string.Decode(s, s.getProperty("additionalType", json)), matchValue.tag === /* Ok */
|
|
64
71
|
0 ? matchValue.fields[0] : "") : "") === "FactorValue") {
|
|
65
72
|
const matchValue_1 = ROCrate_decoder$1.Decode(s, json);
|
|
66
73
|
return matchValue_1.tag === /* Error */
|
|
67
|
-
1 ? FSharpResult$2_Error(matchValue_1.fields[0]) : FSharpResult$2_Ok([void 0, matchValue_1.fields[0]]);
|
|
74
|
+
1 ? FSharpResult$2_Error$(matchValue_1.fields[0]) : FSharpResult$2_Ok([void 0, matchValue_1.fields[0]]);
|
|
68
75
|
} else {
|
|
69
76
|
const matchValue_2 = ROCrate_decoder$2.Decode(s, json);
|
|
70
77
|
return matchValue_2.tag === /* Error */
|
|
71
|
-
1 ? FSharpResult$2_Error(matchValue_2.fields[0]) : FSharpResult$2_Ok([matchValue_2.fields[0], void 0]);
|
|
78
|
+
1 ? FSharpResult$2_Error$(matchValue_2.fields[0]) : FSharpResult$2_Ok([matchValue_2.fields[0], void 0]);
|
|
72
79
|
}
|
|
73
80
|
}
|
|
74
81
|
};
|
|
75
82
|
const ROCrate_decoder = object((get$) => {
|
|
76
|
-
let objectArg_5, objectArg_6, arg_15, objectArg_7;
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
let matchResult;
|
|
81
|
-
if (matchValue == null) {
|
|
82
|
-
matchResult = 0;
|
|
83
|
-
} else if (value(matchValue) === "Sample") {
|
|
84
|
-
matchResult = 0;
|
|
85
|
-
} else {
|
|
86
|
-
matchResult = 1;
|
|
83
|
+
let matchValue = void 0, objectArg = void 0, matchValue_1 = void 0, arg_5 = void 0, objectArg_2 = void 0, objectArg_5 = void 0, objectArg_6 = void 0, arg_15 = void 0, objectArg_7 = void 0;
|
|
84
|
+
if (!(matchValue = (objectArg = get$.Optional, objectArg.Field("additionalType", Decode_uri)), matchValue == null ? true : value(matchValue) === "Sample")) {
|
|
85
|
+
const objectArg_1 = get$.Required;
|
|
86
|
+
objectArg_1.Field("FailBecauseNotSample", unit);
|
|
87
87
|
}
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
objectArg_1.Field("FailBecauseNotSample", unit);
|
|
92
|
-
break;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
let matchValue_1;
|
|
96
|
-
const arg_5 = list$1(string);
|
|
97
|
-
const objectArg_2 = get$.Optional;
|
|
98
|
-
matchValue_1 = objectArg_2.Field("@type", arg_5);
|
|
99
|
-
let matchResult_1;
|
|
100
|
-
if (matchValue_1 == null) {
|
|
101
|
-
matchResult_1 = 0;
|
|
102
|
-
} else if (!isEmpty(value(matchValue_1))) {
|
|
103
|
-
if (head(value(matchValue_1)) === "Sample") {
|
|
104
|
-
if (isEmpty(tail(value(matchValue_1)))) {
|
|
105
|
-
matchResult_1 = 0;
|
|
106
|
-
} else {
|
|
107
|
-
matchResult_1 = 1;
|
|
108
|
-
}
|
|
109
|
-
} else {
|
|
110
|
-
matchResult_1 = 1;
|
|
111
|
-
}
|
|
112
|
-
} else {
|
|
113
|
-
matchResult_1 = 1;
|
|
114
|
-
}
|
|
115
|
-
switch (matchResult_1) {
|
|
116
|
-
case 1: {
|
|
117
|
-
const objectArg_3 = get$.Required;
|
|
118
|
-
objectArg_3.Field("FailBecauseNotSample", unit);
|
|
119
|
-
break;
|
|
120
|
-
}
|
|
88
|
+
if (!(matchValue_1 = (arg_5 = list$1(string), objectArg_2 = get$.Optional, objectArg_2.Field("@type", arg_5)), matchValue_1 == null ? true : !isEmpty(value(matchValue_1)) && (head(value(matchValue_1)) === "Sample" && isEmpty(tail(value(matchValue_1)))))) {
|
|
89
|
+
const objectArg_3 = get$.Required;
|
|
90
|
+
objectArg_3.Field("FailBecauseNotSample", unit);
|
|
121
91
|
}
|
|
122
92
|
let additionalProperties;
|
|
123
93
|
const arg_9 = list$1(ROCrate_additionalPropertyDecoder);
|
|
@@ -134,7 +104,14 @@ const ROCrate_decoder = object((get$) => {
|
|
|
134
104
|
});
|
|
135
105
|
function ISAJson_encoder(idMap, oa) {
|
|
136
106
|
const f = (oa_1) => {
|
|
137
|
-
const values_1 = choose((tupledArg) =>
|
|
107
|
+
const values_1 = choose((tupledArg) => {
|
|
108
|
+
const option_1 = tupledArg[1];
|
|
109
|
+
if (option_1 != null) {
|
|
110
|
+
return [tupledArg[0], value(option_1)];
|
|
111
|
+
} else {
|
|
112
|
+
return void 0;
|
|
113
|
+
}
|
|
114
|
+
}, ofArray([tryInclude("@id", (value) => ({
|
|
138
115
|
Encode(helpers) {
|
|
139
116
|
return helpers.encodeString(value);
|
|
140
117
|
}
|
|
@@ -145,7 +122,7 @@ function ISAJson_encoder(idMap, oa) {
|
|
|
145
122
|
}), oa_1.Name), tryIncludeListOpt("characteristics", (oa_2) => ISAJson_encoder$1(idMap, oa_2), oa_1.Characteristics), tryIncludeListOpt("factorValues", (fv) => ISAJson_encoder$2(idMap, fv), oa_1.FactorValues), tryIncludeListOpt("derivesFrom", (oa_3) => ISAJson_encoder$3(idMap, oa_3), oa_1.DerivesFrom)]));
|
|
146
123
|
return {
|
|
147
124
|
Encode(helpers_2) {
|
|
148
|
-
const arg = map$
|
|
125
|
+
const arg = map$1((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_2)], values_1);
|
|
149
126
|
return helpers_2.encodeObject(arg);
|
|
150
127
|
}
|
|
151
128
|
};
|
|
@@ -158,7 +135,7 @@ function ISAJson_encoder(idMap, oa) {
|
|
|
158
135
|
}
|
|
159
136
|
const ISAJson_allowedFields = ofArray(["@id", "name", "characteristics", "factorValues", "derivesFrom", "@type", "@context"]);
|
|
160
137
|
const ISAJson_decoder = Decode_objectNoAdditionalProperties(ISAJson_allowedFields, (get$) => {
|
|
161
|
-
let objectArg, objectArg_1, arg_5, objectArg_2, arg_7, objectArg_3, arg_9, objectArg_4;
|
|
138
|
+
let objectArg = void 0, objectArg_1 = void 0, arg_5 = void 0, objectArg_2 = void 0, arg_7 = void 0, objectArg_3 = void 0, arg_9 = void 0, objectArg_4 = void 0;
|
|
162
139
|
return new Sample((objectArg = get$.Optional, objectArg.Field("@id", Decode_uri)), (objectArg_1 = get$.Optional, objectArg_1.Field("name", string)), (arg_5 = list$1(ISAJson_decoder$1), objectArg_2 = get$.Optional, objectArg_2.Field("characteristics", arg_5)), (arg_7 = list$1(ISAJson_decoder$2), objectArg_3 = get$.Optional, objectArg_3.Field("factorValues", arg_7)), (arg_9 = list$1(ISAJson_decoder$3), objectArg_4 = get$.Optional, objectArg_4.Field("derivesFrom", arg_9)));
|
|
163
140
|
});
|
|
164
141
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Option } from '@fable-org/fable-library-
|
|
2
|
-
import { Source } from '../../Core/Process/Source.
|
|
3
|
-
import { FSharpList } from '@fable-org/fable-library-
|
|
4
|
-
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.
|
|
5
|
-
import { IMap } from '@fable-org/fable-library-
|
|
1
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
2
|
+
import { Source } from '../../Core/Process/Source.ts';
|
|
3
|
+
import { FSharpList } from '@fable-org/fable-library-ts/List.ts';
|
|
4
|
+
import { Decoder$1, IEncodable } from '../../fable_modules/Thoth.Json.Core.0.9.1/Types.fs.js';
|
|
5
|
+
import { IMap } from '@fable-org/fable-library-ts/Util.ts';
|
|
6
6
|
export declare function ROCrate_genID(s: Source): string;
|
|
7
7
|
export declare function ROCrate_encoder(oa: Source): IEncodable;
|
|
8
8
|
export declare const ROCrate_decoder: Decoder$1<Source>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Source.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Process/Source.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Source.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/Json/Process/Source.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,MAAM,EAAE,MAAM,uCAAuC,CAAC;AAGjF,OAAO,EAAE,MAAM,EAAE,MAAM,8BAA8B,CAAC;AACtD,OAAO,EAAuB,UAAU,EAA8B,MAAM,qCAAqC,CAAC;AAClH,OAAO,EAAE,SAAS,EAAqB,UAAU,EAAE,MAAM,uDAAuD,CAAC;AAUjH,OAAO,EAAE,IAAI,EAAE,MAAM,qCAAqC,CAAC;AAE3D,wBAAgB,aAAa,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAc/C;AAED,wBAAgB,eAAe,CAAC,EAAE,EAAE,MAAM,GAAG,UAAU,CAiCtD;AAED,eAAO,MAAM,eAAe,EAAE,SAAS,CAAC,MAAM,CAW5C,CAAC;AAEH,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,GAAG,UAAU,CAgC/F;AAED,eAAO,MAAM,qBAAqB,EAAE,UAAU,CAAC,MAAM,CAAoE,CAAC;AAE1H,eAAO,MAAM,eAAe,EAAE,SAAS,CAAC,MAAM,CAG5C,CAAC"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { value
|
|
2
|
-
import { replace } from '../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { value } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
2
|
+
import { replace } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
3
3
|
import { URIModule_toString } from '../../Core/URI.js';
|
|
4
4
|
import { Source } from '../../Core/Process/Source.js';
|
|
5
|
-
import { choose, ofArray, singleton, isEmpty, head, tail } from '../../../node_modules/@fable-org/fable-library-
|
|
6
|
-
import { list } from '../../fable_modules/Thoth.Json.Core.0.
|
|
5
|
+
import { choose, ofArray, singleton, isEmpty, head, tail } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
6
|
+
import { list } from '../../fable_modules/Thoth.Json.Core.0.9.1/Encode.fs.js';
|
|
7
7
|
import { tryInclude, tryIncludeListOpt } from '../Encode.js';
|
|
8
8
|
import { ROCrate_encoder as ROCrate_encoder$1, ROCrate_decoder as ROCrate_decoder$1, ISAJson_encoder as ISAJson_encoder$1, ISAJson_decoder as ISAJson_decoder$1 } from './MaterialAttributeValue.js';
|
|
9
9
|
import { context_jsonvalue } from '../context/rocrate/isa_source_context.js';
|
|
10
|
-
import { map
|
|
11
|
-
import { object, unit, list as list$1, string } from '../../fable_modules/Thoth.Json.Core.0.
|
|
10
|
+
import { map } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
11
|
+
import { object, unit, list as list$1, string } from '../../fable_modules/Thoth.Json.Core.0.9.1/Decode.fs.js';
|
|
12
12
|
import { Decode_uri, Decode_objectNoAdditionalProperties } from '../Decode.js';
|
|
13
13
|
import { encode } from '../IDTable.js';
|
|
14
14
|
|
|
@@ -26,10 +26,17 @@ function ROCrate_genID(s) {
|
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
function ROCrate_encoder(oa) {
|
|
29
|
-
let value;
|
|
30
|
-
const values_1 = choose((tupledArg) =>
|
|
29
|
+
let value$1 = void 0;
|
|
30
|
+
const values_1 = choose((tupledArg) => {
|
|
31
|
+
const option_1 = tupledArg[1];
|
|
32
|
+
if (option_1 != null) {
|
|
33
|
+
return [tupledArg[0], value(option_1)];
|
|
34
|
+
} else {
|
|
35
|
+
return void 0;
|
|
36
|
+
}
|
|
37
|
+
}, ofArray([["@id", (value$1 = ROCrate_genID(oa), {
|
|
31
38
|
Encode(helpers) {
|
|
32
|
-
return helpers.encodeString(value);
|
|
39
|
+
return helpers.encodeString(value$1);
|
|
33
40
|
}
|
|
34
41
|
})], ["@type", list(singleton({
|
|
35
42
|
Encode(helpers_1) {
|
|
@@ -46,63 +53,33 @@ function ROCrate_encoder(oa) {
|
|
|
46
53
|
}), oa.Name), tryIncludeListOpt("characteristics", ROCrate_encoder$1, oa.Characteristics), ["@context", context_jsonvalue]]));
|
|
47
54
|
return {
|
|
48
55
|
Encode(helpers_4) {
|
|
49
|
-
const arg = map
|
|
56
|
+
const arg = map((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_4)], values_1);
|
|
50
57
|
return helpers_4.encodeObject(arg);
|
|
51
58
|
}
|
|
52
59
|
};
|
|
53
60
|
}
|
|
54
61
|
const ROCrate_decoder = object((get$) => {
|
|
55
|
-
let objectArg_4, objectArg_5, arg_13, objectArg_6;
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
let matchResult;
|
|
60
|
-
if (matchValue == null) {
|
|
61
|
-
matchResult = 0;
|
|
62
|
-
} else if (value(matchValue) === "Source") {
|
|
63
|
-
matchResult = 0;
|
|
64
|
-
} else {
|
|
65
|
-
matchResult = 1;
|
|
62
|
+
let matchValue = void 0, objectArg = void 0, matchValue_1 = void 0, arg_5 = void 0, objectArg_2 = void 0, objectArg_4 = void 0, objectArg_5 = void 0, arg_13 = void 0, objectArg_6 = void 0;
|
|
63
|
+
if (!(matchValue = (objectArg = get$.Optional, objectArg.Field("additionalType", Decode_uri)), matchValue == null ? true : value(matchValue) === "Source")) {
|
|
64
|
+
const objectArg_1 = get$.Required;
|
|
65
|
+
objectArg_1.Field("FailBecauseNotSample", unit);
|
|
66
66
|
}
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
objectArg_1.Field("FailBecauseNotSample", unit);
|
|
71
|
-
break;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
let matchValue_1;
|
|
75
|
-
const arg_5 = list$1(string);
|
|
76
|
-
const objectArg_2 = get$.Optional;
|
|
77
|
-
matchValue_1 = objectArg_2.Field("@type", arg_5);
|
|
78
|
-
let matchResult_1;
|
|
79
|
-
if (matchValue_1 == null) {
|
|
80
|
-
matchResult_1 = 0;
|
|
81
|
-
} else if (!isEmpty(value(matchValue_1))) {
|
|
82
|
-
if (head(value(matchValue_1)) === "Source") {
|
|
83
|
-
if (isEmpty(tail(value(matchValue_1)))) {
|
|
84
|
-
matchResult_1 = 0;
|
|
85
|
-
} else {
|
|
86
|
-
matchResult_1 = 1;
|
|
87
|
-
}
|
|
88
|
-
} else {
|
|
89
|
-
matchResult_1 = 1;
|
|
90
|
-
}
|
|
91
|
-
} else {
|
|
92
|
-
matchResult_1 = 1;
|
|
93
|
-
}
|
|
94
|
-
switch (matchResult_1) {
|
|
95
|
-
case 1: {
|
|
96
|
-
const objectArg_3 = get$.Required;
|
|
97
|
-
objectArg_3.Field("FailBecauseNotSample", unit);
|
|
98
|
-
break;
|
|
99
|
-
}
|
|
67
|
+
if (!(matchValue_1 = (arg_5 = list$1(string), objectArg_2 = get$.Optional, objectArg_2.Field("@type", arg_5)), matchValue_1 == null ? true : !isEmpty(value(matchValue_1)) && (head(value(matchValue_1)) === "Source" && isEmpty(tail(value(matchValue_1)))))) {
|
|
68
|
+
const objectArg_3 = get$.Required;
|
|
69
|
+
objectArg_3.Field("FailBecauseNotSample", unit);
|
|
100
70
|
}
|
|
101
71
|
return new Source((objectArg_4 = get$.Optional, objectArg_4.Field("@id", Decode_uri)), (objectArg_5 = get$.Optional, objectArg_5.Field("name", string)), (arg_13 = list$1(ROCrate_decoder$1), objectArg_6 = get$.Optional, objectArg_6.Field("characteristics", arg_13)));
|
|
102
72
|
});
|
|
103
73
|
function ISAJson_encoder(idMap, oa) {
|
|
104
74
|
const f = (oa_1) => {
|
|
105
|
-
const values_1 = choose((tupledArg) =>
|
|
75
|
+
const values_1 = choose((tupledArg) => {
|
|
76
|
+
const option_1 = tupledArg[1];
|
|
77
|
+
if (option_1 != null) {
|
|
78
|
+
return [tupledArg[0], value(option_1)];
|
|
79
|
+
} else {
|
|
80
|
+
return void 0;
|
|
81
|
+
}
|
|
82
|
+
}, ofArray([tryInclude("@id", (value) => ({
|
|
106
83
|
Encode(helpers) {
|
|
107
84
|
return helpers.encodeString(value);
|
|
108
85
|
}
|
|
@@ -113,7 +90,7 @@ function ISAJson_encoder(idMap, oa) {
|
|
|
113
90
|
}), oa_1.Name), tryIncludeListOpt("characteristics", (oa_2) => ISAJson_encoder$1(idMap, oa_2), oa_1.Characteristics)]));
|
|
114
91
|
return {
|
|
115
92
|
Encode(helpers_2) {
|
|
116
|
-
const arg = map
|
|
93
|
+
const arg = map((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_2)], values_1);
|
|
117
94
|
return helpers_2.encodeObject(arg);
|
|
118
95
|
}
|
|
119
96
|
};
|
|
@@ -126,7 +103,7 @@ function ISAJson_encoder(idMap, oa) {
|
|
|
126
103
|
}
|
|
127
104
|
const ISAJson_allowedFields = ofArray(["@id", "name", "characteristics", "@type", "@context"]);
|
|
128
105
|
const ISAJson_decoder = Decode_objectNoAdditionalProperties(ISAJson_allowedFields, (get$) => {
|
|
129
|
-
let objectArg, objectArg_1, arg_5, objectArg_2;
|
|
106
|
+
let objectArg = void 0, objectArg_1 = void 0, arg_5 = void 0, objectArg_2 = void 0;
|
|
130
107
|
return new Source((objectArg = get$.Optional, objectArg.Field("@id", Decode_uri)), (objectArg_1 = get$.Optional, objectArg_1.Field("name", string)), (arg_5 = list$1(ISAJson_decoder$1), objectArg_2 = get$.Optional, objectArg_2.Field("characteristics", arg_5)));
|
|
131
108
|
});
|
|
132
109
|
|